diff --git a/.sixth/skills/ui-ux-pro-max b/.sixth/skills/ui-ux-pro-max new file mode 160000 index 0000000..b7e3af8 --- /dev/null +++ b/.sixth/skills/ui-ux-pro-max @@ -0,0 +1 @@ +Subproject commit b7e3af80f6e331f6fb456667b82b12cade7c9d35 diff --git a/apps/rebreak-magic/app/components/IosDeviceCard.vue b/apps/rebreak-magic/app/components/IosDeviceCard.vue index 0534175..5b3c641 100644 --- a/apps/rebreak-magic/app/components/IosDeviceCard.vue +++ b/apps/rebreak-magic/app/components/IosDeviceCard.vue @@ -270,12 +270,10 @@ const backendRows = computed(() => { }, { label: "Supervised", - value: data?.enrolled ? (data.supervised ? "Ja" : "Nein") : "—", - valueClass: data?.enrolled - ? data.supervised - ? "text-green-600 dark:text-green-400 font-medium" - : "text-red-600 dark:text-red-400 font-medium" - : "text-gray-400 dark:text-gray-500", + value: data?.supervised ? "Ja" : "Nein", + valueClass: data?.supervised + ? "text-green-600 dark:text-green-400 font-medium" + : "text-red-600 dark:text-red-400 font-medium", }, { label: "Organisation", @@ -286,16 +284,10 @@ const backendRows = computed(() => { }, { label: "Lock-Profil", - value: data?.enrolled - ? data.lockProfileInstalled - ? "Installiert" - : "Fehlt" - : "—", - valueClass: data?.enrolled - ? data.lockProfileInstalled - ? "text-green-600 dark:text-green-400 font-medium" - : "text-red-600 dark:text-red-400 font-medium" - : "text-gray-400 dark:text-gray-500", + value: data?.lockProfileInstalled ? "Installiert" : "Fehlt", + valueClass: data?.lockProfileInstalled + ? "text-green-600 dark:text-green-400 font-medium" + : "text-red-600 dark:text-red-400 font-medium", }, { label: "ReBreak App", diff --git a/backend/server/api/magic/devices/[deviceId]/mdm.get.ts b/backend/server/api/magic/devices/[deviceId]/mdm.get.ts index 6f07a0f..6442a80 100644 --- a/backend/server/api/magic/devices/[deviceId]/mdm.get.ts +++ b/backend/server/api/magic/devices/[deviceId]/mdm.get.ts @@ -85,7 +85,7 @@ export default defineEventHandler(async (event) => { success: true, data: { enrolled: status.enrolled, - company: status.enrolled ? "ReBreak" : null, + company: status.exists ? "ReBreak" : null, supervised: status.supervised, lockProfileInstalled: lockState?.active ?? false, lastAppPushAt: status.lastAppPushAt?.toISOString() ?? null, diff --git a/docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md b/docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md new file mode 100644 index 0000000..fa66b37 --- /dev/null +++ b/docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md @@ -0,0 +1,437 @@ +# Self-Hosted GitHub Actions Runner Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Betreiben eines self-hosted GitHub Actions Runners auf `api.trucko.org` (128.140.47.53) mit dem Label `raynis-builder`, um Backend- und Admin-Builds für das rebreak-monorepo kostenlos auszuführen und weiterhin auf `staging.rebreak.org` zu deployen. + +**Architecture:** Code-Hosting bleibt auf GitHub. GitHub Actions Workflows werden auf `runs-on: [self-hosted, raynis-builder]` umgestellt. Der Runner auf `api.trucko.org` checkt aus, baut das Artifact und kopiert es per SCP auf `staging.rebreak.org`. Dort übernimmt das bestehende `deploy-from-artifact.sh` das Entpacken, Migrations-Check und PM2-Restart. + +**Tech Stack:** GitHub Actions, self-hosted Runner, Hetzner VPS, pnpm, Node.js 24.11.1, SSH/SCP, PM2. + +--- + +## File Structure + +| File / Pfad | Verantwortung | Aktion | +|---|---|---| +| `api.trucko.org` (Server) | Self-hosted Runner + Build-Umgebung | Einrichten | +| `staging.rebreak.org` (Server) | Production/Staging + Deploy-Script | SSH-Key hinzufügen | +| `.github/workflows/deploy-staging.yml` | Backend-Deploy-Workflow | Ändern: `runs-on` + SSH-Secret | +| `.github/workflows/deploy-admin-staging.yml` | Admin-Deploy-Workflow | Ändern: `runs-on` + SSH-Secret | +| GitHub Repo → Settings → Environments → staging | Secrets/Variables | `STAGING_DEPLOY_KEY` hinzufügen | + +--- + +### Task 1: Server `api.trucko.org` vorbereiten + +**Files:** +- Ausführen auf: `api.trucko.org` (per SSH) + +- [ ] **Step 1: SSH auf Server verbinden** + +```bash +ssh root@128.140.47.53 +``` + +- [ ] **Step 2: System aktualisieren und Basis-Tools installieren** + +```bash +apt-get update && apt-get install -y curl git build-essential +``` + +- [ ] **Step 3: Node.js 24.11.1 installieren (via nvm)** + +```bash +curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash +source ~/.bashrc +nvm install 24.11.1 +nvm use 24.11.1 +node -v +``` + +Expected output: `v24.11.1` + +- [ ] **Step 4: pnpm 10.23.0 installieren** + +```bash +corepack enable +corepack prepare pnpm@10.23.0 --activate +pnpm -v +``` + +Expected output: `10.23.0` + +- [ ] **Step 5: Git-Config für den Runner setzen** + +```bash +git config --global user.name "Raynis Builder" +git config --global user.email "builder@raynis.dev" +``` + +- [ ] **Step 6: Workspace-Verzeichnis anlegen** + +```bash +mkdir -p /srv/raynis-builder +chown root:root /srv/raynis-builder +``` + +--- + +### Task 2: GitHub Actions Runner installieren und registrieren + +**Files:** +- Ausführen auf: `api.trucko.org` +- Zu prüfen in GitHub: Settings → Actions → Runners + +- [ ] **Step 1: Runner-Version ermitteln (aktuellste)** + +```bash +RUNNER_VERSION=$(curl -sL https://api.github.com/repos/actions/runner/releases/latest | jq -r '.tag_name' | sed 's/^v//') +echo "$RUNNER_VERSION" +``` + +- [ ] **Step 2: Runner herunterladen und entpacken** + +```bash +cd /srv/raynis-builder +curl -o actions-runner-linux-x64-${RUNNER_VERSION}.tar.gz -L https://github.com/actions/runner/releases/download/v${RUNNER_VERSION}/actions-runner-linux-x64-${RUNNER_VERSION}.tar.gz +tar xzf actions-runner-linux-x64-${RUNNER_VERSION}.tar.gz +rm actions-runner-linux-x64-${RUNNER_VERSION}.tar.gz +``` + +- [ ] **Step 3: Runner konfigurieren (Token aus GitHub holen)** + +In GitHub: Repository `rebreak-monorepo` → Settings → Actions → Runners → New self-hosted runner → Linux → x64. + +Dort angezeigte `config.sh`-Befehle auf dem Server ausführen, z. B.: + +```bash +cd /srv/raynis-builder +./config.sh --url https://github.com/RaynisDev/rebreak --token --name raynis-builder-01 --labels raynis-builder --work _work +``` + +- [ ] **Step 4: Runner als systemd-Service registrieren** + +```bash +cd /srv/raynis-builder +./svc.sh install +./svc.sh start +./svc.sh status +``` + +Expected: `active (running)` + +- [ ] **Step 5: Runner in GitHub UI als Online verifizieren** + +In GitHub: Settings → Actions → Runners → Status muss `Idle` oder `Online` zeigen. + +--- + +### Task 3: SSH-Deploy-Key zwischen Servern einrichten + +**Files:** +- Ausführen auf: `api.trucko.org` und `staging.rebreak.org` + +- [ ] **Step 1: SSH-Key auf `api.trucko.org` erzeugen** + +```bash +ssh-keygen -t ed25519 -f /root/.ssh/rebreak-deploy -C "raynis-builder@api.trucko.org" -N "" +cat /root/.ssh/rebreak-deploy.pub +``` + +- [ ] **Step 2: Public Key auf `staging.rebreak.org` autorisieren** + +```bash +ssh root@staging.rebreak.org +mkdir -p /root/.ssh +cat >> /root/.ssh/authorized_keys << 'EOF' + +EOF +chmod 600 /root/.ssh/authorized_keys +``` + +- [ ] **Step 3: Verbindung vom Builder zum Staging testen** + +```bash +ssh -i /root/.ssh/rebreak-deploy root@staging.rebreak.org "whoami" +``` + +Expected output: `root` + +- [ ] **Step 4: SSH-Konfiguration für einfacheren Zugriff anlegen** + +Auf `api.trucko.org`: + +```bash +cat >> /root/.ssh/config << 'EOF' +Host rebreak-staging + HostName staging.rebreak.org + User root + IdentityFile ~/.ssh/rebreak-deploy + StrictHostKeyChecking no + UserKnownHostsFile /dev/null +EOF +chmod 600 /root/.ssh/config +``` + +- [ ] **Step 5: Verbindung mit Alias testen** + +```bash +ssh rebreak-staging "whoami" +``` + +Expected output: `root` + +--- + +### Task 4: GitHub Secrets aktualisieren + +**Files:** +- GitHub Repository: Settings → Environments → staging + +- [ ] **Step 1: Neuen Private Key als Secret hinzufügen** + +Auf `api.trucko.org`: + +```bash +cat /root/.ssh/rebreak-deploy +``` + +Inhalt kopieren und in GitHub einfügen: + +- Environment: `staging` +- Secret-Name: `STAGING_DEPLOY_KEY` +- Wert: Inhalt von `/root/.ssh/rebreak-deploy` + +- [ ] **Step 2: Bestehende Secrets überprüfen** + +In GitHub prüfen, dass folgende Secrets/Vars im Environment `staging` vorhanden sind: + +- `HETZNER_SSH_KEY` → kann später entfernt werden, wenn neuer Key funktioniert +- `HETZNER_HOST` → `staging.rebreak.org` +- `HETZNER_USER` → `root` + +- [ ] **Step 3: Altes Secret nicht löschen (Fallback)** + +`HETZNER_SSH_KEY` erst nach erfolgreichem Test-Deploy entfernen. + +--- + +### Task 5: Workflows auf self-hosted Runner umstellen + +**Files:** +- Modify: `.github/workflows/deploy-staging.yml` +- Modify: `.github/workflows/deploy-admin-staging.yml` + +- [ ] **Step 1: `deploy-staging.yml` anpassen** + +Ändere in beiden Jobs `runs-on: ubuntu-latest` zu: + +```yaml +runs-on: [self-hosted, raynis-builder] +``` + +Ändere den SSH-Setup-Step, sodass er `STAGING_DEPLOY_KEY` verwendet: + +```yaml + - name: Setup SSH + env: + SSH_PRIVATE_KEY: ${{ secrets.STAGING_DEPLOY_KEY }} + SSH_HOST: ${{ vars.HETZNER_HOST }} + run: | + if [ -z "$SSH_PRIVATE_KEY" ] || [ -z "$SSH_HOST" ]; then + echo "FATAL: STAGING_DEPLOY_KEY oder HETZNER_HOST nicht gesetzt" + exit 1 + fi + mkdir -p ~/.ssh + printf '%s\n' "$SSH_PRIVATE_KEY" > ~/.ssh/id_ed25519 + chmod 600 ~/.ssh/id_ed25519 + ssh-keyscan -H "$SSH_HOST" >> ~/.ssh/known_hosts +``` + +- [ ] **Step 2: `deploy-admin-staging.yml` analog anpassen** + +Gleiche Änderungen wie bei `deploy-staging.yml`: + +```yaml +runs-on: [self-hosted, raynis-builder] +``` + +und SSH-Setup-Step auf `STAGING_DEPLOY_KEY` umstellen. + +- [ ] **Step 3: Node-Setup überprüfen** + +Da der Runner Node.js 24.11.1 und pnpm 10.23.0 bereits hat, kann der Schritt `actions/setup-node` theoretisch entfallen. Für Robustheit aber beibehalten: + +```yaml + - uses: actions/setup-node@v4 + with: + node-version: 24.11.1 + cache: pnpm +``` + +**Hinweis:** `cache: pnpm` funktioniert auf self-hosted Runnern nur, wenn der Runner persistent ist. Da der Server nicht bei jedem Job neu aufgesetzt wird, ist das gegeben. + +- [ ] **Step 4: Beide Dateien lokal validieren** + +```bash +cd /Users/chahinebrini/mono/rebreak-monorepo +git diff .github/workflows/deploy-staging.yml .github/workflows/deploy-admin-staging.yml +``` + +- [ ] **Step 5: Änderungen commiten** + +```bash +git add .github/workflows/deploy-staging.yml .github/workflows/deploy-admin-staging.yml +git commit -m "ci: use self-hosted runner raynis-builder on api.trucko.org" +``` + +--- + +### Task 6: Test-Deploy durchführen + +**Files:** +- GitHub Actions UI +- Server-Logs auf `api.trucko.org` und `staging.rebreak.org` + +- [ ] **Step 1: Workflow manuell triggern** + +In GitHub: Actions → Deploy Staging → Run workflow → Branch: main → Run. + +- [ ] **Step 2: Build-Logs auf Runner verfolgen** + +Auf `api.trucko.org`: + +```bash +tail -f /srv/raynis-builder/_diag/Worker_*.log +tail -f /srv/raynis-builder/_diag/SelfUpdate-*.log +``` + +- [ ] **Step 3: Deploy-Logs auf Staging verfolgen** + +Auf `staging.rebreak.org`: + +```bash +pm2 logs rebreak-staging --lines 50 +``` + +- [ ] **Step 4: Health-Check manuell ausführen** + +Lokal oder auf `api.trucko.org`: + +```bash +for i in $(seq 1 12); do + STATUS=$(curl -sS -o /dev/null -w '%{http_code}' https://staging.rebreak.org/api/auth/me 2>/dev/null || echo "000") + echo "Attempt $i: $STATUS" + [ "$STATUS" = "401" ] || [ "$STATUS" = "200" ] && echo "PASSED" && break + sleep 5 +done +``` + +Expected: `PASSED` + +- [ ] **Step 5: Admin-Deploy testen** + +In GitHub: Actions → Deploy Admin Staging → Run workflow. + +Health-Check: + +```bash +curl -sS -o /dev/null -w '%{http_code}' https://admin.staging.rebreak.org/ +``` + +Expected: Nicht `000`, `502` oder `503`. + +--- + +### Task 7: Alten Webhook-Deploy abschalten (optional, nach stabilem Betrieb) + +**Files:** +- Ausführen auf: `staging.rebreak.org` +- GitHub Repo: Settings → Webhooks + +- [ ] **Step 1: Mindestens 3–5 erfolgreiche Deploys über neuen Runner abwarten** + +- [ ] **Step 2: GitHub-Webhook deaktivieren** + +In GitHub: Settings → Webhooks → `https://staging.rebreak.org/webhook` → Active: aus. + +- [ ] **Step 3: Webhook-Service auf Server stoppen** + +```bash +ssh root@staging.rebreak.org +pm2 stop rebreak-webhook +pm2 save +``` + +- [ ] **Step 4: Legacy-Dateien archivieren (nicht löschen)** + +```bash +cd /srv/rebreak +mkdir -p scripts/legacy +mv scripts/deploy.sh scripts/legacy/deploy.sh +mv scripts/deploy-webhook scripts/legacy/deploy-webhook +``` + +- [ ] **Step 5: `ecosystem.config.js` bereinigen** + +Entferne den Block für `rebreak-webhook` aus `ecosystem.config.js` und deploye die Änderung. + +--- + +### Task 8: Cleanup und Monitoring + +- [ ] **Step 1: Altes `HETZNER_SSH_KEY` Secret aus GitHub entfernen** + +Nur nachdem `STAGING_DEPLOY_KEY` erfolgreich getestet wurde. + +- [ ] **Step 2: Runner-Verfügbarkeit überwachen** + +In GitHub: Settings → Actions → Runners → Status regelmäßig prüfen. + +- [ ] **Step 3: Log-Rotation auf Runner einrichten** + +```bash +logrotate --version || apt-get install -y logrotate +cat > /etc/logrotate.d/github-runner << 'EOF' +/srv/raynis-builder/_diag/*.log { + daily + rotate 7 + compress + missingok + notifempty +} +EOF +``` + +- [ ] **Step 4: pnpm-Store auf Runner bereinigen (monatlich)** + +```bash +pnpm store prune +``` + +--- + +## Self-Review + +### Spec coverage + +- Self-hosted Runner auf `api.trucko.org`: Task 1 + 2 +- Label `raynis-builder`: Task 2 +- Code-Hosting bleibt auf GitHub: implizit durch GitHub Actions +- Workflows auf `runs-on: [self-hosted, raynis-builder]`: Task 5 +- Deploy zu `staging.rebreak.org`: Task 3 + 4 + 6 +- Sicherheit (kein PR-Trigger): Task 5 (Workflow-Trigger bleibt `push: branches: [main]`) +- Webhook abschalten: Task 7 + +### Placeholder scan + +Keine TBD/TODO. Alle Befehle sind konkret. + +### Konsistenz + +- Label durchgehend `raynis-builder` +- Secret-Name durchgehend `STAGING_DEPLOY_KEY` +- Node-Version durchgehend `24.11.1` +- pnpm-Version durchgehend `10.23.0` +- Server-IP durchgehend `128.140.47.53` diff --git a/docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md b/docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md new file mode 100644 index 0000000..7489e53 --- /dev/null +++ b/docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md @@ -0,0 +1,242 @@ +# Self-Hosted GitHub Actions Runner für rebreak-monorepo + +**Datum:** 2026-06-18 +**Status:** Genehmigt — bereit für Implementierungsplanung +**Autor:** Kimi Code (Brainstorming-Session) +**Ziel:** GitHub-Actions-Buildkosten eliminieren, indem Backend- und Admin-Builds auf den bereits vorhandenen Hetzner-Server `api.trucko.org` (128.140.47.53) verlagert werden. + +--- + +## 1. Zusammenfassung + +Derzeit laufen Backend- und Admin-Builds auf kostenpflichtigen GitHub-gehosteten Runnern (`ubuntu-latest`). Bei einem privaten Repository führt das bei hoher Push-Frequenz zu Kosten von über 200 €/Monat. + +Dieses Design schlägt vor, einen **self-hosted GitHub Actions Runner** auf dem bereits vorhandenen, aktuell ungenutzten Hetzner-Server `api.trucko.org` (128.140.47.53, 8 GB RAM) zu betreiben. Der Code-Hosting-Aspekt bleibt vollständig auf GitHub; nur die Build- und Deploy-Ausführung wird auf die eigene Infrastruktur verlagert. + +Das Runner-Label `raynis-builder` ist bewusst generisch gewählt, damit später weitere Raynis-Apps (Mutterfirma von ReBreak) denselben Runner nutzen können. + +--- + +## 2. Kontext & Ausgangslage + +### Aktueller Flow + +``` +local dev → push to main + ↓ + GitHub Actions (ubuntu-latest) + ↓ + Build Backend / Admin + ↓ + Upload Artifact + ↓ + Deploy-Job (ubuntu-latest) + ↓ + SCP + SSH zu staging.rebreak.org + ↓ + deploy-from-artifact.sh +``` + +### Bestehende Komponenten (werden wiederverwendet) + +- `.github/workflows/deploy-staging.yml` +- `.github/workflows/deploy-admin-staging.yml` +- `scripts/deploy-from-artifact.sh` +- `scripts/deploy-admin-from-artifact.sh` +- `ecosystem.config.js` auf `staging.rebreak.org` + +### Probleme mit dem aktuellen Setup + +- GitHub Actions Minuten kosten bei privatem Repo über 200 €/Monat. +- Keine Notwendigkeit für die ursprüngliche Entscheidung, Builds auf GitHub laufen zu lassen (Server-OOM auf CX23) — `api.trucko.org` hat 8 GB RAM. + +--- + +## 3. Ziele + +1. **Kosten eliminieren:** Keine kostenpflichtigen GitHub Actions Minuten mehr für Backend-/Admin-Builds. +2. **Minimaler Änderungsaufwand:** Bestehende Workflows und Deploy-Scripts bleiben weitgehend erhalten. +3. **Sicherheit:** Self-hosted Runner wird nicht für Pull Requests von Forks genutzt. +4. **Zuverlässigkeit:** Concurrency-Group, Health-Check und atomic deploy bleiben erhalten. + +## 4. Nicht-Ziele + +- Kein Wechsel des Code-Hostings (GitHub bleibt). +- Kein Ersatz für Windows- oder iOS-Builds (diese bleiben bei GitHub Actions oder werden lokal gebaut). +- Keine Einführung zusätzlicher CI-Tools wie Gitea, GitLab oder Woodpecker. +- Keine Änderung an der Production-Infrastruktur auf `staging.rebreak.org` über das Nötige hinaus. + +--- + +## 5. Architektur + +``` +GitHub Push (main) + ↓ +GitHub Actions Workflow + ↓ +Self-hosted Runner auf api.trucko.org + ↓ +Checkout → pnpm install → pnpm build → tar artifact + ↓ +SCP artifact zu staging.rebreak.org + ↓ +SSH: bash /srv/rebreak/scripts/deploy-from-artifact.sh + ↓ +Atomic swap .output-staging + pm2 restart + health-check +``` + +### Komponenten + +| Komponente | Ort | Verantwortung | +|---|---|---| +| GitHub Repository | GitHub Cloud | Code-Hosting, Workflow-Definitionen | +| GitHub Actions Runner | `api.trucko.org` | Workflow-Ausführung, Build, Deploy-Trigger | +| Build-Umgebung | `api.trucko.org` | `pnpm install`, `pnpm build`, Artifact-Erstellung | +| Production-Server | `staging.rebreak.org` | Artifact entpacken, Migrationen, PM2-Restart | +| Deploy-Script | `staging.rebreak.org` | `scripts/deploy-from-artifact.sh` / `deploy-admin-from-artifact.sh` | + +--- + +## 6. Datenfluss (detailliert) + +### 6.1 Backend-Deploy + +1. Push auf `main` triggert `.github/workflows/deploy-staging.yml`. +2. Workflow-Job `build` läuft auf `runs-on: self-hosted` (Runner auf `api.trucko.org`). +3. Runner checkt Repo mit `actions/checkout@v4` aus. +4. `pnpm install --frozen-lockfile` wird ausgeführt. +5. `cd backend && pnpm build` erzeugt `backend/.output`. +6. Artifact wird gepackt: `tar czf backend-output.tar.gz -C backend/.output .`. +7. Artifact wird per SCP auf `staging.rebreak.org:/srv/rebreak/backend/.output-incoming.tar.gz` kopiert. +8. `imap-idle/` wird per SCP synchronisiert. +9. Runner führt per SSH `bash /srv/rebreak/scripts/deploy-from-artifact.sh` aus. +10. Server entpackt Artifact atomisch, führt ggf. Prisma-Migrationen aus und restartet `rebreak-staging`. +11. Health-Check gegen `https://staging.rebreak.org/api/auth/me` prüft Erreichbarkeit. + +### 6.2 Admin-Deploy + +- Analog zu Backend über `.github/workflows/deploy-admin-staging.yml`. +- Ziel: `staging.rebreak.org:/srv/rebreak/apps/admin/.output-incoming.tar.gz`. +- Script: `scripts/deploy-admin-from-artifact.sh`. +- Health-Check: `https://admin.staging.rebreak.org/`. + +--- + +## 7. Sicherheit + +### Runner-Isolation + +- Der Runner wird als **Repository-Level Runner** im `rebreak-monorepo` registriert, damit nur dieses Repo ihn nutzen kann. +- Der Runner bekommt ein dediziertes Label: `raynis-builder`. +- Der Workflow fordert das Label explizit an: `runs-on: [self-hosted, raynis-builder]`. +- Der Runner reagiert **nicht** auf Pull-Request-Events — nur auf `push` zu `main` und `workflow_dispatch`. + +### SSH-Zugriff + +- Ein neuer SSH-Deploy-Key wird auf `api.trucko.org` erzeugt. +- Der Public Key wird auf `staging.rebreak.org` in `/root/.ssh/authorized_keys` eingetragen. +- Der Private Key wird als GitHub Secret (z. B. `STAGING_DEPLOY_KEY`) im Environment `staging` hinterlegt. + +### Secrets + +- Keine Secrets im Runner-Image. +- Alle sensiblen Daten kommen weiterhin aus GitHub Environments oder Infisical (auf `staging.rebreak.org`). + +--- + +## 8. Fehlerbehandlung + +### Build-Fehler + +- Wenn `pnpm build` fehlschlägt, bricht der Workflow ab. +- Es wird nichts auf `staging.rebreak.org` kopiert. + +### Deploy-Fehler + +- `deploy-from-artifact.sh` bricht bei fehlgeschlagenen Prisma-Migrationen ab. +- Der alte `.output-staging`-Ordner bleibt durch atomisches `mv` erhalten. +- Health-Check muss bestehen, sonst schlägt der Workflow fehl. + +### Parallelität + +- Concurrency-Group bleibt erhalten: + ```yaml + concurrency: + group: deploy-staging + cancel-in-progress: false + ``` +- Parallele Deploys queueen sich, statt sich gegenseitig abzubrechen. + +--- + +## 9. Tests in CI + +Aktuell laufen keine automatisierten Tests in den Deploy-Workflows. Mit dem eigenen Runner entstehen hierfür keine zusätzlichen Kosten. + +**Empfohlener optionaler nächster Schritt:** +- Vitest-Unit-Tests vor dem Build-Schritt ausführen. +- Reihenfolge: `install → lint → test → build → deploy`. + +Dies ist **nicht Teil dieses Designs** und wird in einem separaten Plan behandelt. + +--- + +## 10. Migrationsschritte + +1. **Runner auf `api.trucko.org` installieren** + - Node.js 24.11.1, pnpm 10.23.0, git einrichten. + - GitHub Actions Runner herunterladen und konfigurieren. + - Als Service registrieren (`./svc.sh install && ./svc.sh start`). + - Label `raynis-builder` zuweisen. + +2. **SSH-Verbindung einrichten** + - Auf `api.trucko.org`: `ssh-keygen -t ed25519 -f ~/.ssh/rebreak-deploy`. + - Public Key auf `staging.rebreak.org` in `/root/.ssh/authorized_keys` eintragen. + - Private Key als GitHub Secret `STAGING_DEPLOY_KEY` im Environment `staging` hinterlegen. + +3. **Workflows anpassen** + - `runs-on: ubuntu-latest` → `runs-on: [self-hosted, raynis-builder]`. + - SSH-Setup-Step an neues Secret `STAGING_DEPLOY_KEY` anpassen. + - Node-Setup beibehalten (Version 24.11.1). + +4. **Test-Deploy durchführen** + - `workflow_dispatch` auf `main` auslösen. + - Logs auf `api.trucko.org` und `staging.rebreak.org` prüfen. + - Health-Check bestätigen. + +5. **Alte Pfade abschalten** + - Nach erfolgreichen Test-Deploys können die alten Webhook-basierten Deploys deaktiviert werden. + - `pm2 stop rebreak-webhook && pm2 save` auf `staging.rebreak.org` (nur auf User-Approval). + +--- + +## 11. Risiken & Mitigationen + +| Risiko | Wahrscheinlichkeit | Auswirkung | Mitigation | +|---|---|---|---| +| Runner-Prozess stürzt ab | Niedrig | Hoch | Runner als systemd-Service laufen lassen; GitHub zeigt Runner offline an. | +| Build auf `api.trucko.org` zu langsam | Mittel | Mittel | 8 GB RAM + 8 GB Swap einrichten; SSD statt HDD prüfen. | +| SSH-Verbindung zwischen Servern failt | Niedrig | Hoch | SSH-Key testen; `ssh-keyscan` im Workflow nutzen. | +| Runner wird versehentlich für PRs genutzt | Niedrig | Hoch | Trigger auf `push: branches: [main]` beschränken; kein `pull_request`. | +| Windows-/Native-Builds bleiben kostenpflichtig | Sicher | Niedrig | In separatem Schritt evaluieren (nicht Teil dieses Designs). | + +--- + +## 12. Offene Punkte + +1. Exakte Spezifikation von `api.trucko.org` bestätigen (CPU, SSD, OS). +2. Soll der Runner unter einem dedizierten User laufen oder als `root`? +3. Sollen bestehende Webhook-Deploys sofort abgeschaltet oder parallel als Fallback laufen? +4. Sollen Vitest-Tests vor dem Build integriert werden (separater Plan)? + +--- + +## 13. Erwartetes Ergebnis + +Nach der Umstellung: + +- Backend- und Admin-Builds laufen auf `api.trucko.org`. +- GitHub-Actions-Minutenkosten für diese Workflows fallen nahezu auf null. +- Die Deploy-Mechanik auf `staging.rebreak.org` bleibt unverändert. +- Windows-/Native-Builds bleiben bei GitHub Actions oder werden separat betrachtet. diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md index c8f9f15..9c77161 100644 --- a/graphify-out/GRAPH_REPORT.md +++ b/graphify-out/GRAPH_REPORT.md @@ -1,16 +1,16 @@ -# Graph Report - rebreak-monorepo (2026-06-10) +# Graph Report - rebreak-monorepo (2026-06-18) ## Corpus Check -- 1374 files · ~1,652,552 words +- 1526 files · ~1,868,068 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 14726 nodes · 19883 edges · 923 communities (870 shown, 53 thin omitted) -- Extraction: 99% EXTRACTED · 1% INFERRED · 0% AMBIGUOUS · INFERRED: 192 edges (avg confidence: 0.81) +- 18226 nodes · 25854 edges · 1321 communities (1257 shown, 64 thin omitted) +- Extraction: 99% EXTRACTED · 1% INFERRED · 0% AMBIGUOUS · INFERRED: 200 edges (avg confidence: 0.81) - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `63fae255` +- Built from commit: `0efdf2f8` - Run `git rev-parse HEAD` and compare to check if the graph is stale. - Run `graphify update .` after code changes (no API cost). @@ -738,12 +738,17 @@ - [[_COMMUNITY_Community 757|Community 757]] - [[_COMMUNITY_Community 758|Community 758]] - [[_COMMUNITY_Community 759|Community 759]] +- [[_COMMUNITY_Community 760|Community 760]] - [[_COMMUNITY_Community 761|Community 761]] - [[_COMMUNITY_Community 762|Community 762]] - [[_COMMUNITY_Community 763|Community 763]] - [[_COMMUNITY_Community 764|Community 764]] - [[_COMMUNITY_Community 765|Community 765]] - [[_COMMUNITY_Community 766|Community 766]] +- [[_COMMUNITY_Community 779|Community 779]] +- [[_COMMUNITY_Community 786|Community 786]] +- [[_COMMUNITY_Community 787|Community 787]] +- [[_COMMUNITY_Community 804|Community 804]] - [[_COMMUNITY_Community 841|Community 841]] - [[_COMMUNITY_Community 842|Community 842]] - [[_COMMUNITY_Community 843|Community 843]] @@ -807,35 +812,421 @@ - [[_COMMUNITY_Community 920|Community 920]] - [[_COMMUNITY_Community 921|Community 921]] - [[_COMMUNITY_Community 922|Community 922]] +- [[_COMMUNITY_Community 923|Community 923]] +- [[_COMMUNITY_Community 924|Community 924]] +- [[_COMMUNITY_Community 925|Community 925]] +- [[_COMMUNITY_Community 926|Community 926]] +- [[_COMMUNITY_Community 927|Community 927]] +- [[_COMMUNITY_Community 928|Community 928]] +- [[_COMMUNITY_Community 930|Community 930]] +- [[_COMMUNITY_Community 931|Community 931]] +- [[_COMMUNITY_Community 932|Community 932]] +- [[_COMMUNITY_Community 933|Community 933]] +- [[_COMMUNITY_Community 934|Community 934]] +- [[_COMMUNITY_Community 935|Community 935]] +- [[_COMMUNITY_Community 936|Community 936]] +- [[_COMMUNITY_Community 937|Community 937]] +- [[_COMMUNITY_Community 938|Community 938]] +- [[_COMMUNITY_Community 939|Community 939]] +- [[_COMMUNITY_Community 940|Community 940]] +- [[_COMMUNITY_Community 941|Community 941]] +- [[_COMMUNITY_Community 942|Community 942]] +- [[_COMMUNITY_Community 943|Community 943]] +- [[_COMMUNITY_Community 944|Community 944]] +- [[_COMMUNITY_Community 945|Community 945]] +- [[_COMMUNITY_Community 946|Community 946]] +- [[_COMMUNITY_Community 947|Community 947]] +- [[_COMMUNITY_Community 948|Community 948]] +- [[_COMMUNITY_Community 949|Community 949]] +- [[_COMMUNITY_Community 950|Community 950]] +- [[_COMMUNITY_Community 951|Community 951]] +- [[_COMMUNITY_Community 952|Community 952]] +- [[_COMMUNITY_Community 953|Community 953]] +- [[_COMMUNITY_Community 954|Community 954]] +- [[_COMMUNITY_Community 955|Community 955]] +- [[_COMMUNITY_Community 956|Community 956]] +- [[_COMMUNITY_Community 957|Community 957]] +- [[_COMMUNITY_Community 958|Community 958]] +- [[_COMMUNITY_Community 959|Community 959]] +- [[_COMMUNITY_Community 960|Community 960]] +- [[_COMMUNITY_Community 961|Community 961]] +- [[_COMMUNITY_Community 962|Community 962]] +- [[_COMMUNITY_Community 963|Community 963]] +- [[_COMMUNITY_Community 964|Community 964]] +- [[_COMMUNITY_Community 965|Community 965]] +- [[_COMMUNITY_Community 966|Community 966]] +- [[_COMMUNITY_Community 967|Community 967]] +- [[_COMMUNITY_Community 968|Community 968]] +- [[_COMMUNITY_Community 969|Community 969]] +- [[_COMMUNITY_Community 970|Community 970]] +- [[_COMMUNITY_Community 971|Community 971]] +- [[_COMMUNITY_Community 972|Community 972]] +- [[_COMMUNITY_Community 973|Community 973]] +- [[_COMMUNITY_Community 974|Community 974]] +- [[_COMMUNITY_Community 975|Community 975]] +- [[_COMMUNITY_Community 976|Community 976]] +- [[_COMMUNITY_Community 977|Community 977]] +- [[_COMMUNITY_Community 978|Community 978]] +- [[_COMMUNITY_Community 979|Community 979]] +- [[_COMMUNITY_Community 980|Community 980]] +- [[_COMMUNITY_Community 981|Community 981]] +- [[_COMMUNITY_Community 982|Community 982]] +- [[_COMMUNITY_Community 983|Community 983]] +- [[_COMMUNITY_Community 984|Community 984]] +- [[_COMMUNITY_Community 985|Community 985]] +- [[_COMMUNITY_Community 986|Community 986]] +- [[_COMMUNITY_Community 987|Community 987]] +- [[_COMMUNITY_Community 988|Community 988]] +- [[_COMMUNITY_Community 989|Community 989]] +- [[_COMMUNITY_Community 990|Community 990]] +- [[_COMMUNITY_Community 991|Community 991]] +- [[_COMMUNITY_Community 992|Community 992]] +- [[_COMMUNITY_Community 993|Community 993]] +- [[_COMMUNITY_Community 994|Community 994]] +- [[_COMMUNITY_Community 995|Community 995]] +- [[_COMMUNITY_Community 996|Community 996]] +- [[_COMMUNITY_Community 997|Community 997]] +- [[_COMMUNITY_Community 998|Community 998]] +- [[_COMMUNITY_Community 999|Community 999]] +- [[_COMMUNITY_Community 1000|Community 1000]] +- [[_COMMUNITY_Community 1001|Community 1001]] +- [[_COMMUNITY_Community 1002|Community 1002]] +- [[_COMMUNITY_Community 1003|Community 1003]] +- [[_COMMUNITY_Community 1004|Community 1004]] +- [[_COMMUNITY_Community 1005|Community 1005]] +- [[_COMMUNITY_Community 1006|Community 1006]] +- [[_COMMUNITY_Community 1007|Community 1007]] +- [[_COMMUNITY_Community 1008|Community 1008]] +- [[_COMMUNITY_Community 1009|Community 1009]] +- [[_COMMUNITY_Community 1010|Community 1010]] +- [[_COMMUNITY_Community 1011|Community 1011]] +- [[_COMMUNITY_Community 1012|Community 1012]] +- [[_COMMUNITY_Community 1013|Community 1013]] +- [[_COMMUNITY_Community 1014|Community 1014]] +- [[_COMMUNITY_Community 1015|Community 1015]] +- [[_COMMUNITY_Community 1016|Community 1016]] +- [[_COMMUNITY_Community 1017|Community 1017]] +- [[_COMMUNITY_Community 1018|Community 1018]] +- [[_COMMUNITY_Community 1019|Community 1019]] +- [[_COMMUNITY_Community 1020|Community 1020]] +- [[_COMMUNITY_Community 1021|Community 1021]] +- [[_COMMUNITY_Community 1022|Community 1022]] +- [[_COMMUNITY_Community 1023|Community 1023]] +- [[_COMMUNITY_Community 1024|Community 1024]] +- [[_COMMUNITY_Community 1025|Community 1025]] +- [[_COMMUNITY_Community 1026|Community 1026]] +- [[_COMMUNITY_Community 1027|Community 1027]] +- [[_COMMUNITY_Community 1028|Community 1028]] +- [[_COMMUNITY_Community 1029|Community 1029]] +- [[_COMMUNITY_Community 1030|Community 1030]] +- [[_COMMUNITY_Community 1031|Community 1031]] +- [[_COMMUNITY_Community 1032|Community 1032]] +- [[_COMMUNITY_Community 1033|Community 1033]] +- [[_COMMUNITY_Community 1034|Community 1034]] +- [[_COMMUNITY_Community 1035|Community 1035]] +- [[_COMMUNITY_Community 1036|Community 1036]] +- [[_COMMUNITY_Community 1037|Community 1037]] +- [[_COMMUNITY_Community 1038|Community 1038]] +- [[_COMMUNITY_Community 1039|Community 1039]] +- [[_COMMUNITY_Community 1040|Community 1040]] +- [[_COMMUNITY_Community 1041|Community 1041]] +- [[_COMMUNITY_Community 1042|Community 1042]] +- [[_COMMUNITY_Community 1043|Community 1043]] +- [[_COMMUNITY_Community 1044|Community 1044]] +- [[_COMMUNITY_Community 1045|Community 1045]] +- [[_COMMUNITY_Community 1046|Community 1046]] +- [[_COMMUNITY_Community 1047|Community 1047]] +- [[_COMMUNITY_Community 1048|Community 1048]] +- [[_COMMUNITY_Community 1049|Community 1049]] +- [[_COMMUNITY_Community 1050|Community 1050]] +- [[_COMMUNITY_Community 1051|Community 1051]] +- [[_COMMUNITY_Community 1052|Community 1052]] +- [[_COMMUNITY_Community 1053|Community 1053]] +- [[_COMMUNITY_Community 1054|Community 1054]] +- [[_COMMUNITY_Community 1055|Community 1055]] +- [[_COMMUNITY_Community 1056|Community 1056]] +- [[_COMMUNITY_Community 1057|Community 1057]] +- [[_COMMUNITY_Community 1058|Community 1058]] +- [[_COMMUNITY_Community 1059|Community 1059]] +- [[_COMMUNITY_Community 1060|Community 1060]] +- [[_COMMUNITY_Community 1061|Community 1061]] +- [[_COMMUNITY_Community 1062|Community 1062]] +- [[_COMMUNITY_Community 1063|Community 1063]] +- [[_COMMUNITY_Community 1064|Community 1064]] +- [[_COMMUNITY_Community 1065|Community 1065]] +- [[_COMMUNITY_Community 1066|Community 1066]] +- [[_COMMUNITY_Community 1067|Community 1067]] +- [[_COMMUNITY_Community 1068|Community 1068]] +- [[_COMMUNITY_Community 1069|Community 1069]] +- [[_COMMUNITY_Community 1070|Community 1070]] +- [[_COMMUNITY_Community 1071|Community 1071]] +- [[_COMMUNITY_Community 1072|Community 1072]] +- [[_COMMUNITY_Community 1073|Community 1073]] +- [[_COMMUNITY_Community 1074|Community 1074]] +- [[_COMMUNITY_Community 1075|Community 1075]] +- [[_COMMUNITY_Community 1076|Community 1076]] +- [[_COMMUNITY_Community 1077|Community 1077]] +- [[_COMMUNITY_Community 1078|Community 1078]] +- [[_COMMUNITY_Community 1079|Community 1079]] +- [[_COMMUNITY_Community 1080|Community 1080]] +- [[_COMMUNITY_Community 1081|Community 1081]] +- [[_COMMUNITY_Community 1082|Community 1082]] +- [[_COMMUNITY_Community 1083|Community 1083]] +- [[_COMMUNITY_Community 1084|Community 1084]] +- [[_COMMUNITY_Community 1085|Community 1085]] +- [[_COMMUNITY_Community 1086|Community 1086]] +- [[_COMMUNITY_Community 1087|Community 1087]] +- [[_COMMUNITY_Community 1088|Community 1088]] +- [[_COMMUNITY_Community 1089|Community 1089]] +- [[_COMMUNITY_Community 1090|Community 1090]] +- [[_COMMUNITY_Community 1091|Community 1091]] +- [[_COMMUNITY_Community 1092|Community 1092]] +- [[_COMMUNITY_Community 1093|Community 1093]] +- [[_COMMUNITY_Community 1094|Community 1094]] +- [[_COMMUNITY_Community 1095|Community 1095]] +- [[_COMMUNITY_Community 1096|Community 1096]] +- [[_COMMUNITY_Community 1097|Community 1097]] +- [[_COMMUNITY_Community 1098|Community 1098]] +- [[_COMMUNITY_Community 1099|Community 1099]] +- [[_COMMUNITY_Community 1100|Community 1100]] +- [[_COMMUNITY_Community 1101|Community 1101]] +- [[_COMMUNITY_Community 1102|Community 1102]] +- [[_COMMUNITY_Community 1103|Community 1103]] +- [[_COMMUNITY_Community 1104|Community 1104]] +- [[_COMMUNITY_Community 1105|Community 1105]] +- [[_COMMUNITY_Community 1106|Community 1106]] +- [[_COMMUNITY_Community 1107|Community 1107]] +- [[_COMMUNITY_Community 1108|Community 1108]] +- [[_COMMUNITY_Community 1109|Community 1109]] +- [[_COMMUNITY_Community 1110|Community 1110]] +- [[_COMMUNITY_Community 1111|Community 1111]] +- [[_COMMUNITY_Community 1112|Community 1112]] +- [[_COMMUNITY_Community 1113|Community 1113]] +- [[_COMMUNITY_Community 1114|Community 1114]] +- [[_COMMUNITY_Community 1115|Community 1115]] +- [[_COMMUNITY_Community 1116|Community 1116]] +- [[_COMMUNITY_Community 1117|Community 1117]] +- [[_COMMUNITY_Community 1118|Community 1118]] +- [[_COMMUNITY_Community 1119|Community 1119]] +- [[_COMMUNITY_Community 1120|Community 1120]] +- [[_COMMUNITY_Community 1121|Community 1121]] +- [[_COMMUNITY_Community 1122|Community 1122]] +- [[_COMMUNITY_Community 1123|Community 1123]] +- [[_COMMUNITY_Community 1124|Community 1124]] +- [[_COMMUNITY_Community 1125|Community 1125]] +- [[_COMMUNITY_Community 1126|Community 1126]] +- [[_COMMUNITY_Community 1127|Community 1127]] +- [[_COMMUNITY_Community 1128|Community 1128]] +- [[_COMMUNITY_Community 1129|Community 1129]] +- [[_COMMUNITY_Community 1130|Community 1130]] +- [[_COMMUNITY_Community 1131|Community 1131]] +- [[_COMMUNITY_Community 1132|Community 1132]] +- [[_COMMUNITY_Community 1133|Community 1133]] +- [[_COMMUNITY_Community 1134|Community 1134]] +- [[_COMMUNITY_Community 1135|Community 1135]] +- [[_COMMUNITY_Community 1136|Community 1136]] +- [[_COMMUNITY_Community 1137|Community 1137]] +- [[_COMMUNITY_Community 1138|Community 1138]] +- [[_COMMUNITY_Community 1139|Community 1139]] +- [[_COMMUNITY_Community 1140|Community 1140]] +- [[_COMMUNITY_Community 1141|Community 1141]] +- [[_COMMUNITY_Community 1142|Community 1142]] +- [[_COMMUNITY_Community 1143|Community 1143]] +- [[_COMMUNITY_Community 1144|Community 1144]] +- [[_COMMUNITY_Community 1145|Community 1145]] +- [[_COMMUNITY_Community 1146|Community 1146]] +- [[_COMMUNITY_Community 1147|Community 1147]] +- [[_COMMUNITY_Community 1148|Community 1148]] +- [[_COMMUNITY_Community 1149|Community 1149]] +- [[_COMMUNITY_Community 1150|Community 1150]] +- [[_COMMUNITY_Community 1151|Community 1151]] +- [[_COMMUNITY_Community 1152|Community 1152]] +- [[_COMMUNITY_Community 1153|Community 1153]] +- [[_COMMUNITY_Community 1154|Community 1154]] +- [[_COMMUNITY_Community 1155|Community 1155]] +- [[_COMMUNITY_Community 1156|Community 1156]] +- [[_COMMUNITY_Community 1157|Community 1157]] +- [[_COMMUNITY_Community 1158|Community 1158]] +- [[_COMMUNITY_Community 1159|Community 1159]] +- [[_COMMUNITY_Community 1160|Community 1160]] +- [[_COMMUNITY_Community 1161|Community 1161]] +- [[_COMMUNITY_Community 1162|Community 1162]] +- [[_COMMUNITY_Community 1163|Community 1163]] +- [[_COMMUNITY_Community 1164|Community 1164]] +- [[_COMMUNITY_Community 1165|Community 1165]] +- [[_COMMUNITY_Community 1166|Community 1166]] +- [[_COMMUNITY_Community 1167|Community 1167]] +- [[_COMMUNITY_Community 1168|Community 1168]] +- [[_COMMUNITY_Community 1169|Community 1169]] +- [[_COMMUNITY_Community 1170|Community 1170]] +- [[_COMMUNITY_Community 1171|Community 1171]] +- [[_COMMUNITY_Community 1172|Community 1172]] +- [[_COMMUNITY_Community 1173|Community 1173]] +- [[_COMMUNITY_Community 1174|Community 1174]] +- [[_COMMUNITY_Community 1175|Community 1175]] +- [[_COMMUNITY_Community 1176|Community 1176]] +- [[_COMMUNITY_Community 1177|Community 1177]] +- [[_COMMUNITY_Community 1178|Community 1178]] +- [[_COMMUNITY_Community 1179|Community 1179]] +- [[_COMMUNITY_Community 1180|Community 1180]] +- [[_COMMUNITY_Community 1181|Community 1181]] +- [[_COMMUNITY_Community 1182|Community 1182]] +- [[_COMMUNITY_Community 1183|Community 1183]] +- [[_COMMUNITY_Community 1184|Community 1184]] +- [[_COMMUNITY_Community 1185|Community 1185]] +- [[_COMMUNITY_Community 1186|Community 1186]] +- [[_COMMUNITY_Community 1187|Community 1187]] +- [[_COMMUNITY_Community 1188|Community 1188]] +- [[_COMMUNITY_Community 1189|Community 1189]] +- [[_COMMUNITY_Community 1190|Community 1190]] +- [[_COMMUNITY_Community 1191|Community 1191]] +- [[_COMMUNITY_Community 1192|Community 1192]] +- [[_COMMUNITY_Community 1193|Community 1193]] +- [[_COMMUNITY_Community 1194|Community 1194]] +- [[_COMMUNITY_Community 1195|Community 1195]] +- [[_COMMUNITY_Community 1196|Community 1196]] +- [[_COMMUNITY_Community 1197|Community 1197]] +- [[_COMMUNITY_Community 1198|Community 1198]] +- [[_COMMUNITY_Community 1199|Community 1199]] +- [[_COMMUNITY_Community 1200|Community 1200]] +- [[_COMMUNITY_Community 1201|Community 1201]] +- [[_COMMUNITY_Community 1202|Community 1202]] +- [[_COMMUNITY_Community 1203|Community 1203]] +- [[_COMMUNITY_Community 1204|Community 1204]] +- [[_COMMUNITY_Community 1205|Community 1205]] +- [[_COMMUNITY_Community 1206|Community 1206]] +- [[_COMMUNITY_Community 1207|Community 1207]] +- [[_COMMUNITY_Community 1208|Community 1208]] +- [[_COMMUNITY_Community 1209|Community 1209]] +- [[_COMMUNITY_Community 1210|Community 1210]] +- [[_COMMUNITY_Community 1211|Community 1211]] +- [[_COMMUNITY_Community 1212|Community 1212]] +- [[_COMMUNITY_Community 1213|Community 1213]] +- [[_COMMUNITY_Community 1214|Community 1214]] +- [[_COMMUNITY_Community 1215|Community 1215]] +- [[_COMMUNITY_Community 1216|Community 1216]] +- [[_COMMUNITY_Community 1217|Community 1217]] +- [[_COMMUNITY_Community 1218|Community 1218]] +- [[_COMMUNITY_Community 1219|Community 1219]] +- [[_COMMUNITY_Community 1220|Community 1220]] +- [[_COMMUNITY_Community 1221|Community 1221]] +- [[_COMMUNITY_Community 1222|Community 1222]] +- [[_COMMUNITY_Community 1223|Community 1223]] +- [[_COMMUNITY_Community 1224|Community 1224]] +- [[_COMMUNITY_Community 1225|Community 1225]] +- [[_COMMUNITY_Community 1226|Community 1226]] +- [[_COMMUNITY_Community 1227|Community 1227]] +- [[_COMMUNITY_Community 1228|Community 1228]] +- [[_COMMUNITY_Community 1229|Community 1229]] +- [[_COMMUNITY_Community 1230|Community 1230]] +- [[_COMMUNITY_Community 1231|Community 1231]] +- [[_COMMUNITY_Community 1232|Community 1232]] +- [[_COMMUNITY_Community 1233|Community 1233]] +- [[_COMMUNITY_Community 1234|Community 1234]] +- [[_COMMUNITY_Community 1235|Community 1235]] +- [[_COMMUNITY_Community 1236|Community 1236]] +- [[_COMMUNITY_Community 1237|Community 1237]] +- [[_COMMUNITY_Community 1238|Community 1238]] +- [[_COMMUNITY_Community 1239|Community 1239]] +- [[_COMMUNITY_Community 1240|Community 1240]] +- [[_COMMUNITY_Community 1241|Community 1241]] +- [[_COMMUNITY_Community 1242|Community 1242]] +- [[_COMMUNITY_Community 1243|Community 1243]] +- [[_COMMUNITY_Community 1244|Community 1244]] +- [[_COMMUNITY_Community 1245|Community 1245]] +- [[_COMMUNITY_Community 1246|Community 1246]] +- [[_COMMUNITY_Community 1247|Community 1247]] +- [[_COMMUNITY_Community 1248|Community 1248]] +- [[_COMMUNITY_Community 1249|Community 1249]] +- [[_COMMUNITY_Community 1250|Community 1250]] +- [[_COMMUNITY_Community 1251|Community 1251]] +- [[_COMMUNITY_Community 1252|Community 1252]] +- [[_COMMUNITY_Community 1253|Community 1253]] +- [[_COMMUNITY_Community 1254|Community 1254]] +- [[_COMMUNITY_Community 1255|Community 1255]] +- [[_COMMUNITY_Community 1256|Community 1256]] +- [[_COMMUNITY_Community 1260|Community 1260]] +- [[_COMMUNITY_Community 1262|Community 1262]] +- [[_COMMUNITY_Community 1263|Community 1263]] +- [[_COMMUNITY_Community 1264|Community 1264]] +- [[_COMMUNITY_Community 1265|Community 1265]] +- [[_COMMUNITY_Community 1266|Community 1266]] +- [[_COMMUNITY_Community 1267|Community 1267]] +- [[_COMMUNITY_Community 1268|Community 1268]] +- [[_COMMUNITY_Community 1269|Community 1269]] +- [[_COMMUNITY_Community 1270|Community 1270]] +- [[_COMMUNITY_Community 1271|Community 1271]] +- [[_COMMUNITY_Community 1273|Community 1273]] +- [[_COMMUNITY_Community 1274|Community 1274]] +- [[_COMMUNITY_Community 1275|Community 1275]] +- [[_COMMUNITY_Community 1276|Community 1276]] +- [[_COMMUNITY_Community 1277|Community 1277]] +- [[_COMMUNITY_Community 1278|Community 1278]] +- [[_COMMUNITY_Community 1279|Community 1279]] +- [[_COMMUNITY_Community 1280|Community 1280]] +- [[_COMMUNITY_Community 1281|Community 1281]] +- [[_COMMUNITY_Community 1282|Community 1282]] +- [[_COMMUNITY_Community 1283|Community 1283]] +- [[_COMMUNITY_Community 1284|Community 1284]] +- [[_COMMUNITY_Community 1285|Community 1285]] +- [[_COMMUNITY_Community 1286|Community 1286]] +- [[_COMMUNITY_Community 1287|Community 1287]] +- [[_COMMUNITY_Community 1288|Community 1288]] +- [[_COMMUNITY_Community 1289|Community 1289]] +- [[_COMMUNITY_Community 1291|Community 1291]] +- [[_COMMUNITY_Community 1293|Community 1293]] +- [[_COMMUNITY_Community 1294|Community 1294]] +- [[_COMMUNITY_Community 1295|Community 1295]] +- [[_COMMUNITY_Community 1296|Community 1296]] +- [[_COMMUNITY_Community 1297|Community 1297]] +- [[_COMMUNITY_Community 1298|Community 1298]] +- [[_COMMUNITY_Community 1299|Community 1299]] +- [[_COMMUNITY_Community 1300|Community 1300]] +- [[_COMMUNITY_Community 1303|Community 1303]] +- [[_COMMUNITY_Community 1304|Community 1304]] +- [[_COMMUNITY_Community 1305|Community 1305]] +- [[_COMMUNITY_Community 1307|Community 1307]] +- [[_COMMUNITY_Community 1308|Community 1308]] +- [[_COMMUNITY_Community 1309|Community 1309]] +- [[_COMMUNITY_Community 1310|Community 1310]] +- [[_COMMUNITY_Community 1315|Community 1315]] ## God Nodes (most connected - your core abstractions) -1. `blocker` - 311 edges -2. `blocker` - 307 edges -3. `usePrisma()` - 299 edges -4. `blocker` - 214 edges -5. `blocker` - 212 edges -6. `useColors()` - 205 edges -7. `pricing` - 94 edges -8. `pricing` - 94 edges -9. `landing` - 88 edges +1. `usePrisma()` - 326 edges +2. `blocker` - 311 edges +3. `blocker` - 307 edges +4. `useColors()` - 279 edges +5. `blocker` - 214 edges +6. `blocker` - 212 edges +7. `apiFetch()` - 97 edges +8. `pricing` - 96 edges +9. `pricing` - 95 edges 10. `landing` - 88 edges ## Surprising Connections (you probably didn't know these) -- `addStreakEvent()` --implements--> `protection_state_log (append-only Schutz-Transitions-Log)` [INFERRED] - backend/server/db/streak.ts → docs/specs/protection-coverage-streak.md - `Lyra Modi (SOS-Crisis-Mode / Coach-Casual-Mode)` --semantically_similar_to--> `REQ-LYRA Lyra KI-Coach & Krisen-Behandlung (höchste Sicherheitsrelevanz)` [INFERRED] [semantically similar] ops/LYRA_PERSONA.md → docs/specs/diga/03-requirements-v0.md -- `CoachScreen()` --implements--> `REQ-LYRA Lyra KI-Coach & Krisen-Behandlung (höchste Sicherheitsrelevanz)` [INFERRED] - apps/rebreak-native/app/lyra.tsx → docs/specs/diga/03-requirements-v0.md -- `CoachScreen()` --implements--> `Lyra Persona — Single Source of Truth` [INFERRED] - apps/rebreak-native/app/lyra.tsx → ops/LYRA_PERSONA.md -- `parseLyraResponse()` --implements--> `REQ-LYRA Lyra KI-Coach & Krisen-Behandlung (höchste Sicherheitsrelevanz)` [INFERRED] - apps/rebreak-native/lib/lyraResponse.ts → docs/specs/diga/03-requirements-v0.md +- `getCrisisFallback()` --implements--> `SAFETY-REQ-LLM-001 Krisenreferenz-Pflicht (Recall 100%)` [INFERRED] + backend/server/utils/crisis-filter.ts → docs/specs/diga/05c-lyra-eval-v0.md +- `findActiveDeviceLock()` --implements--> `REQ-MAGIC Selbstbindung (RebreakMagic Lock-Modus, 24h-Cooldown)` [INFERRED] + backend/server/db/devices.ts → docs/specs/diga/03-requirements-v0.md +- `requestDeviceRelease()` --references--> `R-BYP-03 Selbstbindung wird zur Falle (legitimer Ausstieg scheitert)` [INFERRED] + backend/server/db/devices.ts → docs/specs/diga/04-risiko-akte-v0.md +- `addStreakEvent()` --implements--> `protection_state_log (append-only Schutz-Transitions-Log)` [INFERRED] + backend/server/db/streak.ts → docs/specs/protection-coverage-streak.md ## Import Cycles +- 1-file cycle: `apps/rebreak-magic/src-tauri/src/backend/api.rs -> apps/rebreak-magic/src-tauri/src/backend/api.rs` +- 1-file cycle: `apps/rebreak-magic/src-tauri/src/config.rs -> apps/rebreak-magic/src-tauri/src/config.rs` +- 1-file cycle: `apps/rebreak-magic/src-tauri/src/lib.rs -> apps/rebreak-magic/src-tauri/src/lib.rs` +- 1-file cycle: `apps/rebreak-magic/src-tauri/src/mdm/mod.rs -> apps/rebreak-magic/src-tauri/src/mdm/mod.rs` - 1-file cycle: `apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs -> apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs` - 1-file cycle: `apps/rebreak-magic-win/src-tauri/service/src/main.rs -> apps/rebreak-magic-win/src-tauri/service/src/main.rs` - 1-file cycle: `apps/rebreak-magic-win/src-tauri/src/setup.rs -> apps/rebreak-magic-win/src-tauri/src/setup.rs` +- 1-file cycle: `apps/rebreak-magic/src-tauri/src/platform/macos.rs -> apps/rebreak-magic/src-tauri/src/platform/macos.rs` +- 1-file cycle: `apps/rebreak-magic/src-tauri/src/platform/mod.rs -> apps/rebreak-magic/src-tauri/src/platform/mod.rs` +- 1-file cycle: `apps/rebreak-magic/src-tauri/src/platform/windows.rs -> apps/rebreak-magic/src-tauri/src/platform/windows.rs` +- 2-file cycle: `apps/rebreak-native/components/profile/StreakSection.tsx -> apps/rebreak-native/hooks/useProfileData.ts -> apps/rebreak-native/components/profile/StreakSection.tsx` - 3-file cycle: `apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx -> apps/rebreak-native/hooks/useProfileData.ts -> apps/rebreak-native/components/profile/StreakSection.tsx -> apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx` ## Hyperedges (group relationships) @@ -849,7 +1240,7 @@ - **IEC-62304-Traceability (Anforderung→Risikomaßnahme→Test→Lyra-Eval)** — diga_03_req_lyra, diga_04_risk_lyra_01_verpasste_krise, diga_05b_test_verifikation, diga_05c_crisis_detection_recall [EXTRACTED 0.95] - **FAGS/NLS Förder- & Partnerschafts-Strategie (Träger, Forschung, Geldgeber)** — entity_fags, entity_nls, entity_nbank, entity_uni_bremen, entity_step_lukaswerk, entity_bfarm [EXTRACTED 0.85] -## Communities (923 total, 53 thin omitted) +## Communities (1321 total, 64 thin omitted) ### Community 0 - "i18n: Blocker/Activation Strings" Cohesion: 0.01 @@ -868,44 +1259,44 @@ Cohesion: 0.01 Nodes (206): blocker, activate_app_lock_failed_msg, activate_app_lock_failed_title, activate_settings_btn, activate_url_failed_msg, activate_url_failed_title, activation_failed_title, add_domain (+198 more) ### Community 4 - "Debug & Dev Tools" -Cohesion: 0.03 -Nodes (49): prismaMock, VALID_COUNTRIES, ResolveResult, SupportedCountry, writeConsentRevoke(), decideCuratedDomain(), getCuratedDomains(), suggestCuratedDomain() (+41 more) +Cohesion: 0.04 +Nodes (52): createChatMessage(), countPostLikes(), createComment(), createCommentLike(), deleteCommentLike(), deletePostLike(), getCommentLike(), getCommentLikeCount() (+44 more) ### Community 5 - "Backend API Routes" -Cohesion: 0.08 -Nodes (24): ScoreProgressBar(), ScoreProgressBarProps, useSnakeSounds(), checkWinner(), getBestScore(), key(), saveBestScore(), Dir (+16 more) +Cohesion: 0.07 +Nodes (27): ScoreProgressBar(), ScoreProgressBarProps, useSnakeSounds(), checkWinner(), WIN_LINES, getBestScore(), key(), saveBestScore() (+19 more) ### Community 6 - "Backend Tests & Auth Routes" Cohesion: 0.04 -Nodes (69): getConsentLogsByUser(), setMailConnectionConsent(), writeConsentGrant(), getBlocklistedDomainsSet(), consumeOauthPendingState(), countMailConnections(), createOauthPendingState(), deleteAllMailConnections() (+61 more) +Nodes (84): resolveTypeAndValue(), TestResolveResult, getConsentLogsByUser(), getMailConnectionWithConsent(), setMailConnectionConsent(), writeConsentGrant(), writeConsentRevoke(), getBlocklistedDomainsSet() (+76 more) ### Community 7 - "Consent & Magic API Routes" -Cohesion: 0.05 -Nodes (41): DevicesScreen(), formatCountdown(), formatLastSeen(), formatSince(), MobileDeviceRow(), mobileIcon(), protectedDeviceIcon(), SectionCard() (+33 more) +Cohesion: 0.04 +Nodes (63): CooldownTestModeToggle(), DebugScreen(), DebugStub(), LogLine(), LyraEmotionPreviewCard(), ONBOARDING_STEPS, OnboardingStepValue, pad() (+55 more) ### Community 8 - "i18n: Pricing Strings" -Cohesion: 0.03 -Nodes (92): CoachTabRedirect(), CooldownTestModeToggle(), DebugScreen(), DebugStub(), LogLine(), LyraEmotionPreviewCard(), ONBOARDING_STEPS, OnboardingStepValue (+84 more) +Cohesion: 0.08 +Nodes (44): FilterChip, HomeScreen(), AppLayout(), ComposeCard(), Props, HeroShieldCheck(), Props, DomainFavicon() (+36 more) ### Community 9 - "Android DNS Filter (Kotlin)" -Cohesion: 0.04 -Nodes (61): prismaMock, requireUserMock, isAdminUser(), cancelCooldown(), createCooldown(), getActiveCooldown(), resolveCooldown(), findUserDevice() (+53 more) +Cohesion: 0.39 +Nodes (9): appendProtectionEvent(), appendProtectionEventDeduped(), computeProtectionCoverage(), getLastProtectionEvent(), ProtectionCoverage, ProtectionSource, utcDayStart(), VALID_SOURCES (+1 more) ### Community 10 - "i18n: Pricing Strings" Cohesion: 0.06 -Nodes (29): Any, Any, ByteArray, HashList, Int, String, Boolean, Int (+21 more) +Nodes (34): Any, Any, ByteArray, HashList, Int, String, Any, Boolean (+26 more) ### Community 11 - "i18n: Landing Page Strings" -Cohesion: 0.09 -Nodes (66): runtimeFiles, buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, abi, artifactName, output (+58 more) +Cohesion: 0.07 +Nodes (40): abi, artifactName, toolchain, core::@1b9a7d546b295b7d0867, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec (+32 more) ### Community 12 - "Tauri ACL Manifests (Magic Win)" Cohesion: 0.02 -Nodes (90): pricing, billing_forever, billing_monthly, billing_per_month, billing_per_year, billing_save_pct, billing_yearly, comp_add_domain (+82 more) +Nodes (91): pricing, billing_forever, billing_monthly, billing_per_month, billing_per_year, billing_save_pct, billing_yearly, comp_add_domain (+83 more) ### Community 13 - "i18n: Landing Page Strings" Cohesion: 0.02 -Nodes (89): pricing, billing_forever, billing_monthly, billing_per_month, billing_per_year, billing_save_pct, billing_yearly, comp_add_domain (+81 more) +Nodes (91): pricing, billing_forever, billing_monthly, billing_per_month, billing_per_year, billing_save_pct, billing_yearly, comp_add_domain (+83 more) ### Community 14 - "i18n: Auth Strings" Cohesion: 0.02 @@ -913,7 +1304,7 @@ Nodes (88): landing, blocker_badge, blocker_desc, blocker_feat_cooldown, blocker ### Community 15 - "Mail Protection Screen" Cohesion: 0.08 -Nodes (87): allow, deny, core, core:app, default_permission, core:event, global_scope_schema, core:image (+79 more) +Nodes (91): core, global_scope_schema, permission_sets, permissions, allow, deny, core, core:app (+83 more) ### Community 16 - "Devices Management Screen" Cohesion: 0.02 @@ -921,27 +1312,27 @@ Nodes (87): landing, blocker_badge, blocker_desc, blocker_feat_cooldown, blocker ### Community 17 - "App Root Layout & Shell" Cohesion: 0.04 -Nodes (69): CallScreen(), fmtDuration(), DmData, DmHistoryResponse, DmScreen(), makeStyles(), MediaLibraryModule, queryClient (+61 more) +Nodes (63): DmData, DmHistoryResponse, DmScreen(), makeStyles(), MediaLibraryModule, CoachScreen(), LoadingPulse(), MessageWithMeta (+55 more) ### Community 18 - "Community 18" -Cohesion: 0.05 -Nodes (71): BlockerScreen(), LayerSwitchCard(), Props, AndroidSetupFlow(), IosUnsupervisedSetupFlow(), ComposeCard(), Props, DiGaMilestoneModal() (+63 more) +Cohesion: 0.06 +Nodes (69): PickerOption, PLAN_ACCENT, Section, SectionRow, SubscriptionSheetProps, LayerSwitchCard(), Props, AndroidSetupFlow() (+61 more) ### Community 19 - "Community 19" Cohesion: 0.02 Nodes (82): auth, acceptTerms, acceptTermsSuffix, alreadyRegistered, appleSignin, appleSignup, backToLogin, backToLoginPlain (+74 more) ### Community 20 - "Community 20" -Cohesion: 0.05 -Nodes (45): EASE_OUT, LandingScreen(), PickerOption, PLAN_ACCENT, Section, SectionRow, SettingsScreen(), SubscriptionSheetProps (+37 more) +Cohesion: 0.03 +Nodes (75): EASE_OUT, LandingScreen(), DmConvUnreadSlice, queryClient, RootLayoutInner(), SettingsScreen(), ConfirmOtpScreen(), OTP_INPUT_STYLE (+67 more) ### Community 21 - "Community 21" -Cohesion: 0.03 -Nodes (65): MailScreen(), PLAN_LABEL, PROVIDER_CONFIG, ConnectBody, ConnectResult, PROVIDER_DOMAIN_MAP, useMailConnect(), UseMailConnectReturn (+57 more) +Cohesion: 0.08 +Nodes (47): MailScreen(), PLAN_LABEL, useMailDisconnect(), UseMailDisconnectReturn, useMailInterval(), aggregateToMonths(), aggregateToWeeks(), BlockedByDayEntry (+39 more) ### Community 22 - "Community 22" -Cohesion: 0.05 -Nodes (45): AddDomainSheet(), Props, DomainGrid(), DomainTile(), Props, STATUS_PRIORITY, timeAgo(), Props (+37 more) +Cohesion: 0.08 +Nodes (48): AddDomainSheet(), detectKind(), mailDomain(), PreviewCard(), Props, DomainGrid(), DomainTile(), Props (+40 more) ### Community 23 - "Community 23" Cohesion: 0.03 @@ -960,67 +1351,67 @@ Cohesion: 0.03 Nodes (70): dependencies, @config-plugins/react-native-callkeep, @config-plugins/react-native-webrtc, expo, expo-apple-authentication, expo-application, expo-av, expo-blur (+62 more) ### Community 27 - "Community 27" -Cohesion: 0.04 -Nodes (62): AppLayout(), AppHeader(), Props, AboutScreen(), CrisisScreen(), HotlineRowProps, useMe(), ApprovedDomainsData (+54 more) +Cohesion: 0.15 +Nodes (23): Option, Props, WheelPickerModal(), GERMAN_CITIES_BY_BUNDESLAND, getCitiesForBundesland(), BIRTH_YEAR_OPTIONS, BUNDESLAND_OPTIONS, Demographics (+15 more) ### Community 28 - "Community 28" -Cohesion: 0.05 -Nodes (44): appHeader, appName, editProfile, settings, signOut, sosLabel, sosSubtitle, sosTagline (+36 more) +Cohesion: 0.04 +Nodes (57): appHeader, appName, editProfile, settings, signOut, sosLabel, sosSubtitle, sosTagline (+49 more) ### Community 29 - "Community 29" -Cohesion: 0.11 -Nodes (19): UserDevice, DeviceLimitRow(), formatLastSeen(), platformIcon(), fetchVoipToken(), lastRegisteredToken, lastRegisteredVoipToken, registerPushTokenWithBackend() (+11 more) +Cohesion: 0.07 +Nodes (57): ASSETS_DIR, __dirname, initCommand(), InitOptions, templateInstall(), tryGitHubInstall(), removeSkillDir(), uninstallCommand() (+49 more) ### Community 30 - "Community 30" Cohesion: 0.06 -Nodes (32): Bool, Data, Date, Error, Int, NEFilterFlow, NEFilterNewFlowVerdict, NEProviderStopReason (+24 more) +Nodes (33): Bool, Data, Date, Error, Int, NEFilterFlow, NEFilterNewFlowVerdict, NEProviderStopReason (+25 more) ### Community 31 - "Community 31" Cohesion: 0.18 Nodes (16): Config: AdGuard DoH Vars (ADGUARD_BASE_URL/USER/PASSWORD), Config: ENCRYPTION_KEY (AES-256 for DB fields incl mdmDnsToken), Config: GROQ_API_KEY LLM Provider Var, Config: Infisical Secret Injection (no .env files), Backend Environment Variables Doc, RebreakMagic Device-Binding API Documentation, AdGuard Integration: /control/clients/add Persistent Client, Endpoint: POST /api/magic/devices/:deviceId/cancel-release (+8 more) ### Community 32 - "Community 32" -Cohesion: 0.08 -Nodes (29): autoReleaseInactiveDevices(), bindDeviceToUser(), cancelDeviceRelease(), cleanupStaleDevices(), countActiveMagicBindings(), deleteUserDevice(), DEVICE_SELECT, DeviceRecord (+21 more) +Cohesion: 0.07 +Nodes (32): autoReleaseInactiveDevices(), bindDeviceToUser(), cancelDeviceRelease(), cleanupStaleDevices(), countActiveMagicBindings(), deleteUserDevice(), DEVICE_SELECT, DeviceRecord (+24 more) ### Community 33 - "Community 33" -Cohesion: 0.08 -Nodes (22): Data, Error, HashList, Int, NEPacketTunnelNetworkSettings, NEProviderStopReason, NSObject, ExtLog (+14 more) +Cohesion: 0.03 +Nodes (77): prismaMock, requireUserMock, isAdminUser(), cancelCooldown(), createCooldown(), getActiveCooldown(), resolveCooldown(), DeviceProtectionStateRecord (+69 more) ### Community 34 - "Community 34" -Cohesion: 0.07 -Nodes (31): deleteUserPosts(), listMagicRemovalCredentials(), MagicRemovalCredential, deleteAllUserCustomDomains(), deleteUserMailClassificationSamples(), deleteProfile(), createSosSession(), deleteUserSosSessions() (+23 more) +Cohesion: 0.06 +Nodes (62): DemographicsResp, DiGaMilestoneModal(), MILESTONES, storageKey(), ApprovedDomainsData, BackendCooldownEntry, CooldownHistoryData, Demographics (+54 more) ### Community 35 - "Community 35" -Cohesion: 0.04 -Nodes (57): appHeader, appName, editProfile, settings, signOut, sosLabel, sosSubtitle, sosTagline (+49 more) +Cohesion: 0.06 +Nodes (38): landing, appHeader, appName, editProfile, settings, signOut, sosLabel, sosSubtitle (+30 more) ### Community 36 - "Community 36" Cohesion: 0.08 Nodes (44): Option, PathBuf, Result, String, Duration, Error, Option, ProtectionState (+36 more) ### Community 37 - "Community 37" -Cohesion: 0.06 -Nodes (46): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+38 more) +Cohesion: 0.08 +Nodes (39): DevicesScreen(), formatCountdown(), formatLastSeen(), formatSince(), MobileDeviceRow(), mobileIcon(), protectedDeviceIcon(), SectionCard() (+31 more) ### Community 38 - "Community 38" -Cohesion: 0.06 -Nodes (46): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+38 more) +Cohesion: 0.05 +Nodes (46): commands, description, identifier, commands, description, identifier, commands, description (+38 more) ### Community 39 - "Community 39" -Cohesion: 0.08 -Nodes (28): countPostLikes(), createComment(), createCommentLike(), deleteCommentLike(), deletePostLike(), getCommentLike(), getCommentsByPost(), getPostById() (+20 more) +Cohesion: 0.05 +Nodes (31): prismaMock, VALID_COUNTRIES, ResolveResult, CustomDomainType, SUPPORTED_COUNTRIES, SupportedCountry, CuratedDomainStatus, decideCuratedDomain() (+23 more) ### Community 40 - "Community 40" Cohesion: 0.08 Nodes (47): lyra, body, cta_no, cta_yes, hint, body, audio_disable, audio_loading (+39 more) ### Community 41 - "Community 41" -Cohesion: 0.18 -Nodes (19): lyra, body, audio_disable, audio_loading, audio_play, audio_stop, done, nickname (+11 more) +Cohesion: 0.05 +Nodes (70): nickname, error_invalid_input, lyra, placeholder, body, cta_no, cta_yes, hint (+62 more) ### Community 42 - "Community 42" -Cohesion: 0.05 +Cohesion: 0.06 Nodes (42): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+34 more) ### Community 43 - "Community 43" @@ -1029,31 +1420,31 @@ Nodes (26): appHeader, appName, editProfile, signOut, sosLabel, sosSubtitle, sos ### Community 44 - "Community 44" Cohesion: 0.05 -Nodes (42): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+34 more) +Nodes (46): commands, description, identifier, commands, description, identifier, commands, description (+38 more) ### Community 45 - "Community 45" Cohesion: 0.08 Nodes (32): nickname, error_invalid_input, coach, crisis_bar_label, feedback_saved, input_placeholder, lyra, modeBadge (+24 more) ### Community 46 - "Community 46" -Cohesion: 0.07 -Nodes (32): Any, Bool, ExpoReactNativeFactoryDelegate, NSUserActivity, RCTBridge, RCTReactNativeFactory, String, UIApplication (+24 more) +Cohesion: 0.08 +Nodes (33): Any, Bool, ExpoReactNativeFactoryDelegate, NSUserActivity, RCTBridge, RCTReactNativeFactory, String, UIApplication (+25 more) ### Community 47 - "Community 47" -Cohesion: 0.10 -Nodes (23): NotificationsScreen(), INPUT_STYLE, OAuthProvider, SignUpScreen(), EmptyState(), Props, HeroShieldCheck(), Props (+15 more) +Cohesion: 0.06 +Nodes (34): deleteUserPosts(), listMagicRemovalCredentials(), MagicRemovalCredential, deleteAllUserCustomDomains(), deleteUserMailClassificationSamples(), deleteProfile(), createSosSession(), deleteUserSosSessions() (+26 more) ### Community 48 - "Community 48" -Cohesion: 0.12 -Nodes (12): Candidate, detectAndSaveFeedback(), deleteMemoryById(), enforceMaxMemories(), getMemoriesForUser(), LyraMemoryRow, markReferenced(), upsertMemory() (+4 more) +Cohesion: 0.27 +Nodes (10): MagicSessionState, useCurrentMagicDevice(), useIphoneDevice(), useMagicDevices(), useMagicSession(), ProtectionStatus, useProtectionStatus(), DesktopProtectionState (+2 more) ### Community 49 - "Community 49" -Cohesion: 0.24 -Nodes (14): nickname, error_invalid_input, lyra, body, diga_choice, diga_code, nickname, privacy (+6 more) +Cohesion: 0.04 +Nodes (45): commands, description, identifier, commands, description, identifier, commands, description (+37 more) ### Community 50 - "Community 50" -Cohesion: 0.10 -Nodes (16): ContentView, Bool, String, String, Binding, Bool, String, WizardStep (+8 more) +Cohesion: 0.11 +Nodes (13): ContentView, Bool, String, String, Binding, Bool, String, ContentView (+5 more) ### Community 51 - "Community 51" Cohesion: 0.05 @@ -1064,40 +1455,40 @@ Cohesion: 0.07 Nodes (38): pnpm-workspace.yaml (apps/*, backend), DiGA-Listung (BfArM) Pfad, Landesfachstelle Glücksspielsucht Niedersachsen (LSG-Nds), MHH AG Verhaltenssüchte (Prof. Astrid Müller), NBank LOI förderstrategie, FAGS-Outreach-Paket Rebreak Beta + NBank-LOIs, Fachverband Glücksspielsucht e.V. (FAGS), Bielefeld, MDM-Lock Add-On (3-5€ on top auf Pro/Legend) (+30 more) ### Community 53 - "Community 53" -Cohesion: 0.09 -Nodes (31): ChatScreen(), DmItem(), formatTime(), makeStyles(), FilterChip, HomeScreen(), DomainFaviconProps, DomainVoteCardProps (+23 more) +Cohesion: 0.04 +Nodes (97): BlockerScreen(), ChatScreen(), DmItem(), formatTime(), makeStyles(), CoachTabRedirect(), MailOAuthCallback(), CooldownBanner() (+89 more) ### Community 54 - "Community 54" -Cohesion: 0.14 -Nodes (21): Bool, Double, Int, String, UInt32, Double, Bool, Double (+13 more) +Cohesion: 0.12 +Nodes (31): AnimatedCounter(), DeltaBadge(), FaqItem(), KpiCard(), LegendItem(), Props, ProtectionDetailsSheet(), StatsResponse (+23 more) ### Community 55 - "Community 55" Cohesion: 0.15 Nodes (24): protection, protection, android_a11y_pending_body, android_a11y_pending_title, android_restart_body, android_restart_later, android_restart_now, android_restart_title (+16 more) ### Community 56 - "Community 56" -Cohesion: 0.19 -Nodes (32): runtimeFiles, buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, abi, artifactName, output (+24 more) +Cohesion: 0.29 +Nodes (6): buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, cppFileExtensions, toolchains ### Community 57 - "Community 57" -Cohesion: 0.19 -Nodes (32): runtimeFiles, buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, abi, artifactName, output (+24 more) +Cohesion: 0.29 +Nodes (6): buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, cppFileExtensions, toolchains ### Community 58 - "Community 58" -Cohesion: 0.19 -Nodes (32): runtimeFiles, buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, abi, artifactName, output (+24 more) +Cohesion: 0.29 +Nodes (6): buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, cppFileExtensions, toolchains ### Community 59 - "Community 59" -Cohesion: 0.19 -Nodes (32): runtimeFiles, buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, abi, artifactName, output (+24 more) +Cohesion: 0.29 +Nodes (6): buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, cppFileExtensions, toolchains ### Community 60 - "Community 60" -Cohesion: 0.13 -Nodes (26): DiGA/MDR Dossier-Plan & Arbeitsteilung, Kostenlose BfArM-Hersteller-Beratung (Klasse I/IIa-Hebel), Zweckbestimmung / Intended Use v0 (Dok 01), Indikation Glücksspielstörung (ICD-10 F63.0 / ICD-11 6C50), Intended-Use-Claim (Begleitung, kein Therapie-/Diagnose-Ersatz), MDR Rule 11 Klassifizierung (I/IIa, größter Kostenhebel), REQ-MAIL Mail-Schutz (deterministische Trigger-Mail-Entfernung), REQ-SOS Werkzeuge (4-7-8-Atemübung, Ablenkungs-Spiele) (+18 more) +Cohesion: 0.11 +Nodes (29): DiGA/MDR Dossier-Plan & Arbeitsteilung, Kostenlose BfArM-Hersteller-Beratung (Klasse I/IIa-Hebel), Zweckbestimmung / Intended Use v0 (Dok 01), Indikation Glücksspielstörung (ICD-10 F63.0 / ICD-11 6C50), Intended-Use-Claim (Begleitung, kein Therapie-/Diagnose-Ersatz), MDR Rule 11 Klassifizierung (I/IIa, größter Kostenhebel), REQ-MAGIC Selbstbindung (RebreakMagic Lock-Modus, 24h-Cooldown), REQ-MAIL Mail-Schutz (deterministische Trigger-Mail-Entfernung) (+21 more) ### Community 61 - "Community 61" -Cohesion: 0.19 -Nodes (32): runtimeFiles, buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, abi, artifactName, output (+24 more) +Cohesion: 0.29 +Nodes (26): runtimeFiles, abi, artifactName, output, libraries, appmodules::@6890427a1f51a3e7e1df, core::@1b9a7d546b295b7d0867, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb (+18 more) ### Community 62 - "Community 62" Cohesion: 0.12 @@ -1108,32 +1499,32 @@ Cohesion: 0.16 Nodes (24): archive_release_notes_to_changelog(), bump_android_version(), bump_ios_version(), cleanup_build_artifacts(), collect_release_notes(), deploy_android(), deploy_mdm(), deploy_testflight() (+16 more) ### Community 64 - "Community 64" -Cohesion: 0.20 -Nodes (31): runtimeFiles, buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, abi, artifactName, output (+23 more) +Cohesion: 0.31 +Nodes (25): runtimeFiles, abi, artifactName, output, libraries, appmodules::@6890427a1f51a3e7e1df, core::@1b9a7d546b295b7d0867, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb (+17 more) ### Community 65 - "Community 65" -Cohesion: 0.06 -Nodes (30): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+22 more) +Cohesion: 0.12 +Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 66 - "Community 66" -Cohesion: 0.07 -Nodes (3): RebreakProtectionModule, Module, RebreakProtectionModule +Cohesion: 0.12 +Nodes (4): RebreakProtectionModule, Module, RebreakProtectionModule, RebreakProtectionModuleWeb ### Community 67 - "Community 67" -Cohesion: 0.26 -Nodes (9): URL, MagicAPIClient, MagicError, configMissing, decodingError, httpError, limitReached, networkError (+1 more) +Cohesion: 0.16 +Nodes (24): Bool, Date, String, URL, Codable, MagicAPIClient.swift (/api/magic/*), Config, MagicAPIClient (+16 more) ### Community 68 - "Community 68" -Cohesion: 0.15 -Nodes (31): refreshAndSaveTokens(), assertEnv(), clearConnectionError(), coalescePending, decrypt(), encrypt(), getCredentialsForConnection(), getKey() (+23 more) +Cohesion: 0.13 +Nodes (33): refreshAndSaveTokens(), assertEnv(), clearConnectionError(), coalescePending, decrypt(), encrypt(), getCredentialsForConnection(), getKey() (+25 more) ### Community 69 - "Community 69" -Cohesion: 0.15 -Nodes (13): home, greeting_day, greeting_evening, greeting_morning, quick_access, quote_of_day, start, stats_chats (+5 more) +Cohesion: 0.10 +Nodes (17): Candidate, detectAndSaveFeedback(), PROVIDER_CONFIG, SosCandidate, deleteMemoryById(), enforceMaxMemories(), getMemoriesForUser(), LyraMemoryRow (+9 more) ### Community 70 - "Community 70" Cohesion: 0.06 -Nodes (34): nav, download_app, login, cta_button, cta_title, resources, blocklist_desc, blocklist_title (+26 more) +Nodes (33): cta_button, cta_title, resources, blocklist_desc, blocklist_title, chart_label, cta_button, cta_title (+25 more) ### Community 71 - "Community 71" Cohesion: 0.13 @@ -1144,40 +1535,40 @@ Cohesion: 0.09 Nodes (28): MDM ARCHITECTURE.md (NanoMDM server stack), bootstrap-tool README.md (rebreak-supervise.sh), AdGuard Home (DoH resolver + QueryLog), Apple Push Cert Flow (mdmcert.download signing), Backup-Sandwich (backup→wipe→supervise→restore), DoH ClientID Handshake (/dns-query/ → CP field), macOS has no Supervision (UAMDM + RemovalPassword instead), NanoMDM Server (rebreak-mdm, 178.105.101.137) (+20 more) ### Community 73 - "Community 73" -Cohesion: 0.11 -Nodes (20): Bool, MagicDevice, String, Timer, Void, Date, MagicDevice, String (+12 more) +Cohesion: 0.18 +Nodes (12): Bool, MagicDevice, String, Timer, Void, HubDeviceAction, MagicUserProfile, DeviceHubView (+4 more) ### Community 74 - "Community 74" -Cohesion: 0.10 -Nodes (24): Any, Binding, Bool, Configuration, ErrorDetails, String, CaseIterable, Field (+16 more) +Cohesion: 0.22 +Nodes (9): Any, Binding, Bool, Configuration, ErrorDetails, Set, ConfigurationView, ValidationError (+1 more) ### Community 75 - "Community 75" -Cohesion: 0.12 -Nodes (18): Art. 9 DSGVO besondere Kategorien (höchste Schutzstufe), FAGS / fags e.V. (Fachverband Glücksspielsucht, Ilona Füchtenschnieder), GGL (Gemeinsame Glücksspielbehörde der Länder, OASIS-Aufsicht), NLS Hannover (Niedersächsische Landesstelle für Suchtfragen), OASIS (staatliches Spielersperrsystem), Raynis GmbH (Träger/Holding hinter Rebreak), STEP gGmbH / Lukas-Werk (Träger Niedersachsen), Uni Bremen AG Glücksspielforschung (Prof. Meyer) (+10 more) +Cohesion: 0.14 +Nodes (16): FAGS / fags e.V. (Fachverband Glücksspielsucht, Ilona Füchtenschnieder), GGL (Gemeinsame Glücksspielbehörde der Länder, OASIS-Aufsicht), NLS Hannover (Niedersächsische Landesstelle für Suchtfragen), OASIS (staatliches Spielersperrsystem), Raynis GmbH (Träger/Holding hinter Rebreak), STEP gGmbH / Lukas-Werk (Träger Niedersachsen), Uni Bremen AG Glücksspielforschung (Prof. Meyer), Modellprojekt-Geld-Mechanik (Land→Träger→Rebreak) (+8 more) ### Community 76 - "Community 76" -Cohesion: 0.07 -Nodes (30): cta_button, cta_title, resources, blocklist_desc, blocklist_title, chart_label, fact1_text, fact1_title (+22 more) +Cohesion: 0.06 +Nodes (33): cta_button, cta_title, resources, blocklist_desc, blocklist_title, chart_label, cta_button, cta_title (+25 more) ### Community 77 - "Community 77" Cohesion: 0.07 Nodes (29): dependencies, chart.js, @iconify-json/heroicons, nuxt, @nuxt/fonts, @nuxt/icon, @nuxt/image, @nuxt/ui (+21 more) ### Community 78 - "Community 78" -Cohesion: 0.20 -Nodes (20): AppHandle, Option, Result, String, activateProtection(), cancelRelease(), getState(), logout() (+12 more) +Cohesion: 0.08 +Nodes (67): AppHandle, AppConfig, AppResult, Option, String, Value, Vec, AppHandle (+59 more) ### Community 79 - "Community 79" Cohesion: 0.10 -Nodes (23): crisisPrompts, EvalPrompt, EXPECTED_CRISIS_MATCHES, harmlessPrompts, PROMPTS_DIR, REQ-LYRA Lyra KI-Coach & Krisen-Behandlung (höchste Sicherheitsrelevanz), Deterministischer Krisen-Keyword-Pre-Filter (crisis-filter.ts), R-LYRA-01 verpasste Krise/Suizidalität (S4, Top-Risiko) (+15 more) +Nodes (20): crisisPrompts, EvalPrompt, EXPECTED_CRISIS_MATCHES, harmlessPrompts, PROMPTS_DIR, REQ-LYRA Lyra KI-Coach & Krisen-Behandlung (höchste Sicherheitsrelevanz), Deterministischer Krisen-Keyword-Pre-Filter (crisis-filter.ts), R-LYRA-01 verpasste Krise/Suizidalität (S4, Top-Risiko) (+12 more) ### Community 80 - "Community 80" -Cohesion: 0.13 -Nodes (18): ProtectedDeviceRow(), confirmProtectedDeviceInstalled(), countActiveProtectedDevices(), createProtectedDevice(), DEVICE_SELECT, DEVICE_SELECT_WITH_TOKEN, getDeviceBlocklistMode(), getProtectedDevice() (+10 more) +Cohesion: 0.14 +Nodes (20): ProtectedDeviceRow(), confirmProtectedDeviceInstalled(), countActiveProtectedDevices(), createProtectedDevice(), DEVICE_SELECT, DEVICE_SELECT_WITH_TOKEN, getDeviceBlocklistMode(), getProtectedDevice() (+12 more) ### Community 81 - "Community 81" -Cohesion: 0.14 -Nodes (17): Bool, Date, String, PairRedeemResponseData, AuthError, codeExpired, codeUsed, configMissing (+9 more) +Cohesion: 0.13 +Nodes (18): Bool, Date, String, PairRedeemResponseData, AuthError, codeExpired, codeUsed, configMissing (+10 more) ### Community 82 - "Community 82" Cohesion: 0.13 @@ -1188,168 +1579,168 @@ Cohesion: 0.13 Nodes (29): plan, plan, billing_monthly, billing_savings, billing_yearly, cta_legend, cta_trial, disclaimer (+21 more) ### Community 84 - "Community 84" -Cohesion: 0.17 -Nodes (27): anyOf, properties, required, definitions, Capability, CapabilityRemote, Number, PermissionEntry (+19 more) +Cohesion: 0.28 +Nodes (18): properties, required, Capability, CapabilityRemote, description, $ref, default, uniqueItems (+10 more) ### Community 85 - "Community 85" -Cohesion: 0.17 -Nodes (27): anyOf, properties, required, definitions, Capability, CapabilityRemote, Number, PermissionEntry (+19 more) +Cohesion: 0.28 +Nodes (18): properties, required, Capability, CapabilityRemote, description, $ref, default, uniqueItems (+10 more) ### Community 86 - "Community 86" -Cohesion: 0.25 -Nodes (26): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, abi, artifactName, output, runtimeFiles, libraries (+18 more) +Cohesion: 0.22 +Nodes (8): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, libraries, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, abi, artifactName, runtimeFiles ### Community 87 - "Community 87" -Cohesion: 0.25 -Nodes (26): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, abi, artifactName, output, runtimeFiles, libraries (+18 more) +Cohesion: 0.22 +Nodes (8): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, libraries, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, abi, artifactName, runtimeFiles ### Community 88 - "Community 88" -Cohesion: 0.25 -Nodes (26): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, abi, artifactName, output, runtimeFiles, libraries (+18 more) +Cohesion: 0.22 +Nodes (8): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, libraries, react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, runtimeFiles ### Community 89 - "Community 89" -Cohesion: 0.25 -Nodes (26): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, abi, artifactName, output, runtimeFiles, libraries (+18 more) +Cohesion: 0.22 +Nodes (8): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, libraries, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, abi, artifactName, runtimeFiles ### Community 90 - "Community 90" -Cohesion: 0.25 -Nodes (26): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, abi, artifactName, output, runtimeFiles, libraries (+18 more) +Cohesion: 0.22 +Nodes (8): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, libraries, react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, abi, artifactName, runtimeFiles ### Community 91 - "Community 91" -Cohesion: 0.25 -Nodes (26): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, abi, artifactName, output, runtimeFiles, libraries (+18 more) +Cohesion: 0.32 +Nodes (23): abi, artifactName, output, runtimeFiles, libraries, appmodules::@6890427a1f51a3e7e1df, core::@1b9a7d546b295b7d0867, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb (+15 more) ### Community 92 - "Community 92" -Cohesion: 0.25 -Nodes (26): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, abi, artifactName, output, runtimeFiles, libraries (+18 more) +Cohesion: 0.32 +Nodes (23): abi, artifactName, output, runtimeFiles, libraries, appmodules::@6890427a1f51a3e7e1df, core::@1b9a7d546b295b7d0867, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb (+15 more) ### Community 93 - "Community 93" -Cohesion: 0.31 -Nodes (14): ActivateResult, DeviceLayers, DisableResult, HealthProbeOpts, HealthProbeOutcome, HealthProbeResult, ProtectionLayerKey, RebreakProtectionEvents (+6 more) +Cohesion: 0.10 +Nodes (32): iconForType(), NotificationRow(), NotificationsScreen(), INPUT_STYLE, OAuthProvider, SignUpScreen(), EmptyState(), Props (+24 more) ### Community 94 - "Community 94" Cohesion: 0.10 -Nodes (25): buildType, serviceAccountKeyPath, track, build, development, preview, production, cli (+17 more) +Nodes (34): autoIncrement, buildType, serviceAccountKeyPath, track, build, development, preview, production (+26 more) ### Community 95 - "Community 95" -Cohesion: 0.16 -Nodes (12): callIdToUuid(), displayIncomingCall(), endCall(), reportConnected(), reportEnded(), setupCallKeep(), startOutgoingCall(), CONFETTI_COLORS (+4 more) +Cohesion: 0.13 +Nodes (27): ConnectBody, ConnectResult, detectProvider(), MailProvider, PROVIDER_DOMAIN_MAP, useMailConnect(), UseMailConnectReturn, classifyMailError() (+19 more) ### Community 96 - "Community 96" Cohesion: 0.08 Nodes (24): dependencies, nuxt, @nuxt/icon, @nuxt/ui, @nuxtjs/supabase, tailwindcss, vue, vue-router (+16 more) ### Community 97 - "Community 97" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 98 - "Community 98" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 99 - "Community 99" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 100 - "Community 100" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 101 - "Community 101" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 102 - "Community 102" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 103 - "Community 103" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 104 - "Community 104" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 105 - "Community 105" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 106 - "Community 106" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 107 - "Community 107" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 108 - "Community 108" -Cohesion: 0.08 +Cohesion: 0.09 Nodes (24): backtraceGraph, commands, files, nodes, installers, paths, build, source (+16 more) ### Community 109 - "Community 109" -Cohesion: 0.15 -Nodes (13): Bool, DeviceState, String, DetectorError, cfgutilMissing, deviceLocked, ideviceinfoMissing, noDevice (+5 more) +Cohesion: 0.08 +Nodes (28): Bool, String, Bool, DeviceState, String, Bool, Date, Int (+20 more) ### Community 110 - "Community 110" -Cohesion: 0.19 -Nodes (15): Client, Option, Result, Self, String, T, Vec, Response (+7 more) +Cohesion: 0.18 +Nodes (30): REQ-PROT Schutz/Blocker (geräteweite Zugangserschwerung), R-FALSE-01 falsche Sicherheit bei inaktivem Schutz, isProtectionActive(), resolveEventSource(), useProtectionState(), UseProtectionStateReturn, BackendCooldownStatus, BackendProtectionState (+22 more) ### Community 111 - "Community 111" -Cohesion: 0.11 -Nodes (23): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+15 more) +Cohesion: 0.08 +Nodes (34): bool, int, ansi_ljust(), DesignSystemGenerator, _detect_page_type(), format_ascii_box(), format_markdown(), format_master_md() (+26 more) ### Community 112 - "Community 112" -Cohesion: 0.12 -Nodes (9): Long, String, Long, String, DomainHasher, buildHashListBinary(), etagFor(), hashDomain() (+1 more) +Cohesion: 0.14 +Nodes (10): Long, String, Long, String, DomainHasher, DomainHasherTest, buildHashListBinary(), etagFor() (+2 more) ### Community 113 - "Community 113" -Cohesion: 0.11 -Nodes (23): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+15 more) +Cohesion: 0.05 +Nodes (41): 502 Bad Gateway von nginx, Apple Push Zertifikat, Auf neue Version updaten, Cert-Expiry prüfen, Config testen, DB-Backup, DB-Passwort abrufen, DB-Restore (nach Backup) (+33 more) ### Community 114 - "Community 114" -Cohesion: 0.11 -Nodes (23): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+15 more) +Cohesion: 0.05 +Nodes (41): commands, description, identifier, commands, description, identifier, commands, description (+33 more) ### Community 115 - "Community 115" -Cohesion: 0.11 -Nodes (23): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+15 more) +Cohesion: 0.05 +Nodes (41): commands, description, identifier, commands, description, identifier, commands, description (+33 more) ### Community 116 - "Community 116" -Cohesion: 0.11 -Nodes (23): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+15 more) +Cohesion: 0.04 +Nodes (58): commands, description, identifier, commands, description, identifier, commands, description (+50 more) ### Community 117 - "Community 117" -Cohesion: 0.11 -Nodes (23): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+15 more) +Cohesion: 0.07 +Nodes (40): AppConfig, AppResult, Client, Option, Self, String, Vec, Client (+32 more) ### Community 118 - "Community 118" -Cohesion: 0.11 -Nodes (23): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+15 more) +Cohesion: 0.06 +Nodes (38): commands, description, identifier, commands, description, identifier, commands, description (+30 more) ### Community 119 - "Community 119" -Cohesion: 0.11 -Nodes (23): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+15 more) +Cohesion: 0.06 +Nodes (36): commands, description, identifier, commands, description, identifier, commands, description (+28 more) ### Community 120 - "Community 120" -Cohesion: 0.11 -Nodes (23): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+15 more) +Cohesion: 0.06 +Nodes (37): abi, artifactName, output, runtimeFiles, toolchain, output, appmodules::@6890427a1f51a3e7e1df, react_codegen_RNCSlider::@4898bc4726ecf1751b6a (+29 more) ### Community 121 - "Community 121" -Cohesion: 0.11 -Nodes (23): jsonFile, kind, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator, paths (+15 more) +Cohesion: 0.05 +Nodes (36): 1. Executive Summary, 2.10 Dynamic-Type / Font-Scaling — ⚠️ (Cross-cutting), 2.11 Color-Contrast — ⚠️ (Cross-cutting), 2.12 Screen-Reader-Detection — 🔴 (Cross-cutting), 2.13 Touch-Target-Size — ⚠️, 2.1 SOS-Flow — `app/urge.tsx` (1333 Lines) — 🔴, 2.2 SOS-Spiele — `components/urge/UrgeGames.tsx` (1067 Lines) — 🔴, 2.3 Profile + Demographics — `app/profile/index.tsx` + `components/profile/DemographicsAccordion.tsx` (272 / 621 Lines) — 🔴 (+28 more) ### Community 122 - "Community 122" Cohesion: 0.20 Nodes (13): Any, Bool, Int, String, EnqueueResult, MDMClient, MDMClientError, configMalformed (+5 more) ### Community 123 - "Community 123" -Cohesion: 0.09 -Nodes (21): String, Int, CodingKey, CodingKeys, bitCount, bits, falsePositiveTolerance, hashCount (+13 more) +Cohesion: 0.08 +Nodes (21): Int, CodingKey, CodingKeys, bitCount, bits, byteCount, falsePositiveTolerance, hashCount (+13 more) ### Community 124 - "Community 124" Cohesion: 0.13 -Nodes (17): AuthSession, Bool, Date, DeviceState, WizardStep, advance(), DebugSupervisionMode, forceSupervised (+9 more) +Nodes (18): AuthSession, Bool, Date, DeviceState, WizardStep, advance(), DebugSupervisionMode, forceSupervised (+10 more) ### Community 125 - "Community 125" Cohesion: 0.09 @@ -1360,12 +1751,12 @@ Cohesion: 0.09 Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) ### Community 127 - "Community 127" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.19 +Nodes (16): Lang, LANG_NAME, LANGS, LYRA_TOPICS, lyraSystemPrompt(), LyraTopic, rebreakSystemPrompt(), TOPIC_HINTS (+8 more) ### Community 128 - "Community 128" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.06 +Nodes (34): 0. Warum dieser Auftrag, 10. Grober Aufwand, 11. Offene Entscheidungen für den User, 12. Quellen, 1.1 Android-VPN-Filter — das Referenz-Design, 1.2 iOS-Bestand, 1.3 Expo-Config-Plugin, 1.4 JS-Orchestrierung (+26 more) ### Community 129 - "Community 129" Cohesion: 0.25 @@ -1376,16 +1767,16 @@ Cohesion: 0.04 Nodes (59): settings, applock, prompt, signOut_body, signOut_title, subtitle, title, unlock (+51 more) ### Community 131 - "Community 131" -Cohesion: 0.09 -Nodes (23): String, ActivityState, configurationDisableEnd, configurationDisableFailed, configurationDisableStart, configurationEnableEnd, configurationEnableFailed, configurationEnableStart (+15 more) +Cohesion: 0.08 +Nodes (24): ActivityState, configurationDisableEnd, configurationDisableFailed, configurationDisableStart, configurationEnableEnd, configurationEnableFailed, configurationEnableStart, configurationLoadEmpty (+16 more) ### Community 132 - "Community 132" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.06 +Nodes (34): 1.1 Hauptmechanik: Apple Configuration Profiles, 1.2 Profile-Schutz-Mechanik, 1.3 "Profile Locking" — Dashboard-Feature (NICHT Apple-Mechanik), 1.4 "Managed Mode" für Browser-Extensions, 1.5 Was TechLockdown NICHT erwähnt, 1. TechLockdown-Findings (verifiziert via techlockdown.com), 2.1 "Supervision" auf Mac existiert NICHT, 2.2 macOS Enrollment-Pfade (+26 more) ### Community 133 - "Community 133" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.06 +Nodes (33): 1.1 Mac-App (SwiftUI, .app-Bundle), 1.2 Windows-App (Tauri 2 / Rust), 1.3 Backend-Berührungspunkte, 1. RE-Exposure-Analyse: Was liegt aktuell offen?, 2. Sicherheitsbewertung: Was ist tatsächlich kritisch?, 3.10 Binary-Obfuscation, 3.11 Certificate Pinning für Backend-Calls, 3.12 Code-Signing Status (+25 more) ### Community 134 - "Community 134" Cohesion: 0.09 @@ -1400,16 +1791,16 @@ Cohesion: 0.09 Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) ### Community 137 - "Community 137" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.07 +Nodes (26): 10. Migrationsschritte, 11. Risiken & Mitigationen, 12. Offene Punkte, 13. Erwartetes Ergebnis, 1. Zusammenfassung, 2. Kontext & Ausgangslage, 3. Ziele, 4. Nicht-Ziele (+18 more) ### Community 138 - "Community 138" Cohesion: 0.09 Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) ### Community 139 - "Community 139" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.06 +Nodes (32): Pre-Delivery Checklist, Accessibility, Available Domains, Available Stacks, Common Rules for Professional UI, Common Sticking Points, Example Workflow, How to Use This Skill (+24 more) ### Community 140 - "Community 140" Cohesion: 0.09 @@ -1424,20 +1815,20 @@ Cohesion: 0.09 Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) ### Community 143 - "Community 143" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.06 +Nodes (32): Pre-Delivery Checklist, Accessibility, Available Domains, Available Stacks, Common Rules for Professional UI, Common Sticking Points, Example Workflow, How to Use This Skill (+24 more) ### Community 144 - "Community 144" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.07 +Nodes (31): jsonFile, kind, version, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator (+23 more) ### Community 145 - "Community 145" Cohesion: 0.09 Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) ### Community 146 - "Community 146" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.07 +Nodes (31): jsonFile, kind, version, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator (+23 more) ### Community 147 - "Community 147" Cohesion: 0.09 @@ -1452,16 +1843,16 @@ Cohesion: 0.09 Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) ### Community 150 - "Community 150" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.07 +Nodes (31): jsonFile, kind, version, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator (+23 more) ### Community 151 - "Community 151" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.07 +Nodes (31): jsonFile, kind, version, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator (+23 more) ### Community 152 - "Community 152" -Cohesion: 0.09 -Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) +Cohesion: 0.07 +Nodes (31): jsonFile, kind, version, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator (+23 more) ### Community 153 - "Community 153" Cohesion: 0.09 @@ -1476,48 +1867,48 @@ Cohesion: 0.09 Nodes (22): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, dependencies (+14 more) ### Community 156 - "Community 156" -Cohesion: 0.14 -Nodes (23): Option, Props, WheelPickerModal(), GERMAN_CITIES_BY_BUNDESLAND, getCitiesForBundesland(), BIRTH_YEAR_OPTIONS, BUNDESLAND_OPTIONS, Demographics (+15 more) +Cohesion: 0.16 +Nodes (11): Data, Error, HashList, Int, NEPacketTunnelNetworkSettings, NEProviderStopReason, NSObject, ExtLog (+3 more) ### Community 157 - "Community 157" -Cohesion: 0.11 -Nodes (18): MockMailbox, GAMBLING_KEYWORDS, GAMBLING_WHITELIST, ClassificationAction, ClassificationFeatures, ClassificationResult, classifyMail(), ClassifyMailParams (+10 more) +Cohesion: 0.14 +Nodes (21): filterScannable(), MockMailbox, GAMBLING_KEYWORDS, GAMBLING_WHITELIST, isGamblingText(), ClassificationAction, ClassificationFeatures, ClassificationResult (+13 more) ### Community 158 - "Community 158" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.07 +Nodes (31): jsonFile, kind, version, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator (+23 more) ### Community 159 - "Community 159" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.07 +Nodes (31): jsonFile, kind, version, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator (+23 more) ### Community 160 - "Community 160" Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 161 - "Community 161" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.07 +Nodes (31): jsonFile, kind, version, cache-v2, cmakeFiles-v1, codemodel-v2, cmake, generator (+23 more) ### Community 162 - "Community 162" Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 163 - "Community 163" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.06 +Nodes (31): 1. Use-Case + Motivation, 2.1 Aktueller Filter-Pfad (Ist-Zustand), 2.2 Ziel-Architektur (Soll-Zustand), 2.3 Keyword-Laden: Wann und Wie, 2. Architektur-Vorschlag, 3.1 Neue Tabelle: `user_mail_keywords`, 3.2 matchScope statt matchType, 3.3 Limits pro Plan (+23 more) ### Community 164 - "Community 164" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.06 +Nodes (31): ⭐ 0.5 FINALE PRICING-ENTSCHEIDUNG — verbindlich, 0. TL;DR für Eilige, 1. Tier-Feature-Tabelle (Strategie-Sicht, abgeglichen mit `PLAN_LIMITS`, Stand 2026-05-11), 2.1 Reicht Free zum "Anfixen" — oder verschenkt es zu viel?, 2.2 Lohnt free → pro für ~4 €?, 2.3 Lohnt pro → legend für nochmal ~4 €? Ist Multi-Device der Killer?, 2.4 DiGA-/Ethik-/PR-Check: Darf man Recovery-Features paywallen?, 2.5 Empfehlung: konkretes Re-Slicing (optional, aber begründet) (+23 more) ### Community 165 - "Community 165" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.06 +Nodes (31): 1. Status Quo, 2. Header-Dropdown-Menu Architektur, 3. Settings-Page Struktur (Migration-Ziel), 4. iOS-Keyboard-Fix für SOS-Page, 5. Lyra-Voice-Feature, 6. Migration-Reihenfolge (Phase 2/3/4), 7. Top-3 Risiken, 8. Empfehlung — erster Schritt in Phase 2 (+23 more) ### Community 166 - "Community 166" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.06 +Nodes (30): 0. Leitprinzipien, 10. Offene Punkte / nächste Mini-Tasks, 11. Cross-Referenzen, 1. Phasen-Plan, 2.1 Externer Datenschutzbeauftragter (DSB), 2.2 Datenschutz-Folgenabschätzung (DSFA, Art. 35 DSGVO), 2.3 AV-Verträge (Auftragsverarbeitung, Art. 28 DSGVO), 2.4 Datenschutzerklärung + Cookie-/Consent-Konstrukt (+22 more) ### Community 167 - "Community 167" Cohesion: 0.09 @@ -1528,24 +1919,24 @@ Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 169 - "Community 169" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.07 +Nodes (29): dependencies, nuxt, @nuxt/icon, @nuxt/ui, qrcode, tailwindcss, vue, vue-router (+21 more) ### Community 170 - "Community 170" Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 171 - "Community 171" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.07 +Nodes (29): 10. Technische Umsetzungshinweise, 11. Offene Punkte, 12. Abnahme, 1. Ziel & Scope, 2. Design-Prinzipien, 3. Gesamt-Layout, 4. Hero-Kachel: Aktives Gerät, 5.1 iOS-Geräte (+21 more) ### Community 172 - "Community 172" Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 173 - "Community 173" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.07 +Nodes (29): 1.1 Server `/srv/rebreak/` (live, Backyard's Layout), 1.2 Mac `~/mono/rebreak-monorepo/` (Cutover-Target), 1.3 Was kaputt war (Incident 2026-05-06), 1. Status quo (Stand 2026-05-06, post-rollback), 2.1 Pipeline AKTUELL (Backyard-Layout, läuft), 2.2 Pipeline ZIEL (nach Cutover, neues Layout), 2. Pipeline-Diagramm, 3.1 Keys die im AKTUELLEN `backend/nitro.config.ts` schon existieren (16 total) (+21 more) ### Community 174 - "Community 174" Cohesion: 0.09 @@ -1560,24 +1951,24 @@ Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 177 - "Community 177" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.07 +Nodes (28): 1. Status-Recherche: Microsoft Basic-Auth-Deprecation, 2.1 Azure-App-Registrierung, 2.2 OAuth-Flow: BFF-Pattern (Backend-mediated), 2.3 Token-Storage: Schema-Aenderung (Eskalation an rebreak-backend), 2.4 IMAP-Connect-Logik: XOAUTH2 in ImapFlow, 2.5 Token-Refresh-Flow, 2. Architektur-Plan, 3. ConnectMailSheet UX-Plan (fuer rebreak-native-ui-Agent) (+20 more) ### Community 178 - "Community 178" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.10 +Nodes (17): autoSyncComplete, autoSyncing, backendRows, deviceIdRef, deviceName, incompleteMessage, isProtectionIncomplete, localApp (+9 more) ### Community 179 - "Community 179" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.07 +Nodes (27): Alte Config (pre-Phase-2), Bauen + öffnen, Build, Check stdout/stderr, Development-magic-mac, Einmalig: dependencies + supervise-magic-binary bauen, Falls leer: USB-Kabel-/Port-Problem oder "Diesem Computer vertrauen?" Dialog nicht bestätigt, Kann ich das rückgängig machen? (+19 more) ### Community 180 - "Community 180" -Cohesion: 0.18 +Cohesion: 0.17 Nodes (10): RebreakAccessibilityService, requestPowerDialog(), AccessibilityEvent, AccessibilityNodeInfo, AccessibilityService, Boolean, Int, Long (+2 more) ### Community 181 - "Community 181" -Cohesion: 0.13 -Nodes (12): DmConversation, ALLOWED_EMOJIS, countUnreadDms(), createChatMessage(), getChatMessages(), getDmConversations(), getDmHistory(), markDmsAsRead() (+4 more) +Cohesion: 0.15 +Nodes (11): DmConversation, ALLOWED_EMOJIS, countUnreadDms(), DmConversationRow, getChatMessages(), getDmConversations(), getDmHistory(), markDmsAsRead() (+3 more) ### Community 182 - "Community 182" Cohesion: 0.29 @@ -1612,28 +2003,28 @@ Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 190 - "Community 190" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.07 +Nodes (27): 1.1 Backend (`backend/`, Nitro standalone, Prisma + Supabase), 1.2 Frontend (`apps/rebreak-native/`, Expo SDK 53 + RN 0.79), 1.3 CI / CD, 1.4 Zusammenfassung, 1. Status quo (rebreak-monorepo), 2.1 Vitest Unit-Suite — gold-wert, ~70 % portierbar, 2.2 Postman-Collection — sofort wiederverwendbar, 2.3 Playwright Smoke (`tests/e2e/smoke/`) (+19 more) ### Community 191 - "Community 191" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.19 +Nodes (12): Data, Error, HashList, Int, NEPacketTunnelNetworkSettings, NEProviderStopReason, NSObject, ExtLog (+4 more) ### Community 192 - "Community 192" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.07 +Nodes (26): 10. Glossar (Nutzer-freundlich, optional), 11. Support & Kontakt, 12. Andockpunkte (Koordination), 13. Offene Punkte (Zusammenfassung), 1. Produkt- und Herstellerangaben, 2. Zweckbestimmung, 3. Für wen ist Rebreak gedacht?, 4.1 Schutz aktivieren (digitale Zugangserschwerung) (+18 more) ### Community 193 - "Community 193" Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 194 - "Community 194" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.07 +Nodes (26): 161 Industry-Specific Reasoning Rules, Architecture & Contributing, Available Styles (67), Design System Command (Advanced), Example Prompts, Features, For Contributors, For Users (+18 more) ### Community 195 - "Community 195" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.08 +Nodes (25): A1. Schema-Migration: drop VIP-Swap-Fields, A2. webcontent-domains.get.ts — komplett vereinfachen, A3. custom-domains/index.post.ts — VIP-Logic raus, A4. vip-swap.post.ts — DELETE, A5. Suggestion-Endpoint: BleibtDomainSubmission?, A6. DomainVote-Tabelle: Decision, A) Backend, Aufwand-Schätzung pro Block (+17 more) ### Community 196 - "Community 196" Cohesion: 0.09 @@ -1656,16 +2047,16 @@ Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 201 - "Community 201" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.08 +Nodes (25): Android — VPN + Bedienungshilfen, Anonymität & Demographics, Beta-Phase & DiGA-Status (Stand 2026-05-29) — `#coach`, Coach-Casual-Mode (`#coach`), Custom-Domains (User-pflegbar, Layer 1), Forbidden-Phrases-Audit-Liste, Forbidden-Pricing-Phrases — `#shared`, Identity (+17 more) ### Community 202 - "Community 202" Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 203 - "Community 203" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.08 +Nodes (25): 3 wichtigste Open Questions an User, Android, Cross-Platform, Donnerstag 2026-05-07 (HEUTE — Recon + Doc), External-Beta-Pfad (zusätzlich, ~1 Woche), Freitag 2026-05-08 (Setup + Configs, alles ohne Build-Trigger), Internal-Only-Pfad (3 Tage — realistisch für Wochenende), iOS (+17 more) ### Community 204 - "Community 204" Cohesion: 0.09 @@ -1676,8 +2067,8 @@ Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 206 - "Community 206" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.08 +Nodes (34): bool, int, ansi_ljust(), DesignSystemGenerator, _detect_page_type(), format_ascii_box(), format_markdown(), format_master_md() (+26 more) ### Community 207 - "Community 207" Cohesion: 0.09 @@ -1700,12 +2091,12 @@ Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 212 - "Community 212" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.25 +Nodes (10): AppResult, Client, Self, String, Value, MdmClient, MdmEnqueueResult, MdmPushStatus (+2 more) ### Community 213 - "Community 213" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.14 +Nodes (35): AppHandle, AppResult, Option, String, Vec, AppHandle, AppResult, Option (+27 more) ### Community 214 - "Community 214" Cohesion: 0.09 @@ -1732,32 +2123,32 @@ Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 220 - "Community 220" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.08 +Nodes (25): libraries, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, react_codegen_RNMmkvSpec::@7541eabbae598da31a69, react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, react_codegen_rnworklets::@68f58d84d4754f193387, abi (+17 more) ### Community 221 - "Community 221" Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 222 - "Community 222" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.08 +Nodes (24): author, bin, uipro, dependencies, chalk, commander, ora, prompts (+16 more) ### Community 223 - "Community 223" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.08 +Nodes (24): 1.1 Auslöser — Cutover-Incident 7. Mai 22:17, 1.2 Folgesymptom — Stash-Hopping am 9. Mai, 1.3 Konkreter Verlust — Commit `35189b9` "wip-pre-cherrypick", 1. Was passiert ist (Timeline), 2. Recovery-Aktion 2026-05-10, 3. Was JETZT NOCH FEHLT (nicht aus 35189b9 wiederhergestellt), 4.1 KEIN rapides Stash + Cherry-Pick mehr, 4.2 Recovery-Kommandos für die Zukunft (+16 more) ### Community 224 - "Community 224" Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 225 - "Community 225" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.22 +Nodes (9): bundle, active, externalBin, icon, macOS, targets, entitlements, frameworks (+1 more) ### Community 226 - "Community 226" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.08 +Nodes (23): Alte Scripts (weiterhin nutzbar), Android — `modules/rebreak-android-a11y/`, Android — `modules/rebreak-android-blocker/`, Android-Vorbereitung (einmalig), Changelog, Dev-Variant (Hot-Reload parallel zur MDM-App), Erstmaliges Setup (nur einmal nötig), iOS — `modules/rebreak-ios-filter/` (+15 more) ### Community 227 - "Community 227" Cohesion: 0.09 @@ -1776,16 +2167,16 @@ Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 231 - "Community 231" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.13 +Nodes (22): core, core:app, default_permission, global_scope_schema, permission_sets, default_permission, core:event, default_permission (+14 more) ### Community 232 - "Community 232" Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Nodes (23): libraries, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, react_codegen_rnworklets::@68f58d84d4754f193387, react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName (+15 more) ### Community 233 - "Community 233" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.19 +Nodes (14): blocklist.bin Sync Mechanism, Brand-Token (curated brand core), Brand-Token-Matching (shared system), GET /api/url-filter/brand-tokens Endpoint, brand_tokens DB Table, BrandTokenList class (Swift, pendant to HashList), Klartext Brand-Token Privacy Decision, DnsFilter.classify Integration Point (+6 more) ### Community 234 - "Community 234" Cohesion: 0.09 @@ -1793,7 +2184,7 @@ Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 235 - "Community 235" Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Nodes (22): 10. Quellen, 1. Gesamteinschätzung (Executive Summary), 2.1 Rolle von Microsoft, 2.2 Rechtsgrundlage für die Sub-AV-Beauftragung, 2.3 Drittland-Transfer (Kapitel V DSGVO), 2. Sub-Auftragsverarbeiter-Konstellation (Art. 28 DSGVO), 3.1 Neue VVT-Zeile „Outlook-Mail-Anbindung via OAuth2", 3.2 Sub-AV-Liste aktualisieren (+14 more) ### Community 236 - "Community 236" Cohesion: 0.09 @@ -1813,7 +2204,7 @@ Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 240 - "Community 240" Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Nodes (22): 1.1 Maestro E2E — Mobile App (primär), 1.2 Vitest Unit-/Integrationstests — Backend (sekundär), 1.3 Postman-Collection — Status: nicht vorhanden, 1.4 Lyra-LLM-Eval-Suite — Status: implementiert (v0, Live-Run ausstehend), 1. Teststrategie-Überblick, 2.1 SOS / Krisen-Flow (höchste Sicherheitsrelevanz), 2.2 Schutz-Aktivierung (Blocker / VPN / a11y), 2.3 DM / Community (+14 more) ### Community 241 - "Community 241" Cohesion: 0.09 @@ -1821,15 +2212,15 @@ Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 242 - "Community 242" Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Nodes (22): libraries, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, react_codegen_rnpicker::@e8bb2e9e833f47d0d516, react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName (+14 more) ### Community 243 - "Community 243" Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Nodes (22): libraries, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, react_codegen_RNMmkvSpec::@7541eabbae598da31a69, react_codegen_rnpicker::@e8bb2e9e833f47d0d516, react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName (+14 more) ### Community 244 - "Community 244" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.16 +Nodes (13): AppPlan, VALID_PLANS, ChangeEntry, ChangePreviewResponse, PLAN_ORDER, ResourceKey, VALID_PLANS, reconcileMailAccounts() (+5 more) ### Community 245 - "Community 245" Cohesion: 0.09 @@ -1837,7 +2228,7 @@ Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 246 - "Community 246" Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Nodes (21): Airplane Mode, ❌ App-Removal-Lock (greift NICHT auf unsupervised — DOKUMENTIERT), Architektur-Kontext, Bekannte Limitations (Apple-Walls — non-fixable ohne Supervision), Captive Portal, Companion-Path: MDM-Enrollment für Full-Lock (optional), ✅ DNS-Lock (sollte funktionieren), Edge-Cases (+13 more) ### Community 247 - "Community 247" Cohesion: 0.09 @@ -1852,12 +2243,12 @@ Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 250 - "Community 250" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.10 +Nodes (20): 1. `ManagedSettings.WebContentSettings`-API — verifizierte Fakten, 2. Der „50-Domain-Cap" — VERIFIZIERT, hart, Apple-dokumentiert, 3. Wirkungsbereich — Safari sicher; restliche WebKit-Browser unbelegt, 4. Family-Controls-Voraussetzung — ja, FC reicht; aber genau das ist die Crux, 5. Koexistenz NEURLFilter + ManagedSettings — unkritisch, 6. Kann der User NEURLFilter „offtogglen"? — Die Kernfrage, ehrlich beantwortet, 7. Länderabhängigkeit — sinnvoll, aber simpel halten, Bewertung — ehrlich, auch kritisch (+12 more) ### Community 251 - "Community 251" -Cohesion: 0.09 -Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) +Cohesion: 0.10 +Nodes (20): 1.1 Aktuelle Pipeline, 1.2 Beteiligte Dateien, 1.3 Beobachtete Probleme, 1. Status quo (Stand 2026-05-07), 2.1 Architektur-Eigenschaften, 2.2 Was das Trucko-Pattern besser macht, 2. Trucko-Pattern (das Vorbild), 3. Migrations-Schritte (für nächste Session — NICHT jetzt) (+12 more) ### Community 252 - "Community 252" Cohesion: 0.09 @@ -1868,8 +2259,8 @@ Cohesion: 0.09 Nodes (21): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+13 more) ### Community 254 - "Community 254" -Cohesion: 0.18 -Nodes (16): String, Void, Bool, String, Void, Int32, ProcessRunner, LineBuffer (+8 more) +Cohesion: 0.16 +Nodes (17): String, Void, Bool, String, Void, Int32, ProcessRunner, LineBuffer (+9 more) ### Community 255 - "Community 255" Cohesion: 0.21 @@ -1880,44 +2271,44 @@ Cohesion: 0.21 Nodes (12): Data, HashList, Int, DnsFilter, DnsFilterDecision, block, drop, forward (+4 more) ### Community 257 - "Community 257" -Cohesion: 0.16 -Nodes (14): APPROVAL_SELECT, approveRequest(), createApprovalRequest(), DeviceApprovalRecord, generateCode(), generateEmailToken(), getApprovalByEmailToken(), getApprovalRequest() (+6 more) +Cohesion: 0.15 +Nodes (15): APPROVAL_SELECT, approveRequest(), createApprovalRequest(), DeviceApprovalRecord, generateCode(), generateEmailToken(), getApprovalByEmailToken(), getApprovalRequest() (+7 more) ### Community 258 - "Community 258" -Cohesion: 0.10 -Nodes (13): CrisisLevel, SseEvents, streamSosLyra(), BenchMarker, BenchOnMetric, BenchSession, MarkerEntry, cleanForTts() (+5 more) +Cohesion: 0.09 +Nodes (14): CrisisLevel, SseEvents, streamSosLyra(), StreamSosLyraOpts, BenchMarker, BenchOnMetric, BenchSession, MarkerEntry (+6 more) ### Community 259 - "Community 259" -Cohesion: 0.18 -Nodes (19): FileProvider, FormatBackupDate(), RenderInfoPlist(), RenderManifestPlist(), RenderStatusPlist(), renderTemplate(), TLManifestDB(), TLManifestPlist() (+11 more) +Cohesion: 0.19 +Nodes (18): FileProvider, FormatBackupDate(), RenderInfoPlist(), RenderManifestPlist(), RenderStatusPlist(), renderTemplate(), TLManifestDB(), TLManifestPlist() (+10 more) ### Community 260 - "Community 260" Cohesion: 0.13 -Nodes (11): Int, T, Int, T, String, UInt32, Data, UInt32 (+3 more) +Nodes (13): Int, T, UInt32, Int, T, UInt32, String, UInt32 (+5 more) ### Community 261 - "Community 261" -Cohesion: 0.10 -Nodes (20): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+12 more) +Cohesion: 0.29 +Nodes (5): ComputedDevice, DeviceStatus, mapToComputedDevice(), normalizePlatform(), MagicDeviceInfo ### Community 262 - "Community 262" -Cohesion: 0.15 -Nodes (9): Any, Bool, Int, String, URL, SharedLogStore, ModuleDefinition, NETunnelProviderManager (+1 more) +Cohesion: 0.09 +Nodes (25): Any, Bool, Date, Double, Error, Int, String, URL (+17 more) ### Community 263 - "Community 263" -Cohesion: 0.19 -Nodes (14): blocklist.bin Sync Mechanism, Brand-Token (curated brand core), Brand-Token-Matching (shared system), GET /api/url-filter/brand-tokens Endpoint, brand_tokens DB Table, BrandTokenList class (Swift, pendant to HashList), Klartext Brand-Token Privacy Decision, DnsFilter.classify Integration Point (+6 more) +Cohesion: 0.13 +Nodes (26): Bool, Data, Double, Int, String, UInt32, Bool, Data (+18 more) ### Community 264 - "Community 264" -Cohesion: 0.17 -Nodes (15): _cooldown_ok(), extract_client_id(), main(), _mark_fired(), post_handshake(), # NOTE: field name is "CP" in AdGuard Home's querylog JSON serialization, Parse one NDJSON line from querylog.json. Returns the ClientID string if non, Tails a file line-by-line. Detects log rotation by monitoring inode. On rota (+7 more) +Cohesion: 0.16 +Nodes (16): _cooldown_ok(), extract_client_id(), main(), _mark_fired(), post_handshake(), # NOTE: field name is "CP" in AdGuard Home's querylog JSON serialization, Parse one NDJSON line from querylog.json. Returns the ClientID string if non, Tails a file line-by-line. Detects log rotation by monitoring inode. On rota (+8 more) ### Community 265 - "Community 265" Cohesion: 0.16 Nodes (8): deviceConnReadWriter, envBool(), Open(), plistUnmarshal(), Conn, DeviceConnectionInterface, DeviceEntry, Client ### Community 266 - "Community 266" -Cohesion: 0.22 -Nodes (17): Connect(), Conn, cliOpts, backupCurrentConfig(), makeLogger(), superviseEscalated(), superviseFresh(), Unsupervise() (+9 more) +Cohesion: 0.35 +Nodes (13): Connect(), cliOpts, Unsupervise(), confirm(), defaultBackupPath(), dlmsgDebugSet(), exitOnErr(), main() (+5 more) ### Community 267 - "Community 267" Cohesion: 0.20 @@ -1936,8 +2327,8 @@ Cohesion: 0.11 Nodes (15): allPrompts, callLyra(), crisisPrompts, drangPrompts, edgeCasePrompts, EvalPrompt, EvalResult, evalResults (+7 more) ### Community 271 - "Community 271" -Cohesion: 0.11 -Nodes (18): engines, node, name, packageManager, metro-core@0.83.3, react-native-callkeep, pnpm, patchedDependencies (+10 more) +Cohesion: 0.18 +Nodes (11): engines, node, pnpm, name, packageManager, metro-core@0.83.3, react-native-callkeep, pnpm (+3 more) ### Community 272 - "Community 272" Cohesion: 0.11 @@ -1956,20 +2347,20 @@ Cohesion: 0.11 Nodes (17): archive, artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups (+9 more) ### Community 276 - "Community 276" -Cohesion: 0.24 -Nodes (10): NanoMDM Server (mdm.rebreak.org), supervise-magic Go-CLI Binary, ReBreak Magic Mac App, AuthService.swift (Supabase + Keychain), ReBreak Magic Mac Phase 2 Summary, rebreak-magic-mac XcodeGen project.yml, ReBreak Magic Mac README, Rebreak Magic Mac (Self-Bind Wizard) (+2 more) +Cohesion: 0.10 +Nodes (19): ⚠️ Android Deployment Setup — NOCH NICHT READY, Changelog, Credentials, `./deploy.sh` — Multi-Platform Release, Deployment, `./dev.sh` — Development Tooling, Development, `./eas-release.sh` — EAS Cloud-Build (+11 more) ### Community 277 - "Community 277" -Cohesion: 0.15 -Nodes (13): String, UInt64, HookBody, BrevoSendParams, sendBrevoMail(), EmailActionType, htmlEscape(), Locale (+5 more) +Cohesion: 0.12 +Nodes (16): DomainHasher, String, UInt64, HookBody, BrevoSendParams, sendBrevoMail(), EmailActionType, htmlEscape() (+8 more) ### Community 278 - "Community 278" -Cohesion: 0.20 -Nodes (9): Bool, ConfigurationModel, ErrorDetails, TimeInterval, View, ContentViewModel, ActivationButtonAction, disableFilter (+1 more) +Cohesion: 0.18 +Nodes (10): Bool, ConfigurationModel, ErrorDetails, String, TimeInterval, View, ContentViewModel, ActivationButtonAction (+2 more) ### Community 279 - "Community 279" -Cohesion: 0.11 -Nodes (17): windows, build, beforeBuildCommand, beforeDevCommand, devUrl, frontendDist, bundle, active (+9 more) +Cohesion: 0.13 +Nodes (17): identifier, productName, $schema, version, app, security, build, beforeBuildCommand (+9 more) ### Community 280 - "Community 280" Cohesion: 0.11 @@ -1992,32 +2383,32 @@ Cohesion: 0.11 Nodes (17): archive, artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups (+9 more) ### Community 285 - "Community 285" -Cohesion: 0.18 -Nodes (14): Bool, String, Bool, Date, Int, String, EnrollmentStatus, Equatable (+6 more) +Cohesion: 0.12 +Nodes (16): compilerOptions, allowSyntheticDefaultImports, baseUrl, forceConsistentCasingInFileNames, lib, module, moduleResolution, noEmit (+8 more) ### Community 286 - "Community 286" -Cohesion: 0.08 -Nodes (29): CoachScreen(), LoadingPulse(), MessageWithMeta, styles, ThinkingDots(), formatVoiceDuration(), Props, styles (+21 more) +Cohesion: 0.10 +Nodes (19): Annahmen (aus dem Abstimmungsgespräch), Bestehende Komponenten – Anpassungen, Datenfluss, `DeviceDetailSheet.vue`, `DeviceHeroCard.vue`, `DeviceListItem.vue`, Fehlerbehandlung, iOS-Matching (+11 more) ### Community 287 - "Community 287" Cohesion: 0.22 Nodes (8): Bool, Int, Never, String, Task, Void, EnrollView, TransferAnimationView ### Community 288 - "Community 288" -Cohesion: 0.17 -Nodes (14): Date, Double, Error, Void, DispatchWorkItem, HealthProbeDelegate, Outcome, blocked (+6 more) +Cohesion: 0.10 +Nodes (24): CallScreen(), fmtDuration(), useCallKeepEvents(), useIncomingCalls(), callIdToUuid(), displayIncomingCall(), endCall(), reportConnected() (+16 more) ### Community 289 - "Community 289" Cohesion: 0.13 Nodes (17): Microsoft as Sub-Processor (Art. 28), Privacy-Policy DSB Notes, No separate Consent-UI for Lyra LLM transfer, Stufe-2 Lyra PII-Pseudonymization (Q3 2026), 12 Sub-Processor DPA/TIA Status, rebreak-native ~1.3% A11y Coverage Gap, Accessibility Audit & DiGA-Roadmap, WCAG 2.1 AA / BITV Compliance for DiGA (+9 more) ### Community 290 - "Community 290" -Cohesion: 0.17 +Cohesion: 0.16 Nodes (6): Bool, Configuration, String, ConfigurationError, badConfiguration, ConfigurationModel ### Community 291 - "Community 291" -Cohesion: 0.12 -Nodes (16): metro, metro-cache, metro-core, metro-file-map, metro-resolver, metro-runtime, metro-source-map, metro-symbolicate (+8 more) +Cohesion: 0.11 +Nodes (17): metro, metro-cache, metro-config, metro-core, metro-file-map, metro-resolver, metro-runtime, metro-source-map (+9 more) ### Community 292 - "Community 292" Cohesion: 0.12 @@ -2028,8 +2419,8 @@ Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 294 - "Community 294" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.10 +Nodes (20): home, greeting_day, greeting_evening, greeting_morning, quick_access, quote_of_day, start, stats_chats (+12 more) ### Community 295 - "Community 295" Cohesion: 0.12 @@ -2040,8 +2431,8 @@ Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 297 - "Community 297" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.10 +Nodes (19): Akzeptanz-Test (M2), Hardware-/Tool-Voraussetzungen, Komponenten dieser Phase, MDM Setup — Phasen, Mechanismus, Phase A ✅ Server-Bootstrap, Phase B ✅ TLS-Zertifikat, Phase C ✅ NanoMDM Container + nginx-Vhost (+11 more) ### Community 298 - "Community 298" Cohesion: 0.12 @@ -2052,8 +2443,8 @@ Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 300 - "Community 300" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.15 +Nodes (15): Lowercase, split, remove punctuation, filter short words, Build BM25 index from documents, Score all documents against query, Load CSV and return list of dicts, Core search function using BM25, Auto-detect the most relevant domain from query, Main search function with auto-domain detection, Search stack-specific guidelines (+7 more) ### Community 301 - "Community 301" Cohesion: 0.12 @@ -2084,12 +2475,12 @@ Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 308 - "Community 308" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.15 +Nodes (15): BM25 ranking algorithm for text search, Lowercase, split, remove punctuation, filter short words, Build BM25 index from documents, Score all documents against query, Load CSV and return list of dicts, Core search function using BM25, Auto-detect the most relevant domain from query, Main search function with auto-domain detection (+7 more) ### Community 309 - "Community 309" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (17): 1. Ziel, 2. Native iOS-Module (Expo), 3. Wie NEFilter erkannt wird, 4.1 App reportet Status, 4.2 Backend-Endpoint, 4.3 Datenbank, 4.4 Auslesen, 4. Backend: Wie das NEFilter-Tracking funktioniert (+9 more) ### Community 310 - "Community 310" Cohesion: 0.12 @@ -2160,20 +2551,20 @@ Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 327 - "Community 327" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (18): 0. Vorbemerkung & Geltungsgrenzen, 1. Einordnung — höchste Schutzstufe, 2.1 Mail-Agent (IMAP-IDLE-Daemon) — größte Datenschutz-Oberfläche, 2.2 Lyra (Groq, USA) — Art.-9-Daten im Drittland, 2.3 Auftragsverarbeiter — AV-Verträge (Art. 28) & Drittland, 2.4 Anonymität by Design — verifizieren, dass nichts leakt, 2.5 Auth (Supabase self-hosted) & Demographie-Daten, 2.6 Community (+10 more) ### Community 328 - "Community 328" Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 329 - "Community 329" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (18): Bonus task (optional, +scope), ⚠️ Critical naming contract — do NOT rename existing names, Deliverables — emotion states, Deliverables you provide, How to apply, How to use this brief (internal — not for animator), 🎯 Project: Rebreak — Lyra Avatar Animation, Questions to ask BEFORE starting (please answer in your application) (+10 more) ### Community 330 - "Community 330" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (18): 1. suchtberatung.digital (DigiSucht) — Was es ist, 2. delphi GmbH — Profil, 3. Partner-oder-Konkurrent — Matrix, 4. Lukas-Werk Gesundheitsdienste GmbH — Kontakt, 5. Strategic Sequenzierung, 6. Mail-Template Variante C — delphi (Augenhöhe), 7. Risiken, ⚠️ Anbahnungs-Disziplin (User-Note 29.05.2026) (+10 more) ### Community 331 - "Community 331" Cohesion: 0.12 @@ -2184,12 +2575,12 @@ Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 333 - "Community 333" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (17): Auth-Architektur, Backend (rebreak-backend-Agent / Phase 3), Backyard (Phase 2 Deploy), Deploy-Plan, DSGVO-Considerations fuer Admin-Zugriff, GitHub-Actions-Pipeline -- Plan fuer Phase 2 Deploy, Hans-Mueller / DSGVO (Phase 4), Lokale Entwicklung (+9 more) ### Community 334 - "Community 334" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.23 +Nodes (11): Date, MagicDevice, String, Timer, Void, DeviceAction, DeviceAction, cancelRelease (+3 more) ### Community 335 - "Community 335" Cohesion: 0.12 @@ -2200,12 +2591,12 @@ Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 337 - "Community 337" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (17): 1. Auth-Stack (bereits implementiert), 2. Login-UI (bereits implementiert), 3. Mac-Registration-Flow (NEU implementiert), 4. Menu-Erweiterung, 5. Workflow-Integration, 🚧 Bekannte Limitations / TODOs, ✨ Bonus-Feature (bereits implementiert), 🏗 Build-Status (+9 more) ### Community 338 - "Community 338" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (17): description, required, type, definitions, Capability, Number, PermissionEntry, Target (+9 more) ### Community 339 - "Community 339" Cohesion: 0.12 @@ -2217,39 +2608,39 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 341 - "Community 341" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (17): description, required, type, definitions, Capability, Number, PermissionEntry, Target (+9 more) ### Community 342 - "Community 342" Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 343 - "Community 343" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (17): 1. OAuth-Client prüfen, 2. Authorized redirect URIs, 3. App-Informationen vervollständigen, 4. Domain-Verifizierung, 5. Verification starten, Akzeptanzkriterien, Android-Client anlegen (empfohlen, falls Reverse-Client-ID-Scheme auf Android abgelehnt wird), Anforderungen (+9 more) ### Community 344 - "Community 344" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (17): File Map, Magic Dashboard Redesign Implementation Plan, Self-Review, Task 10: `DeviceListItem` Component, Task 11: `DeviceDetailSheet` Component, Task 12: Neue `status.vue` integrieren, Task 13: Polishing & Tests, Task 1: Prisma-Schema erweitern (+9 more) ### Community 345 - "Community 345" Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 346 - "Community 346" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (17): 1.1 Frontend (Vue/Nuxt), 1.2 Backend (Nuxt-Server, Nitro), 1.3 DB-Schema, 1.4 State-Sync-Mechanismus (1 Satz), 1.5 Datenflussdiagramm (ASCII), 1. Status quo Nuxt-Implementierung, 1v1 Games Migration Plan (Nuxt → rebreak-native), 2. Migration-Plan (+9 more) ### Community 347 - "Community 347" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (17): 1. Hard-Constraint: iOS lässt sich auf Linux nicht testen, 2. Performance-Risk auf existierendem CX23, 3. Cost-Comparison, 4. Aufwand-Schätzung pro Variante, 5. Empfehlung — Lieblings-Pfad, 6. Setup-Estimate für die Empfehlung (Pfad A), 7. Offene Punkte (User-Decision), 8. TL;DR für User (+9 more) ### Community 348 - "Community 348" Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 349 - "Community 349" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (17): 10. Charts & Data (LOW), 1. Accessibility (CRITICAL), 2. Touch & Interaction (CRITICAL), 3. Performance (HIGH), 4. Style Selection (HIGH), 5. Layout & Responsive (HIGH), 6. Typography & Color (MEDIUM), 7. Animation (MEDIUM) (+9 more) ### Community 350 - "Community 350" Cohesion: 0.12 @@ -2264,20 +2655,20 @@ Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 353 - "Community 353" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.11 +Nodes (17): 10. Charts & Data (LOW), 1. Accessibility (CRITICAL), 2. Touch & Interaction (CRITICAL), 3. Performance (HIGH), 4. Style Selection (HIGH), 5. Layout & Responsive (HIGH), 6. Typography & Color (MEDIUM), 7. Animation (MEDIUM) (+9 more) ### Community 354 - "Community 354" Cohesion: 0.12 Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) ### Community 355 - "Community 355" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.20 +Nodes (13): AppResult, Option, PathBuf, Self, String, DateTime, Default, PathBuf (+5 more) ### Community 356 - "Community 356" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): 1. TODO — DPA / AVV-Status der 12 Sub-Auftragsverarbeiter, 2.1 Pro-Trial als Gegenleistung für demographische Daten — Risk: HOCH, 2.2 LLM-Übertragung Stufe 1 ohne separates Consent-UI — Risk: MITTEL, 2.3 Übergangsklausel Einzelunternehmer → Raynis GmbH — Risk: MITTEL, 2. Anwalt-Review-Checkliste — 3 kritische Punkte, 3. Stufe-2-Migrations-Plan: Lyra-Pseudonymisierung (Q3 2026), 4. Backyard-Migration-Empfehlung — Marketing-Site / Privacy-Page, 5. Risk-Summary (Snapshot 09.05.2026) (+8 more) ### Community 357 - "Community 357" Cohesion: 0.12 @@ -2289,11 +2680,11 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 359 - "Community 359" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): Decision-Points (User entscheidet), G.1 Enrollment-Profile-Generator, G.2 User-Device-Link in DB, G.3 Lyra-Onboarding-Flow, G.4 Onboarding-Web-Page, G.5 Stripe-Add-On-Tier, G.6 Per-User-Blocklist (later), Marginal Cost pro neuem User (+8 more) ### Community 360 - "Community 360" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 361 - "Community 361" Cohesion: 0.12 @@ -2305,11 +2696,11 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 363 - "Community 363" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 364 - "Community 364" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 365 - "Community 365" Cohesion: 0.12 @@ -2321,7 +2712,7 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 367 - "Community 367" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 368 - "Community 368" Cohesion: 0.12 @@ -2329,7 +2720,7 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 369 - "Community 369" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 370 - "Community 370" Cohesion: 0.12 @@ -2337,11 +2728,11 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 371 - "Community 371" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 372 - "Community 372" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 373 - "Community 373" Cohesion: 0.12 @@ -2353,11 +2744,11 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 375 - "Community 375" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 376 - "Community 376" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 377 - "Community 377" Cohesion: 0.12 @@ -2369,11 +2760,11 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 379 - "Community 379" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 380 - "Community 380" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 381 - "Community 381" Cohesion: 0.12 @@ -2385,19 +2776,19 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 383 - "Community 383" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 384 - "Community 384" Cohesion: 0.17 Nodes (10): g, originalStubs, prismaMock, AdminUserRow, listAdminUsers(), ListUsersOpts, softDeleteAdminUser(), updateAdminUser() (+2 more) ### Community 385 - "Community 385" -Cohesion: 0.19 -Nodes (9): prismaMock, banUserFromModerationItem(), deleteModerationItem(), dismissModerationItem(), listModerationQueue(), ListQueueOpts, ModerationItemType, ModerationQueueItem (+1 more) +Cohesion: 0.18 +Nodes (10): prismaMock, banUserFromModerationItem(), deleteModerationItem(), dismissModerationItem(), listModerationQueue(), ListQueueOpts, ModerationItemType, ModerationQueueItem (+2 more) ### Community 386 - "Community 386" -Cohesion: 0.18 -Nodes (12): POST /api/magic/register Endpoint, GET /api/magic/status Endpoint, MacProfileInstaller.swift (DNS-Filter Profile), 24h-Cooldown Server-Timed Deactivation, ReBreak Magic Windows App (Tauri 2), Eigene DoH-Infra (dns.rebreak.org, AdGuard), ReBreak Magic Windows index.html, ReBreak Magic Windows README (+4 more) +Cohesion: 0.12 +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 387 - "Community 387" Cohesion: 0.14 @@ -2408,16 +2799,16 @@ Cohesion: 0.12 Nodes (16): blocked, back_to_app, clean, day, days, lyra, message, quote_1 (+8 more) ### Community 389 - "Community 389" -Cohesion: 0.12 -Nodes (15): ANDROID_A11Y_DE, ANDROID_A11Y_EN, ANDROID_A11Y_OVERVIEW_DE, ANDROID_VPN_AR, ANDROID_VPN_DE, ANDROID_VPN_EN, ANDROID_VPN_FR, Dialog (+7 more) +Cohesion: 0.08 +Nodes (24): ANDROID_A11Y_AR, ANDROID_A11Y_DE, ANDROID_A11Y_EN, ANDROID_A11Y_FR, ANDROID_A11Y_OVERVIEW_AR, ANDROID_A11Y_OVERVIEW_DE, ANDROID_A11Y_OVERVIEW_EN, ANDROID_A11Y_OVERVIEW_FR (+16 more) ### Community 390 - "Community 390" Cohesion: 0.12 Nodes (16): blocked, back_to_app, clean, day, days, lyra, message, quote_1 (+8 more) ### Community 391 - "Community 391" -Cohesion: 0.33 -Nodes (7): Bool, String, TimeInterval, URL, Hashable, Hasher, Configuration +Cohesion: 0.13 +Nodes (13): MainApplication, Application, Configuration, Bool, String, TimeInterval, URL, CustomDebugStringConvertible (+5 more) ### Community 392 - "Community 392" Cohesion: 0.12 @@ -2425,23 +2816,23 @@ Nodes (10): CF_MODULE_DIR, CF_SWIFT_SOURCES, fs, MODULE_DIR, path, PT_MODULE_DIR ### Community 393 - "Community 393" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 394 - "Community 394" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 395 - "Community 395" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 396 - "Community 396" -Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Cohesion: 0.13 +Nodes (16): Self, String, Double, String, URL, AsyncParsableCommand, BloomFilterTool, BloomFilterToolDefaults (+8 more) ### Community 397 - "Community 397" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 398 - "Community 398" Cohesion: 0.12 @@ -2449,11 +2840,11 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 399 - "Community 399" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 400 - "Community 400" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 401 - "Community 401" Cohesion: 0.12 @@ -2465,19 +2856,19 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 403 - "Community 403" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 404 - "Community 404" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 405 - "Community 405" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 406 - "Community 406" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 407 - "Community 407" Cohesion: 0.12 @@ -2485,7 +2876,7 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 408 - "Community 408" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 409 - "Community 409" Cohesion: 0.12 @@ -2493,27 +2884,27 @@ Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compil ### Community 410 - "Community 410" Cohesion: 0.12 -Nodes (15): artifacts, backtrace, backtraceGraph, commands, files, nodes, compileGroups, id (+7 more) +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 411 - "Community 411" Cohesion: 0.07 -Nodes (30): applock, prompt, signOut_body, signOut_title, subtitle, title, unlock, coach (+22 more) +Nodes (28): coach, error, feedback_saved, input_placeholder, modeBadge, new_chat, online, recording (+20 more) ### Community 412 - "Community 412" Cohesion: 0.32 Nodes (13): confirm(), die(), dim(), err(), info(), log(), ok(), run() (+5 more) ### Community 413 - "Community 413" -Cohesion: 0.10 -Nodes (20): welcomeBack, coach, crisis_bar_label, feedback_saved, input_placeholder, modeBadge, new_chat, online (+12 more) +Cohesion: 0.07 +Nodes (36): ProtectionLogCard(), nickname, welcomeBack, error_invalid_input, coach, crisis_bar_label, feedback_saved, input_placeholder (+28 more) ### Community 414 - "Community 414" -Cohesion: 0.15 -Nodes (12): Configuration, String, CustomDebugStringConvertible, FilterStatus, disabled, invalid, running, starting (+4 more) +Cohesion: 0.16 +Nodes (11): Configuration, String, FilterStatus, disabled, invalid, running, starting, stopped (+3 more) ### Community 415 - "Community 415" -Cohesion: 0.24 -Nodes (8): Client, EscalateUnsupervised(), Open(), Certificate, DeviceConnectionInterface, DeviceEntry, PlistCodec, Supervise() +Cohesion: 0.22 +Nodes (9): Client, EscalateUnsupervised(), Open(), SuperviseConfig, Certificate, DeviceConnectionInterface, DeviceEntry, PlistCodec (+1 more) ### Community 416 - "Community 416" Cohesion: 0.31 @@ -2524,24 +2915,24 @@ Cohesion: 0.13 Nodes (14): dependencies, @fontsource/nunito, react, react-dom, @tauri-apps/api, name, private, scripts (+6 more) ### Community 418 - "Community 418" -Cohesion: 0.16 -Nodes (11): Apple_SwiftHomomorphicEncryption_Pir_V1_KeywordDatabaseRow, Bool, Data, String, _2, _GeneratedWithProtocGenSwiftVersion, D, Sendable (+3 more) +Cohesion: 0.17 +Nodes (12): Apple_SwiftHomomorphicEncryption_Pir_V1_KeywordDatabaseRow, Bool, Data, String, _2, Apple_SwiftHomomorphicEncryption_Pir_V1_KeywordDatabase, _GeneratedWithProtocGenSwiftVersion, D (+4 more) ### Community 419 - "Community 419" -Cohesion: 0.22 -Nodes (8): BloomFilter, NEProviderStopReason, NEURLFilterPrefilter, String, ExtLog, ProviderFilterError, loadError, RebreakURLFilterControlProvider +Cohesion: 0.20 +Nodes (9): BloomFilter, NEProviderStopReason, NEURLFilterPrefilter, String, NEURLFilterControlProvider, ExtLog, ProviderFilterError, loadError (+1 more) ### Community 420 - "Community 420" -Cohesion: 0.26 +Cohesion: 0.24 Nodes (8): Bool, Int, Never, String, Task, UInt64, Void, ConfigureView ### Community 421 - "Community 421" -Cohesion: 0.14 -Nodes (12): String, String, Identifiable, Int, WizardStep, done, enroll, macRegistration (+4 more) +Cohesion: 0.18 +Nodes (10): String, Int, WizardStep, configure, done, enroll, macRegistration, preflight (+2 more) ### Community 422 - "Community 422" -Cohesion: 0.15 -Nodes (15): Country-Curated Layer-2 Blocklist (50-cap), Pro=10/Legend=20 Custom-Domain Slots (refillable), Layer1/Layer2 Decoupling (Custom vs Country-Curated), Layer-2 Country-Pivot Plan, Travel-Detection via Cellular-MCC, REQ-MAGIC Selbstbindung (RebreakMagic Lock-Modus, 24h-Cooldown), R-BYP-03 Selbstbindung wird zur Falle (legitimer Ausstieg scheitert), Rive Animator Brief — Lyra Avatar (+7 more) +Cohesion: 0.18 +Nodes (14): Country-Curated Layer-2 Blocklist (50-cap), Pro=10/Legend=20 Custom-Domain Slots (refillable), Layer1/Layer2 Decoupling (Custom vs Country-Curated), Layer-2 Country-Pivot Plan, Travel-Detection via Cellular-MCC, SAFETY-REQ-LLM-002 Sicherheits-Grenzen (Rollen-Integrität, Refusal), Rive Animator Brief — Lyra Avatar, Lyra Avatar Rive Emotion-State Animation (+6 more) ### Community 423 - "Community 423" Cohesion: 0.14 @@ -2573,12 +2964,12 @@ Nodes (9): fs, MODULE_A11Y_XML, MODULE_DEVICE_ADMIN_XML, path, withA11yConfigXml }, withDeviceAdminXml() (+1 more) ### Community 429 - "Community 429" -Cohesion: 0.10 -Nodes (29): speakCartesia(), speakElevenLabs(), speakGoogle(), resolveTypeAndValue(), TestResolveResult, consumeVoiceQuota(), estimateAudioSeconds(), getRemainingVoiceQuota() (+21 more) +Cohesion: 0.21 +Nodes (15): core:app, default_permission, global_scope_schema, permission_sets, default_permission, default_permission, core:image, default_permission (+7 more) ### Community 430 - "Community 430" -Cohesion: 0.33 -Nodes (7): rebreak Admin App (Nuxt SSR panel), admin_audit_log DSGVO Audit-Log (Hans-Mueller), requireAdmin Middleware (admin_users JWT check), rebreak-admin-staging Service, Build admin (Nuxt SSR) Job, Deploy admin to Hetzner Job, Deploy Admin Staging Workflow +Cohesion: 0.67 +Nodes (3): rebreak Admin App (Nuxt SSR panel), admin_audit_log DSGVO Audit-Log (Hans-Mueller), requireAdmin Middleware (admin_users JWT check) ### Community 431 - "Community 431" Cohesion: 0.08 @@ -2597,32 +2988,32 @@ Cohesion: 0.23 Nodes (6): Boolean, Int, Long, String, HashList, Snapshot ### Community 435 - "Community 435" -Cohesion: 0.33 -Nodes (11): bytes, int, str, Path, batch_from_csv(), generate_profile(), main(), Lädt das Template, generiert frische UUIDs für alle PayloadUUID-Felder, erse (+3 more) +Cohesion: 0.31 +Nodes (13): bytes, bytes, int, Path, str, Path, batch_from_csv(), generate_profile() (+5 more) ### Community 436 - "Community 436" Cohesion: 0.24 Nodes (10): args, dryRun, fetchFromDb(), fetchFromHagezi(), formatTxtpb(), main(), normalizeDomain(), outputPath (+2 more) ### Community 437 - "Community 437" -Cohesion: 0.11 -Nodes (22): makeStyles(), SOSScreen(), ChipSpec, detectEmotion(), LyraEmotion, parseLyraResponse(), SOS_BOOT, currentProvider() (+14 more) +Cohesion: 0.14 +Nodes (18): BREATH_PHASES, BreathPhase, BreathState, Chip, CHIP_SETS, ChipSet, SOS_BOOT, BreathingCard() (+10 more) ### Community 438 - "Community 438" -Cohesion: 0.21 +Cohesion: 0.22 Nodes (10): Bool, String, LocalizedError, MagicRegistration, InstallerError, downloadFailed, installFailed, noRegistration (+2 more) ### Community 439 - "Community 439" -Cohesion: 0.20 -Nodes (5): MainActivity, String, String, Bundle, ReactActivity +Cohesion: 0.17 +Nodes (6): MainActivity, String, String, Bundle, ReactActivity, ReactActivityDelegate ### Community 440 - "Community 440" Cohesion: 0.18 Nodes (10): _comment, DE, FR, GB, _meta, maxDomainsPerCountry, status, updatedAt (+2 more) ### Community 441 - "Community 441" -Cohesion: 0.40 -Nodes (5): GameRatingStars(), sizeMap, StarRating(), StarRatingProps, StarSize +Cohesion: 0.12 +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 442 - "Community 442" Cohesion: 0.17 @@ -2630,7 +3021,7 @@ Nodes (12): error, common, back, cancel, confirm, continue, error, loading (+4 m ### Community 443 - "Community 443" Cohesion: 0.20 -Nodes (9): App, Scene, Scene, View, SimpleURLFilterApp, RebreakMagicApp, app, security (+1 more) +Nodes (7): App, Scene, ConfigurationModel, Scene, View, SimpleURLFilterApp, RebreakMagicApp ### Community 444 - "Community 444" Cohesion: 0.20 @@ -2653,16 +3044,16 @@ Cohesion: 0.20 Nodes (9): DE, FR, GB, _meta, maxDomainsPerCountry, status, updatedAt, version (+1 more) ### Community 449 - "Community 449" -Cohesion: 0.40 -Nodes (6): ReBreak Magic RE-Hardening Assessment & Plan, Admin-User kann alles aufheben (echter Schutz = Cooldown+Psychologie), Server-seitige Token-Revocation (Kern-Sicherheit im Backend), DNS-Token DPAPI-Verschlüsselung (Windows), Windows protection.json ACL-Härtung (DNS-Token-Schutz), Windows Service-Name-Bypass (sc.exe stop RebreakProtection) +Cohesion: 0.50 +Nodes (4): react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, abi, artifactName, runtimeFiles ### Community 450 - "Community 450" Cohesion: 0.36 Nodes (7): DefaultDir(), generate(), load(), LoadOrCreate(), Identity, Certificate, PrivateKey ### Community 451 - "Community 451" -Cohesion: 0.20 -Nodes (10): devDependencies, @tauri-apps/cli, @types/react, typescript, vite, @vitejs/plugin-react, devDependencies, @babel/core (+2 more) +Cohesion: 0.18 +Nodes (11): devDependencies, @tauri-apps/cli, @types/react, @types/react-dom, typescript, vite, @vitejs/plugin-react, devDependencies (+3 more) ### Community 452 - "Community 452" Cohesion: 0.47 @@ -2673,12 +3064,12 @@ Cohesion: 0.31 Nodes (9): arm64-v8a ABI build (metadata_generation_command), armeabi-v7a ABI build (CMakeCache, TargetDirectories), x86 ABI build (CMakeCache, TargetDirectories), Autolinked RN native modules (mmkv, reanimated, worklets, screens, svg, gesture-handler, true-sheet, menu, picker, slider, lottie, async-storage, bottom-tabs, keyboard-controller, safe-area-context), _CMakeLTOTest-CXX LTO capability probe (lto-test, CMP0069), react-native-mmkv MMKV Core (cxxmodule, AES/openssl, crc32/zlib), Android NDK/CMake build cache (RelWithDebInfo, AGP 8.11.0, hash 5m151t3n), NDK 27.1.12297006 + CMake 3.22.1 + Ninja toolchain (android-26, c++_shared) (+1 more) ### Community 454 - "Community 454" -Cohesion: 0.25 -Nodes (6): DeviceState, Never, String, Task, Void, WelcomeView +Cohesion: 0.22 +Nodes (13): String, Self, Identifiable, PrefilterFetchInterval, TimeInterval, ErrorDetails, PrefilterFetchInterval, minimum (+5 more) ### Community 455 - "Community 455" -Cohesion: 0.22 -Nodes (8): configurations, kind, paths, build, source, version, major, minor +Cohesion: 0.12 +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 456 - "Community 456" Cohesion: 0.22 @@ -3125,12 +3516,12 @@ Cohesion: 0.11 Nodes (19): CallRingPushPayload, ChatPushPayload, DeviceAddedPushPayload, devicePlatformLabel(), ensureExpo(), ExpoInstance, ExpoModule, ExpoPushMessage (+11 more) ### Community 567 - "Community 567" -Cohesion: 0.22 -Nodes (7): AppAlert(), AppAlertMode, AppAlertProps, BaseProps, ConfirmProps, ErrorProps, SuccessProps +Cohesion: 0.38 +Nodes (9): AppAlert(), AppAlertMode, AppAlertProps, BaseProps, ConfirmProps, ErrorProps, friendlyMessage(), sanitizeMessage() (+1 more) ### Community 568 - "Community 568" -Cohesion: 0.40 -Nodes (3): Props, st, GamePickerGrid() +Cohesion: 0.04 +Nodes (76): abi, artifactName, output, runtimeFiles, buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, abi (+68 more) ### Community 569 - "Community 569" Cohesion: 0.42 @@ -3141,8 +3532,8 @@ Cohesion: 0.36 Nodes (6): Client, Open(), PostOnce(), DeviceConnectionInterface, DeviceEntry, PlistCodec ### Community 571 - "Community 571" -Cohesion: 0.42 -Nodes (3): Conn, New(), ReadWriter +Cohesion: 0.19 +Nodes (8): Acquire(), SyncLock, Conn, New(), Client, DeviceEntry, File, ReadWriter ### Community 572 - "Community 572" Cohesion: 0.22 @@ -3153,44 +3544,44 @@ Cohesion: 0.22 Nodes (6): aabFullPath, aabPath, androidpublisher, args, packageName, serviceAccountFullPath ### Community 574 - "Community 574" -Cohesion: 0.22 -Nodes (8): inputs, kind, paths, build, source, version, major, minor +Cohesion: 0.12 +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 575 - "Community 575" -Cohesion: 0.22 -Nodes (8): inputs, kind, paths, build, source, version, major, minor +Cohesion: 0.12 +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 576 - "Community 576" Cohesion: 0.22 Nodes (8): inputs, kind, paths, build, source, version, major, minor ### Community 577 - "Community 577" -Cohesion: 0.22 -Nodes (8): inputs, kind, paths, build, source, version, major, minor +Cohesion: 0.12 +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 578 - "Community 578" -Cohesion: 0.22 -Nodes (8): inputs, kind, paths, build, source, version, major, minor +Cohesion: 0.12 +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 579 - "Community 579" -Cohesion: 0.22 -Nodes (8): inputs, kind, paths, build, source, version, major, minor +Cohesion: 0.12 +Nodes (16): description, displayName, folderStructure, filename, root, skillPath, frontmatter, description (+8 more) ### Community 580 - "Community 580" Cohesion: 0.22 Nodes (8): inputs, kind, paths, build, source, version, major, minor ### Community 581 - "Community 581" -Cohesion: 0.22 -Nodes (8): inputs, kind, paths, build, source, version, major, minor +Cohesion: 0.17 +Nodes (8): { clear, exportLogs }, logs, open, formatError(), LogEntry, useLogger(), useLoggerState(), invokeLogged() ### Community 582 - "Community 582" -Cohesion: 0.22 -Nodes (8): inputs, kind, paths, build, source, version, major, minor +Cohesion: 0.13 +Nodes (15): MdmStatusState, useMdmStatus(), getInstalledMdmVersion(), LocalServerInfo, MagicSession, MdmCommandResult, MdmPushStatus, MdmStatusByUdidData (+7 more) ### Community 583 - "Community 583" -Cohesion: 0.22 -Nodes (8): inputs, kind, paths, build, source, version, major, minor +Cohesion: 0.12 +Nodes (17): properties, Identifier, default, description, type, description, oneOf, type (+9 more) ### Community 584 - "Community 584" Cohesion: 0.22 @@ -3201,8 +3592,8 @@ Cohesion: 0.22 Nodes (8): configurations, kind, paths, build, source, version, major, minor ### Community 586 - "Community 586" -Cohesion: 0.22 -Nodes (8): configurations, kind, paths, build, source, version, major, minor +Cohesion: 0.12 +Nodes (17): properties, Identifier, default, description, type, description, oneOf, type (+9 more) ### Community 587 - "Community 587" Cohesion: 0.22 @@ -3225,20 +3616,20 @@ Cohesion: 0.22 Nodes (8): configurations, kind, paths, build, source, version, major, minor ### Community 592 - "Community 592" -Cohesion: 0.22 -Nodes (8): configurations, kind, paths, build, source, version, major, minor +Cohesion: 0.12 +Nodes (15): buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, cppFileExtensions, cCompilerExecutable, cppCompilerExecutable, toolchains (+7 more) ### Community 593 - "Community 593" Cohesion: 0.22 Nodes (8): configurations, kind, paths, build, source, version, major, minor ### Community 594 - "Community 594" -Cohesion: 0.22 -Nodes (8): configurations, kind, paths, build, source, version, major, minor +Cohesion: 0.12 +Nodes (15): buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, cppFileExtensions, cCompilerExecutable, cppCompilerExecutable, toolchains (+7 more) ### Community 595 - "Community 595" -Cohesion: 0.22 -Nodes (8): configurations, kind, paths, build, source, version, major, minor +Cohesion: 0.12 +Nodes (15): App-Kategorie (Play Console), Berechtigungen — Begründung für Review-Team, BIND_ACCESSIBILITY_SERVICE, BIND_VPN_SERVICE, Content-Rating, Datenschutzerklärung-URL (PFLICHT), FOREGROUND_SERVICE, Kurzbeschreibung (80 Zeichen max, Play-Card) (+7 more) ### Community 596 - "Community 596" Cohesion: 0.39 @@ -3261,32 +3652,32 @@ Cohesion: 0.23 Nodes (12): Outlook OAuth DSGVO Review Memo, MS lacks 3rd-party token-revoke endpoint, OAuth preferred over App-Password (DSGVO datamin), Microsoft Basic-Auth Deprecation (Sep 2024), BFF OAuth Token-Exchange Pattern, Outlook OAuth2 Implementation Plan, Microsoft Outlook OAuth2 Mail Integration, ImapFlow XOAUTH2 Auth (+4 more) ### Community 601 - "Community 601" -Cohesion: 0.33 -Nodes (6): Anonymitäts-Invariante (kein PII in API/Realtime/Push/Log), R-DATA-07 Anonymitätsbruch (Klarname-Leak), CallKit + VoIP Setup für ReBreak, includesCallsInRecents:false (DiGA-Privacy, kein iCloud-Sync), Voice-Calls coturn TURN-Server Runbook, coturn force-relay (kein IP-Austausch, Anonymität) +Cohesion: 0.13 +Nodes (14): File Structure, Konsistenz, Placeholder scan, Self-Hosted GitHub Actions Runner Implementation Plan, Self-Review, Spec coverage, Task 1: Server `api.trucko.org` vorbereiten, Task 2: GitHub Actions Runner installieren und registrieren (+6 more) ### Community 602 - "Community 602" Cohesion: 0.16 Nodes (16): family_controls_error, permission_denied, body, fallback_body, fallback_label, retry_cta, retry_loading, settings_cta (+8 more) ### Community 603 - "Community 603" -Cohesion: 0.32 -Nodes (23): abi, artifactName, output, runtimeFiles, libraries, appmodules::@6890427a1f51a3e7e1df, core::@1b9a7d546b295b7d0867, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb (+15 more) +Cohesion: 0.22 +Nodes (6): DeviceState, Never, String, Task, Void, WelcomeView ### Community 604 - "Community 604" Cohesion: 0.16 Nodes (16): family_controls_error, permission_denied, body, fallback_body, fallback_label, retry_cta, retry_loading, settings_cta (+8 more) ### Community 605 - "Community 605" -Cohesion: 0.10 -Nodes (22): applock, prompt, signOut_body, signOut_title, subtitle, title, unlock, games (+14 more) +Cohesion: 0.05 +Nodes (50): landing, settings, applock, prompt, signOut_body, signOut_title, subtitle, title (+42 more) ### Community 606 - "Community 606" -Cohesion: 0.43 -Nodes (6): main(), DBEntry, BuildManifestDB(), ComputeFileID(), DefaultRestoreEntries(), EncodeMBFile() +Cohesion: 0.20 +Nodes (9): Files, MDM Healthcheck Implementation Plan, Self-Review, Task 1: Extend UserDevice Prisma schema, Task 2: Create migration for MDM health columns, Task 3: Extend mdm.ts DB layer, Task 4: Create mdm-health-cron.ts plugin, Task 5: Write tests for MDM healthcheck (+1 more) ### Community 607 - "Community 607" -Cohesion: 0.54 -Nodes (5): String, MacDeviceDetector.swift (IOPlatformUUID), MacDeviceDetectorError, sysctlFailed, MacDeviceInfo +Cohesion: 0.40 +Nodes (7): String, MacDeviceDetector.swift (IOPlatformUUID), MacDeviceDetector, MacDeviceDetectorError, platformUUIDNotFound, sysctlFailed, MacDeviceInfo ### Community 608 - "Community 608" Cohesion: 0.29 @@ -3317,27 +3708,27 @@ Cohesion: 0.29 Nodes (5): email, error, loading, { loginWithPassword }, password ### Community 616 - "Community 616" -Cohesion: 0.33 -Nodes (5): Acquire(), SyncLock, Client, DeviceEntry, File +Cohesion: 0.38 +Nodes (10): MailBlockedItem, MailResultsResponse, useMailResults(), ActivityItem(), domainFromEmail(), formatDate(), MailActivityLog(), MailActivityLogBody() (+2 more) ### Community 617 - "Community 617" Cohesion: 0.29 Nodes (5): blockedDomain, quote, quotes, route, { t } ### Community 618 - "Community 618" -Cohesion: 0.48 -Nodes (6): DeviceInfo, Conn, asString(), checkIOSVersionAtLeast(), Run(), Result +Cohesion: 0.39 +Nodes (7): DeviceInfo, Conn, asString(), checkIOSVersionAtLeast(), Run(), DeviceInfo, Result ### Community 619 - "Community 619" Cohesion: 0.48 Nodes (7): Diary book with heart icon (journaling/mood-diary), Gears with downward arrow icon (disruption / breaking the cycle), Blue shield with checkmark icon (encryption / data security), Bar chart with upward trend line icon (progress/statistics), Pair of kidneys icon (body/organ health), ReBreak marketing landing-page icon/illustration set, Gambling-recovery benefit messaging (journaling, cycle-breaking, privacy, progress, physical health) ### Community 620 - "Community 620" -Cohesion: 0.29 -Nodes (6): default, description, identifier, local, permissions, windows +Cohesion: 0.15 +Nodes (12): default, description, identifier, local, permissions, windows, default, description (+4 more) ### Community 621 - "Community 621" -Cohesion: 0.47 +Cohesion: 0.38 Nodes (4): RebreakDeviceAdminReceiver, Context, Intent, DeviceAdminReceiver ### Community 622 - "Community 622" @@ -3349,16 +3740,16 @@ Cohesion: 0.33 Nodes (5): NITRO_HOST, NITRO_PORT, NODE_ENV, PORT, start-admin-staging.sh script ### Community 624 - "Community 624" -Cohesion: 0.33 -Nodes (5): description, identifier, permissions, $schema, windows +Cohesion: 0.23 +Nodes (10): description, identifier, permissions, $schema, windows, description, identifier, permissions (+2 more) ### Community 625 - "Community 625" Cohesion: 0.33 Nodes (5): entries, kind, version, major, minor ### Community 626 - "Community 626" -Cohesion: 0.33 -Nodes (5): entries, kind, version, major, minor +Cohesion: 0.12 +Nodes (15): 1. Zweck und Sicherheitsrelevanz, 2.1 Prompt-Kategorien, 2.2 Prompt-Schema, 2.3 Regel-Typen, 2. Test-Set-Architektur, 3. Haupt-Metrik: Crisis-Detection-Recall, 4. Weitere Safety-Metriken, 5.1 Dateien (+7 more) ### Community 627 - "Community 627" Cohesion: 0.47 @@ -3397,40 +3788,40 @@ Cohesion: 0.47 Nodes (3): report_targets(), rmrf(), clean.sh script ### Community 637 - "Community 637" -Cohesion: 0.33 -Nodes (5): entries, kind, version, major, minor +Cohesion: 0.12 +Nodes (15): Folie 10 — Schutzkonzept für die Testphase, Folie 11 — Was wir suchen (Partnerschaft, keine Kunden), Folie 12 — Abschluss / Kontakt, Folie 1 — Titel, Folie 2 — Der Mensch im Suchtdruck (das eigentliche Problem), Folie 3 — Die Versorgungslücke (ruhig, mit Quellen), Folie 4 — Warum wir das machen (das Herz des Decks), Folie 5 — Was Rebreak konkret tut (drei Schutz-Ebenen) (+7 more) ### Community 638 - "Community 638" Cohesion: 0.33 Nodes (5): entries, kind, version, major, minor ### Community 639 - "Community 639" -Cohesion: 0.33 -Nodes (5): entries, kind, version, major, minor +Cohesion: 0.12 +Nodes (15): Known Backend Dependencies (out of scope for this frontend plan), Magic Dashboard iOS Section – Implementation Plan, Spec Coverage Check, Task 10: Grace-period / Offboarding placeholder, Task 11: Verification and build, Task 12: Commit changes, Task 1: Extend `useDeviceStatus.ts` to split devices by platform, Task 2: Create `IosDeviceCard.vue` (+7 more) ### Community 640 - "Community 640" -Cohesion: 0.33 -Nodes (5): entries, kind, version, major, minor +Cohesion: 0.12 +Nodes (15): 0. Routing & Datenmodell-Übersicht, 1. Visual Mock (ASCII-Wireframe), 2. Component-Tree, 3. API-Endpoint-Liste, 4. DB-Schema-Änderungen, 5. UI-Differential-Logik (eigenes vs fremdes Profil), 6.1 Image-Cropper-Library für RN (Expo SDK 53, New Architecture), 6.2 Cooldown-Timeline — Liste vs Chart vs Heatmap (+7 more) ### Community 641 - "Community 641" Cohesion: 0.33 -Nodes (5): entries, kind, version, major, minor +Nodes (6): abi, core::@1b9a7d546b295b7d0867, react_codegen_RNMmkvSpec::@7541eabbae598da31a69, abi, artifactName, runtimeFiles ### Community 642 - "Community 642" Cohesion: 0.33 Nodes (5): entries, kind, version, major, minor ### Community 643 - "Community 643" -Cohesion: 0.33 -Nodes (5): entries, kind, version, major, minor +Cohesion: 0.13 +Nodes (14): Aktuelle Consent-Version, Backend-Dateien, ConnectMailSheet — Consent-Gate, Consent-Gap-Plan — Art. 9 DSGVO Mail-Auto-Delete, Consent-Text-Bump-Workflow (für künftige DSB-Updates), Empfehlung: `GET /api/mail-connections/consent-version`, Frontend-Spec für rebreak-native-ui (UI-Agent), Nicht gemacht (explizit aus Scope ausgeschlossen) (+6 more) ### Community 644 - "Community 644" -Cohesion: 0.33 -Nodes (5): entries, kind, version, major, minor +Cohesion: 0.13 +Nodes (14): compilerOptions, allowSyntheticDefaultImports, declaration, esModuleInterop, module, moduleResolution, outDir, resolveJsonModule (+6 more) ### Community 645 - "Community 645" -Cohesion: 0.33 -Nodes (5): entries, kind, version, major, minor +Cohesion: 0.13 +Nodes (14): 0. Ehrliche Einordnung, 1. Software-Sicherheitsklassifizierung (IEC 62304 §4.3) — Vorschlag, 2.1 Komponenten-Dekomposition, 2.2 Zentrale Schnittstellen (Datenflüsse), 2.3 Architektur-Belege aus dem Graph, 2. Software-System-Architektur (IEC 62304 §5.3), 3.1 Backend (Nitro-API) — Runtime-SOUP, 3.2 Native-App (Expo/RN) — sicherheits-/schutzrelevante SOUP (Auswahl) (+6 more) ### Community 646 - "Community 646" Cohesion: 0.33 @@ -3489,12 +3880,12 @@ Cohesion: 0.40 Nodes (3): fs, path, { withDangerousMod } ### Community 660 - "Community 660" -Cohesion: 0.40 +Cohesion: 0.60 Nodes (5): fs, path, SOURCE, { withDangerousMod }, withRiveAssetAndroid() ### Community 661 - "Community 661" -Cohesion: 0.50 -Nodes (4): android, apple, modules, platforms +Cohesion: 0.40 +Nodes (5): android, modules, apple, modules, platforms ### Community 662 - "Community 662" Cohesion: 0.60 @@ -3505,11 +3896,11 @@ Cohesion: 0.60 Nodes (4): log(), log_err(), PATH, deploy.sh script ### Community 665 - "Community 665" -Cohesion: 0.50 +Cohesion: 0.40 Nodes (3): String, UInt32, FNVHashTests ### Community 666 - "Community 666" -Cohesion: 0.40 +Cohesion: 0.33 Nodes (4): Context, Intent, BroadcastReceiver, RebreakVpnBootReceiver ### Community 667 - "Community 667" @@ -3541,8 +3932,8 @@ Cohesion: 0.50 Nodes (3): enabled, packages, prefabPath ### Community 674 - "Community 674" -Cohesion: 0.50 -Nodes (3): enabled, packages, prefabPath +Cohesion: 0.29 +Nodes (6): enabled, packages, prefabPath, enabled, packages, prefabPath ### Community 675 - "Community 675" Cohesion: 0.50 @@ -3565,8 +3956,8 @@ Cohesion: 0.50 Nodes (3): info, author, version ### Community 686 - "Community 686" -Cohesion: 0.11 -Nodes (18): EMPTY_STATS, GamesScreen(), GameStat, GameStats, LastScore, formatTimestamp(), MessageRow(), GameCard() (+10 more) +Cohesion: 0.18 +Nodes (13): formatTimestamp(), MessageRow(), Props, st, CardType, GameHeader(), MessageRow(), MessageRowProps (+5 more) ### Community 687 - "Community 687" Cohesion: 0.12 @@ -3584,16 +3975,24 @@ Nodes (3): fs, path, { withDangerousMod } Cohesion: 0.50 Nodes (3): fs, path, { withDangerousMod } +### Community 691 - "Community 691" +Cohesion: 0.60 +Nodes (4): log(), log_err(), PATH, deploy-admin-from-artifact.sh script + ### Community 694 - "Community 694" -Cohesion: 0.50 -Nodes (3): enabled, packages, prefabPath +Cohesion: 0.29 +Nodes (6): enabled, packages, prefabPath, enabled, packages, prefabPath ### Community 696 - "Community 696" -Cohesion: 0.11 -Nodes (17): DmConvUnreadSlice, createNativeTabNavigator, NativeOnlyOptions, NativeTabNavigationEventMap, NativeTabs, NativeTabsScreenOptions, Props, ANDROID_ICONS (+9 more) +Cohesion: 0.25 +Nodes (15): AppResult, Option, PlatformInfo, String, activate_protection(), computer_name_is_non_empty(), deactivate_protection(), device_id_matches_system_uuid() (+7 more) + +### Community 702 - "Community 702" +Cohesion: 0.70 +Nodes (3): KeyboardAdjustedView(), KeyboardAdjustedViewProps, useKeyboardHeight() ### Community 704 - "Community 704" -Cohesion: 0.67 +Cohesion: 0.83 Nodes (3): Callback, Options, useNativeActionSheet() ### Community 706 - "Community 706" @@ -3605,72 +4004,76 @@ Cohesion: 1.00 Nodes (3): Deploy Pipeline (deploy.sh, atomic .output-staging swap, pm2), WEBHOOK_MIGRATION_PLAN.md (standalone→Nitro endpoint), GitHub Webhook as Nitro API Endpoint (Trucko pattern) ### Community 750 - "Community 750" -Cohesion: 0.12 -Nodes (18): ChatHeaderStatus(), Props, OnlinePresenceProvider(), PresenceContextExtended, PresenceVisibilityContext, Props, applyRawPresence(), clearPendingRemovals() (+10 more) +Cohesion: 0.15 +Nodes (24): ChatHeaderStatus(), formatLastSeen(), Props, OnlinePresenceProvider(), PresenceContextExtended, PresenceVisibilityContext, Props, usePresenceVisibility() (+16 more) ### Community 759 - "Community 759" -Cohesion: 0.15 -Nodes (14): Lang, LANG_NAME, LANGS, LYRA_TOPICS, LyraTopic, TOPIC_HINTS, postFromCatalog(), postFromLLM() (+6 more) +Cohesion: 0.13 +Nodes (14): Abhaengigkeiten, Bekannte Provider-Quirks, Datei-Übersicht, Kontext, MAIL_DAEMON_DEPLOYMENT — Backyard Handoff, Rollback-Plan, Schritt 1 — GH-Actions: imap-idle ins Artifact einschließen, Schritt 2 — npm install auf Server (+6 more) ### Community 863 - "Community 863" -Cohesion: 0.50 -Nodes (3): nav, download_app, login +Cohesion: 0.29 +Nodes (4): allChecked, checks, hasReBreakApp, iphone ### Community 864 - "Community 864" -Cohesion: 0.18 -Nodes (17): REQ-PROT Schutz/Blocker (geräteweite Zugangserschwerung), R-FALSE-01 falsche Sicherheit bei inaktivem Schutz, BackendCooldownStatus, BackendProtectionState, CooldownState, formatCooldownRemaining(), getCooldownTestMode(), isAllLayersOn() (+9 more) +Cohesion: 0.13 +Nodes (14): description, displayName, folderStructure, filename, root, skillPath, frontmatter, installType (+6 more) ### Community 865 - "Community 865" -Cohesion: 0.12 -Nodes (16): compilerOptions, allowSyntheticDefaultImports, baseUrl, forceConsistentCasingInFileNames, lib, module, moduleResolution, noEmit (+8 more) +Cohesion: 0.15 +Nodes (15): EMPTY_STATS, GamesScreen(), GameStat, GameStats, LastScore, GameCard(), GameCardProps, GameRatingStars() (+7 more) ### Community 866 - "Community 866" -Cohesion: 0.28 -Nodes (7): currentLlmProvider(), listeners, LLM_PROVIDER_LABEL, LlmProvider, useLlmProvider(), LlmProviderToggle(), PROVIDERS +Cohesion: 0.42 +Nodes (9): currentLlmProvider(), listeners, LLM_PROVIDER_LABEL, LlmProvider, loadLlmProvider(), setLlmProvider(), useLlmProvider(), LlmProviderToggle() (+1 more) ### Community 867 - "Community 867" -Cohesion: 0.28 -Nodes (6): Int, String, Bool, MacDeviceInfo, MacRegistrationView.swift, MacRegistrationView +Cohesion: 0.26 +Nodes (7): Bool, Int, String, Bool, MacDeviceInfo, MacRegistrationView.swift, MacRegistrationView ### Community 868 - "Community 868" -Cohesion: 0.17 -Nodes (16): nickname, body, cta_no, cta_yes, hint, diga_choice, cta_primary, error_profanity (+8 more) +Cohesion: 0.13 +Nodes (14): description, displayName, folderStructure, filename, root, skillPath, frontmatter, installType (+6 more) ### Community 869 - "Community 869" -Cohesion: 0.28 -Nodes (15): Bool, Date, String, Codable, MagicAPIClient.swift (/api/magic/*), Config, MagicDevice, MagicDeviceSource (+7 more) +Cohesion: 0.13 +Nodes (14): description, displayName, folderStructure, filename, root, skillPath, frontmatter, installType (+6 more) ### Community 870 - "Community 870" -Cohesion: 0.21 -Nodes (8): BloomFilter, NEURLFilterPrefilter, String, NEURLFilterControlProvider, NEProviderStopReason, ProviderFilterError, loadError, URLFilterControlProvider +Cohesion: 0.13 +Nodes (14): description, displayName, folderStructure, filename, root, skillPath, frontmatter, installType (+6 more) ### Community 871 - "Community 871" -Cohesion: 0.21 -Nodes (14): payment, welcome, onboarding, payment, welcome, body, cta_dev_skip, dev_body (+6 more) +Cohesion: 0.18 +Nodes (12): POST /api/magic/register Endpoint, GET /api/magic/status Endpoint, MacProfileInstaller.swift (DNS-Filter Profile), 24h-Cooldown Server-Timed Deactivation, ReBreak Magic Windows App (Tauri 2), Eigene DoH-Infra (dns.rebreak.org, AdGuard), ReBreak Magic Windows index.html, ReBreak Magic Windows README (+4 more) ### Community 872 - "Community 872" -Cohesion: 0.14 -Nodes (14): settings, headerMenu, debug, games, logout, profile, settings, tabs (+6 more) +Cohesion: 0.26 +Nodes (13): makeStyles(), SOSScreen(), currentProvider(), endpointForProvider(), listeners, loadTtsProvider(), setTtsProvider(), TTS_PROVIDER_ENDPOINT (+5 more) ### Community 873 - "Community 873" Cohesion: 0.14 Nodes (13): 10. SWOT-Analyse, 14.1 Risiko-Matrix, 14.2 Realistischer Worst-Case 24 Monate, 14. Risiken & Mitigation, 1. Executive Summary, 6.1 Wettbewerbs-Matrix (verifiziert Stand 2026), 6.2 USP-Analyse Rebreak, 6.3 Was Rebreak bewusst NICHT macht (+5 more) +### Community 874 - "Community 874" +Cohesion: 0.40 +Nodes (4): Agent-Verhaltensregel: Keine eigenmächtigen Code-Änderungen, CLAUDE.md — rebreak-monorepo, graphify (Knowledge-Graph), Session-Kontext-Limit: Stop & Prompt + ### Community 875 - "Community 875" Cohesion: 0.14 Nodes (14): 3.1 Produkt-Überblick, 3.2 Geräteschutz (Layer 1), 3.3 Mail-Schutz (Layer 2), 3.4 Lyra — KI-Coach (Layer 3), 3.5 Streak, Community, Onboarding, 3.6 Rebreak Magic — Selbstbindungs-Modus (optional), 3.7 Multi-Device, 3.8 Tech-Stack (Kurzfassung) (+6 more) ### Community 876 - "Community 876" -Cohesion: 0.20 -Nodes (10): BREATH_PHASES, BreathPhase, BreathState, Chip, CHIP_SETS, ChipSet, BreathingCard(), BreathingDrawer() (+2 more) +Cohesion: 0.21 +Nodes (8): BloomFilter, NEProviderStopReason, NEURLFilterPrefilter, String, NEProviderStopReason, ProviderFilterError, loadError, URLFilterControlProvider ### Community 877 - "Community 877" -Cohesion: 0.21 -Nodes (12): error_invalid_input, body, cta_primary, cta_secondary, error_already_used, error_expired, error_invalid_input, error_not_found (+4 more) +Cohesion: 0.18 +Nodes (13): anyOf, description, $schema, title, anyOf, definitions, Number, PermissionEntry (+5 more) ### Community 878 - "Community 878" -Cohesion: 0.17 -Nodes (12): error, common, back, cancel, confirm, continue, error, loading (+4 more) +Cohesion: 0.18 +Nodes (13): anyOf, description, $schema, title, anyOf, definitions, Number, PermissionEntry (+5 more) ### Community 879 - "Community 879" Cohesion: 0.17 @@ -3689,8 +4092,8 @@ Cohesion: 0.18 Nodes (11): 4.1 Prävalenz Glücksspielsucht in Deutschland, 4.2 Strukturelle Versorgungslücken, 4.3 Marktgröße (Top-Down + Bottom-Up), 4.4 Regulatorisches Fenster, 4. Problem & Markt, Bottom-Up — Conversion-Annahmen, Lücke 1 — Offshore-Schwarzmarkt nach OASIS-Sperrung, Lücke 2 — Werbe-Druck via E-Mail (+3 more) ### Community 883 - "Community 883" -Cohesion: 0.36 -Nodes (5): String, URL, RuntimeError, CustomStringConvertible, Error +Cohesion: 0.52 +Nodes (6): AppResult, String, find_free_port(), LocalServerInfo, start_local_profile_server(), stop_local_profile_server() ### Community 884 - "Community 884" Cohesion: 0.20 @@ -3705,24 +4108,24 @@ Cohesion: 0.22 Nodes (8): Agenten-Lernpunkt, ✅ DONE diese Session, ✅ ERLEDIGT in Fortsetzung 2026-06-09, Laufender Zustand der Umgebung (WICHTIG), ⏭️ NÄCHSTE SCHRITTE (Bypass-Session), 🐞 OFFENE BUGS (vom Founder beim Testen gefunden), 📸 Screenshot-Status, Session-Handoff 2026-06-08 — Preview-Page, Screenshots, Bug-Hunt ### Community 887 - "Community 887" -Cohesion: 0.31 -Nodes (8): MailBlockedItem, MailResultsResponse, useMailResults(), ActivityItem(), domainFromEmail(), formatDate(), MailActivityLog(), Props +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-items ### Community 888 - "Community 888" -Cohesion: 0.25 -Nodes (7): kind, paths, build, source, version, major, minor +Cohesion: 0.21 +Nodes (12): buildFiles, buildTargetsCommandComponents, cFileExtensions, cleanCommandsComponents, cppFileExtensions, buildFiles, buildTargetsCommandComponents, cFileExtensions (+4 more) ### Community 889 - "Community 889" -Cohesion: 0.36 -Nodes (8): privacy, privacy, body, cta_primary, promise_alias, promise_germany, promise_minimal, promise_no_ads +Cohesion: 0.14 +Nodes (13): 1. `POST /api/magic/register`, 2. `GET /api/magic/devices`, 3. `POST /api/magic/devices/:deviceId/request-release`, 4. `POST /api/magic/devices/:deviceId/cancel-release`, 5. `GET /api/magic/profile.mobileconfig?token=`, AdGuard-Integration, Architektur-Überblick, Cron-Worker (+5 more) ### Community 890 - "Community 890" Cohesion: 0.25 Nodes (8): 15. Anhang, A. CV Chahine Brini, B. Vorläufige LOI-Liste, C. Quellen & Belege, D. App-Demo, E. Screenshots der App, F. Lyra-Persona / Produkt-Spezifikation (Auszug), G. Kontakt ### Community 891 - "Community 891" -Cohesion: 0.29 -Nodes (5): MainApplication, Application, ReactApplication, ReactHost, ReactNativeHost +Cohesion: 0.14 +Nodes (13): 0. Lesehilfe, 10. Querschnittliche nicht-funktionale Anforderungen, 11. Offene Punkte & Abgrenzungen, 1. Schutz / Blocker (geräteweite Zugangserschwerung), 2. Selbstbindung (RebreakMagic / Lock-Modus), 3. Mail-Schutz (Trigger-Mail-Entfernung), 4. Lyra (KI-Coach) & Krisen-Behandlung, 5. SOS-Werkzeuge (Atemübung, Spiele, Urge-Logging) (+5 more) ### Community 892 - "Community 892" Cohesion: 0.29 @@ -3812,24 +4215,1500 @@ Nodes (3): Changes, Features, v0.3.13 (Build 71 / versionCode 54) — 2026-06-04 Cohesion: 0.67 Nodes (3): Changes, Features, v0.3.13 (Build 70 / versionCode 53) — 2026-06-03\n\n### Fixes +### Community 923 - "Community 923" +Cohesion: 0.29 +Nodes (13): AppResult, Option, PlatformInfo, String, activate_protection(), deactivate_protection(), get_computer_name(), get_device_id() (+5 more) + +### Community 924 - "Community 924" +Cohesion: 0.33 +Nodes (5): nav, download_app, login, pricing, resources + +### Community 925 - "Community 925" +Cohesion: 0.36 +Nodes (10): AppResult, String, activate_protection(), get_device_id(), get_hardware_id(), get_hostname(), get_platform(), Platform (+2 more) + +### Community 926 - "Community 926" +Cohesion: 0.14 +Nodes (13): 1. Methodik & Bewertungsskalen, 2.1 Lyra-Fehlverhalten / verpasste Krise (höchste Priorität), 2.2 Falsche Sicherheit (User verlässt sich auf lückenhaften Schutz), 2.3 Schutz-Umgehung (Bypass im Impulsmoment), 2.4 Datenschutz / Art-9-Datenleck (Spiegelung zu Dok 08 — Owner: Hans), 2.5 Mail-Filter-Fehlfunktion, 2.6 Spiele / SOS-Werkzeuge, 2. Risikotabelle (+5 more) + +### Community 927 - "Community 927" +Cohesion: 0.70 +Nodes (3): WizardStep, Color, StepIndicator + +### Community 928 - "Community 928" +Cohesion: 0.40 +Nodes (6): ReBreak Magic RE-Hardening Assessment & Plan, Admin-User kann alles aufheben (echter Schutz = Cooldown+Psychologie), Server-seitige Token-Revocation (Kern-Sicherheit im Backend), DNS-Token DPAPI-Verschlüsselung (Windows), Windows protection.json ACL-Härtung (DNS-Token-Schutz), Windows Service-Name-Bypass (sc.exe stop RebreakProtection) + +### Community 930 - "Community 930" +Cohesion: 0.14 +Nodes (13): 10. Die Sequenz in einem Satz, 1. Die zwei Knoten, 2. Geld-Mechanik (wichtig — nicht verwechseln), 3. Win-Win (warum jeder mitmacht), 4. GmbH-Engpass? Nein., 5. Kontakte + Sequenz, 5b. Reihenfolge + Plan B/C — nicht von einer Person abhängen, 6. Was anhängen / verlinken (in beiden Mails) (+5 more) + +### Community 931 - "Community 931" +Cohesion: 0.13 +Nodes (14): Annahmen / Einschränkungen, Architektur, Dateien, Datenmodell, Endpunkte, `GET /api/magic/devices/:deviceId/mdm`, Infra / Env, Magic-App UI (+6 more) + +### Community 932 - "Community 932" +Cohesion: 0.14 +Nodes (13): Apple Push Zertifikat — Ablauf, Certbot (System-Service), DNS, MDM Server — Technische Architektur, NanoMDM (Docker-Container), nginx (System-Service), Port-Übersicht, PostgreSQL (System-Service) (+5 more) + +### Community 933 - "Community 933" +Cohesion: 0.29 +Nodes (13): blend(), derive_row(), derive_ui_reasoning(), h2r(), is_dark(), lum(), on_color(), r2h() (+5 more) + +### Community 934 - "Community 934" +Cohesion: 0.29 +Nodes (13): blend(), derive_row(), derive_ui_reasoning(), h2r(), is_dark(), lum(), on_color(), r2h() (+5 more) + +### Community 935 - "Community 935" +Cohesion: 0.15 +Nodes (13): definitions, Identifier, Number, PermissionEntry, Target, description, oneOf, anyOf (+5 more) + +### Community 936 - "Community 936" +Cohesion: 0.15 +Nodes (13): definitions, Identifier, Number, PermissionEntry, description, oneOf, anyOf, description (+5 more) + +### Community 937 - "Community 937" +Cohesion: 0.38 +Nodes (9): speakCartesia(), speakElevenLabs(), speakGoogle(), consumeVoiceQuota(), estimateAudioSeconds(), getRemainingVoiceQuota(), todayUtcMidnight(), VoiceConfig (+1 more) + +### Community 938 - "Community 938" +Cohesion: 0.17 +Nodes (13): abi, artifactName, output, runtimeFiles, toolchain, output, appmodules::@6890427a1f51a3e7e1df, react_codegen_RNKC::@01e3c54a97c6e9d385b6 (+5 more) + +### Community 939 - "Community 939" +Cohesion: 0.17 +Nodes (13): abi, artifactName, output, runtimeFiles, toolchain, output, appmodules::@6890427a1f51a3e7e1df, react_codegen_rnsvg::@4f40eb209d0c0b4a3b65 (+5 more) + +### Community 940 - "Community 940" +Cohesion: 0.17 +Nodes (13): abi, artifactName, output, runtimeFiles, toolchain, output, appmodules::@6890427a1f51a3e7e1df, react_codegen_RNKC::@01e3c54a97c6e9d385b6 (+5 more) + +### Community 941 - "Community 941" +Cohesion: 0.17 +Nodes (13): abi, artifactName, output, runtimeFiles, toolchain, output, appmodules::@6890427a1f51a3e7e1df, react_codegen_rnsvg::@4f40eb209d0c0b4a3b65 (+5 more) + +### Community 942 - "Community 942" +Cohesion: 0.17 +Nodes (13): abi, artifactName, output, runtimeFiles, toolchain, output, appmodules::@6890427a1f51a3e7e1df, react_codegen_RNKC::@01e3c54a97c6e9d385b6 (+5 more) + +### Community 943 - "Community 943" +Cohesion: 0.15 +Nodes (12): Admin / Cron, Backend Environment Variables, Bot-User-IDs, Core / Database, Email / External APIs, LLM-Provider, OAuth, Public (Client-readable) (+4 more) + +### Community 944 - "Community 944" +Cohesion: 0.15 +Nodes (12): Bewertung für DiGA-Verifikation, Crisis-Detection-Recall — Detail (SAFETY-REQ-LLM-001), Drang-Moment-Handling (2 Fehler von 5), Ergebnis-Zusammenfassung, Fehlgeschlagene Testfälle gesamt, Grenzfälle / Ambiguität (4 Fehler von 7), Harmlose Coach-Fragen (2 Fehler von 6), Jailbreak-Resistenz (3 Fehler von 6) (+4 more) + +### Community 945 - "Community 945" +Cohesion: 0.15 +Nodes (12): AdGuard QueryLog Format, Datei-Übersicht, Deploy-Schritte (Reihenfolge), DoH ClientID Handshake — Architektur, Flow-Diagramm, nginx — Diff vs. alter Konfiguration, Risiken, Risiken + Verify-Checklist (+4 more) + +### Community 946 - "Community 946" +Cohesion: 0.15 +Nodes (12): 1. TL;DR, 2. Pfad-Vergleich-Tabelle, 3. Pfad-Details, 4. Empfehlung, 5. Offene Fragen (ungeprüft / hypothetisch markiert), 6. Quellen, Pfad 1: Mac Catalyst, Pfad 2: React Native macOS (Microsoft Fork) (+4 more) + +### Community 947 - "Community 947" +Cohesion: 0.17 +Nodes (11): Aktueller Stand, Frontend-Struktur (Nuxt), Gemeinsamer Wizard-Flow, Nächste Schritte, Plattformspezifische Rust-Module, ReBreak Magic — Unified Desktop App (Nuxt + Tauri), Risiken / Offene Punkte, Tech-Stack (+3 more) + +### Community 948 - "Community 948" +Cohesion: 0.17 +Nodes (11): Bekannte Tücken, Cross-Plattform-Pfad (Phase 2), Failure-Pfade, Post-Supervise: iOS-Setup-Stage, ReBreak Supervise Bootstrap-Tool, Schnellstart, State + Logs, Status (+3 more) + +### Community 949 - "Community 949" +Cohesion: 0.17 +Nodes (11): Cheatsheet, Coexistence-Strategie: Webhook bleibt parallel, Files in diesem PR, GitHub-Actions Build+Deploy-Pipeline -- rebreak-monorepo, Migration zu Production-Pipeline (spaeter), Neue Pipeline-Architektur, Open Questions, Recon: Trucko-Pattern (Vorlagen) (+3 more) + +### Community 950 - "Community 950" +Cohesion: 0.17 +Nodes (11): Apple-Walls die bleiben, Apple-Walls die wir damit umgehen, Build, Delta-Workflow (current vs legacy), Lizenz & Distribution, Mechanismus im Detail, ReBreak Supervise Magic, Sicherheits-Hinweise (+3 more) + +### Community 951 - "Community 951" +Cohesion: 0.17 +Nodes (11): Additional diagnostic tests (2026-05-21), Apple DTS / Feedback — NEURLFilter `serverSetupIncomplete` on a development-signed build, Configuration used, Environment, How to submit (internal note — not part of the report text), Questions for Apple, Reproduction, Summary (+3 more) + +### Community 952 - "Community 952" +Cohesion: 0.17 +Nodes (11): 1. FAGS-Landschaft DE, 2. Outreach-Email, 3. Letter of Intent — Template, 4. Versand-Reihenfolge, FAGS-Outreach-Paket für Rebreak Beta + NBank-LOIs, PRIORITÄT 1 — Niedersachsen (NBank-relevant), PRIORITÄT 2 — Bundesweit (Phase 2), Quellen (+3 more) + +### Community 953 - "Community 953" +Cohesion: 0.17 +Nodes (11): author, description, displayName, homepage, install, keywords, license, name (+3 more) + +### Community 954 - "Community 954" +Cohesion: 0.24 +Nodes (10): NanoMDM Server (mdm.rebreak.org), supervise-magic Go-CLI Binary, ReBreak Magic Mac App, AuthService.swift (Supabase + Keychain), ReBreak Magic Mac Phase 2 Summary, rebreak-magic-mac XcodeGen project.yml, ReBreak Magic Mac README, Rebreak Magic Mac (Self-Bind Wizard) (+2 more) + +### Community 955 - "Community 955" +Cohesion: 0.47 +Nodes (10): AppResult, String, mdm_install_app(), mdm_install_lock_profile(), mdm_ping(), mdm_push(), mdm_set_supervised_mode(), mdm_take_management() (+2 more) + +### Community 956 - "Community 956" +Cohesion: 0.18 +Nodes (11): react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, react_codegen_RNMmkvSpec::@7541eabbae598da31a69, abi, artifactName, toolchain, abi, artifactName, toolchain (+3 more) + +### Community 957 - "Community 957" +Cohesion: 0.18 +Nodes (11): react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName, toolchain, abi, artifactName, toolchain (+3 more) + +### Community 958 - "Community 958" +Cohesion: 0.18 +Nodes (11): react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName, toolchain, abi, artifactName, toolchain (+3 more) + +### Community 959 - "Community 959" +Cohesion: 0.18 +Nodes (11): react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, react_codegen_RNMmkvSpec::@7541eabbae598da31a69, abi, artifactName, toolchain, abi, artifactName, toolchain (+3 more) + +### Community 960 - "Community 960" +Cohesion: 0.18 +Nodes (10): 1. Produkt & Hersteller, 2. Zweckbestimmung (Kern-Aussage), 3. Medizinischer Zweck & Indikation, 4. Vorgesehene Nutzer & Zielgruppe, 5. Funktionen / Wirkmechanismus (drei Ebenen), 6. Abgrenzung — was Rebreak NICHT ist, 7. Kontraindikationen & Warnhinweise, 8. Anwendungsumgebung & Nutzungskontext (+2 more) + +### Community 961 - "Community 961" +Cohesion: 0.18 +Nodes (10): 1. Zweck & Geltungsbereich, 2. PMS-Datenquellen (real vorhanden), 3.1 Meldeweg (Entwurf), 3. Vorkommnis- & meldepflichtige Ereignisse, 4. Trendberichterstattung (Art. 88), 5. Berichts-Rhythmus & Review-Zyklus, 6. Verantwortlichkeiten, 7. CAPA-Andockpunkt (→ Dok 10) (+2 more) + +### Community 962 - "Community 962" +Cohesion: 0.18 +Nodes (10): Abgelaufenes Apple Push Cert, Angreifer hat Zugriff auf Ina's Email-Account, Audit-Trail, Device-Verlust (gestohlen), Geheimhaltungs-Regeln, MDM Server — Security, Server-Kompromittierung, Threat-Modelle (+2 more) + +### Community 963 - "Community 963" +Cohesion: 0.18 +Nodes (10): Files, Migration vom alten Profile, NanoMDM Enrollment Generator (per-device), `rebreak-iphone-mdm-supervised.json` (NanoMDM, Step 2 von 2), `rebreak-iphone-protect.mobileconfig` (Sideload, non-removable), `rebreak-iphone-take-management.json` (NanoMDM, Step 1 von 2), ReBreak MDM Profiles, Reversal (+2 more) + +### Community 964 - "Community 964" +Cohesion: 0.18 +Nodes (10): 1. Was & Warum, 2. Architektur-Bausteine, 3. Deployment-Stand (Hetzner `rebreak-server`, 49.13.55.22), 4. Konfiguration, 5. iOS-Integrationswerte (`NEURLFilterManager.setConfiguration`), 6. Daten-Pipeline (Blocklist → PIR-DB), 7. Betrieb / Runbook, 8. Bekannte Issues / TODOs (+2 more) + +### Community 965 - "Community 965" +Cohesion: 0.20 +Nodes (10): properties, default, description, type, type, description, identifier, remote (+2 more) + +### Community 966 - "Community 966" +Cohesion: 0.20 +Nodes (10): $ref, description, items, type, uniqueItems, description, items, type (+2 more) + +### Community 967 - "Community 967" +Cohesion: 0.20 +Nodes (10): type, webviews, windows, items, description, items, type, description (+2 more) + +### Community 968 - "Community 968" +Cohesion: 0.20 +Nodes (10): properties, default, description, type, type, description, identifier, remote (+2 more) + +### Community 969 - "Community 969" +Cohesion: 0.20 +Nodes (10): $ref, description, items, type, uniqueItems, description, items, type (+2 more) + +### Community 970 - "Community 970" +Cohesion: 0.20 +Nodes (10): type, webviews, windows, items, description, items, type, description (+2 more) + +### Community 971 - "Community 971" +Cohesion: 0.33 +Nodes (6): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 972 - "Community 972" +Cohesion: 0.20 +Nodes (10): $ref, description, items, type, uniqueItems, description, items, type (+2 more) + +### Community 973 - "Community 973" +Cohesion: 0.20 +Nodes (10): type, webviews, windows, items, description, items, type, description (+2 more) + +### Community 974 - "Community 974" +Cohesion: 0.20 +Nodes (10): $ref, description, items, type, uniqueItems, description, items, type (+2 more) + +### Community 975 - "Community 975" +Cohesion: 0.20 +Nodes (10): type, webviews, windows, items, description, items, type, description (+2 more) + +### Community 976 - "Community 976" +Cohesion: 0.20 +Nodes (9): HIGH — Coordinate fallbacks (breaks on layout change), HIGH — Demographics field row Pressables, HIGH — SOS screen send button (no text, no testID), LOW — Settings screen rows, MEDIUM — Auth screen inputs (currently matched via i18n placeholder text), MEDIUM — ComposeCard share button, MEDIUM — ProfileEdit screen nickname input, Notes (+1 more) + +### Community 977 - "Community 977" +Cohesion: 0.22 +Nodes (9): artifactName, react_codegen_RNMmkvSpec::@7541eabbae598da31a69, react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName, toolchain, abi, artifactName (+1 more) + +### Community 978 - "Community 978" +Cohesion: 0.20 +Nodes (9): 0. Ehrliche Einordnung (bitte zuerst lesen), 1. Traceability-Logik (IEC 62304), 2. Traceability-Matrix — Lyra-/Krisen-Strang (v0), 2a. Traceability-Matrix — Mail-Schutz-Strang (REQ-MAIL, v0), 2b. Traceability-Matrix — Schutz-/Selbstbindungs-Strang (v0), 2c. Traceability-Matrix — Anonymitäts-Strang (REQ-COMM-005, v0), 3. Herkunft & Reproduzierbarkeit, 4. Offene Schritte (Richtung formaler IEC-62304-Record) (+1 more) + +### Community 979 - "Community 979" +Cohesion: 0.20 +Nodes (9): 0. QMS-Prozesslandkarte (Überblick), 1. Dokumentenlenkung (ISO 13485 §4.2.4/§4.2.5), 2. Änderungsmanagement & Software-Konfiguration (ISO 13485 §7.3.9 / IEC 62304 §8), 3. CAPA — Corrective and Preventive Action (ISO 13485 §8.5.2/§8.5.3), 4. Schulung & Kompetenz (ISO 13485 §6.2), 5. Lieferanten-/Subprozessor-Bewertung (ISO 13485 §7.4), 6. Management-Review (ISO 13485 §5.6), 7. Offene Punkte (+1 more) + +### Community 980 - "Community 980" +Cohesion: 0.20 +Nodes (9): Das Problem, Datenschutz & Ethik – unsere Haltung, Die Lösung: Rebreak, DiGA-Ambition, Kontakt, Rebreak — Digitale Unterstützung bei Glücksspielsucht, Stand der Entwicklung, Was wir suchen (+1 more) + +### Community 981 - "Community 981" +Cohesion: 0.22 +Nodes (8): Architektur, Backend-Änderungen (in diesem Repo, additiv), Bekannte Limitationen (v1), Bewusste Abweichungen vom ursprünglichen Prompt-Dokument, Build (Windows-Maschine), Entwicklung (macOS), Flow, ReBreak Magic für Windows + +### Community 982 - "Community 982" +Cohesion: 0.20 +Nodes (10): bundle, active, externalBin, icon, targets, windows, windows, installMode (+2 more) + +### Community 983 - "Community 983" +Cohesion: 0.22 +Nodes (9): abi, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, abi, artifactName, toolchain, abi, artifactName (+1 more) + +### Community 984 - "Community 984" +Cohesion: 0.22 +Nodes (9): artifactName, react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName, toolchain, abi, artifactName (+1 more) + +### Community 985 - "Community 985" +Cohesion: 0.22 +Nodes (9): artifactName, react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, react_codegen_RNMmkvSpec::@7541eabbae598da31a69, abi, artifactName, runtimeFiles, abi, artifactName (+1 more) + +### Community 986 - "Community 986" +Cohesion: 0.33 +Nodes (6): abi, core::@1b9a7d546b295b7d0867, react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, abi, artifactName, runtimeFiles + +### Community 987 - "Community 987" +Cohesion: 0.22 +Nodes (8): inputs, kind, paths, build, source, version, major, minor + +### Community 988 - "Community 988" +Cohesion: 0.22 +Nodes (9): abi, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, toolchain, abi, artifactName (+1 more) + +### Community 989 - "Community 989" +Cohesion: 0.22 +Nodes (9): artifactName, react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, abi, artifactName, toolchain, abi, artifactName (+1 more) + +### Community 990 - "Community 990" +Cohesion: 0.22 +Nodes (9): artifactName, react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, abi, artifactName, runtimeFiles, abi, artifactName (+1 more) + +### Community 991 - "Community 991" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-remove-at + +### Community 992 - "Community 992" +Cohesion: 0.22 +Nodes (8): inputs, kind, paths, build, source, version, major, minor + +### Community 993 - "Community 993" +Cohesion: 0.22 +Nodes (9): abi, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, toolchain, abi, artifactName (+1 more) + +### Community 994 - "Community 994" +Cohesion: 0.22 +Nodes (9): artifactName, react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, abi, artifactName, toolchain, abi, artifactName (+1 more) + +### Community 995 - "Community 995" +Cohesion: 0.22 +Nodes (9): artifactName, react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, react_codegen_RNMmkvSpec::@7541eabbae598da31a69, abi, artifactName, runtimeFiles, abi, artifactName (+1 more) + +### Community 996 - "Community 996" +Cohesion: 0.22 +Nodes (9): runtimeFiles, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, abi, artifactName, runtimeFiles, abi, artifactName (+1 more) + +### Community 997 - "Community 997" +Cohesion: 0.22 +Nodes (8): inputs, kind, paths, build, source, version, major, minor + +### Community 998 - "Community 998" +Cohesion: 0.22 +Nodes (9): abi, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, toolchain, abi, artifactName (+1 more) + +### Community 999 - "Community 999" +Cohesion: 0.36 +Nodes (7): String, CaseIterable, Field, Field, pirAuthenticationToken, pirPrivacyPassIssuerURL, pirServerURL + +### Community 1000 - "Community 1000" +Cohesion: 0.22 +Nodes (9): artifactName, react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, react_codegen_RNMmkvSpec::@7541eabbae598da31a69, abi, artifactName, runtimeFiles, abi, artifactName (+1 more) + +### Community 1001 - "Community 1001" +Cohesion: 0.22 +Nodes (9): runtimeFiles, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, runtimeFiles, abi, artifactName (+1 more) + +### Community 1002 - "Community 1002" +Cohesion: 0.22 +Nodes (8): inputs, kind, paths, build, source, version, major, minor + +### Community 1003 - "Community 1003" +Cohesion: 0.22 +Nodes (9): abi, react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName, toolchain, abi, artifactName (+1 more) + +### Community 1004 - "Community 1004" +Cohesion: 0.29 +Nodes (7): toolchain, libraries, core::@1b9a7d546b295b7d0867, react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, abi, artifactName, toolchain + +### Community 1005 - "Community 1005" +Cohesion: 0.22 +Nodes (9): artifactName, react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, react_codegen_RNMmkvSpec::@7541eabbae598da31a69, abi, artifactName, runtimeFiles, abi, artifactName (+1 more) + +### Community 1006 - "Community 1006" +Cohesion: 0.22 +Nodes (9): runtimeFiles, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, abi, artifactName, runtimeFiles, abi, artifactName (+1 more) + +### Community 1007 - "Community 1007" +Cohesion: 0.22 +Nodes (8): id, metadata, description, version, name, owner, name, plugins + +### Community 1008 - "Community 1008" +Cohesion: 0.22 +Nodes (8): author, name, description, keywords, license, name, skills, version + +### Community 1009 - "Community 1009" +Cohesion: 0.22 +Nodes (8): Ausgangslage, Beitrag von Rebreak, Datenschutz – ausdrücklich KEINE Datenbank-Kopplung, DiGA- und Versorgungsperspektive, Kontakt, Rebreak — Spielerschutz dort, wo OASIS strukturell nicht greift, Relevanz für die GlüStV-Evaluierung 2026, Was wir anbieten / suchen + +### Community 1010 - "Community 1010" +Cohesion: 0.22 +Nodes (8): Bewertung für DiGA-Verifikation, CR-003-Fail ist ein Regel-Design-Bug, kein LLM-Fehler, CR-004: Befund des Vorgänger-Runs reproduziert sich NICHT auf dem Produktionsmodell, Crisis-Detection — Detail (SAFETY-REQ-LLM-001), Ergebnis-Zusammenfassung, Lyra Eval-Record — 2026-06-10 (Groq llama-3.3-70b-versatile — PRODUKTIONSMODELL), Protokoll-Header, Übrige 12 Fehlschläge — Klassifizierung (deckungsgleich mit Vorgänger-Run) + +### Community 1011 - "Community 1011" +Cohesion: 0.22 +Nodes (8): Agent: hans-mueller (Datenschutz/Crisis), Agent: lyra-persona, Agent: rebreak-backend, Agent: rebreak-native-ui, Agent: zied (Release), Marketing-Site (staging.rebreak.org) — DONE 29.05.2026, Strategist / Chahine selbst, TODO-Queue für nächste Sessions + +### Community 1012 - "Community 1012" +Cohesion: 0.25 +Nodes (5): cooldownUntilText, desktopToggleIcon, desktopToggleLabel, statusColor, statusVariant + +### Community 1013 - "Community 1013" +Cohesion: 0.21 +Nodes (8): commands, description, identifier, commands, description, identifier, allow-remove-at, deny-identifier + +### Community 1014 - "Community 1014" +Cohesion: 0.25 +Nodes (8): description, properties, required, type, CapabilityRemote, urls, description, type + +### Community 1015 - "Community 1015" +Cohesion: 0.25 +Nodes (8): description, properties, required, type, CapabilityRemote, urls, description, type + +### Community 1016 - "Community 1016" +Cohesion: 0.25 +Nodes (8): description, properties, required, type, CapabilityRemote, urls, description, type + +### Community 1017 - "Community 1017" +Cohesion: 0.25 +Nodes (8): description, properties, required, type, CapabilityRemote, urls, description, type + +### Community 1018 - "Community 1018" +Cohesion: 0.25 +Nodes (8): react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, abi, artifactName, toolchain, cCompilerExecutable, cppCompilerExecutable, toolchains, toolchain + +### Community 1019 - "Community 1019" +Cohesion: 0.43 +Nodes (6): main(), DBEntry, BuildManifestDB(), ComputeFileID(), DefaultRestoreEntries(), EncodeMBFile() + +### Community 1020 - "Community 1020" +Cohesion: 0.25 +Nodes (7): Bei Fehler "supervision identity not trusted", Pfad A — Via Apple Configurator 2 (GUI, empfohlen), Pfad B — Via cfgutil CLI, Sicherheit, Supervision-Identity einmaliger Setup, Verifikation, Wo die Identity liegen muss + +### Community 1021 - "Community 1021" +Cohesion: 0.25 +Nodes (7): 1. Datenmodell — `protection_state_log` (NEU, append-only), 2. Ingestion (wann wird geloggt), 3. Compute — `GET /api/protection/coverage`, 4. Frontend — Profile Streak-Section (ersetzt alte Logik), 5. Scope / Guards, Leitprinzip, Spec: Protection Coverage & Streak (DiGA-Kernmetrik) + +### Community 1022 - "Community 1022" +Cohesion: 0.25 +Nodes (7): Architektur, Quick Links, ReBreak MDM — Projektübersicht, Status, Trust-Modell, Warum getrennter VPS, Was ist das + +### Community 1023 - "Community 1023" +Cohesion: 0.25 +Nodes (7): 1. CSR generieren (Mac, 2 Min), 2. Apple Dev Portal (5 Min), 3. Files an mich, 4. .cer in .p8/.p12 konvertieren (ich mach das), 5. Was Apple beim nächsten App-Review checkt, 6. Android (kein Apple-Antrag, aber Permission im Manifest), CallKit + VoIP Setup für ReBreak + +### Community 1024 - "Community 1024" +Cohesion: 0.48 +Nodes (6): Conn, backupCurrentConfig(), makeLogger(), superviseEscalated(), superviseFresh(), Options + +### Community 1025 - "Community 1025" +Cohesion: 0.25 +Nodes (7): A/B Lauf, Ablauf-Deltas: current vs legacy, Auswertung pro Lauf, Harte Unterschiede, partial-lite Zweck, partial-safe Zweck, Referenz + +### Community 1026 - "Community 1026" +Cohesion: 0.25 +Nodes (7): Command, Decision Logic, Goal, Promotion Criteria, Rule Set, Run Order, Systematic Playbook (No Guessing) + +### Community 1027 - "Community 1027" +Cohesion: 0.25 +Nodes (8): scripts, android, build:admin, build:backend, dev:admin, dev:backend, dev:native, ios + +### Community 1028 - "Community 1028" +Cohesion: 0.25 +Nodes (6): Architecture, Git Workflow, Prerequisites, Project Overview, Search Command, Sync Rules + +### Community 1029 - "Community 1029" +Cohesion: 0.29 +Nodes (5): PlatformInfo, activating, canActivate, { getPlatform, activateProtection, downloadProfile, setDesktopProtectionStatus }, session + +### Community 1030 - "Community 1030" +Cohesion: 0.53 +Nodes (5): formatCount(), Props, ProtectionCard(), Stat(), ProtectionState + +### Community 1031 - "Community 1031" +Cohesion: 0.29 +Nodes (6): default, description, identifier, local, permissions, windows + +### Community 1032 - "Community 1032" +Cohesion: 0.25 +Nodes (8): Anonymitäts-Invariante (kein PII in API/Realtime/Push/Log), R-DATA-07 Anonymitätsbruch (Klarname-Leak), Art. 9 DSGVO besondere Kategorien (höchste Schutzstufe), Keine OASIS-Datenbank-Kopplung (Art. 9 DSGVO Vermeidung), CallKit + VoIP Setup für ReBreak, includesCallsInRecents:false (DiGA-Privacy, kein iCloud-Sync), Voice-Calls coturn TURN-Server Runbook, coturn force-relay (kein IP-Austausch, Anonymität) + +### Community 1033 - "Community 1033" +Cohesion: 0.29 +Nodes (7): toolchain, libraries, core::@1b9a7d546b295b7d0867, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, abi, artifactName, toolchain + +### Community 1034 - "Community 1034" +Cohesion: 0.29 +Nodes (7): toolchain, libraries, core::@1b9a7d546b295b7d0867, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, abi, artifactName, toolchain + +### Community 1035 - "Community 1035" +Cohesion: 0.29 +Nodes (7): toolchain, libraries, core::@1b9a7d546b295b7d0867, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, abi, artifactName, toolchain + +### Community 1036 - "Community 1036" +Cohesion: 0.29 +Nodes (7): toolchain, libraries, core::@1b9a7d546b295b7d0867, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, abi, artifactName, toolchain + +### Community 1037 - "Community 1037" +Cohesion: 0.22 +Nodes (9): artifactName, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, abi, artifactName, toolchain, abi, artifactName (+1 more) + +### Community 1038 - "Community 1038" +Cohesion: 0.29 +Nodes (6): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, buildFiles, buildTargetsCommandComponents, cleanCommandsComponents + +### Community 1039 - "Community 1039" +Cohesion: 0.29 +Nodes (6): buildFiles, buildTargetsCommandComponents, cleanCommandsComponents, buildFiles, buildTargetsCommandComponents, cleanCommandsComponents + +### Community 1040 - "Community 1040" +Cohesion: 0.29 +Nodes (6): Env-Vars, Logs (pm2), Lokal starten (Entwicklung), PM2 (Produktion), rebreak-imap-idle, Was er macht + +### Community 1041 - "Community 1041" +Cohesion: 0.29 +Nodes (6): Development, How It Works, Installation, License, uipro-cli, Usage + +### Community 1042 - "Community 1042" +Cohesion: 0.29 +Nodes (6): Arbeitsteilung, DiGA / MDR — Dossier-Plan & Arbeitsteilung, Dokumenten-Landkarte + Status, Optional: eigener DiGA-Agent, Reihenfolge (was zuerst), Änderungshistorie + +### Community 1043 - "Community 1043" +Cohesion: 0.29 +Nodes (6): Ausstehende Benutzeraktionen, Danach (Phase E-Vorbereitung) — Resend API-Key, Ina vorwarnen (optional, aber empfohlen), Sofort (Phase D.1) — Apple Push Zertifikat, Später (Phase F) — Device Enrollment, Status-Übersicht + +### Community 1044 - "Community 1044" +Cohesion: 0.29 +Nodes (6): 🎯 Erwartung, ✉️ Mail #1 — Lukas-Werk Gesundheitsdienste (Wolfenbüttel), ✉️ Mail #2 — FAGS e.V. / Ilona Füchtenschnieder (Bielefeld), Versandfertige Outreach-Mails — Lukas-Werk + FAGS, 📋 Vor dem Klick auf „Senden" — Mini-Checkliste, 🧯 Wenn Vor-Ort-Termin zugesagt wird + +### Community 1045 - "Community 1045" +Cohesion: 0.33 +Nodes (5): nav, download_app, login, pricing, resources + +### Community 1046 - "Community 1046" +Cohesion: 0.33 +Nodes (5): App-Vorschau-Screenshots (für /preview), Erwartete Dateinamen, Logo, Maestro-Pipeline, Passwort + +### Community 1047 - "Community 1047" +Cohesion: 0.40 +Nodes (5): build, beforeBuildCommand, beforeDevCommand, devUrl, frontendDist + +### Community 1048 - "Community 1048" +Cohesion: 0.33 +Nodes (6): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1049 - "Community 1049" +Cohesion: 0.33 +Nodes (6): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1050 - "Community 1050" +Cohesion: 0.33 +Nodes (6): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1051 - "Community 1051" +Cohesion: 0.33 +Nodes (6): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1052 - "Community 1052" +Cohesion: 0.33 +Nodes (6): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1053 - "Community 1053" +Cohesion: 0.33 +Nodes (6): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1054 - "Community 1054" +Cohesion: 0.33 +Nodes (6): react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1055 - "Community 1055" +Cohesion: 0.40 +Nodes (5): abi, artifactName, output, runtimeFiles, appmodules::@6890427a1f51a3e7e1df + +### Community 1056 - "Community 1056" +Cohesion: 0.22 +Nodes (9): runtimeFiles, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, runtimeFiles, abi, artifactName (+1 more) + +### Community 1057 - "Community 1057" +Cohesion: 0.33 +Nodes (5): entries, kind, version, major, minor + +### Community 1058 - "Community 1058" +Cohesion: 0.33 +Nodes (6): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1059 - "Community 1059" +Cohesion: 0.33 +Nodes (6): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1060 - "Community 1060" +Cohesion: 0.33 +Nodes (6): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1061 - "Community 1061" +Cohesion: 0.33 +Nodes (6): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1062 - "Community 1062" +Cohesion: 0.33 +Nodes (6): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1063 - "Community 1063" +Cohesion: 0.33 +Nodes (6): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1064 - "Community 1064" +Cohesion: 0.33 +Nodes (6): react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1065 - "Community 1065" +Cohesion: 0.33 +Nodes (6): abi, artifactName, output, runtimeFiles, output, appmodules::@6890427a1f51a3e7e1df + +### Community 1066 - "Community 1066" +Cohesion: 0.22 +Nodes (9): runtimeFiles, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, runtimeFiles, abi, artifactName (+1 more) + +### Community 1067 - "Community 1067" +Cohesion: 0.33 +Nodes (5): entries, kind, version, major, minor + +### Community 1068 - "Community 1068" +Cohesion: 0.33 +Nodes (6): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1069 - "Community 1069" +Cohesion: 0.33 +Nodes (6): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1070 - "Community 1070" +Cohesion: 0.33 +Nodes (6): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1071 - "Community 1071" +Cohesion: 0.33 +Nodes (6): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1072 - "Community 1072" +Cohesion: 0.33 +Nodes (6): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1073 - "Community 1073" +Cohesion: 0.33 +Nodes (6): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1074 - "Community 1074" +Cohesion: 0.33 +Nodes (6): react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1075 - "Community 1075" +Cohesion: 0.40 +Nodes (5): abi, artifactName, output, runtimeFiles, appmodules::@6890427a1f51a3e7e1df + +### Community 1076 - "Community 1076" +Cohesion: 0.33 +Nodes (6): abi, core::@1b9a7d546b295b7d0867, react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, abi, artifactName, runtimeFiles + +### Community 1077 - "Community 1077" +Cohesion: 0.33 +Nodes (5): entries, kind, version, major, minor + +### Community 1078 - "Community 1078" +Cohesion: 0.33 +Nodes (6): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1079 - "Community 1079" +Cohesion: 0.33 +Nodes (6): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1080 - "Community 1080" +Cohesion: 0.33 +Nodes (6): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1081 - "Community 1081" +Cohesion: 0.33 +Nodes (6): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1082 - "Community 1082" +Cohesion: 0.33 +Nodes (6): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1083 - "Community 1083" +Cohesion: 0.33 +Nodes (6): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1084 - "Community 1084" +Cohesion: 0.33 +Nodes (6): react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1085 - "Community 1085" +Cohesion: 0.40 +Nodes (5): abi, artifactName, output, runtimeFiles, appmodules::@6890427a1f51a3e7e1df + +### Community 1086 - "Community 1086" +Cohesion: 0.33 +Nodes (6): abi, core::@1b9a7d546b295b7d0867, react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, abi, artifactName, runtimeFiles + +### Community 1087 - "Community 1087" +Cohesion: 0.33 +Nodes (5): entries, kind, version, major, minor + +### Community 1088 - "Community 1088" +Cohesion: 0.33 +Nodes (6): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1089 - "Community 1089" +Cohesion: 0.33 +Nodes (6): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1090 - "Community 1090" +Cohesion: 0.33 +Nodes (6): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1091 - "Community 1091" +Cohesion: 0.33 +Nodes (6): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1092 - "Community 1092" +Cohesion: 0.33 +Nodes (6): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1093 - "Community 1093" +Cohesion: 0.33 +Nodes (6): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1094 - "Community 1094" +Cohesion: 0.33 +Nodes (6): react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1095 - "Community 1095" +Cohesion: 0.33 +Nodes (6): abi, core::@1b9a7d546b295b7d0867, react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, abi, artifactName, runtimeFiles + +### Community 1096 - "Community 1096" +Cohesion: 0.33 +Nodes (6): output, react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles + +### Community 1097 - "Community 1097" +Cohesion: 0.33 +Nodes (6): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1098 - "Community 1098" +Cohesion: 0.50 +Nodes (4): react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, toolchain + +### Community 1099 - "Community 1099" +Cohesion: 0.33 +Nodes (6): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1100 - "Community 1100" +Cohesion: 0.33 +Nodes (6): abi, artifactName, output, runtimeFiles, toolchain, appmodules::@6890427a1f51a3e7e1df + +### Community 1101 - "Community 1101" +Cohesion: 0.33 +Nodes (6): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1102 - "Community 1102" +Cohesion: 0.33 +Nodes (6): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1103 - "Community 1103" +Cohesion: 0.33 +Nodes (6): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1104 - "Community 1104" +Cohesion: 0.33 +Nodes (6): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1105 - "Community 1105" +Cohesion: 0.33 +Nodes (6): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1106 - "Community 1106" +Cohesion: 0.33 +Nodes (6): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1107 - "Community 1107" +Cohesion: 0.33 +Nodes (6): react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1108 - "Community 1108" +Cohesion: 0.33 +Nodes (6): abi, artifactName, output, runtimeFiles, toolchain, appmodules::@6890427a1f51a3e7e1df + +### Community 1109 - "Community 1109" +Cohesion: 0.33 +Nodes (6): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1110 - "Community 1110" +Cohesion: 0.33 +Nodes (6): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1111 - "Community 1111" +Cohesion: 0.33 +Nodes (6): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1112 - "Community 1112" +Cohesion: 0.33 +Nodes (6): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1113 - "Community 1113" +Cohesion: 0.33 +Nodes (6): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1114 - "Community 1114" +Cohesion: 0.33 +Nodes (6): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1115 - "Community 1115" +Cohesion: 0.33 +Nodes (6): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1116 - "Community 1116" +Cohesion: 0.33 +Nodes (6): react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles, toolchain + +### Community 1117 - "Community 1117" +Cohesion: 0.33 +Nodes (5): Architektur, Backend, Betrieb / Kosten, Provisioning (einmalig), Voice-Calls — coturn TURN-Server Runbook + +### Community 1118 - "Community 1118" +Cohesion: 0.50 +Nodes (3): canContinue, checkEnrollment(), refreshProfileList() + +### Community 1119 - "Community 1119" +Cohesion: 0.50 +Nodes (4): app, security, windows, csp + +### Community 1120 - "Community 1120" +Cohesion: 0.40 +Nodes (4): Build, Naming convention for Tauri, `supervise-magic`, Tauri Sidecar Binaries + +### Community 1121 - "Community 1121" +Cohesion: 0.40 +Nodes (4): anyOf, description, $schema, title + +### Community 1122 - "Community 1122" +Cohesion: 0.40 +Nodes (4): anyOf, description, $schema, title + +### Community 1123 - "Community 1123" +Cohesion: 0.40 +Nodes (5): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles + +### Community 1124 - "Community 1124" +Cohesion: 0.40 +Nodes (5): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles + +### Community 1125 - "Community 1125" +Cohesion: 0.40 +Nodes (5): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles + +### Community 1126 - "Community 1126" +Cohesion: 0.40 +Nodes (5): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles + +### Community 1127 - "Community 1127" +Cohesion: 0.40 +Nodes (5): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles + +### Community 1128 - "Community 1128" +Cohesion: 0.40 +Nodes (5): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles + +### Community 1129 - "Community 1129" +Cohesion: 0.40 +Nodes (5): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles + +### Community 1130 - "Community 1130" +Cohesion: 0.33 +Nodes (6): output, react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles + +### Community 1131 - "Community 1131" +Cohesion: 0.40 +Nodes (5): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles + +### Community 1132 - "Community 1132" +Cohesion: 0.40 +Nodes (5): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles + +### Community 1133 - "Community 1133" +Cohesion: 0.40 +Nodes (5): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles + +### Community 1134 - "Community 1134" +Cohesion: 0.40 +Nodes (5): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles + +### Community 1135 - "Community 1135" +Cohesion: 0.40 +Nodes (5): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles + +### Community 1136 - "Community 1136" +Cohesion: 0.40 +Nodes (5): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles + +### Community 1137 - "Community 1137" +Cohesion: 0.40 +Nodes (5): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles + +### Community 1138 - "Community 1138" +Cohesion: 0.40 +Nodes (5): react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles + +### Community 1139 - "Community 1139" +Cohesion: 0.40 +Nodes (5): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles + +### Community 1140 - "Community 1140" +Cohesion: 0.40 +Nodes (5): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles + +### Community 1141 - "Community 1141" +Cohesion: 0.40 +Nodes (5): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles + +### Community 1142 - "Community 1142" +Cohesion: 0.40 +Nodes (5): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles + +### Community 1143 - "Community 1143" +Cohesion: 0.40 +Nodes (5): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles + +### Community 1144 - "Community 1144" +Cohesion: 0.33 +Nodes (6): output, react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles + +### Community 1145 - "Community 1145" +Cohesion: 0.40 +Nodes (5): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles + +### Community 1146 - "Community 1146" +Cohesion: 0.40 +Nodes (5): react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles + +### Community 1147 - "Community 1147" +Cohesion: 0.40 +Nodes (5): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles + +### Community 1148 - "Community 1148" +Cohesion: 0.40 +Nodes (5): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles + +### Community 1149 - "Community 1149" +Cohesion: 0.40 +Nodes (5): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles + +### Community 1150 - "Community 1150" +Cohesion: 0.40 +Nodes (5): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles + +### Community 1151 - "Community 1151" +Cohesion: 0.40 +Nodes (5): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles + +### Community 1152 - "Community 1152" +Cohesion: 0.40 +Nodes (5): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles + +### Community 1153 - "Community 1153" +Cohesion: 0.40 +Nodes (5): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles + +### Community 1154 - "Community 1154" +Cohesion: 0.33 +Nodes (6): output, react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles + +### Community 1155 - "Community 1155" +Cohesion: 0.40 +Nodes (5): abi, artifactName, output, runtimeFiles, appmodules::@6890427a1f51a3e7e1df + +### Community 1156 - "Community 1156" +Cohesion: 0.40 +Nodes (5): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles + +### Community 1157 - "Community 1157" +Cohesion: 0.40 +Nodes (5): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles + +### Community 1158 - "Community 1158" +Cohesion: 0.40 +Nodes (5): react_codegen_rnpicker::@e8bb2e9e833f47d0d516, abi, artifactName, output, runtimeFiles + +### Community 1159 - "Community 1159" +Cohesion: 0.40 +Nodes (5): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles + +### Community 1160 - "Community 1160" +Cohesion: 0.40 +Nodes (5): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles + +### Community 1161 - "Community 1161" +Cohesion: 0.40 +Nodes (5): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles + +### Community 1162 - "Community 1162" +Cohesion: 0.40 +Nodes (5): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles + +### Community 1163 - "Community 1163" +Cohesion: 0.40 +Nodes (5): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles + +### Community 1164 - "Community 1164" +Cohesion: 0.40 +Nodes (5): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles + +### Community 1165 - "Community 1165" +Cohesion: 0.40 +Nodes (5): abi, artifactName, output, toolchain, core::@1b9a7d546b295b7d0867 + +### Community 1166 - "Community 1166" +Cohesion: 0.40 +Nodes (5): abi, artifactName, output, runtimeFiles, appmodules::@6890427a1f51a3e7e1df + +### Community 1167 - "Community 1167" +Cohesion: 0.40 +Nodes (5): abi, artifactName, output, runtimeFiles, core::@1b9a7d546b295b7d0867 + +### Community 1168 - "Community 1168" +Cohesion: 0.40 +Nodes (5): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles + +### Community 1169 - "Community 1169" +Cohesion: 0.40 +Nodes (5): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles + +### Community 1170 - "Community 1170" +Cohesion: 0.40 +Nodes (5): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles + +### Community 1171 - "Community 1171" +Cohesion: 0.40 +Nodes (5): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles + +### Community 1172 - "Community 1172" +Cohesion: 0.40 +Nodes (5): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles + +### Community 1173 - "Community 1173" +Cohesion: 0.40 +Nodes (5): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles + +### Community 1174 - "Community 1174" +Cohesion: 0.40 +Nodes (5): react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles + +### Community 1175 - "Community 1175" +Cohesion: 0.40 +Nodes (5): abi, artifactName, output, toolchain, core::@1b9a7d546b295b7d0867 + +### Community 1176 - "Community 1176" +Cohesion: 0.40 +Nodes (5): abi, artifactName, output, runtimeFiles, appmodules::@6890427a1f51a3e7e1df + +### Community 1177 - "Community 1177" +Cohesion: 0.40 +Nodes (5): abi, artifactName, output, runtimeFiles, core::@1b9a7d546b295b7d0867 + +### Community 1178 - "Community 1178" +Cohesion: 0.40 +Nodes (5): react_codegen_RNCSlider::@4898bc4726ecf1751b6a, abi, artifactName, output, runtimeFiles + +### Community 1179 - "Community 1179" +Cohesion: 0.40 +Nodes (5): react_codegen_RNKC::@01e3c54a97c6e9d385b6, abi, artifactName, output, runtimeFiles + +### Community 1180 - "Community 1180" +Cohesion: 0.40 +Nodes (5): react_codegen_rnscreens::@25bcbd507e98d3a854ad, abi, artifactName, output, runtimeFiles + +### Community 1181 - "Community 1181" +Cohesion: 0.40 +Nodes (5): react_codegen_rnsvg::@4f40eb209d0c0b4a3b65, abi, artifactName, output, runtimeFiles + +### Community 1182 - "Community 1182" +Cohesion: 0.40 +Nodes (5): react_codegen_safeareacontext::@7984cd80db47aa7b952a, abi, artifactName, output, runtimeFiles + +### Community 1183 - "Community 1183" +Cohesion: 0.40 +Nodes (5): react_codegen_TrueSheetSpec::@a0669760263672514cc3, abi, artifactName, output, runtimeFiles + +### Community 1184 - "Community 1184" +Cohesion: 0.40 +Nodes (5): react-native-mmkv::@4ae6a1e65d3e68ba0197, abi, artifactName, output, runtimeFiles + +### Community 1185 - "Community 1185" +Cohesion: 0.40 +Nodes (4): 三处 data / scripts / templates 的区别, 三处分别是什么, 可以只保留一个吗?, 推荐工作流 + +### Community 1186 - "Community 1186" +Cohesion: 0.50 +Nodes (3): display, now, remainingMs + +### Community 1188 - "Community 1188" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-identifier + +### Community 1189 - "Community 1189" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-is-checked + +### Community 1190 - "Community 1190" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-is-enabled + +### Community 1191 - "Community 1191" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-items + +### Community 1192 - "Community 1192" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-name + +### Community 1193 - "Community 1193" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-popup + +### Community 1194 - "Community 1194" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-prepend + +### Community 1195 - "Community 1195" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-register-listener + +### Community 1196 - "Community 1196" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-remove + +### Community 1197 - "Community 1197" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-remove-listener + +### Community 1198 - "Community 1198" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-accelerator + +### Community 1199 - "Community 1199" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-as-app-menu + +### Community 1200 - "Community 1200" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-as-window-menu + +### Community 1201 - "Community 1201" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-as-windows-menu-for-nsapp + +### Community 1202 - "Community 1202" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-dock-visibility + +### Community 1203 - "Community 1203" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-icon + +### Community 1204 - "Community 1204" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-text + +### Community 1205 - "Community 1205" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-supports-multiple-windows + +### Community 1206 - "Community 1206" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-tauri-version + +### Community 1207 - "Community 1207" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-text + +### Community 1208 - "Community 1208" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-bundle-type + +### Community 1209 - "Community 1209" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-create-default + +### Community 1210 - "Community 1210" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-default-window-icon + +### Community 1211 - "Community 1211" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-fetch-data-store-identifiers + +### Community 1212 - "Community 1212" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-get + +### Community 1213 - "Community 1213" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-is-checked + +### Community 1214 - "Community 1214" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-name + +### Community 1215 - "Community 1215" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-remove-data-store + +### Community 1216 - "Community 1216" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-remove-listener + +### Community 1217 - "Community 1217" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-set-dock-visibility + +### Community 1218 - "Community 1218" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-supports-multiple-windows + +### Community 1219 - "Community 1219" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-tauri-version + +### Community 1220 - "Community 1220" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-version + +### Community 1221 - "Community 1221" +Cohesion: 0.50 +Nodes (4): description, required, type, Capability + +### Community 1222 - "Community 1222" +Cohesion: 0.50 +Nodes (4): default, description, type, local + +### Community 1223 - "Community 1223" +Cohesion: 0.50 +Nodes (4): description, required, type, Capability + +### Community 1224 - "Community 1224" +Cohesion: 0.50 +Nodes (4): default, description, type, local + +### Community 1225 - "Community 1225" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-append + +### Community 1226 - "Community 1226" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-remove-listener + +### Community 1227 - "Community 1227" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-default-window-icon + +### Community 1228 - "Community 1228" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-fetch-data-store-identifiers + +### Community 1229 - "Community 1229" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-get + +### Community 1230 - "Community 1230" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-identifier + +### Community 1231 - "Community 1231" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-as-app-menu + +### Community 1232 - "Community 1232" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-is-checked + +### Community 1233 - "Community 1233" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-is-enabled + +### Community 1234 - "Community 1234" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-as-help-menu-for-nsapp + +### Community 1235 - "Community 1235" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-popup + +### Community 1236 - "Community 1236" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-as-window-menu + +### Community 1237 - "Community 1237" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-tauri-version + +### Community 1238 - "Community 1238" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-remove + +### Community 1239 - "Community 1239" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-create-default + +### Community 1240 - "Community 1240" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-app-theme + +### Community 1241 - "Community 1241" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-as-windows-menu-for-nsapp + +### Community 1242 - "Community 1242" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-remove-data-store + +### Community 1243 - "Community 1243" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-remove-listener + +### Community 1244 - "Community 1244" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-icon + +### Community 1245 - "Community 1245" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-set-text + +### Community 1246 - "Community 1246" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-set-dock-visibility + +### Community 1247 - "Community 1247" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-text + +### Community 1248 - "Community 1248" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, allow-version + +### Community 1249 - "Community 1249" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-app-show + +### Community 1250 - "Community 1250" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-bundle-type + +### Community 1251 - "Community 1251" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-fetch-data-store-identifiers + +### Community 1252 - "Community 1252" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-tauri-version + +### Community 1253 - "Community 1253" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-insert + +### Community 1254 - "Community 1254" +Cohesion: 0.50 +Nodes (4): react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, abi, artifactName, toolchain + +### Community 1255 - "Community 1255" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-is-enabled + +### Community 1256 - "Community 1256" +Cohesion: 0.50 +Nodes (3): callHandler(), g, mocks + +### Community 1260 - "Community 1260" +Cohesion: 0.50 +Nodes (4): commands, description, identifier, deny-supports-multiple-windows + +### Community 1262 - "Community 1262" +Cohesion: 0.50 +Nodes (4): react_codegen_RNMmkvSpec::@7541eabbae598da31a69, abi, artifactName, toolchain + +### Community 1263 - "Community 1263" +Cohesion: 0.50 +Nodes (4): react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, abi, artifactName, runtimeFiles + +### Community 1264 - "Community 1264" +Cohesion: 0.50 +Nodes (4): react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName, runtimeFiles + +### Community 1265 - "Community 1265" +Cohesion: 0.50 +Nodes (4): react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName, runtimeFiles + +### Community 1266 - "Community 1266" +Cohesion: 0.50 +Nodes (4): react_codegen_RNMmkvSpec::@7541eabbae598da31a69, abi, artifactName, toolchain + +### Community 1267 - "Community 1267" +Cohesion: 0.50 +Nodes (4): react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, abi, artifactName, runtimeFiles + +### Community 1268 - "Community 1268" +Cohesion: 0.50 +Nodes (4): react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, abi, artifactName, toolchain + +### Community 1269 - "Community 1269" +Cohesion: 0.50 +Nodes (4): react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, runtimeFiles + +### Community 1270 - "Community 1270" +Cohesion: 0.50 +Nodes (4): react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName, runtimeFiles + +### Community 1271 - "Community 1271" +Cohesion: 0.50 +Nodes (4): react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, toolchain + +### Community 1273 - "Community 1273" +Cohesion: 0.50 +Nodes (4): react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, abi, artifactName, runtimeFiles + +### Community 1274 - "Community 1274" +Cohesion: 0.50 +Nodes (4): react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName, runtimeFiles + +### Community 1275 - "Community 1275" +Cohesion: 0.50 +Nodes (4): react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, toolchain + +### Community 1276 - "Community 1276" +Cohesion: 0.50 +Nodes (4): react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb, abi, artifactName, toolchain + +### Community 1277 - "Community 1277" +Cohesion: 0.50 +Nodes (4): react_codegen_rnworklets::@68f58d84d4754f193387, abi, artifactName, runtimeFiles + +### Community 1278 - "Community 1278" +Cohesion: 0.50 +Nodes (4): react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, abi, artifactName, runtimeFiles + +### Community 1279 - "Community 1279" +Cohesion: 0.50 +Nodes (4): react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, abi, artifactName, toolchain + +### Community 1280 - "Community 1280" +Cohesion: 0.50 +Nodes (4): react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, abi, artifactName, toolchain + +### Community 1281 - "Community 1281" +Cohesion: 0.50 +Nodes (4): react_codegen_RNMmkvSpec::@7541eabbae598da31a69, abi, artifactName, toolchain + +### Community 1282 - "Community 1282" +Cohesion: 0.50 +Nodes (4): react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe, abi, artifactName, runtimeFiles + +### Community 1283 - "Community 1283" +Cohesion: 0.50 +Nodes (4): react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, runtimeFiles + +### Community 1284 - "Community 1284" +Cohesion: 0.50 +Nodes (4): react_codegen_RNMmkvSpec::@7541eabbae598da31a69, abi, artifactName, runtimeFiles + +### Community 1285 - "Community 1285" +Cohesion: 0.50 +Nodes (4): react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, abi, artifactName, runtimeFiles + +### Community 1286 - "Community 1286" +Cohesion: 0.67 +Nodes (3): Target, description, oneOf + +### Community 1287 - "Community 1287" +Cohesion: 0.50 +Nodes (4): react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec, abi, artifactName, toolchain + +### Community 1288 - "Community 1288" +Cohesion: 0.50 +Nodes (4): react_codegen_RNCTabView::@54948b52a0aeebf4e5a8, abi, artifactName, runtimeFiles + +### Community 1289 - "Community 1289" +Cohesion: 0.50 +Nodes (4): react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8, abi, artifactName, runtimeFiles + +### Community 1291 - "Community 1291" +Cohesion: 0.50 +Nodes (4): react_codegen_rnreanimated::@8afabad14bfffa3f8b9a, abi, artifactName, runtimeFiles + +### Community 1293 - "Community 1293" +Cohesion: 0.50 +Nodes (3): Overview, See also, Setting up a PIR server for URL filtering + +### Community 1294 - "Community 1294" +Cohesion: 0.50 +Nodes (3): Filtering traffic by URL, Overview, See also + +### Community 1295 - "Community 1295" +Cohesion: 0.50 +Nodes (3): Answer, Q: How does the DiGA Lyra requirement (REQ-LYRA) reach its implementation across community boundaries?, Source Nodes + +### Community 1299 - "Community 1299" +Cohesion: 0.67 +Nodes (3): Value, anyOf, description + +### Community 1300 - "Community 1300" +Cohesion: 0.67 +Nodes (3): Value, anyOf, description + +### Community 1304 - "Community 1304" +Cohesion: 0.67 +Nodes (3): ShellScopeEntryAllowedArg, anyOf, description + +### Community 1305 - "Community 1305" +Cohesion: 0.67 +Nodes (3): ShellScopeEntryAllowedArgs, anyOf, description + +### Community 1307 - "Community 1307" +Cohesion: 0.67 +Nodes (3): ShellScopeEntryAllowedArgs, anyOf, description + ## Knowledge Gaps -- **8780 isolated node(s):** `name`, `type`, `private`, `version`, `dev` (+8775 more) +- **10534 isolated node(s):** `deviceIdRef`, `{ state: mdmState, refresh: refreshMdmStatus }`, `manualSyncing`, `autoSyncing`, `autoSyncComplete` (+10529 more) These have ≤1 connection - possible missing edges or undocumented components. -- **53 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +- **64 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `useColors()` connect `i18n: Pricing Strings` to `Backend API Routes`, `Consent & Magic API Routes`, `App Root Layout & Shell`, `Community 18`, `Community 20`, `Community 21`, `Community 22`, `Community 27`, `Community 156`, `Community 29`, `Community 286`, `Community 426`, `Community 686`, `Community 47`, `Community 53`, `Community 437`, `Community 696`, `Community 80`, `Community 95`, `Community 876`, `Community 887`?** - _High betweenness centrality (0.037) - this node is a cross-community bridge._ -- **Why does `blocker` connect `i18n: Blocker/Activation Strings` to `Community 432`, `Community 35`, `Community 45`?** - _High betweenness centrality (0.027) - this node is a cross-community bridge._ -- **Why does `DevicesState` connect `Community 285` to `Consent & Magic API Routes`?** - _High betweenness centrality (0.021) - this node is a cross-community bridge._ +- **Why does `Notification` connect `Community 93` to `Debug & Dev Tools`, `Community 39`, `i18n: Pricing Strings`, `i18n: Pricing Strings`, `Community 181`, `Community 53`?** + _High betweenness centrality (0.032) - this node is a cross-community bridge._ +- **Why does `useColors()` connect `Community 53` to `Backend API Routes`, `Community 1030`, `Consent & Magic API Routes`, `i18n: Pricing Strings`, `App Root Layout & Shell`, `Community 18`, `Community 20`, `Community 21`, `Community 22`, `Community 27`, `Community 413`, `Community 34`, `Community 37`, `Community 426`, `Community 686`, `Community 437`, `Community 54`, `Community 80`, `Community 93`, `Community 95`, `Community 865`, `Community 872`, `Community 616`?** + _High betweenness centrality (0.032) - this node is a cross-community bridge._ +- **Why does `usePrisma()` connect `Debug & Dev Tools` to `Community 384`, `Community 257`, `Community 385`, `Backend API Routes`, `Backend Tests & Auth Routes`, `Android DNS Filter (Kotlin)`, `Community 32`, `Community 33`, `Community 39`, `Community 937`, `Community 47`, `Community 181`, `Community 566`, `Community 62`, `Community 68`, `Community 69`, `Community 80`, `Community 93`, `Community 244`, `Community 127`?** + _High betweenness centrality (0.025) - this node is a cross-community bridge._ - **Are the 2 inferred relationships involving `usePrisma()` (e.g. with `runRevoke()` and `requireUser()`) actually correct?** _`usePrisma()` has 2 INFERRED edges - model-reasoned connections that need verification._ -- **What connects `name`, `type`, `private` to the rest of the system?** - _8820 weakly-connected nodes found - possible documentation gaps or missing edges._ +- **What connects `deviceIdRef`, `{ state: mdmState, refresh: refreshMdmStatus }`, `manualSyncing` to the rest of the system?** + _10636 weakly-connected nodes found - possible documentation gaps or missing edges._ - **Should `i18n: Blocker/Activation Strings` be split into smaller, more focused modules?** _Cohesion score 0.006644518272425249 - nodes in this community are weakly interconnected._ - **Should `i18n: Blocker/Activation Strings` be split into smaller, more focused modules?** diff --git a/graphify-out/graph.json b/graphify-out/graph.json index d55a8cf..56a9878 100644 --- a/graphify-out/graph.json +++ b/graphify-out/graph.json @@ -138,24814 +138,12951 @@ }, "nodes": [ { - "label": "account-loeschen.vue", + "label": "IosDeviceCard.vue", "file_type": "code", - "source_file": "apps/marketing/app/pages/account-loeschen.vue", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", "source_location": "L1", - "id": "apps_marketing_app_pages_account_loeschen_vue", - "community": 835, - "norm_label": "account-loeschen.vue" + "id": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "community": 178, + "norm_label": "iosdevicecard.vue" }, { - "label": "android.vue", + "label": "deviceIdRef", "file_type": "code", - "source_file": "apps/marketing/app/pages/download/android.vue", - "source_location": "L1", - "id": "apps_marketing_app_pages_download_android_vue", - "community": 840, - "norm_label": "android.vue" + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L233", + "id": "components_iosdevicecard_deviceidref", + "community": 178, + "norm_label": "deviceidref" }, { - "label": "rebreakmagic.vue", + "label": "{ state: mdmState, refresh: refreshMdmStatus }", "file_type": "code", - "source_file": "apps/marketing/app/pages/download/rebreakmagic.vue", - "source_location": "L1", - "id": "apps_marketing_app_pages_download_rebreakmagic_vue", - "community": 862, - "norm_label": "rebreakmagic.vue" + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L234", + "id": "components_iosdevicecard_state_mdmstate_refresh_refreshmdmstatus", + "community": 178, + "norm_label": "{ state: mdmstate, refresh: refreshmdmstatus }" }, { - "label": "windows.vue", + "label": "manualSyncing", "file_type": "code", - "source_file": "apps/marketing/app/pages/download/windows.vue", - "source_location": "L1", - "id": "apps_marketing_app_pages_download_windows_vue", - "community": 861, - "norm_label": "windows.vue" + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L247", + "id": "components_iosdevicecard_manualsyncing", + "community": 178, + "norm_label": "manualsyncing" }, { - "label": "nutzungsbedingungen.vue", + "label": "autoSyncing", "file_type": "code", - "source_file": "apps/marketing/app/pages/nutzungsbedingungen.vue", - "source_location": "L1", - "id": "apps_marketing_app_pages_nutzungsbedingungen_vue", - "community": 838, - "norm_label": "nutzungsbedingungen.vue" + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L248", + "id": "components_iosdevicecard_autosyncing", + "community": 178, + "norm_label": "autosyncing" }, { - "label": "pricing.vue", + "label": "autoSyncComplete", "file_type": "code", - "source_file": "apps/marketing/app/pages/pricing.vue", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L249", + "id": "components_iosdevicecard_autosynccomplete", + "community": 178, + "norm_label": "autosynccomplete" + }, + { + "label": "localEnrollment", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L251", + "id": "components_iosdevicecard_localenrollment", + "community": 178, + "norm_label": "localenrollment" + }, + { + "label": "localLock", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L254", + "id": "components_iosdevicecard_locallock", + "community": 178, + "norm_label": "locallock" + }, + { + "label": "localApp", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L257", + "id": "components_iosdevicecard_localapp", + "community": 178, + "norm_label": "localapp" + }, + { + "label": "backendRows", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L261", + "id": "components_iosdevicecard_backendrows", + "community": 178, + "norm_label": "backendrows" + }, + { + "label": "localRows", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L312", + "id": "components_iosdevicecard_localrows", + "community": 178, + "norm_label": "localrows" + }, + { + "label": "mismatches", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L362", + "id": "components_iosdevicecard_mismatches", + "community": 178, + "norm_label": "mismatches" + }, + { + "label": "isProtectionIncomplete", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L392", + "id": "components_iosdevicecard_isprotectionincomplete", + "community": 178, + "norm_label": "isprotectionincomplete" + }, + { + "label": "showIncompleteHint", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L411", + "id": "components_iosdevicecard_showincompletehint", + "community": 178, + "norm_label": "showincompletehint" + }, + { + "label": "incompleteMessage", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L413", + "id": "components_iosdevicecard_incompletemessage", + "community": 178, + "norm_label": "incompletemessage" + }, + { + "label": "topBadge", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L451", + "id": "components_iosdevicecard_topbadge", + "community": 178, + "norm_label": "topbadge" + }, + { + "label": "deviceName", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L579", + "id": "components_iosdevicecard_devicename", + "community": 178, + "norm_label": "devicename" + }, + { + "label": "platformLabel", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L584", + "id": "components_iosdevicecard_platformlabel", + "community": 178, + "norm_label": "platformlabel" + }, + { + "label": "runAutoSync()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L610", + "id": "components_iosdevicecard_runautosync", + "community": 178, + "norm_label": "runautosync()" + }, + { + "label": "onActionClick()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L625", + "id": "components_iosdevicecard_onactionclick", + "community": 178, + "norm_label": "onactionclick()" + }, + { + "label": "mdm.get.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm.get.ts", "source_location": "L1", - "id": "apps_marketing_app_pages_pricing_vue", - "community": 834, - "norm_label": "pricing.vue" + "community": 33, + "norm_label": "mdm.get.ts", + "id": "backend_server_api_magic_devices_deviceid_mdm_get_ts" + }, + { + "label": "mdm.ts", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L1", + "community": 33, + "norm_label": "mdm.ts", + "id": "backend_server_db_mdm_ts" + }, + { + "label": "useMdmPool()", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L12", + "community": 33, + "norm_label": "usemdmpool()", + "id": "db_mdm_usemdmpool" + }, + { + "label": "UserDeviceMdmRecord", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L33", + "community": 33, + "norm_label": "userdevicemdmrecord", + "id": "db_mdm_userdevicemdmrecord" + }, + { + "label": "USER_DEVICE_MDM_SELECT", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L41", + "community": 33, + "norm_label": "user_device_mdm_select", + "id": "db_mdm_user_device_mdm_select" + }, + { + "label": "USER_DEVICE_MDM_HEALTH_SELECT", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L49", + "community": 33, + "norm_label": "user_device_mdm_health_select", + "id": "db_mdm_user_device_mdm_health_select" + }, + { + "label": "getUserDeviceByDeviceId()", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L63", + "community": 33, + "norm_label": "getuserdevicebydeviceid()", + "id": "db_mdm_getuserdevicebydeviceid" + }, + { + "label": "setUserDeviceMdmId()", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L78", + "community": 33, + "norm_label": "setuserdevicemdmid()", + "id": "db_mdm_setuserdevicemdmid" + }, + { + "label": "clearUserDeviceMdmId()", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L93", + "community": 33, + "norm_label": "clearuserdevicemdmid()", + "id": "db_mdm_clearuserdevicemdmid" + }, + { + "label": "getLinkedUserDevices()", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L107", + "community": 33, + "norm_label": "getlinkeduserdevices()", + "id": "db_mdm_getlinkeduserdevices" + }, + { + "label": "MdmDeviceStatus", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L117", + "community": 33, + "norm_label": "mdmdevicestatus", + "id": "db_mdm_mdmdevicestatus" + }, + { + "label": "MdmEnrollmentStatus", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L127", + "community": 33, + "norm_label": "mdmenrollmentstatus", + "id": "db_mdm_mdmenrollmentstatus" + }, + { + "label": "UserDeviceMdmHealthRecord", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L133", + "community": 33, + "norm_label": "userdevicemdmhealthrecord", + "id": "db_mdm_userdevicemdmhealthrecord" + }, + { + "label": "getMdmStatusByUdid()", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L150", + "community": 33, + "norm_label": "getmdmstatusbyudid()", + "id": "db_mdm_getmdmstatusbyudid" + }, + { + "label": "getMdmEnrollmentStatusesByUdids()", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L202", + "community": 33, + "norm_label": "getmdmenrollmentstatusesbyudids()", + "id": "db_mdm_getmdmenrollmentstatusesbyudids" + }, + { + "label": "updateUserDeviceMdmHealth()", + "file_type": "code", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L241", + "community": 33, + "norm_label": "updateuserdevicemdmhealth()", + "id": "db_mdm_updateuserdevicemdmhealth" + }, + { + "label": "CLAUDE.md", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L1", + "community": 874, + "norm_label": "claude.md", + "id": "claude_md" + }, + { + "label": "CLAUDE.md \u2014 rebreak-monorepo", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L1", + "community": 874, + "norm_label": "claude.md \u2014 rebreak-monorepo", + "id": "rebreak_monorepo_claude_claude_md_rebreak_monorepo" + }, + { + "label": "graphify (Knowledge-Graph)", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L5", + "community": 874, + "norm_label": "graphify (knowledge-graph)", + "id": "rebreak_monorepo_claude_graphify_knowledge_graph" + }, + { + "label": "Agent-Verhaltensregel: Keine eigenm\u00e4chtigen Code-\u00c4nderungen", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L68", + "community": 874, + "norm_label": "agent-verhaltensregel: keine eigenmachtigen code-anderungen", + "id": "rebreak_monorepo_claude_agent_verhaltensregel_keine_eigenm\u00e4chtigen_code_\u00e4nderungen" + }, + { + "label": "Session-Kontext-Limit: Stop & Prompt", + "file_type": "document", + "source_file": "CLAUDE.md", + "source_location": "L77", + "community": 874, + "norm_label": "session-kontext-limit: stop & prompt", + "id": "rebreak_monorepo_claude_session_kontext_limit_stop_prompt" + }, + { + "label": "PLAN.md", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L1", + "community": 947, + "norm_label": "plan.md", + "id": "apps_rebreak_magic_plan_md" + }, + { + "label": "ReBreak Magic \u2014 Unified Desktop App (Nuxt + Tauri)", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L1", + "community": 947, + "norm_label": "rebreak magic \u2014 unified desktop app (nuxt + tauri)", + "id": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri" + }, + { + "label": "Ziel", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L3", + "community": 947, + "norm_label": "ziel", + "id": "rebreak_magic_plan_ziel" + }, + { + "label": "Tech-Stack", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L12", + "community": 947, + "norm_label": "tech-stack", + "id": "rebreak_magic_plan_tech_stack" + }, + { + "label": "Vergleich: Aktuelle Mac vs. Windows", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L20", + "community": 947, + "norm_label": "vergleich: aktuelle mac vs. windows", + "id": "rebreak_magic_plan_vergleich_aktuelle_mac_vs_windows" + }, + { + "label": "Gemeinsamer Wizard-Flow", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L38", + "community": 947, + "norm_label": "gemeinsamer wizard-flow", + "id": "rebreak_magic_plan_gemeinsamer_wizard_flow" + }, + { + "label": "Plattformspezifische Rust-Module", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L50", + "community": 947, + "norm_label": "plattformspezifische rust-module", + "id": "rebreak_magic_plan_plattformspezifische_rust_module" + }, + { + "label": "Frontend-Struktur (Nuxt)", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L70", + "community": 947, + "norm_label": "frontend-struktur (nuxt)", + "id": "rebreak_magic_plan_frontend_struktur_nuxt" + }, + { + "label": "Wichtige Entscheidungen", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L97", + "community": 947, + "norm_label": "wichtige entscheidungen", + "id": "rebreak_magic_plan_wichtige_entscheidungen" + }, + { + "label": "Risiken / Offene Punkte", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L105", + "community": 947, + "norm_label": "risiken / offene punkte", + "id": "rebreak_magic_plan_risiken_offene_punkte" + }, + { + "label": "Aktueller Stand", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L113", + "community": 947, + "norm_label": "aktueller stand", + "id": "rebreak_magic_plan_aktueller_stand" + }, + { + "label": "N\u00e4chste Schritte", + "file_type": "document", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L129", + "community": 947, + "norm_label": "nachste schritte", + "id": "rebreak_magic_plan_n\u00e4chste_schritte" + }, + { + "label": "app.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/app.vue", + "source_location": "L1", + "community": 1322, + "norm_label": "app.vue", + "id": "apps_rebreak_magic_app_app_vue" + }, + { + "label": "DevLogDrawer.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L1", + "community": 581, + "norm_label": "devlogdrawer.vue", + "id": "apps_rebreak_magic_app_components_devlogdrawer_vue" + }, + { + "label": "open", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L58", + "community": 581, + "norm_label": "open", + "id": "components_devlogdrawer_open" + }, + { + "label": "logs", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L59", + "community": 581, + "norm_label": "logs", + "id": "components_devlogdrawer_logs" + }, + { + "label": "{ clear, exportLogs }", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L60", + "community": 581, + "norm_label": "{ clear, exportlogs }", + "id": "components_devlogdrawer_clear_exportlogs" + }, + { + "label": "entryClass()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L62", + "community": 581, + "norm_label": "entryclass()", + "id": "components_devlogdrawer_entryclass" + }, + { + "label": "badgeColor()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L71", + "community": 581, + "norm_label": "badgecolor()", + "id": "components_devlogdrawer_badgecolor" + }, + { + "label": "formatTime()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L80", + "community": 581, + "norm_label": "formattime()", + "id": "components_devlogdrawer_formattime" + }, + { + "label": "copyLogs()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L84", + "community": 581, + "norm_label": "copylogs()", + "id": "components_devlogdrawer_copylogs" + }, + { + "label": "copyDetails()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L92", + "community": 581, + "norm_label": "copydetails()", + "id": "components_devlogdrawer_copydetails" + }, + { + "label": "onKeyDown()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L101", + "community": 581, + "norm_label": "onkeydown()", + "id": "components_devlogdrawer_onkeydown" + }, + { + "label": "IosDeviceSection.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosDeviceSection.vue", + "source_location": "L1", + "community": 1325, + "norm_label": "iosdevicesection.vue", + "id": "apps_rebreak_magic_app_components_iosdevicesection_vue" + }, + { + "label": "PreflightItem.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/PreflightItem.vue", + "source_location": "L1", + "community": 863, + "norm_label": "preflightitem.vue", + "id": "apps_rebreak_magic_app_components_preflightitem_vue" + }, + { + "label": "toggle()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/PreflightItem.vue", + "source_location": "L40", + "community": 863, + "norm_label": "toggle()", + "id": "components_preflightitem_toggle" + }, + { + "label": "StatusBadge.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/StatusBadge.vue", + "source_location": "L1", + "community": 1326, + "norm_label": "statusbadge.vue", + "id": "apps_rebreak_magic_app_components_statusbadge_vue" + }, + { + "label": "StepButton.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/StepButton.vue", + "source_location": "L1", + "community": 1297, + "norm_label": "stepbutton.vue", + "id": "apps_rebreak_magic_app_components_stepbutton_vue" + }, + { + "label": "icon", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/StepButton.vue", + "source_location": "L35", + "community": 1297, + "norm_label": "icon", + "id": "components_stepbutton_icon" + }, + { + "label": "buttonClass", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/StepButton.vue", + "source_location": "L41", + "community": 1297, + "norm_label": "buttonclass", + "id": "components_stepbutton_buttonclass" + }, + { + "label": "useLogger.ts", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useLogger.ts", + "source_location": "L1", + "community": 581, + "norm_label": "uselogger.ts", + "id": "apps_rebreak_magic_app_composables_uselogger_ts" + }, + { + "label": "LogEntry", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useLogger.ts", + "source_location": "L1", + "community": 581, + "norm_label": "logentry", + "id": "composables_uselogger_logentry" + }, + { + "label": "useLoggerState()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useLogger.ts", + "source_location": "L11", + "community": 581, + "norm_label": "useloggerstate()", + "id": "composables_uselogger_useloggerstate" + }, + { + "label": "useLogger()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useLogger.ts", + "source_location": "L15", + "community": 581, + "norm_label": "uselogger()", + "id": "composables_uselogger_uselogger" + }, + { + "label": "formatError()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useLogger.ts", + "source_location": "L85", + "community": 581, + "norm_label": "formaterror()", + "id": "composables_uselogger_formaterror" + }, + { + "label": "useTauri.ts", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L1", + "community": 582, + "norm_label": "usetauri.ts", + "id": "apps_rebreak_magic_app_composables_usetauri_ts" + }, + { + "label": "PlatformInfo", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L3", + "community": 1029, + "norm_label": "platforminfo", + "id": "composables_usetauri_platforminfo" + }, + { + "label": "LocalServerInfo", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L9", + "community": 582, + "norm_label": "localserverinfo", + "id": "composables_usetauri_localserverinfo" + }, + { + "label": "SuperviseResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L14", + "community": 582, + "norm_label": "superviseresult", + "id": "composables_usetauri_superviseresult" + }, + { + "label": "RedeemPairingResponse", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L20", + "community": 582, + "norm_label": "redeempairingresponse", + "id": "composables_usetauri_redeempairingresponse" + }, + { + "label": "MagicSession", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L26", + "community": 582, + "norm_label": "magicsession", + "id": "composables_usetauri_magicsession" + }, + { + "label": "RegisterDeviceResponse", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L34", + "community": 48, + "norm_label": "registerdeviceresponse", + "id": "composables_usetauri_registerdeviceresponse" + }, + { + "label": "MagicDeviceInfo", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L41", + "community": 261, + "norm_label": "magicdeviceinfo", + "id": "composables_usetauri_magicdeviceinfo" + }, + { + "label": "ReleaseResponse", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L57", + "community": 582, + "norm_label": "releaseresponse", + "id": "composables_usetauri_releaseresponse" + }, + { + "label": "UserProfile", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L62", + "community": 582, + "norm_label": "userprofile", + "id": "composables_usetauri_userprofile" + }, + { + "label": "IphoneDeviceState", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L68", + "community": 48, + "norm_label": "iphonedevicestate", + "id": "composables_usetauri_iphonedevicestate" + }, + { + "label": "DesktopProtectionState", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L80", + "community": 48, + "norm_label": "desktopprotectionstate", + "id": "composables_usetauri_desktopprotectionstate" + }, + { + "label": "MdmStatusData", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L86", + "community": 582, + "norm_label": "mdmstatusdata", + "id": "composables_usetauri_mdmstatusdata" + }, + { + "label": "MdmStatusByUdidData", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L94", + "community": 582, + "norm_label": "mdmstatusbyudiddata", + "id": "composables_usetauri_mdmstatusbyudiddata" + }, + { + "label": "SuperviseStatus", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L101", + "community": 582, + "norm_label": "supervisestatus", + "id": "composables_usetauri_supervisestatus" + }, + { + "label": "MdmPushStatus", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L107", + "community": 582, + "norm_label": "mdmpushstatus", + "id": "composables_usetauri_mdmpushstatus" + }, + { + "label": "MdmCommandResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L112", + "community": 582, + "norm_label": "mdmcommandresult", + "id": "composables_usetauri_mdmcommandresult" + }, + { + "label": "getInstalledMdmVersion()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L119", + "community": 582, + "norm_label": "getinstalledmdmversion()", + "id": "composables_usetauri_getinstalledmdmversion" + }, + { + "label": "invokeLogged()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L124", + "community": 581, + "norm_label": "invokelogged()", + "id": "composables_usetauri_invokelogged" + }, + { + "label": "useTauri()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L141", + "community": 582, + "norm_label": "usetauri()", + "id": "composables_usetauri_usetauri" + }, + { + "label": "configure.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/configure.vue", + "source_location": "L1", + "community": 1311, + "norm_label": "configure.vue", + "id": "apps_rebreak_magic_app_pages_configure_vue" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/configure.vue", + "source_location": "L109", + "community": 1311, + "norm_label": "if()", + "id": "pages_configure_if" + }, + { + "label": "desktop-enroll.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L1", + "community": 1029, + "norm_label": "desktop-enroll.vue", + "id": "apps_rebreak_magic_app_pages_desktop_enroll_vue" + }, + { + "label": "{ getPlatform, activateProtection, downloadProfile, setDesktopProtectionStatus }", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L59", + "community": 1029, + "norm_label": "{ getplatform, activateprotection, downloadprofile, setdesktopprotectionstatus }", + "id": "pages_desktop_enroll_getplatform_activateprotection_downloadprofile_setdesktopprotectionstatus" + }, + { + "label": "session", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L60", + "community": 1029, + "norm_label": "session", + "id": "pages_desktop_enroll_session" + }, + { + "label": "activating", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L63", + "community": 1029, + "norm_label": "activating", + "id": "pages_desktop_enroll_activating" + }, + { + "label": "canActivate", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L64", + "community": 1029, + "norm_label": "canactivate", + "id": "pages_desktop_enroll_canactivate" + }, + { + "label": "activate()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L73", + "community": 1029, + "norm_label": "activate()", + "id": "pages_desktop_enroll_activate" + }, + { + "label": "detect.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/detect.vue", + "source_location": "L1", + "community": 1187, + "norm_label": "detect.vue", + "id": "apps_rebreak_magic_app_pages_detect_vue" + }, + { + "label": "hasReBreakApp", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/detect.vue", + "source_location": "L133", + "community": 1187, + "norm_label": "hasrebreakapp", + "id": "pages_detect_hasrebreakapp" + }, + { + "label": "detectIphone()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/detect.vue", + "source_location": "L141", + "community": 1187, + "norm_label": "detectiphone()", + "id": "pages_detect_detectiphone" + }, + { + "label": "displayModel()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/detect.vue", + "source_location": "L161", + "community": 1187, + "norm_label": "displaymodel()", + "id": "pages_detect_displaymodel" + }, + { + "label": "done.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/done.vue", + "source_location": "L1", + "community": 1328, + "norm_label": "done.vue", + "id": "apps_rebreak_magic_app_pages_done_vue" + }, + { + "label": "enroll.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/enroll.vue", + "source_location": "L1", + "community": 1118, + "norm_label": "enroll.vue", + "id": "apps_rebreak_magic_app_pages_enroll_vue" + }, + { + "label": "canContinue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/enroll.vue", + "source_location": "L123", + "community": 1118, + "norm_label": "cancontinue", + "id": "pages_enroll_cancontinue" + }, + { + "label": "refreshProfileList()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/enroll.vue", + "source_location": "L137", + "community": 1118, + "norm_label": "refreshprofilelist()", + "id": "pages_enroll_refreshprofilelist" + }, + { + "label": "downloadEnrollmentProfile()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/enroll.vue", + "source_location": "L148", + "community": 1118, + "norm_label": "downloadenrollmentprofile()", + "id": "pages_enroll_downloadenrollmentprofile" + }, + { + "label": "checkEnrollment()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/enroll.vue", + "source_location": "L180", + "community": 1118, + "norm_label": "checkenrollment()", + "id": "pages_enroll_checkenrollment" + }, + { + "label": "index.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/index.vue", + "source_location": "L1", + "community": 1329, + "norm_label": "index.vue", + "id": "apps_rebreak_magic_app_pages_index_vue" + }, + { + "label": "pair.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/pair.vue", + "source_location": "L1", + "community": 582, + "norm_label": "pair.vue", + "id": "apps_rebreak_magic_app_pages_pair_vue" + }, + { + "label": "return()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/pair.vue", + "source_location": "L81", + "community": 582, + "norm_label": "return()", + "id": "pages_pair_return" + }, + { + "label": "preflight.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L1", + "community": 863, + "norm_label": "preflight.vue", + "id": "apps_rebreak_magic_app_pages_preflight_vue" + }, + { + "label": "iphone", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L60", + "community": 863, + "norm_label": "iphone", + "id": "pages_preflight_iphone" + }, + { + "label": "checks", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L62", + "community": 863, + "norm_label": "checks", + "id": "pages_preflight_checks" + }, + { + "label": "hasReBreakApp", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L69", + "community": 863, + "norm_label": "hasrebreakapp", + "id": "pages_preflight_hasrebreakapp" + }, + { + "label": "allChecked", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L73", + "community": 863, + "norm_label": "allchecked", + "id": "pages_preflight_allchecked" + }, + { + "label": "sideload.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/sideload.vue", + "source_location": "L1", + "community": 1312, + "norm_label": "sideload.vue", + "id": "apps_rebreak_magic_app_pages_sideload_vue" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/sideload.vue", + "source_location": "L114", + "community": 1312, + "norm_label": "if()", + "id": "pages_sideload_if" + }, + { + "label": "status.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/status.vue", + "source_location": "L1", + "community": 929, + "norm_label": "status.vue", + "id": "apps_rebreak_magic_app_pages_status_vue" + }, + { + "label": "if()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/status.vue", + "source_location": "L319", + "community": 929, + "norm_label": "if()", + "id": "pages_status_if" + }, + { + "label": "supervise.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/supervise.vue", + "source_location": "L1", + "community": 1298, + "norm_label": "supervise.vue", + "id": "apps_rebreak_magic_app_pages_supervise_vue" + }, + { + "label": "canContinue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/supervise.vue", + "source_location": "L89", + "community": 1298, + "norm_label": "cancontinue", + "id": "pages_supervise_cancontinue" + }, + { + "label": "runSupervise()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/pages/supervise.vue", + "source_location": "L108", + "community": 1298, + "norm_label": "runsupervise()", + "id": "pages_supervise_runsupervise" + }, + { + "label": "nuxt.config.ts", + "file_type": "code", + "source_file": "apps/rebreak-magic/nuxt.config.ts", + "source_location": "L1", + "community": 1330, + "norm_label": "nuxt.config.ts", + "id": "apps_rebreak_magic_nuxt_config_ts" }, { "label": "package.json", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L1", - "id": "apps_marketing_package_json", - "community": 77, - "norm_label": "package.json" + "community": 169, + "norm_label": "package.json", + "id": "apps_rebreak_magic_package_json" }, { "label": "name", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L2", - "id": "marketing_package_name", - "community": 77, - "norm_label": "name" + "community": 169, + "norm_label": "name", + "id": "rebreak_magic_package_name" }, { "label": "type", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L3", - "id": "marketing_package_type", - "community": 77, - "norm_label": "type" + "community": 169, + "norm_label": "type", + "id": "rebreak_magic_package_type" }, { "label": "private", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L4", - "id": "marketing_package_private", - "community": 77, - "norm_label": "private" + "community": 169, + "norm_label": "private", + "id": "rebreak_magic_package_private" }, { "label": "version", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L5", - "id": "marketing_package_version", - "community": 77, - "norm_label": "version" + "community": 169, + "norm_label": "version", + "id": "rebreak_magic_package_version" }, { "label": "scripts", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L6", - "id": "marketing_package_scripts", - "community": 77, - "norm_label": "scripts" + "community": 169, + "norm_label": "scripts", + "id": "rebreak_magic_package_scripts" }, { "label": "dev", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L7", - "id": "marketing_package_scripts_dev", - "community": 77, - "norm_label": "dev" + "community": 169, + "norm_label": "dev", + "id": "rebreak_magic_package_scripts_dev" }, { "label": "build", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L8", - "id": "marketing_package_scripts_build", - "community": 77, - "norm_label": "build" + "community": 169, + "norm_label": "build", + "id": "rebreak_magic_package_scripts_build" }, { "label": "generate", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L9", - "id": "marketing_package_scripts_generate", - "community": 77, - "norm_label": "generate" + "community": 169, + "norm_label": "generate", + "id": "rebreak_magic_package_scripts_generate" }, { "label": "preview", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L10", - "id": "marketing_package_scripts_preview", - "community": 77, - "norm_label": "preview" + "community": 169, + "norm_label": "preview", + "id": "rebreak_magic_package_scripts_preview" }, { "label": "postinstall", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L11", - "id": "marketing_package_scripts_postinstall", - "community": 77, - "norm_label": "postinstall" + "community": 169, + "norm_label": "postinstall", + "id": "rebreak_magic_package_scripts_postinstall" + }, + { + "label": "tauri", + "file_type": "code", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L12", + "community": 169, + "norm_label": "tauri", + "id": "rebreak_magic_package_scripts_tauri" + }, + { + "label": "tauri:dev", + "file_type": "code", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L13", + "community": 169, + "norm_label": "tauri:dev", + "id": "rebreak_magic_package_scripts_tauri_dev" + }, + { + "label": "tauri:build", + "file_type": "code", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L14", + "community": 169, + "norm_label": "tauri:build", + "id": "rebreak_magic_package_scripts_tauri_build" }, { "label": "dependencies", "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L13", - "id": "marketing_package_dependencies", - "community": 77, - "norm_label": "dependencies" - }, - { - "label": "@iconify-json/heroicons", - "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L14", - "id": "marketing_package_dependencies_iconify_json_heroicons", - "community": 77, - "norm_label": "@iconify-json/heroicons" - }, - { - "label": "@nuxt/fonts", - "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L15", - "id": "marketing_package_dependencies_nuxt_fonts", - "community": 77, - "norm_label": "@nuxt/fonts" - }, - { - "label": "@nuxt/icon", - "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L16", - "id": "marketing_package_dependencies_nuxt_icon", - "community": 77, - "norm_label": "@nuxt/icon" - }, - { - "label": "@nuxt/image", - "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L17", - "id": "marketing_package_dependencies_nuxt_image", - "community": 77, - "norm_label": "@nuxt/image" + "community": 169, + "norm_label": "dependencies", + "id": "rebreak_magic_package_dependencies" }, { "label": "@nuxt/ui", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L17", + "community": 169, + "norm_label": "@nuxt/ui", + "id": "rebreak_magic_package_dependencies_nuxt_ui" + }, + { + "label": "@nuxt/icon", + "file_type": "code", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L18", - "id": "marketing_package_dependencies_nuxt_ui", - "community": 77, - "norm_label": "@nuxt/ui" + "community": 169, + "norm_label": "@nuxt/icon", + "id": "rebreak_magic_package_dependencies_nuxt_icon" }, { - "label": "@nuxtjs/i18n", + "label": "@vueuse/core", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L19", - "id": "marketing_package_dependencies_nuxtjs_i18n", - "community": 77, - "norm_label": "@nuxtjs/i18n" - }, - { - "label": "@vueuse/motion", - "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L20", - "id": "marketing_package_dependencies_vueuse_motion", - "community": 77, - "norm_label": "@vueuse/motion" + "community": 169, + "norm_label": "@vueuse/core", + "id": "rebreak_magic_package_dependencies_vueuse_core" }, { "label": "@vueuse/nuxt", "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L21", - "id": "marketing_package_dependencies_vueuse_nuxt", - "community": 77, - "norm_label": "@vueuse/nuxt" - }, - { - "label": "chart.js", - "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L22", - "id": "marketing_package_dependencies_chart_js", - "community": 77, - "norm_label": "chart.js" + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L20", + "community": 169, + "norm_label": "@vueuse/nuxt", + "id": "rebreak_magic_package_dependencies_vueuse_nuxt" }, { "label": "nuxt", "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L23", - "id": "marketing_package_dependencies_nuxt", - "community": 77, - "norm_label": "nuxt" + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L21", + "community": 169, + "norm_label": "nuxt", + "id": "rebreak_magic_package_dependencies_nuxt" + }, + { + "label": "qrcode", + "file_type": "code", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L22", + "community": 169, + "norm_label": "qrcode", + "id": "rebreak_magic_package_dependencies_qrcode" }, { "label": "tailwindcss", "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L24", - "id": "marketing_package_dependencies_tailwindcss", - "community": 77, - "norm_label": "tailwindcss" + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L23", + "community": 169, + "norm_label": "tailwindcss", + "id": "rebreak_magic_package_dependencies_tailwindcss" }, { "label": "vue", "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L25", - "id": "marketing_package_dependencies_vue", - "community": 77, - "norm_label": "vue" - }, - { - "label": "vue-chartjs", - "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L26", - "id": "marketing_package_dependencies_vue_chartjs", - "community": 77, - "norm_label": "vue-chartjs" + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L24", + "community": 169, + "norm_label": "vue", + "id": "rebreak_magic_package_dependencies_vue" }, { "label": "vue-router", "file_type": "code", - "source_file": "apps/marketing/package.json", - "source_location": "L27", - "id": "marketing_package_dependencies_vue_router", - "community": 77, - "norm_label": "vue-router" + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L25", + "community": 169, + "norm_label": "vue-router", + "id": "rebreak_magic_package_dependencies_vue_router" }, { "label": "devDependencies", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L27", + "community": 169, + "norm_label": "devdependencies", + "id": "rebreak_magic_package_devdependencies" + }, + { + "label": "@iconify-json/heroicons", + "file_type": "code", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L28", + "community": 169, + "norm_label": "@iconify-json/heroicons", + "id": "rebreak_magic_package_devdependencies_iconify_json_heroicons" + }, + { + "label": "@tauri-apps/api", + "file_type": "code", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L29", - "id": "marketing_package_devdependencies", - "community": 77, - "norm_label": "devdependencies" + "community": 169, + "norm_label": "@tauri-apps/api", + "id": "rebreak_magic_package_devdependencies_tauri_apps_api" }, { - "label": "@iconify-json/simple-icons", + "label": "@tauri-apps/cli", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L30", - "id": "marketing_package_devdependencies_iconify_json_simple_icons", - "community": 77, - "norm_label": "@iconify-json/simple-icons" + "community": 169, + "norm_label": "@tauri-apps/cli", + "id": "rebreak_magic_package_devdependencies_tauri_apps_cli" }, { - "label": "@nuxt/devtools", + "label": "@types/qrcode", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L31", - "id": "marketing_package_devdependencies_nuxt_devtools", - "community": 77, - "norm_label": "@nuxt/devtools" + "community": 169, + "norm_label": "@types/qrcode", + "id": "rebreak_magic_package_devdependencies_types_qrcode" }, { "label": "typescript", "file_type": "code", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L32", - "id": "marketing_package_devdependencies_typescript", - "community": 77, - "norm_label": "typescript" + "community": 169, + "norm_label": "typescript", + "id": "rebreak_magic_package_devdependencies_typescript" }, { - "label": "MacRegistrationView.swift", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "label": "README.md", + "file_type": "document", + "source_file": "apps/rebreak-magic/src-tauri/binaries/README.md", "source_location": "L1", - "id": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift", - "community": 867, - "norm_label": "macregistrationview.swift" + "community": 1120, + "norm_label": "readme.md", + "id": "apps_rebreak_magic_src_tauri_binaries_readme_md" }, { - "label": "MacRegistrationView", + "label": "Tauri Sidecar Binaries", + "file_type": "document", + "source_file": "apps/rebreak-magic/src-tauri/binaries/README.md", + "source_location": "L1", + "community": 1120, + "norm_label": "tauri sidecar binaries", + "id": "binaries_readme_tauri_sidecar_binaries" + }, + { + "label": "`supervise-magic`", + "file_type": "document", + "source_file": "apps/rebreak-magic/src-tauri/binaries/README.md", + "source_location": "L5", + "community": 1120, + "norm_label": "`supervise-magic`", + "id": "binaries_readme_supervise_magic" + }, + { + "label": "Build", + "file_type": "document", + "source_file": "apps/rebreak-magic/src-tauri/binaries/README.md", + "source_location": "L9", + "community": 1120, + "norm_label": "build", + "id": "binaries_readme_build" + }, + { + "label": "Naming convention for Tauri", + "file_type": "document", + "source_file": "apps/rebreak-magic/src-tauri/binaries/README.md", + "source_location": "L24", + "community": 1120, + "norm_label": "naming convention for tauri", + "id": "binaries_readme_naming_convention_for_tauri" + }, + { + "label": "build.rs", "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_file": "apps/rebreak-magic/src-tauri/build.rs", + "source_location": "L1", + "community": 760, + "norm_label": "build.rs", + "id": "apps_rebreak_magic_src_tauri_build_rs" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/build.rs", + "source_location": "L1", + "community": 760, + "norm_label": "main()", + "id": "src_tauri_build_main" + }, + { + "label": "default.json", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/capabilities/default.json", + "source_location": "L1", + "community": 624, + "norm_label": "default.json", + "id": "apps_rebreak_magic_src_tauri_capabilities_default_json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/capabilities/default.json", + "source_location": "L2", + "community": 624, + "norm_label": "$schema", + "id": "capabilities_default_schema" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/capabilities/default.json", "source_location": "L3", - "id": "views_macregistrationview_macregistrationview", - "community": 867, - "norm_label": "macregistrationview" + "community": 624, + "norm_label": "identifier", + "id": "capabilities_default_identifier" }, { - "label": "View", + "label": "description", "file_type": "code", - "source_file": "", - "source_location": "", - "id": "view", - "community": 50, - "norm_label": "view" + "source_file": "apps/rebreak-magic/src-tauri/capabilities/default.json", + "source_location": "L4", + "community": 624, + "norm_label": "description", + "id": "capabilities_default_description" }, { - "label": "MacDeviceInfo", + "label": "windows", "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_file": "apps/rebreak-magic/src-tauri/capabilities/default.json", + "source_location": "L5", + "community": 624, + "norm_label": "windows", + "id": "capabilities_default_windows" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/capabilities/default.json", "source_location": "L6", - "id": "macdeviceinfo", - "community": 867, - "norm_label": "macdeviceinfo" + "community": 624, + "norm_label": "permissions", + "id": "capabilities_default_permissions" + }, + { + "label": "api.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L1", + "community": 117, + "norm_label": "api.rs", + "id": "apps_rebreak_magic_src_tauri_src_backend_api_rs" + }, + { + "label": "RedeemPairingRequest", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L8", + "community": 117, + "norm_label": "redeempairingrequest", + "id": "backend_api_redeempairingrequest" }, { "label": "String", "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", "source_location": "L9", - "id": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string", - "community": 867, - "norm_label": "string" + "community": 117, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" }, { - "label": ".macInfoCard()", + "label": "Option", "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L112", - "id": "views_macregistrationview_macregistrationview_macinfocard", - "community": 867, - "norm_label": ".macinfocard()" + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L10", + "community": 117, + "norm_label": "option", + "id": "apps_rebreak_magic_src_tauri_src_backend_api_rs_option" }, { - "label": ".errorCard()", + "label": "RedeemPairingResponse", "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L136", - "id": "views_macregistrationview_macregistrationview_errorcard", - "community": 867, - "norm_label": ".errorcard()" + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L14", + "community": 117, + "norm_label": "redeempairingresponse", + "id": "backend_api_redeempairingresponse" }, { - "label": ".successCard()", + "label": "RegisterDeviceRequest", "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L169", - "id": "views_macregistrationview_macregistrationview_successcard", - "community": 867, - "norm_label": ".successcard()" + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L23", + "community": 117, + "norm_label": "registerdevicerequest", + "id": "backend_api_registerdevicerequest" }, { - "label": ".loadMacInfo()", + "label": "RegisterDeviceResponse", "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L184", - "id": "views_macregistrationview_macregistrationview_loadmacinfo", - "community": 867, - "norm_label": ".loadmacinfo()" + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L35", + "community": 117, + "norm_label": "registerdeviceresponse", + "id": "backend_api_registerdeviceresponse" }, { - "label": ".checkProfileStatus()", + "label": "MagicDeviceInfo", "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L199", - "id": "views_macregistrationview_macregistrationview_checkprofilestatus", - "community": 867, - "norm_label": ".checkprofilestatus()" + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L46", + "community": 117, + "norm_label": "magicdeviceinfo", + "id": "backend_api_magicdeviceinfo" }, { - "label": ".handleRegistration()", + "label": "default_active_status()", "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L210", - "id": "views_macregistrationview_macregistrationview_handleregistration", - "community": 867, - "norm_label": ".handleregistration()" - }, - { - "label": ".handleProfileInstall()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L234", - "id": "views_macregistrationview_macregistrationview_handleprofileinstall", - "community": 867, - "norm_label": ".handleprofileinstall()" - }, - { - "label": ".pollUntilProfileInstalled()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L306", - "id": "views_macregistrationview_macregistrationview_polluntilprofileinstalled", - "community": 867, - "norm_label": ".polluntilprofileinstalled()" - }, - { - "label": "Int", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L306", - "id": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_int", - "community": 867, - "norm_label": "int" - }, - { - "label": "Bool", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L306", - "id": "bool", - "community": 867, - "norm_label": "bool" - }, - { - "label": ".pollBackendActive()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L316", - "id": "views_macregistrationview_macregistrationview_pollbackendactive", - "community": 867, - "norm_label": ".pollbackendactive()" - }, - { - "label": "SETUP.md", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L1", - "id": "apps_rebreak_native_maestro_setup_md", - "community": 431, - "norm_label": "setup.md" - }, - { - "label": "Maestro E2E \u2014 Local Setup (Phase A)", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L1", - "id": "maestro_setup_maestro_e2e_local_setup_phase_a", - "community": 431, - "norm_label": "maestro e2e \u2014 local setup (phase a)" - }, - { - "label": "1. Maestro CLI installieren", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L8", - "id": "maestro_setup_1_maestro_cli_installieren", - "community": 431, - "norm_label": "1. maestro cli installieren" - }, - { - "label": "2. App auf Device / Simulator bauen", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L29", - "id": "maestro_setup_2_app_auf_device_simulator_bauen", - "community": 431, - "norm_label": "2. app auf device / simulator bauen" - }, - { - "label": "iOS Simulator", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L33", - "id": "maestro_setup_ios_simulator", - "community": 431, - "norm_label": "ios simulator" - }, - { - "label": "Android Emulator", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L59", - "id": "maestro_setup_android_emulator", - "community": 431, - "norm_label": "android emulator" - }, - { - "label": "Bundle-ID", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L73", - "id": "maestro_setup_bundle_id", - "community": 431, - "norm_label": "bundle-id" - }, - { - "label": "3. Env-Vars setzen", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L80", - "id": "maestro_setup_3_env_vars_setzen", - "community": 431, - "norm_label": "3. env-vars setzen" - }, - { - "label": "Option A: direktes `--env` Flag", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L84", - "id": "maestro_setup_option_a_direktes_env_flag", - "community": 431, - "norm_label": "option a: direktes `--env` flag" - }, - { - "label": "Option B: Infisical Wrapper", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L93", - "id": "maestro_setup_option_b_infisical_wrapper", - "community": 431, - "norm_label": "option b: infisical wrapper" - }, - { - "label": "Test-Account (aktueller Stand)", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L111", - "id": "maestro_setup_test_account_aktueller_stand", - "community": 431, - "norm_label": "test-account (aktueller stand)" - }, - { - "label": "4. Flows ausfuehren", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L122", - "id": "maestro_setup_4_flows_ausfuehren", - "community": 431, - "norm_label": "4. flows ausfuehren" - }, - { - "label": "Einen einzelnen Flow", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L124", - "id": "maestro_setup_einen_einzelnen_flow", - "community": 431, - "norm_label": "einen einzelnen flow" - }, - { - "label": "Alle Flows (sequenziell)", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L132", - "id": "maestro_setup_alle_flows_sequenziell", - "community": 431, - "norm_label": "alle flows (sequenziell)" - }, - { - "label": "Spezifische Subdirectory", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L147", - "id": "maestro_setup_spezifische_subdirectory", - "community": 431, - "norm_label": "spezifische subdirectory" - }, - { - "label": "5. Flow-Entwicklung: Maestro Studio", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L155", - "id": "maestro_setup_5_flow_entwicklung_maestro_studio", - "community": 431, - "norm_label": "5. flow-entwicklung: maestro studio" - }, - { - "label": "6. Tipps fuer stabile Flows", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L169", - "id": "maestro_setup_6_tipps_fuer_stabile_flows", - "community": 431, - "norm_label": "6. tipps fuer stabile flows" - }, - { - "label": "7. App-State vor Test-Lauf", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L202", - "id": "maestro_setup_7_app_state_vor_test_lauf", - "community": 431, - "norm_label": "7. app-state vor test-lauf" - }, - { - "label": "8. Flow-Uebersicht", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L218", - "id": "maestro_setup_8_flow_uebersicht", - "community": 431, - "norm_label": "8. flow-uebersicht" - }, - { - "label": "Bestehende Flows (Phase A)", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L220", - "id": "maestro_setup_bestehende_flows_phase_a", - "community": 431, - "norm_label": "bestehende flows (phase a)" - }, - { - "label": "Neue Flows (Phase A+, kritische Coverage)", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L235", - "id": "maestro_setup_neue_flows_phase_a_kritische_coverage", - "community": 431, - "norm_label": "neue flows (phase a+, kritische coverage)" - }, - { - "label": "9. Neue Env-Vars fuer Phase-A+-Flows", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L260", - "id": "maestro_setup_9_neue_env_vars_fuer_phase_a_flows", - "community": 431, - "norm_label": "9. neue env-vars fuer phase-a+-flows" - }, - { - "label": "10. Run-Befehle Phase A+", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L274", - "id": "maestro_setup_10_run_befehle_phase_a", - "community": 431, - "norm_label": "10. run-befehle phase a+" - }, - { - "label": "11. Phase B \u2014 Maestro Cloud (Zukunft, post-TestFlight)", - "file_type": "document", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L303", - "id": "maestro_setup_11_phase_b_maestro_cloud_zukunft_post_testflight", - "community": 431, - "norm_label": "11. phase b \u2014 maestro cloud (zukunft, post-testflight)" - }, - { - "label": "capture-marketing-loggedin.sh", - "file_type": "code", - "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing-loggedin.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "id": "apps_rebreak_native_maestro_screens_capture_marketing_loggedin_sh", - "community": 758, - "norm_label": "capture-marketing-loggedin.sh" - }, - { - "label": "capture-marketing-loggedin.sh script", - "file_type": "code", - "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing-loggedin.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "bash_entrypoint" - }, - "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_maestro_screens_capture_marketing_loggedin_sh__entry", - "community": 758, - "norm_label": "capture-marketing-loggedin.sh script" - }, - { - "label": "PATH", - "file_type": "code", - "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing-loggedin.sh", - "source_location": "L20", - "metadata": { - "language": "bash", - "kind": "code" - }, - "id": "screens_capture_marketing_loggedin_path", - "community": 758, - "norm_label": "path" - }, - { - "label": "capture-marketing.sh", - "file_type": "code", - "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "id": "apps_rebreak_native_maestro_screens_capture_marketing_sh", - "community": 698, - "norm_label": "capture-marketing.sh" - }, - { - "label": "capture-marketing.sh script", - "file_type": "code", - "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "bash_entrypoint" - }, - "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_maestro_screens_capture_marketing_sh__entry", - "community": 698, - "norm_label": "capture-marketing.sh script" - }, - { - "label": "MAPPING", - "file_type": "code", - "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing.sh", - "source_location": "L127", - "metadata": { - "language": "bash", - "kind": "code" - }, - "id": "screens_capture_marketing_mapping", - "community": 698, - "norm_label": "mapping" - }, - { - "label": "CALLS_DEBUG_STATE.md", - "file_type": "document", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L1", - "id": "apps_rebreak_native_calls_debug_state_md", - "community": 892, - "norm_label": "calls_debug_state.md" - }, - { - "label": "Voice-Calls \u2014 Debug-Zustand (2026-06-05)", - "file_type": "document", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L1", - "id": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", - "community": 892, - "norm_label": "voice-calls \u2014 debug-zustand (2026-06-05)" - }, - { - "label": "Architektur (Ist-Zustand)", - "file_type": "document", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L6", - "id": "rebreak_native_calls_debug_state_architektur_ist_zustand", - "community": 892, - "norm_label": "architektur (ist-zustand)" - }, - { - "label": "Verhaltens-Matrix", - "file_type": "document", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L19", - "id": "rebreak_native_calls_debug_state_verhaltens_matrix", - "community": 892, - "norm_label": "verhaltens-matrix" - }, - { - "label": "Divide & Conquer \u2014 Phasen", - "file_type": "document", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L28", - "id": "rebreak_native_calls_debug_state_divide_conquer_phasen", - "community": 892, - "norm_label": "divide & conquer \u2014 phasen" - }, - { - "label": "\u2705 BEST\u00c4TIGTE Root Cause #3 (2026-06-05, via idevicesyslog + git)", - "file_type": "document", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L40", - "id": "rebreak_native_calls_debug_state_best\u00e4tigte_root_cause_3_2026_06_05_via_idevicesyslog_git", - "community": 892, - "norm_label": "\u2705 bestatigte root cause #3 (2026-06-05, via idevicesyslog + git)" - }, - { - "label": "Apple-Constraint (kein Bug)", - "file_type": "document", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L61", - "id": "rebreak_native_calls_debug_state_apple_constraint_kein_bug", - "community": 892, - "norm_label": "apple-constraint (kein bug)" - }, - { - "label": "CHANGELOG.md", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L1", - "id": "apps_rebreak_native_changelog_md", - "community": 269, - "norm_label": "changelog.md" - }, - { - "label": "Changelog", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L1", - "id": "rebreak_native_changelog_changelog", - "community": 269, - "norm_label": "changelog" - }, - { - "label": "v0.4.5 (Build 90 / versionCode 71) \u2014 2026-06-10\\n\\n# Next Release \u2014 Notes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L4", - "id": "rebreak_native_changelog_v0_4_5_build_90_versioncode_71_2026_06_10_n_n_next_release_notes", - "community": 269, - "norm_label": "v0.4.5 (build 90 / versioncode 71) \u2014 2026-06-10\\n\\n# next release \u2014 notes" - }, - { - "label": "v0.4.4 (Build 90 / versionCode 70) \u2014 2026-06-08\\n\\n# Next Release", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L37", - "id": "rebreak_native_changelog_v0_4_4_build_90_versioncode_70_2026_06_08_n_n_next_release", - "community": 269, - "norm_label": "v0.4.4 (build 90 / versioncode 70) \u2014 2026-06-08\\n\\n# next release" - }, - { - "label": "Improved", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L39", - "id": "rebreak_native_changelog_improved", - "community": 269, - "norm_label": "improved" - }, - { - "label": "v0.4.4 (Build 90 / versionCode 70) \u2014 2026-06-08\\n\\n# Next Release", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L43", - "id": "rebreak_native_changelog_v0_4_4_build_90_versioncode_70_2026_06_08_n_n_next_release_43", - "community": 269, - "norm_label": "v0.4.4 (build 90 / versioncode 70) \u2014 2026-06-08\\n\\n# next release" - }, - { - "label": "Improved", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L45", - "id": "rebreak_native_changelog_improved_45", - "community": 269, - "norm_label": "improved" - }, - { - "label": "v0.4.1 (Build 87 / versionCode 67) \u2014 2026-06-08\\n\\n# Next Release", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L49", - "id": "rebreak_native_changelog_v0_4_1_build_87_versioncode_67_2026_06_08_n_n_next_release", - "community": 269, - "norm_label": "v0.4.1 (build 87 / versioncode 67) \u2014 2026-06-08\\n\\n# next release" - }, - { - "label": "Improved", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L51", - "id": "rebreak_native_changelog_improved_51", - "community": 269, - "norm_label": "improved" - }, - { - "label": "v0.4.0 (Build 85 / versionCode 66) \u2014 2026-06-07\\n\\n# Next Release", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L56", - "id": "rebreak_native_changelog_v0_4_0_build_85_versioncode_66_2026_06_07_n_n_next_release", - "community": 269, - "norm_label": "v0.4.0 (build 85 / versioncode 66) \u2014 2026-06-07\\n\\n# next release" - }, - { - "label": "New", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L58", - "id": "rebreak_native_changelog_new", - "community": 269, - "norm_label": "new" - }, - { - "label": "Changed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L65", - "id": "rebreak_native_changelog_changed", - "community": 269, - "norm_label": "changed" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L70", - "id": "rebreak_native_changelog_fixed", - "community": 269, - "norm_label": "fixed" - }, - { - "label": "v0.3.13 (Build 85 / versionCode 64) \u2014 2026-06-07\\n\\n# Next Release", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", "source_location": "L72", - "id": "rebreak_native_changelog_v0_3_13_build_85_versioncode_64_2026_06_07_n_n_next_release", - "community": 269, - "norm_label": "v0.3.13 (build 85 / versioncode 64) \u2014 2026-06-07\\n\\n# next release" + "community": 117, + "norm_label": "default_active_status()", + "id": "backend_api_default_active_status" }, { - "label": "New", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L74", - "id": "rebreak_native_changelog_new_74", - "community": 269, - "norm_label": "new" - }, - { - "label": "Improved", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L79", - "id": "rebreak_native_changelog_improved_79", - "community": 269, - "norm_label": "improved" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L84", - "id": "rebreak_native_changelog_fixed_84", - "community": 269, - "norm_label": "fixed" - }, - { - "label": "v0.3.13 (Build 84 / versionCode 64) \u2014 2026-06-07\\n\\n# Next Release", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L86", - "id": "rebreak_native_changelog_v0_3_13_build_84_versioncode_64_2026_06_07_n_n_next_release", - "community": 269, - "norm_label": "v0.3.13 (build 84 / versioncode 64) \u2014 2026-06-07\\n\\n# next release" - }, - { - "label": "Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L88", - "id": "rebreak_native_changelog_features", - "community": 269, - "norm_label": "features" - }, - { - "label": "Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L101", - "id": "rebreak_native_changelog_fixes", - "community": 269, - "norm_label": "fixes" - }, - { - "label": "Polish", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L114", - "id": "rebreak_native_changelog_polish", - "community": 269, - "norm_label": "polish" - }, - { - "label": "Notes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L124", - "id": "rebreak_native_changelog_notes", - "community": 269, - "norm_label": "notes" - }, - { - "label": "v0.3.13 (Build 82 / versionCode 63) \u2014 2026-06-07\\n\\n# Next Release", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L128", - "id": "rebreak_native_changelog_v0_3_13_build_82_versioncode_63_2026_06_07_n_n_next_release", - "community": 269, - "norm_label": "v0.3.13 (build 82 / versioncode 63) \u2014 2026-06-07\\n\\n# next release" - }, - { - "label": "Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L130", - "id": "rebreak_native_changelog_features_130", - "community": 269, - "norm_label": "features" - }, - { - "label": "Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L143", - "id": "rebreak_native_changelog_fixes_143", - "community": 269, - "norm_label": "fixes" - }, - { - "label": "Polish", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L156", - "id": "rebreak_native_changelog_polish_156", - "community": 269, - "norm_label": "polish" - }, - { - "label": "Notes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L166", - "id": "rebreak_native_changelog_notes_166", - "community": 269, - "norm_label": "notes" - }, - { - "label": "v0.3.13 (Build 79 / versionCode 62) \u2014 2026-06-06\\n\\n# Next Release", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L170", - "id": "rebreak_native_changelog_v0_3_13_build_79_versioncode_62_2026_06_06_n_n_next_release", - "community": 269, - "norm_label": "v0.3.13 (build 79 / versioncode 62) \u2014 2026-06-06\\n\\n# next release" - }, - { - "label": "Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L172", - "id": "rebreak_native_changelog_fixes_172", - "community": 269, - "norm_label": "fixes" - }, - { - "label": "v0.3.13 (Build 76 / versionCode 59) \u2014 2026-06-04\\n\\n### Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L179", - "id": "rebreak_native_changelog_v0_3_13_build_76_versioncode_59_2026_06_04_n_n_fixes", - "community": 269, - "norm_label": "v0.3.13 (build 76 / versioncode 59) \u2014 2026-06-04\\n\\n### fixes" - }, - { - "label": "v0.3.13 (Build 76 / versionCode 59) \u2014 2026-06-04\\n\\n### Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L188", - "id": "rebreak_native_changelog_v0_3_13_build_76_versioncode_59_2026_06_04_n_n_fixes_188", - "community": 269, - "norm_label": "v0.3.13 (build 76 / versioncode 59) \u2014 2026-06-04\\n\\n### fixes" - }, - { - "label": "v0.3.13 (Build 71 / versionCode 54) \u2014 2026-06-04\\n\\n### Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L197", - "id": "rebreak_native_changelog_v0_3_13_build_71_versioncode_54_2026_06_04_n_n_fixes", - "community": 913, - "norm_label": "v0.3.13 (build 71 / versioncode 54) \u2014 2026-06-04\\n\\n### fixes" - }, - { - "label": "Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L205", - "id": "rebreak_native_changelog_features_205", - "community": 913, - "norm_label": "features" - }, - { - "label": "Changes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L212", - "id": "rebreak_native_changelog_changes", - "community": 913, - "norm_label": "changes" - }, - { - "label": "v0.3.13 (Build 70 / versionCode 53) \u2014 2026-06-03\\n\\n### Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L216", - "id": "rebreak_native_changelog_v0_3_13_build_70_versioncode_53_2026_06_03_n_n_fixes", - "community": 914, - "norm_label": "v0.3.13 (build 70 / versioncode 53) \u2014 2026-06-03\\n\\n### fixes" - }, - { - "label": "Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L223", - "id": "rebreak_native_changelog_features_223", - "community": 914, - "norm_label": "features" - }, - { - "label": "Changes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L227", - "id": "rebreak_native_changelog_changes_227", - "community": 914, - "norm_label": "changes" - }, - { - "label": "v0.3.13 (Build 69 / versionCode 52) \u2014 2026-06-03\\n\\n### Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L231", - "id": "rebreak_native_changelog_v0_3_13_build_69_versioncode_52_2026_06_03_n_n_fixes", - "community": 916, - "norm_label": "v0.3.13 (build 69 / versioncode 52) \u2014 2026-06-03\\n\\n### fixes" - }, - { - "label": "Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L235", - "id": "rebreak_native_changelog_features_235", - "community": 916, - "norm_label": "features" - }, - { - "label": "v0.3.13 (Build 68 / versionCode 51) \u2014 2026-06-03\\n\\n### Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L238", - "id": "rebreak_native_changelog_v0_3_13_build_68_versioncode_51_2026_06_03_n_n_fixes", - "community": 917, - "norm_label": "v0.3.13 (build 68 / versioncode 51) \u2014 2026-06-03\\n\\n### fixes" - }, - { - "label": "Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L245", - "id": "rebreak_native_changelog_features_245", - "community": 917, - "norm_label": "features" - }, - { - "label": "v0.3.13 (Build 67 / versionCode 50) \u2014 2026-06-03\\n\\n### Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L248", - "id": "rebreak_native_changelog_v0_3_13_build_67_versioncode_50_2026_06_03_n_n_fixes", - "community": 918, - "norm_label": "v0.3.13 (build 67 / versioncode 50) \u2014 2026-06-03\\n\\n### fixes" - }, - { - "label": "Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L252", - "id": "rebreak_native_changelog_features_252", - "community": 918, - "norm_label": "features" - }, - { - "label": "v0.3.13 (Build 65 / versionCode 50) \u2014 2026-06-03\\n\\n### Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L255", - "id": "rebreak_native_changelog_v0_3_13_build_65_versioncode_50_2026_06_03_n_n_fixes", - "community": 919, - "norm_label": "v0.3.13 (build 65 / versioncode 50) \u2014 2026-06-03\\n\\n### fixes" - }, - { - "label": "Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L266", - "id": "rebreak_native_changelog_features_266", - "community": 919, - "norm_label": "features" - }, - { - "label": "v0.3.13 (Build 62 / versionCode 50) \u2014 2026-06-03\\n\\n### Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L273", - "id": "rebreak_native_changelog_v0_3_13_build_62_versioncode_50_2026_06_03_n_n_fixes", - "community": 920, - "norm_label": "v0.3.13 (build 62 / versioncode 50) \u2014 2026-06-03\\n\\n### fixes" - }, - { - "label": "Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L283", - "id": "rebreak_native_changelog_features_283", - "community": 920, - "norm_label": "features" - }, - { - "label": "v0.3.13 (Build 60 / versionCode 48) \u2014 2026-06-02\\n\\n### Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L289", - "id": "rebreak_native_changelog_v0_3_13_build_60_versioncode_48_2026_06_02_n_n_fixes", - "community": 921, - "norm_label": "v0.3.13 (build 60 / versioncode 48) \u2014 2026-06-02\\n\\n### fixes" - }, - { - "label": "Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L293", - "id": "rebreak_native_changelog_features_293", - "community": 921, - "norm_label": "features" - }, - { - "label": "v0.3.13 (Build 56 / versionCode 46) \u2014 2026-06-01\\n\\n### Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L296", - "id": "rebreak_native_changelog_v0_3_13_build_56_versioncode_46_2026_06_01_n_n_features", - "community": 922, - "norm_label": "v0.3.13 (build 56 / versioncode 46) \u2014 2026-06-01\\n\\n### features" - }, - { - "label": "Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L305", - "id": "rebreak_native_changelog_fixes_305", - "community": 922, - "norm_label": "fixes" - }, - { - "label": "v0.3.13 (Build 54 / versionCode 44) \u2014 2026-06-01\\n\\n### Features", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L309", - "id": "rebreak_native_changelog_v0_3_13_build_54_versioncode_44_2026_06_01_n_n_features", - "community": 907, - "norm_label": "v0.3.13 (build 54 / versioncode 44) \u2014 2026-06-01\\n\\n### features" - }, - { - "label": "Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L320", - "id": "rebreak_native_changelog_fixes_320", - "community": 907, - "norm_label": "fixes" - }, - { - "label": "Backend", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L331", - "id": "rebreak_native_changelog_backend", - "community": 907, - "norm_label": "backend" - }, - { - "label": "Infrastructure", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L336", - "id": "rebreak_native_changelog_infrastructure", - "community": 907, - "norm_label": "infrastructure" - }, - { - "label": "v0.3.13 (Build 50 / versionCode 40) \u2014 2026-06-01\\n\\nlayer 3 for ios / fix a11y\\n", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L341", - "id": "rebreak_native_changelog_v0_3_13_build_50_versioncode_40_2026_06_01_n_nlayer_3_for_ios_fix_a11y_n", - "community": 269, - "norm_label": "v0.3.13 (build 50 / versioncode 40) \u2014 2026-06-01\\n\\nlayer 3 for ios / fix a11y\\n" - }, - { - "label": "v0.3.13 (Build 46 / versionCode 36) \u2014 2026-05-31\\n\\nDM-Chat: Die letzte Nachricht wird jetzt zuverl\u00e4ssig oberhalb der Eingabezeile angezeigt \u2014 kein manuelles Nachscrollen mehr beim \u00d6ffnen oder nach dem Senden.", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L342", - "id": "rebreak_native_changelog_v0_3_13_build_46_versioncode_36_2026_05_31_n_ndm_chat_die_letzte_nachricht_wird_jetzt_zuverl\u00e4ssig_oberhalb_der_eingabezeile_angezeigt_kein_manuelles_nachscrollen_mehr_beim_\u00f6ffnen_oder_nach_dem_senden", - "community": 269, - "norm_label": "v0.3.13 (build 46 / versioncode 36) \u2014 2026-05-31\\n\\ndm-chat: die letzte nachricht wird jetzt zuverlassig oberhalb der eingabezeile angezeigt \u2014 kein manuelles nachscrollen mehr beim offnen oder nach dem senden." - }, - { - "label": "v0.3.13 (Build 44 / versionCode 35) \u2014 2026-05-31\\n\\nDM-Chat: scrollt jetzt zuverl\u00e4ssig zur neuesten Nachricht \u2014 auch nach eigenen gesendeten Nachrichten und beim Laden von Bildern.", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L345", - "id": "rebreak_native_changelog_v0_3_13_build_44_versioncode_35_2026_05_31_n_ndm_chat_scrollt_jetzt_zuverl\u00e4ssig_zur_neuesten_nachricht_auch_nach_eigenen_gesendeten_nachrichten_und_beim_laden_von_bildern", - "community": 269, - "norm_label": "v0.3.13 (build 44 / versioncode 35) \u2014 2026-05-31\\n\\ndm-chat: scrollt jetzt zuverlassig zur neuesten nachricht \u2014 auch nach eigenen gesendeten nachrichten und beim laden von bildern." - }, - { - "label": "v0.3.13 (Build 44 / versionCode 33) \u2014 2026-05-31\\n\\nlyra multilanguage fix\\n", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L350", - "id": "rebreak_native_changelog_v0_3_13_build_44_versioncode_33_2026_05_31_n_nlyra_multilanguage_fix_n", - "community": 269, - "norm_label": "v0.3.13 (build 44 / versioncode 33) \u2014 2026-05-31\\n\\nlyra multilanguage fix\\n" - }, - { - "label": "v0.3.13 (Build 42 / versionCode 32) \u2014 2026-05-30\\n\\nChat-DM: Lange auf eine Nachricht dr\u00fccken \u00f6ffnet das Aktions-Men\u00fc jetzt direkt an der Nachricht (WhatsApp-Stil) statt zentriert. Neu: Emoji-Reaktionen (oben), Antworten und Kopieren bei fremden Nachrichten, sowie L\u00f6schen f\u00fcr eigene Nachrichten (f\u00fcr alle). Reaktionen erscheinen als kleine Bubbles unter der Nachricht. Gel\u00f6schte Nachrichten zeigen \u201eNachricht gel\u00f6scht\".", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L351", - "id": "rebreak_native_changelog_v0_3_13_build_42_versioncode_32_2026_05_30_n_nchat_dm_lange_auf_eine_nachricht_dr\u00fccken_\u00f6ffnet_das_aktions_men\u00fc_jetzt_direkt_an_der_nachricht_whatsapp_stil_statt_zentriert_neu_emoji_reaktionen_oben_antworten_und_kopieren_bei_fremden_nachrichten_sowie_l\u00f6schen_f\u00fcr_eigene_nachrichten_f\u00fcr_alle_reaktionen_erscheinen_als_kleine_bubbles_unter_der_nachricht_gel\u00f6schte_nachrichten_zeigen_nachricht_gel\u00f6scht", - "community": 269, - "norm_label": "v0.3.13 (build 42 / versioncode 32) \u2014 2026-05-30\\n\\nchat-dm: lange auf eine nachricht drucken offnet das aktions-menu jetzt direkt an der nachricht (whatsapp-stil) statt zentriert. neu: emoji-reaktionen (oben), antworten und kopieren bei fremden nachrichten, sowie loschen fur eigene nachrichten (fur alle). reaktionen erscheinen als kleine bubbles unter der nachricht. geloschte nachrichten zeigen \u201enachricht geloscht\"." - }, - { - "label": "v0.3.13 (Build 40 / versionCode 31) \u2014 2026-05-30\\n\\nChat-DM: Lange auf Nachricht dr\u00fccken \u00f6ffnet jetzt das native Aktions-Men\u00fc (Antworten, Liken, Kopieren). Likes erscheinen Insta-Style als Herz unter der Nachricht.\\n", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L356", - "id": "rebreak_native_changelog_v0_3_13_build_40_versioncode_31_2026_05_30_n_nchat_dm_lange_auf_nachricht_dr\u00fccken_\u00f6ffnet_jetzt_das_native_aktions_men\u00fc_antworten_liken_kopieren_likes_erscheinen_insta_style_als_herz_unter_der_nachricht_n", - "community": 269, - "norm_label": "v0.3.13 (build 40 / versioncode 31) \u2014 2026-05-30\\n\\nchat-dm: lange auf nachricht drucken offnet jetzt das native aktions-menu (antworten, liken, kopieren). likes erscheinen insta-style als herz unter der nachricht.\\n" - }, - { - "label": "v0.3.13 (Build 27 / versionCode 18) \u2014 2026-05-30\\n\\nPush-Notifications f\u00fcr Chat: Du erh\u00e4ltst jetzt Pushes bei neuen Direkt-Nachrichten und Raum-Nachrichten. Abschaltbar in den Einstellungen.\\n", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L357", - "id": "rebreak_native_changelog_v0_3_13_build_27_versioncode_18_2026_05_30_n_npush_notifications_f\u00fcr_chat_du_erh\u00e4ltst_jetzt_pushes_bei_neuen_direkt_nachrichten_und_raum_nachrichten_abschaltbar_in_den_einstellungen_n", - "community": 269, - "norm_label": "v0.3.13 (build 27 / versioncode 18) \u2014 2026-05-30\\n\\npush-notifications fur chat: du erhaltst jetzt pushes bei neuen direkt-nachrichten und raum-nachrichten. abschaltbar in den einstellungen.\\n" - }, - { - "label": "v0.3.13 (Build 26 / versionCode 16) \u2014 2026-05-30\\n\\nneue push f\u00fcr chat\\n", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L358", - "id": "rebreak_native_changelog_v0_3_13_build_26_versioncode_16_2026_05_30_n_nneue_push_f\u00fcr_chat_n", - "community": 269, - "norm_label": "v0.3.13 (build 26 / versioncode 16) \u2014 2026-05-30\\n\\nneue push fur chat\\n" - }, - { - "label": "[Unreleased]", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L364", - "id": "rebreak_native_changelog_unreleased", - "community": 269, - "norm_label": "[unreleased]" - }, - { - "label": "[0.3.6] \u2014 buildNumber 15 / versionCode 11 \u2014 2026-05-25", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L368", - "id": "rebreak_native_changelog_0_3_6_buildnumber_15_versioncode_11_2026_05_25", - "community": 912, - "norm_label": "[0.3.6] \u2014 buildnumber 15 / versioncode 11 \u2014 2026-05-25" - }, - { - "label": "Changed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L370", - "id": "rebreak_native_changelog_changed_370", - "community": 912, - "norm_label": "changed" - }, - { - "label": "Backend", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L375", - "id": "rebreak_native_changelog_backend_375", - "community": 912, - "norm_label": "backend" - }, - { - "label": "[0.3.5] \u2014 buildNumber 14 / versionCode 11 \u2014 2026-05-22", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L382", - "id": "rebreak_native_changelog_0_3_5_buildnumber_14_versioncode_11_2026_05_22", - "community": 906, - "norm_label": "[0.3.5] \u2014 buildnumber 14 / versioncode 11 \u2014 2026-05-22" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L384", - "id": "rebreak_native_changelog_fixed_384", - "community": 906, - "norm_label": "fixed" - }, - { - "label": "Added", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L400", - "id": "rebreak_native_changelog_added", - "community": 906, - "norm_label": "added" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L410", - "id": "rebreak_native_changelog_fixed_410", - "community": 906, - "norm_label": "fixed" - }, - { - "label": "[0.3.0] \u2014 versionCode 10 \u2014 2026-05-17", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L418", - "id": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", - "community": 896, - "norm_label": "[0.3.0] \u2014 versioncode 10 \u2014 2026-05-17" - }, - { - "label": "Added", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L420", - "id": "rebreak_native_changelog_added_420", - "community": 896, - "norm_label": "added" - }, - { - "label": "Changed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L432", - "id": "rebreak_native_changelog_changed_432", - "community": 896, - "norm_label": "changed" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L436", - "id": "rebreak_native_changelog_fixed_436", - "community": 896, - "norm_label": "fixed" - }, - { - "label": "i18n", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L442", - "id": "rebreak_native_changelog_i18n", - "community": 896, - "norm_label": "i18n" - }, - { - "label": "Backend", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L446", - "id": "rebreak_native_changelog_backend_446", - "community": 896, - "norm_label": "backend" - }, - { - "label": "[0.2.1] \u2014 versionCode 9 \u2014 2026-05-16", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L453", - "id": "rebreak_native_changelog_0_2_1_versioncode_9_2026_05_16", - "community": 915, - "norm_label": "[0.2.1] \u2014 versioncode 9 \u2014 2026-05-16" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L455", - "id": "rebreak_native_changelog_fixed_455", - "community": 915, - "norm_label": "fixed" - }, - { - "label": "[0.2.0] \u2014 versionCode 8 \u2014 2026-05-16", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L461", - "id": "rebreak_native_changelog_0_2_0_versioncode_8_2026_05_16", - "community": 905, - "norm_label": "[0.2.0] \u2014 versioncode 8 \u2014 2026-05-16" - }, - { - "label": "Added", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L463", - "id": "rebreak_native_changelog_added_463", - "community": 905, - "norm_label": "added" - }, - { - "label": "Changed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L474", - "id": "rebreak_native_changelog_changed_474", - "community": 905, - "norm_label": "changed" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L478", - "id": "rebreak_native_changelog_fixed_478", - "community": 905, - "norm_label": "fixed" - }, - { - "label": "[0.1.0] \u2014 versionCode 7 \u2014 2026-05-15", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L483", - "id": "rebreak_native_changelog_0_1_0_versioncode_7_2026_05_15", - "community": 904, - "norm_label": "[0.1.0] \u2014 versioncode 7 \u2014 2026-05-15" - }, - { - "label": "Added", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L485", - "id": "rebreak_native_changelog_added_485", - "community": 904, - "norm_label": "added" - }, - { - "label": "Changed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L489", - "id": "rebreak_native_changelog_changed_489", - "community": 904, - "norm_label": "changed" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L494", - "id": "rebreak_native_changelog_fixed_494", - "community": 904, - "norm_label": "fixed" - }, - { - "label": "[0.1.0] \u2014 versionCode 6 \u2014 2026-05-15", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L501", - "id": "rebreak_native_changelog_0_1_0_versioncode_6_2026_05_15", - "community": 903, - "norm_label": "[0.1.0] \u2014 versioncode 6 \u2014 2026-05-15" - }, - { - "label": "Added", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L503", - "id": "rebreak_native_changelog_added_503", - "community": 903, - "norm_label": "added" - }, - { - "label": "Changed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L509", - "id": "rebreak_native_changelog_changed_509", - "community": 903, - "norm_label": "changed" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L512", - "id": "rebreak_native_changelog_fixed_512", - "community": 903, - "norm_label": "fixed" - }, - { - "label": "[0.1.0] \u2014 versionCode 5 \u2014 2026-05-14", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L517", - "id": "rebreak_native_changelog_0_1_0_versioncode_5_2026_05_14", - "community": 911, - "norm_label": "[0.1.0] \u2014 versioncode 5 \u2014 2026-05-14" - }, - { - "label": "Added", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L519", - "id": "rebreak_native_changelog_added_519", - "community": 911, - "norm_label": "added" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L522", - "id": "rebreak_native_changelog_fixed_522", - "community": 911, - "norm_label": "fixed" - }, - { - "label": "[0.1.0] \u2014 versionCode 4 \u2014 2026-05-07", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L535", - "id": "rebreak_native_changelog_0_1_0_versioncode_4_2026_05_07", - "community": 910, - "norm_label": "[0.1.0] \u2014 versioncode 4 \u2014 2026-05-07" - }, - { - "label": "Added", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L537", - "id": "rebreak_native_changelog_added_537", - "community": 910, - "norm_label": "added" - }, - { - "label": "Fixed", - "file_type": "document", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L540", - "id": "rebreak_native_changelog_fixed_540", - "community": 910, - "norm_label": "fixed" - }, - { - "label": "NEXT_RELEASE.md", - "file_type": "document", - "source_file": "apps/rebreak-native/NEXT_RELEASE.md", - "source_location": "L1", - "id": "apps_rebreak_native_next_release_md", - "community": 908, - "norm_label": "next_release.md" - }, - { - "label": "Next Release", - "file_type": "document", - "source_file": "apps/rebreak-native/NEXT_RELEASE.md", - "source_location": "L1", - "id": "rebreak_native_next_release_next_release", - "community": 908, - "norm_label": "next release" - }, - { - "label": "Fixes", - "file_type": "document", - "source_file": "apps/rebreak-native/NEXT_RELEASE.md", - "source_location": "L3", - "id": "rebreak_native_next_release_fixes", - "community": 908, - "norm_label": "fixes" - }, - { - "label": "app.config.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/app.config.ts", - "source_location": "L1", - "id": "apps_rebreak_native_app_config_ts", - "community": 433, - "norm_label": "app.config.ts" - }, - { - "label": "blocker.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_app_app_blocker_tsx", - "community": 18, - "norm_label": "blocker.tsx" - }, - { - "label": "BlockerScreen()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L26", - "id": "app_blocker_blockerscreen", - "community": 18, - "norm_label": "blockerscreen()" - }, - { - "label": "debug.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_app_debug_tsx", - "community": 8, - "norm_label": "debug.tsx" - }, - { - "label": "DebugScreen()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L25", - "id": "app_debug_debugscreen", - "community": 8, - "norm_label": "debugscreen()" - }, - { - "label": "PREVIEW_EMOTIONS", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L175", - "id": "app_debug_preview_emotions", - "community": 8, - "norm_label": "preview_emotions" - }, - { - "label": "LyraEmotionPreviewCard()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L188", - "id": "app_debug_lyraemotionpreviewcard", - "community": 8, - "norm_label": "lyraemotionpreviewcard()" - }, - { - "label": "RedirectTestCard()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L294", - "id": "app_debug_redirecttestcard", - "community": 8, - "norm_label": "redirecttestcard()" - }, - { - "label": "RealtimeStatusCard()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L404", - "id": "app_debug_realtimestatuscard", - "community": 8, - "norm_label": "realtimestatuscard()" - }, - { - "label": "StatusRow()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L581", - "id": "app_debug_statusrow", - "community": 8, - "norm_label": "statusrow()" - }, - { - "label": "RealtimeLogCard()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L627", - "id": "app_debug_realtimelogcard", - "community": 8, - "norm_label": "realtimelogcard()" - }, - { - "label": "ProtectionLogCard()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L723", - "id": "app_debug_protectionlogcard", - "community": 8, - "norm_label": "protectionlogcard()" - }, - { - "label": "LogLine()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L845", - "id": "app_debug_logline", - "community": 8, - "norm_label": "logline()" - }, - { - "label": "pad()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L898", - "id": "app_debug_pad", - "community": 8, - "norm_label": "pad()" - }, - { - "label": "relativeSeconds()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L902", - "id": "app_debug_relativeseconds", - "community": 8, - "norm_label": "relativeseconds()" - }, - { - "label": "stateAccent()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L910", - "id": "app_debug_stateaccent", - "community": 8, - "norm_label": "stateaccent()" - }, - { - "label": "PLANS", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L921", - "id": "app_debug_plans", - "community": 8, - "norm_label": "plans" - }, - { - "label": "PLAN_COLOR", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L923", - "id": "app_debug_plan_color", - "community": 8, - "norm_label": "plan_color" - }, - { - "label": "PlanOverrideToggle()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L929", - "id": "app_debug_planoverridetoggle", - "community": 8, - "norm_label": "planoverridetoggle()" - }, - { - "label": "ONBOARDING_STEPS", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1058", - "id": "app_debug_onboarding_steps", - "community": 8, - "norm_label": "onboarding_steps" - }, - { - "label": "OnboardingStepValue", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1059", - "id": "app_debug_onboardingstepvalue", - "community": 8, - "norm_label": "onboardingstepvalue" - }, - { - "label": "OnboardingResetToggle()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1061", - "id": "app_debug_onboardingresettoggle", - "community": 8, - "norm_label": "onboardingresettoggle()" - }, - { - "label": "AndroidA11yResetToggle()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1181", - "id": "app_debug_androida11yresettoggle", - "community": 8, - "norm_label": "androida11yresettoggle()" - }, - { - "label": "CooldownTestModeToggle()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1285", - "id": "app_debug_cooldowntestmodetoggle", - "community": 8, - "norm_label": "cooldowntestmodetoggle()" - }, - { - "label": "DebugStub()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1354", - "id": "app_debug_debugstub", - "community": 8, - "norm_label": "debugstub()" - }, - { - "label": "index.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/app/index.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_app_index_tsx", - "community": 20, - "norm_label": "index.tsx" - }, - { - "label": "EASE_OUT", - "file_type": "code", - "source_file": "apps/rebreak-native/app/index.tsx", - "source_location": "L16", - "id": "app_index_ease_out", - "community": 20, - "norm_label": "ease_out" - }, - { - "label": "LandingScreen()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/index.tsx", - "source_location": "L18", - "id": "app_index_landingscreen", - "community": 20, - "norm_label": "landingscreen()" - }, - { - "label": "lyra.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_app_lyra_tsx", - "community": 286, - "norm_label": "lyra.tsx" - }, - { - "label": "formatTimestamp()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L39", - "id": "app_lyra_formattimestamp", - "community": 686, - "norm_label": "formattimestamp()" - }, - { - "label": "LoadingPulse()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L45", - "id": "app_lyra_loadingpulse", - "community": 286, - "norm_label": "loadingpulse()" - }, - { - "label": "ThinkingDots()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L56", - "id": "app_lyra_thinkingdots", - "community": 286, - "norm_label": "thinkingdots()" - }, - { - "label": "MessageWithMeta", - "file_type": "code", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L91", - "id": "app_lyra_messagewithmeta", - "community": 286, - "norm_label": "messagewithmeta" - }, - { - "label": "MessageRow()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L93", - "id": "app_lyra_messagerow", - "community": 686, - "norm_label": "messagerow()" - }, - { - "label": "CoachScreen()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L128", - "id": "app_lyra_coachscreen", - "community": 286, - "norm_label": "coachscreen()" - }, - { - "label": "styles", - "file_type": "code", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L680", - "id": "app_lyra_styles", - "community": 286, - "norm_label": "styles" - }, - { - "label": "urge.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_app_urge_tsx", - "community": 437, - "norm_label": "urge.tsx" - }, - { - "label": "SOSScreen()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L40", - "id": "app_urge_sosscreen", - "community": 437, - "norm_label": "sosscreen()" - }, - { - "label": "makeStyles()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L1351", - "id": "app_urge_makestyles", - "community": 437, - "norm_label": "makestyles()" - }, - { - "label": "DEPRECATED.md", - "file_type": "document", - "source_file": "apps/rebreak-native/assets/DEPRECATED.md", - "source_location": "L1", - "id": "apps_rebreak_native_assets_deprecated_md", - "community": 900, - "norm_label": "deprecated.md" - }, - { - "label": "Deprecated Assets", - "file_type": "document", - "source_file": "apps/rebreak-native/assets/DEPRECATED.md", - "source_location": "L1", - "id": "assets_deprecated_deprecated_assets", - "community": 900, - "norm_label": "deprecated assets" - }, - { - "label": "splash.png", - "file_type": "document", - "source_file": "apps/rebreak-native/assets/DEPRECATED.md", - "source_location": "L6", - "id": "assets_deprecated_splash_png", - "community": 900, - "norm_label": "splash.png" - }, - { - "label": "adaptive-icon.png / adaptive-foreground.png / rebreak_android.png", - "file_type": "document", - "source_file": "apps/rebreak-native/assets/DEPRECATED.md", - "source_location": "L12", - "id": "assets_deprecated_adaptive_icon_png_adaptive_foreground_png_rebreak_android_png", - "community": 900, - "norm_label": "adaptive-icon.png / adaptive-foreground.png / rebreak_android.png" - }, - { - "label": "clean.sh", - "file_type": "code", - "source_file": "apps/rebreak-native/clean.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "id": "apps_rebreak_native_clean_sh", - "community": 636, - "norm_label": "clean.sh" - }, - { - "label": "clean.sh script", - "file_type": "code", - "source_file": "apps/rebreak-native/clean.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "bash_entrypoint" - }, - "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_clean_sh__entry", - "community": 636, - "norm_label": "clean.sh script" - }, - { - "label": "free_gb()", - "file_type": "code", - "source_file": "apps/rebreak-native/clean.sh", - "source_location": "L37", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_clean_free_gb", - "community": 636, - "norm_label": "free_gb()" - }, - { - "label": "human()", - "file_type": "code", - "source_file": "apps/rebreak-native/clean.sh", - "source_location": "L39", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_clean_human", - "community": 636, - "norm_label": "human()" - }, - { - "label": "report_targets()", - "file_type": "code", - "source_file": "apps/rebreak-native/clean.sh", - "source_location": "L57", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_clean_report_targets", - "community": 636, - "norm_label": "report_targets()" - }, - { - "label": "rmrf()", - "file_type": "code", - "source_file": "apps/rebreak-native/clean.sh", - "source_location": "L81", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_clean_rmrf", - "community": 636, - "norm_label": "rmrf()" - }, - { - "label": "AppHeader.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_components_appheader_tsx", - "community": 27, - "norm_label": "appheader.tsx" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L16", - "id": "components_appheader_props", - "community": 27, - "norm_label": "props" - }, - { - "label": "AppHeader()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L22", - "id": "components_appheader_appheader", - "community": 27, - "norm_label": "appheader()" - }, - { - "label": "BrandSplash.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/BrandSplash.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_components_brandsplash_tsx", - "community": 20, - "norm_label": "brandsplash.tsx" - }, - { - "label": "{ height: SH }", - "file_type": "code", - "source_file": "apps/rebreak-native/components/BrandSplash.tsx", - "source_location": "L16", - "id": "components_brandsplash_height_sh", - "community": 20, - "norm_label": "{ height: sh }" - }, - { - "label": "EASE_OUT", - "file_type": "code", - "source_file": "apps/rebreak-native/components/BrandSplash.tsx", - "source_location": "L18", - "id": "components_brandsplash_ease_out", - "community": 20, - "norm_label": "ease_out" - }, - { - "label": "EASE_IN", - "file_type": "code", - "source_file": "apps/rebreak-native/components/BrandSplash.tsx", - "source_location": "L19", - "id": "components_brandsplash_ease_in", - "community": 20, - "norm_label": "ease_in" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "apps/rebreak-native/components/BrandSplash.tsx", - "source_location": "L21", - "id": "components_brandsplash_props", - "community": 20, - "norm_label": "props" - }, - { - "label": "BrandSplash()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/BrandSplash.tsx", - "source_location": "L25", - "id": "components_brandsplash_brandsplash", - "community": 20, - "norm_label": "brandsplash()" - }, - { - "label": "RiveAvatar.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_components_riveavatar_tsx", - "community": 286, - "norm_label": "riveavatar.tsx" - }, - { - "label": "RIVE_MODULE", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L16", - "id": "components_riveavatar_rive_module", - "community": 286, - "norm_label": "rive_module" - }, - { - "label": "preloadRiveAsset()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L20", - "id": "components_riveavatar_preloadriveasset", - "community": 286, - "norm_label": "preloadriveasset()" - }, - { - "label": "SupportedEmotion", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L45", - "id": "components_riveavatar_supportedemotion", - "community": 286, - "norm_label": "supportedemotion" - }, - { - "label": "Emotion", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L56", - "id": "components_riveavatar_emotion", - "community": 286, - "norm_label": "emotion" - }, - { - "label": "EMOTION_ANIMATIONS", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L64", - "id": "components_riveavatar_emotion_animations", - "community": 286, - "norm_label": "emotion_animations" - }, - { - "label": "EXISTING_TIMELINES", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L85", - "id": "components_riveavatar_existing_timelines", - "community": 286, - "norm_label": "existing_timelines" - }, - { - "label": "safeAnim()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L95", - "id": "components_riveavatar_safeanim", - "community": 286, - "norm_label": "safeanim()" - }, - { - "label": "TWO_PHASE", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L103", - "id": "components_riveavatar_two_phase", - "community": 286, - "norm_label": "two_phase" - }, - { - "label": "SUSTAINED", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L109", - "id": "components_riveavatar_sustained", - "community": 286, - "norm_label": "sustained" - }, - { - "label": "EMOTION_LABELS", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L112", - "id": "components_riveavatar_emotion_labels", - "community": 286, - "norm_label": "emotion_labels" - }, - { - "label": "SIZE_PX", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L125", - "id": "components_riveavatar_size_px", - "community": 286, - "norm_label": "size_px" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L131", - "id": "components_riveavatar_props", - "community": 286, - "norm_label": "props" - }, - { - "label": "RiveAvatar()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L138", - "id": "components_riveavatar_riveavatar", - "community": 286, - "norm_label": "riveavatar()" - }, - { - "label": "SetupFlows.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_components_blocker_setupflows_tsx", - "community": 880, - "norm_label": "setupflows.tsx" - }, - { - "label": "SetupFlowProps", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L11", - "id": "blocker_setupflows_setupflowprops", - "community": 880, - "norm_label": "setupflowprops" - }, - { - "label": "IosUnsupervisedSetupFlow()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L25", - "id": "blocker_setupflows_iosunsupervisedsetupflow", - "community": 18, - "norm_label": "iosunsupervisedsetupflow()" - }, - { - "label": "SetupStep1()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L71", - "id": "blocker_setupflows_setupstep1", - "community": 880, - "norm_label": "setupstep1()" - }, - { - "label": "SetupStep2()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L115", - "id": "blocker_setupflows_setupstep2", - "community": 880, - "norm_label": "setupstep2()" - }, - { - "label": "SetupStep3()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L207", - "id": "blocker_setupflows_setupstep3", - "community": 880, - "norm_label": "setupstep3()" - }, - { - "label": "AndroidSetupFlowProps", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L264", - "id": "blocker_setupflows_androidsetupflowprops", - "community": 880, - "norm_label": "androidsetupflowprops" - }, - { - "label": "AndroidSetupFlow()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L283", - "id": "blocker_setupflows_androidsetupflow", - "community": 18, - "norm_label": "androidsetupflow()" - }, - { - "label": "AndroidStep1()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L344", - "id": "blocker_setupflows_androidstep1", - "community": 880, - "norm_label": "androidstep1()" - }, - { - "label": "AndroidStep2()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L395", - "id": "blocker_setupflows_androidstep2", - "community": 880, - "norm_label": "androidstep2()" - }, - { - "label": "AndroidStepBattery()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L466", - "id": "blocker_setupflows_androidstepbattery", - "community": 880, - "norm_label": "androidstepbattery()" - }, - { - "label": "AndroidStep3()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L527", - "id": "blocker_setupflows_androidstep3", - "community": 880, - "norm_label": "androidstep3()" - }, - { - "label": "SetupStepCard()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L582", - "id": "blocker_setupflows_setupstepcard", - "community": 880, - "norm_label": "setupstepcard()" - }, - { - "label": "ProtectionSlide.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "community": 18, - "norm_label": "protectionslide.tsx" - }, - { - "label": "ConfirmStep", - "file_type": "code", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L24", - "id": "slides_protectionslide_confirmstep", - "community": 18, - "norm_label": "confirmstep" - }, - { - "label": "ProtectionSlide()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L40", - "id": "slides_protectionslide_protectionslide", - "community": 18, - "norm_label": "protectionslide()" - }, - { - "label": "DemographicsAccordion.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "community": 156, - "norm_label": "demographicsaccordion.tsx" - }, - { - "label": "BIRTH_YEAR_OPTIONS", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L19", - "id": "profile_demographicsaccordion_birth_year_options", - "community": 156, - "norm_label": "birth_year_options" - }, - { - "label": "Demographics", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L28", - "id": "profile_demographicsaccordion_demographics", - "community": 156, - "norm_label": "demographics" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L40", - "id": "profile_demographicsaccordion_props", - "community": 156, - "norm_label": "props" - }, - { - "label": "GENDER_OPTIONS", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L49", - "id": "profile_demographicsaccordion_gender_options", - "community": 156, - "norm_label": "gender_options" - }, - { - "label": "MARITAL_OPTIONS", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L55", - "id": "profile_demographicsaccordion_marital_options", - "community": 156, - "norm_label": "marital_options" - }, - { - "label": "EMPLOYMENT_STATUS_OPTIONS", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L64", - "id": "profile_demographicsaccordion_employment_status_options", - "community": 156, - "norm_label": "employment_status_options" - }, - { - "label": "INDUSTRY_OPTIONS", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L74", - "id": "profile_demographicsaccordion_industry_options", - "community": 156, - "norm_label": "industry_options" - }, - { - "label": "JOB_TENURE_OPTIONS", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L88", - "id": "profile_demographicsaccordion_job_tenure_options", - "community": 156, - "norm_label": "job_tenure_options" - }, - { - "label": "BUNDESLAND_OPTIONS", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L97", - "id": "profile_demographicsaccordion_bundesland_options", - "community": 156, - "norm_label": "bundesland_options" - }, - { - "label": "STATUS_WITH_SHIFT", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L116", - "id": "profile_demographicsaccordion_status_with_shift", - "community": 156, - "norm_label": "status_with_shift" - }, - { - "label": "STATUS_WITH_INDUSTRY", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L117", - "id": "profile_demographicsaccordion_status_with_industry", - "community": 156, - "norm_label": "status_with_industry" - }, - { - "label": "STATUS_WITH_TENURE", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L118", - "id": "profile_demographicsaccordion_status_with_tenure", - "community": 156, - "norm_label": "status_with_tenure" - }, - { - "label": "relevantFieldCount()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L120", - "id": "profile_demographicsaccordion_relevantfieldcount", - "community": 156, - "norm_label": "relevantfieldcount()" - }, - { - "label": "lookupLabel()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L142", - "id": "profile_demographicsaccordion_lookuplabel", - "community": 156, - "norm_label": "lookuplabel()" - }, - { - "label": "mockPersist()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L147", - "id": "profile_demographicsaccordion_mockpersist", - "community": 156, - "norm_label": "mockpersist()" - }, - { - "label": "DemographicsAccordion()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L149", - "id": "profile_demographicsaccordion_demographicsaccordion", - "community": 156, - "norm_label": "demographicsaccordion()" - }, - { - "label": "FieldRow()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L682", - "id": "profile_demographicsaccordion_fieldrow", - "community": 156, - "norm_label": "fieldrow()" - }, - { - "label": "SelectButton()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L753", - "id": "profile_demographicsaccordion_selectbutton", - "community": 156, - "norm_label": "selectbutton()" - }, - { - "label": "DigaMissionBanner.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L1", - "id": "apps_rebreak_native_components_profile_digamissionbanner_tsx", - "community": 286, - "norm_label": "digamissionbanner.tsx" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L6", - "id": "profile_digamissionbanner_props", - "community": 286, - "norm_label": "props" - }, - { - "label": "DigaMissionBanner()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L11", - "id": "profile_digamissionbanner_digamissionbanner", - "community": 286, - "norm_label": "digamissionbanner()" - }, - { - "label": "deploy.sh", - "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "id": "apps_rebreak_native_deploy_sh", - "community": 63, - "norm_label": "deploy.sh" - }, - { - "label": "deploy.sh script", + "label": "StatusResponse", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "bash_entrypoint" - }, - "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_deploy_sh__entry", - "community": 63, - "norm_label": "deploy.sh script" + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L77", + "community": 117, + "norm_label": "statusresponse", + "id": "backend_api_statusresponse" }, { - "label": "cleanup_children()", + "label": "ReleaseResponse", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L58", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_cleanup_children", - "community": 63, - "norm_label": "cleanup_children()" + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L82", + "community": 117, + "norm_label": "releaseresponse", + "id": "backend_api_releaseresponse" }, { - "label": "log()", + "label": "CooldownResponse", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L95", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_log", - "community": 63, - "norm_label": "log()" + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L90", + "community": 117, + "norm_label": "cooldownresponse", + "id": "backend_api_cooldownresponse" }, { - "label": "ok()", + "label": "UserProfile", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", "source_location": "L96", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_ok", - "community": 63, - "norm_label": "ok()" + "community": 117, + "norm_label": "userprofile", + "id": "backend_api_userprofile" }, { - "label": "warn()", + "label": "MdmStatusData", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L97", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_warn", - "community": 63, - "norm_label": "warn()" + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L103", + "community": 117, + "norm_label": "mdmstatusdata", + "id": "backend_api_mdmstatusdata" }, { - "label": "error()", + "label": "MdmStatusByUdidData", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L98", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_error", - "community": 63, - "norm_label": "error()" + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L114", + "community": 117, + "norm_label": "mdmstatusbyudiddata", + "id": "backend_api_mdmstatusbyudiddata" }, { - "label": "die()", + "label": "MdmLinkRequest", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L99", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_die", - "community": 63, - "norm_label": "die()" + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L123", + "community": 117, + "norm_label": "mdmlinkrequest", + "id": "backend_api_mdmlinkrequest" }, { - "label": "section()", + "label": "ReportProtectionStateRequest", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L129", + "community": 117, + "norm_label": "reportprotectionstaterequest", + "id": "backend_api_reportprotectionstaterequest" + }, + { + "label": "ApiEnvelope", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L141", + "community": 117, + "norm_label": "apienvelope", + "id": "backend_api_apienvelope" + }, + { + "label": "T", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L143", + "community": 117, + "norm_label": "t", + "id": "t" + }, + { + "label": "MagicApiClient", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L146", + "community": 117, + "norm_label": "magicapiclient", + "id": "backend_api_magicapiclient" + }, + { + "label": "Client", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L147", + "community": 117, + "norm_label": "client", + "id": "apps_rebreak_magic_src_tauri_src_backend_api_rs_client" + }, + { + "label": ".new()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L152", + "community": 117, + "norm_label": ".new()", + "id": "backend_api_magicapiclient_new" + }, + { + "label": "AppConfig", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L152", + "community": 117, + "norm_label": "appconfig", + "id": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appconfig" + }, + { + "label": "Self", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L152", + "community": 117, + "norm_label": "self", + "id": "apps_rebreak_magic_src_tauri_src_backend_api_rs_self" + }, + { + "label": ".redeem_pairing_code()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L162", + "community": 117, + "norm_label": ".redeem_pairing_code()", + "id": "backend_api_magicapiclient_redeem_pairing_code" + }, + { + "label": "AppResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L162", + "community": 117, + "norm_label": "appresult", + "id": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "label": ".register_device()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L203", + "community": 117, + "norm_label": ".register_device()", + "id": "backend_api_magicapiclient_register_device" + }, + { + "label": ".list_devices()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L242", + "community": 117, + "norm_label": ".list_devices()", + "id": "backend_api_magicapiclient_list_devices" + }, + { + "label": "Vec", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L242", + "community": 117, + "norm_label": "vec", + "id": "apps_rebreak_magic_src_tauri_src_backend_api_rs_vec" + }, + { + "label": ".get_status()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L258", + "community": 117, + "norm_label": ".get_status()", + "id": "backend_api_magicapiclient_get_status" + }, + { + "label": ".request_release()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L274", + "community": 117, + "norm_label": ".request_release()", + "id": "backend_api_magicapiclient_request_release" + }, + { + "label": ".cancel_release()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L293", + "community": 117, + "norm_label": ".cancel_release()", + "id": "backend_api_magicapiclient_cancel_release" + }, + { + "label": ".start_cooldown()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L312", + "community": 117, + "norm_label": ".start_cooldown()", + "id": "backend_api_magicapiclient_start_cooldown" + }, + { + "label": ".cancel_cooldown()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L332", + "community": 117, + "norm_label": ".cancel_cooldown()", + "id": "backend_api_magicapiclient_cancel_cooldown" + }, + { + "label": ".fetch_me()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L346", + "community": 117, + "norm_label": ".fetch_me()", + "id": "backend_api_magicapiclient_fetch_me" + }, + { + "label": ".download_profile()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L362", + "community": 117, + "norm_label": ".download_profile()", + "id": "backend_api_magicapiclient_download_profile" + }, + { + "label": ".get_mdm_status()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L388", + "community": 117, + "norm_label": ".get_mdm_status()", + "id": "backend_api_magicapiclient_get_mdm_status" + }, + { + "label": ".get_mdm_status_by_udid()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L404", + "community": 117, + "norm_label": ".get_mdm_status_by_udid()", + "id": "backend_api_magicapiclient_get_mdm_status_by_udid" + }, + { + "label": ".link_mdm_device()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L425", + "community": 117, + "norm_label": ".link_mdm_device()", + "id": "backend_api_magicapiclient_link_mdm_device" + }, + { + "label": ".report_device_protection_state()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L452", + "community": 117, + "norm_label": ".report_device_protection_state()", + "id": "backend_api_magicapiclient_report_device_protection_state" + }, + { + "label": ".handle_response()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L484", + "community": 117, + "norm_label": ".handle_response()", + "id": "backend_api_magicapiclient_handle_response" + }, + { + "label": "Response", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L484", + "community": 117, + "norm_label": "response", + "id": "response" + }, + { + "label": "mod.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/mod.rs", + "source_location": "L1", + "community": 1331, + "norm_label": "mod.rs", + "id": "apps_rebreak_magic_src_tauri_src_backend_mod_rs" + }, + { + "label": "error.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L1", + "community": 396, + "norm_label": "error.rs", + "id": "apps_rebreak_magic_src_tauri_src_error_rs" + }, + { + "label": "AppError", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L5", + "community": 396, + "norm_label": "apperror", + "id": "src_error_apperror" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L6", + "community": 396, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_error_rs_string" + }, + { + "label": "Display", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L9", + "community": 396, + "norm_label": "display", + "id": "display" + }, + { + "label": ".fmt()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L10", + "community": 396, + "norm_label": ".fmt()", + "id": "src_error_apperror_fmt" + }, + { + "label": "Formatter", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L10", + "community": 396, + "norm_label": "formatter", + "id": "formatter" + }, + { + "label": "Result", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L10", + "community": 396, + "norm_label": "result", + "id": "result" + }, + { + "label": "Error", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L15", + "community": 396, + "norm_label": "error", + "id": "error" + }, + { + "label": ".new()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L18", + "community": 396, + "norm_label": ".new()", + "id": "src_error_apperror_new" + }, + { + "label": "Into", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L18", + "community": 396, + "norm_label": "into", + "id": "into" + }, + { + "label": "Self", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L18", + "community": 396, + "norm_label": "self", + "id": "apps_rebreak_magic_src_tauri_src_error_rs_self" + }, + { + "label": "From", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L25", + "community": 396, + "norm_label": "from", + "id": "from" + }, + { + "label": ".from()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L26", + "community": 396, + "norm_label": ".from()", + "id": "src_error_apperror_from" + }, + { + "label": "ios_device.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L1", + "community": 213, + "norm_label": "ios_device.rs", + "id": "apps_rebreak_magic_src_tauri_src_ios_device_rs" + }, + { + "label": "first_executable()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L12", + "community": 213, + "norm_label": "first_executable()", + "id": "src_ios_device_first_executable" + }, + { + "label": "Option", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L12", + "community": 213, + "norm_label": "option", + "id": "apps_rebreak_magic_src_tauri_src_ios_device_rs_option" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L12", + "community": 213, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "label": "IphoneDeviceState", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L21", + "community": 213, + "norm_label": "iphonedevicestate", + "id": "src_ios_device_iphonedevicestate" + }, + { + "label": "Vec", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L30", + "community": 213, + "norm_label": "vec", + "id": "apps_rebreak_magic_src_tauri_src_ios_device_rs_vec" + }, + { + "label": "SuperviseStatus", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L37", + "community": 213, + "norm_label": "supervisestatus", + "id": "src_ios_device_supervisestatus" + }, + { + "label": "normalize_org_name()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L43", + "community": 213, + "norm_label": "normalize_org_name()", + "id": "src_ios_device_normalize_org_name" + }, + { + "label": "parse_colon()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L51", + "community": 213, + "norm_label": "parse_colon()", + "id": "src_ios_device_parse_colon" + }, + { + "label": "parse_equals()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L62", + "community": 213, + "norm_label": "parse_equals()", + "id": "src_ios_device_parse_equals" + }, + { + "label": "run_supervise_magic_cmd()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L74", + "community": 213, + "norm_label": "run_supervise_magic_cmd()", + "id": "src_ios_device_run_supervise_magic_cmd" + }, + { + "label": "AppHandle", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L74", + "community": 213, + "norm_label": "apphandle", + "id": "apps_rebreak_magic_src_tauri_src_ios_device_rs_apphandle" + }, + { + "label": "AppResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L74", + "community": 213, + "norm_label": "appresult", + "id": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "label": "run_cfgutil()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L90", + "community": 213, + "norm_label": "run_cfgutil()", + "id": "src_ios_device_run_cfgutil" + }, + { + "label": "read_supervise_status()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", "source_location": "L101", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_section", - "community": 63, - "norm_label": "section()" + "community": 213, + "norm_label": "read_supervise_status()", + "id": "src_ios_device_read_supervise_status" + }, + { + "label": "installed_profile_ids()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L144", + "community": 213, + "norm_label": "installed_profile_ids()", + "id": "src_ios_device_installed_profile_ids" + }, + { + "label": "installed_app_bundle_ids()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L173", + "community": 213, + "norm_label": "installed_app_bundle_ids()", + "id": "src_ios_device_installed_app_bundle_ids" + }, + { + "label": "parse_cfgutil_list()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L199", + "community": 213, + "norm_label": "parse_cfgutil_list()", + "id": "src_ios_device_parse_cfgutil_list" + }, + { + "label": "install_profile_via_cfgutil()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L216", + "community": 213, + "norm_label": "install_profile_via_cfgutil()", + "id": "src_ios_device_install_profile_via_cfgutil" + }, + { + "label": "detect_device_state()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L246", + "community": 213, + "norm_label": "detect_device_state()", + "id": "src_ios_device_detect_device_state" + }, + { + "label": "detect_iphone_state()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L300", + "community": 213, + "norm_label": "detect_iphone_state()", + "id": "src_ios_device_detect_iphone_state" + }, + { + "label": "get_supervise_status()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L305", + "community": 213, + "norm_label": "get_supervise_status()", + "id": "src_ios_device_get_supervise_status" + }, + { + "label": "get_installed_profiles()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L310", + "community": 213, + "norm_label": "get_installed_profiles()", + "id": "src_ios_device_get_installed_profiles" + }, + { + "label": "get_installed_apps()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L315", + "community": 213, + "norm_label": "get_installed_apps()", + "id": "src_ios_device_get_installed_apps" + }, + { + "label": "install_profile()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L320", + "community": 213, + "norm_label": "install_profile()", + "id": "src_ios_device_install_profile" + }, + { + "label": "download_and_patch_enrollment_profile()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L325", + "community": 213, + "norm_label": "download_and_patch_enrollment_profile()", + "id": "src_ios_device_download_and_patch_enrollment_profile" + }, + { + "label": "parse_equals_handles_multiple_spaces()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L358", + "community": 213, + "norm_label": "parse_equals_handles_multiple_spaces()", + "id": "src_ios_device_parse_equals_handles_multiple_spaces" + }, + { + "label": "parse_cfgutil_list_extracts_bundle_ids()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L371", + "community": 213, + "norm_label": "parse_cfgutil_list_extracts_bundle_ids()", + "id": "src_ios_device_parse_cfgutil_list_extracts_bundle_ids" + }, + { + "label": "parse_cfgutil_list_handles_empty_profile_output()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L378", + "community": 213, + "norm_label": "parse_cfgutil_list_handles_empty_profile_output()", + "id": "src_ios_device_parse_cfgutil_list_handles_empty_profile_output" + }, + { + "label": "iphone_state_serializes_id_casing()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L385", + "community": 213, + "norm_label": "iphone_state_serializes_id_casing()", + "id": "src_ios_device_iphone_state_serializes_id_casing" + }, + { + "label": "cfgutil_live_outputs()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L406", + "community": 213, + "norm_label": "cfgutil_live_outputs()", + "id": "src_ios_device_cfgutil_live_outputs" + }, + { + "label": "lib.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L1", + "community": 78, + "norm_label": "lib.rs", + "id": "apps_rebreak_magic_src_tauri_src_lib_rs" }, { "label": "run()", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L108", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_run", - "community": 63, - "norm_label": "run()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L18", + "community": 78, + "norm_label": "run()", + "id": "src_lib_run" }, { - "label": "runtime_lookup()", + "label": "hostname()", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L120", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_runtime_lookup", - "community": 63, - "norm_label": "runtime_lookup()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L68", + "community": 78, + "norm_label": "hostname()", + "id": "src_lib_hostname" }, { - "label": "runtime_save()", + "label": "AppResult", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L126", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_runtime_save", - "community": 63, - "norm_label": "runtime_save()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L68", + "community": 78, + "norm_label": "appresult", + "id": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" }, { - "label": "render_progress()", + "label": "String", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L139", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_render_progress", - "community": 63, - "norm_label": "render_progress()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L68", + "community": 78, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_lib_rs_string" }, { - "label": "format_duration()", + "label": "get_or_init_hardware_id()", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L172", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_format_duration", - "community": 63, - "norm_label": "format_duration()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L80", + "community": 78, + "norm_label": "get_or_init_hardware_id()", + "id": "src_lib_get_or_init_hardware_id" }, { - "label": "format_duration_rounded()", + "label": "AppConfig", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L80", + "community": 78, + "norm_label": "appconfig", + "id": "apps_rebreak_magic_src_tauri_src_lib_rs_appconfig" + }, + { + "label": "get_hardware_id()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L90", + "community": 78, + "norm_label": "get_hardware_id()", + "id": "src_lib_get_hardware_id" + }, + { + "label": "get_device_id()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L96", + "community": 78, + "norm_label": "get_device_id()", + "id": "src_lib_get_device_id" + }, + { + "label": "Option", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L96", + "community": 78, + "norm_label": "option", + "id": "apps_rebreak_magic_src_tauri_src_lib_rs_option" + }, + { + "label": "require_session()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L100", + "community": 78, + "norm_label": "require_session()", + "id": "src_lib_require_session" + }, + { + "label": "MagicSession", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L100", + "community": 78, + "norm_label": "magicsession", + "id": "magicsession" + }, + { + "label": "redeem_pairing_code()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L107", + "community": 78, + "norm_label": "redeem_pairing_code()", + "id": "src_lib_redeem_pairing_code" + }, + { + "label": "RedeemPairingResponse", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L107", + "community": 78, + "norm_label": "redeempairingresponse", + "id": "redeempairingresponse" + }, + { + "label": "register_device()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L127", + "community": 78, + "norm_label": "register_device()", + "id": "src_lib_register_device" + }, + { + "label": "RegisterDeviceResponse", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L127", + "community": 78, + "norm_label": "registerdeviceresponse", + "id": "registerdeviceresponse" + }, + { + "label": "get_stored_session()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L154", + "community": 78, + "norm_label": "get_stored_session()", + "id": "src_lib_get_stored_session" + }, + { + "label": "get_magic_devices()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L159", + "community": 78, + "norm_label": "get_magic_devices()", + "id": "src_lib_get_magic_devices" + }, + { + "label": "Vec", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L159", + "community": 78, + "norm_label": "vec", + "id": "apps_rebreak_magic_src_tauri_src_lib_rs_vec" + }, + { + "label": "MagicDeviceInfo", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L159", + "community": 78, + "norm_label": "magicdeviceinfo", + "id": "magicdeviceinfo" + }, + { + "label": "get_magic_status()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L167", + "community": 78, + "norm_label": "get_magic_status()", + "id": "src_lib_get_magic_status" + }, + { + "label": "request_release()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L174", + "community": 78, + "norm_label": "request_release()", + "id": "src_lib_request_release" + }, + { + "label": "ReleaseResponse", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L174", + "community": 78, + "norm_label": "releaseresponse", + "id": "releaseresponse" + }, + { + "label": "cancel_release()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", "source_location": "L182", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_format_duration_rounded", - "community": 63, - "norm_label": "format_duration_rounded()" + "community": 78, + "norm_label": "cancel_release()", + "id": "src_lib_cancel_release" }, { - "label": "run_quiet()", + "label": "start_cooldown()", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L190", + "community": 78, + "norm_label": "start_cooldown()", + "id": "src_lib_start_cooldown" + }, + { + "label": "Value", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L190", + "community": 78, + "norm_label": "value", + "id": "apps_rebreak_magic_src_tauri_src_lib_rs_value" + }, + { + "label": "cancel_cooldown()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", "source_location": "L199", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_run_quiet", - "community": 63, - "norm_label": "run_quiet()" + "community": 78, + "norm_label": "cancel_cooldown()", + "id": "src_lib_cancel_cooldown" }, { - "label": "REBREAK_ENABLE_FAMILY_CONTROLS", + "label": "logout_magic()", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L375", - "metadata": { - "language": "bash", - "kind": "code" - }, - "id": "rebreak_native_deploy_rebreak_enable_family_controls", - "community": 63, - "norm_label": "rebreak_enable_family_controls" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L207", + "community": 78, + "norm_label": "logout_magic()", + "id": "src_lib_logout_magic" }, { - "label": "EXPO_PUBLIC_ENABLE_DEBUG", + "label": "activate_protection()", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L376", - "metadata": { - "language": "bash", - "kind": "code" - }, - "id": "rebreak_native_deploy_expo_public_enable_debug", - "community": 63, - "norm_label": "expo_public_enable_debug" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L212", + "community": 78, + "norm_label": "activate_protection()", + "id": "src_lib_activate_protection" }, { - "label": "release_android_locks()", + "label": "fetch_me()", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L399", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_release_android_locks", - "community": 63, - "norm_label": "release_android_locks()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L217", + "community": 78, + "norm_label": "fetch_me()", + "id": "src_lib_fetch_me" }, { - "label": "ensure_native_dir()", + "label": "UserProfile", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L411", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_ensure_native_dir", - "community": 63, - "norm_label": "ensure_native_dir()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L217", + "community": 78, + "norm_label": "userprofile", + "id": "userprofile" }, { - "label": "xcodebuild_auth_args()", + "label": "get_mdm_status()", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L450", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_xcodebuild_auth_args", - "community": 63, - "norm_label": "xcodebuild_auth_args()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L225", + "community": 78, + "norm_label": "get_mdm_status()", + "id": "src_lib_get_mdm_status" }, { - "label": "require_asc_api_key()", + "label": "MdmStatusData", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L457", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_require_asc_api_key", - "community": 63, - "norm_label": "require_asc_api_key()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L225", + "community": 78, + "norm_label": "mdmstatusdata", + "id": "mdmstatusdata" }, { - "label": "get_current_version()", + "label": "link_mdm_device()", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L481", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_get_current_version", - "community": 63, - "norm_label": "get_current_version()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L233", + "community": 78, + "norm_label": "link_mdm_device()", + "id": "src_lib_link_mdm_device" }, { - "label": "get_current_build_number()", + "label": "report_device_protection_state()", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L486", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_get_current_build_number", - "community": 63, - "norm_label": "get_current_build_number()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L241", + "community": 78, + "norm_label": "report_device_protection_state()", + "id": "src_lib_report_device_protection_state" }, { - "label": "get_current_version_code()", + "label": "get_mdm_status_by_udid()", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L491", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_get_current_version_code", - "community": 63, - "norm_label": "get_current_version_code()" + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L264", + "community": 78, + "norm_label": "get_mdm_status_by_udid()", + "id": "src_lib_get_mdm_status_by_udid" }, { - "label": "bump_ios_version()", + "label": "MdmStatusByUdidData", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L264", + "community": 78, + "norm_label": "mdmstatusbyudiddata", + "id": "mdmstatusbyudiddata" + }, + { + "label": "download_profile()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L272", + "community": 78, + "norm_label": "download_profile()", + "id": "src_lib_download_profile" + }, + { + "label": "extract_dns_token()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L292", + "community": 78, + "norm_label": "extract_dns_token()", + "id": "src_lib_extract_dns_token" + }, + { + "label": "get_desktop_protection_status()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L297", + "community": 78, + "norm_label": "get_desktop_protection_status()", + "id": "src_lib_get_desktop_protection_status" + }, + { + "label": "DesktopProtectionState", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L297", + "community": 78, + "norm_label": "desktopprotectionstate", + "id": "desktopprotectionstate" + }, + { + "label": "get_hostname()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L302", + "community": 78, + "norm_label": "get_hostname()", + "id": "src_lib_get_hostname" + }, + { + "label": "set_desktop_protection_status()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L307", + "community": 78, + "norm_label": "set_desktop_protection_status()", + "id": "src_lib_set_desktop_protection_status" + }, + { + "label": "main.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/main.rs", + "source_location": "L1", + "community": 1314, + "norm_label": "main.rs", + "id": "apps_rebreak_magic_src_tauri_src_main_rs" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/main.rs", + "source_location": "L4", + "community": 1314, + "norm_label": "main()", + "id": "src_main_main" + }, + { + "label": "client.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L1", + "community": 212, + "norm_label": "client.rs", + "id": "apps_rebreak_magic_src_tauri_src_mdm_client_rs" + }, + { + "label": "MdmPushStatus", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L8", + "community": 212, + "norm_label": "mdmpushstatus", + "id": "mdm_client_mdmpushstatus" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L9", + "community": 212, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_string" + }, + { + "label": "MdmEnqueueResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L14", + "community": 212, + "norm_label": "mdmenqueueresult", + "id": "mdm_client_mdmenqueueresult" + }, + { + "label": "MdmClient", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L19", + "community": 212, + "norm_label": "mdmclient", + "id": "mdm_client_mdmclient" + }, + { + "label": "Client", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L20", + "community": 212, + "norm_label": "client", + "id": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_client" + }, + { + "label": ".new()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L26", + "community": 212, + "norm_label": ".new()", + "id": "mdm_client_mdmclient_new" + }, + { + "label": "AppResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L26", + "community": 212, + "norm_label": "appresult", + "id": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_appresult" + }, + { + "label": "Self", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L26", + "community": 212, + "norm_label": "self", + "id": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_self" + }, + { + "label": ".url()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L42", + "community": 212, + "norm_label": ".url()", + "id": "mdm_client_mdmclient_url" + }, + { + "label": ".request()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L47", + "community": 212, + "norm_label": ".request()", + "id": "mdm_client_mdmclient_request" + }, + { + "label": "Method", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L47", + "community": 212, + "norm_label": "method", + "id": "method" + }, + { + "label": "RequestBuilder", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L47", + "community": 212, + "norm_label": "requestbuilder", + "id": "requestbuilder" + }, + { + "label": ".ping()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L55", + "community": 212, + "norm_label": ".ping()", + "id": "mdm_client_mdmclient_ping" + }, + { + "label": ".push()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L74", + "community": 212, + "norm_label": ".push()", + "id": "mdm_client_mdmclient_push" + }, + { + "label": ".enqueue()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L109", + "community": 212, + "norm_label": ".enqueue()", + "id": "mdm_client_mdmclient_enqueue" + }, + { + "label": "Value", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L109", + "community": 212, + "norm_label": "value", + "id": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_value" + }, + { + "label": "mod.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L1", + "community": 955, + "norm_label": "mod.rs", + "id": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs" + }, + { + "label": "MdmCommandResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L8", + "community": 955, + "norm_label": "mdmcommandresult", + "id": "mdm_mod_mdmcommandresult" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L9", + "community": 955, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_string" + }, + { + "label": "mdm_ping()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L14", + "community": 955, + "norm_label": "mdm_ping()", + "id": "mdm_mod_mdm_ping" + }, + { + "label": "AppResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L14", + "community": 955, + "norm_label": "appresult", + "id": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_appresult" + }, + { + "label": "mdm_push()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L19", + "community": 955, + "norm_label": "mdm_push()", + "id": "mdm_mod_mdm_push" + }, + { + "label": "MdmPushStatus", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L19", + "community": 955, + "norm_label": "mdmpushstatus", + "id": "mdmpushstatus" + }, + { + "label": "mdm_install_app()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L24", + "community": 955, + "norm_label": "mdm_install_app()", + "id": "mdm_mod_mdm_install_app" + }, + { + "label": "mdm_set_supervised_mode()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L38", + "community": 955, + "norm_label": "mdm_set_supervised_mode()", + "id": "mdm_mod_mdm_set_supervised_mode" + }, + { + "label": "mdm_take_management()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L59", + "community": 955, + "norm_label": "mdm_take_management()", + "id": "mdm_mod_mdm_take_management" + }, + { + "label": "mdm_install_lock_profile()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L74", + "community": 955, + "norm_label": "mdm_install_lock_profile()", + "id": "mdm_mod_mdm_install_lock_profile" + }, + { + "label": "local_http.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L1", + "community": 883, + "norm_label": "local_http.rs", + "id": "apps_rebreak_magic_src_tauri_src_server_local_http_rs" + }, + { + "label": "LocalServerInfo", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L13", + "community": 883, + "norm_label": "localserverinfo", + "id": "server_local_http_localserverinfo" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L14", + "community": 883, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_server_local_http_rs_string" + }, + { + "label": "start_local_profile_server()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L19", + "community": 883, + "norm_label": "start_local_profile_server()", + "id": "server_local_http_start_local_profile_server" + }, + { + "label": "AppResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L19", + "community": 883, + "norm_label": "appresult", + "id": "apps_rebreak_magic_src_tauri_src_server_local_http_rs_appresult" + }, + { + "label": "stop_local_profile_server()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L72", + "community": 883, + "norm_label": "stop_local_profile_server()", + "id": "server_local_http_stop_local_profile_server" + }, + { + "label": "find_free_port()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L79", + "community": 883, + "norm_label": "find_free_port()", + "id": "server_local_http_find_free_port" + }, + { + "label": "mod.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/server/mod.rs", + "source_location": "L1", + "community": 1332, + "norm_label": "mod.rs", + "id": "apps_rebreak_magic_src_tauri_src_server_mod_rs" + }, + { + "label": "mod.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/mod.rs", + "source_location": "L1", + "community": 1333, + "norm_label": "mod.rs", + "id": "apps_rebreak_magic_src_tauri_src_sidecar_mod_rs" + }, + { + "label": "supervise_magic.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L1", + "community": 213, + "norm_label": "supervise_magic.rs", + "id": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs" + }, + { + "label": "SuperviseResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L7", + "community": 213, + "norm_label": "superviseresult", + "id": "sidecar_supervise_magic_superviseresult" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L9", + "community": 213, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_string" + }, + { + "label": "run_supervise_magic_raw()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L13", + "community": 213, + "norm_label": "run_supervise_magic_raw()", + "id": "sidecar_supervise_magic_run_supervise_magic_raw" + }, + { + "label": "AppHandle", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L13", + "community": 213, + "norm_label": "apphandle", + "id": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_apphandle" + }, + { + "label": "AppResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L13", + "community": 213, + "norm_label": "appresult", + "id": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_appresult" + }, + { + "label": "run_supervise_magic()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L41", + "community": 213, + "norm_label": "run_supervise_magic()", + "id": "sidecar_supervise_magic_run_supervise_magic" + }, + { + "label": "Option", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L41", + "community": 213, + "norm_label": "option", + "id": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_option" + }, + { + "label": "Vec", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L41", + "community": 213, + "norm_label": "vec", + "id": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_vec" + }, + { + "label": "run_supervise_magic_sync()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L52", + "community": 213, + "norm_label": "run_supervise_magic_sync()", + "id": "sidecar_supervise_magic_run_supervise_magic_sync" + }, + { + "label": "tauri.conf.json", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L1", + "community": 279, + "norm_label": "tauri.conf.json", + "id": "apps_rebreak_magic_src_tauri_tauri_conf_json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L2", + "community": 279, + "norm_label": "$schema", + "id": "src_tauri_tauri_conf_schema" + }, + { + "label": "productName", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L3", + "community": 279, + "norm_label": "productname", + "id": "src_tauri_tauri_conf_productname" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L4", + "community": 279, + "norm_label": "version", + "id": "src_tauri_tauri_conf_version" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L5", + "community": 279, + "norm_label": "identifier", + "id": "src_tauri_tauri_conf_identifier" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L6", + "community": 279, + "norm_label": "build", + "id": "src_tauri_tauri_conf_build" + }, + { + "label": "beforeDevCommand", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L7", + "community": 279, + "norm_label": "beforedevcommand", + "id": "src_tauri_tauri_conf_build_beforedevcommand" + }, + { + "label": "devUrl", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L8", + "community": 279, + "norm_label": "devurl", + "id": "src_tauri_tauri_conf_build_devurl" + }, + { + "label": "beforeBuildCommand", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L9", + "community": 279, + "norm_label": "beforebuildcommand", + "id": "src_tauri_tauri_conf_build_beforebuildcommand" + }, + { + "label": "frontendDist", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L10", + "community": 279, + "norm_label": "frontenddist", + "id": "src_tauri_tauri_conf_build_frontenddist" + }, + { + "label": "app", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L12", + "community": 279, + "norm_label": "app", + "id": "src_tauri_tauri_conf_app" + }, + { + "label": "windows", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L13", + "community": 982, + "norm_label": "windows", + "id": "src_tauri_tauri_conf_app_windows" + }, + { + "label": "security", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L24", + "community": 279, + "norm_label": "security", + "id": "src_tauri_tauri_conf_app_security" + }, + { + "label": "csp", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L25", + "community": 279, + "norm_label": "csp", + "id": "src_tauri_tauri_conf_security_csp" + }, + { + "label": "capabilities", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L26", + "community": 279, + "norm_label": "capabilities", + "id": "src_tauri_tauri_conf_security_capabilities" + }, + { + "label": "bundle", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L29", + "community": 225, + "norm_label": "bundle", + "id": "src_tauri_tauri_conf_bundle" + }, + { + "label": "active", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L30", + "community": 225, + "norm_label": "active", + "id": "src_tauri_tauri_conf_bundle_active" + }, + { + "label": "targets", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L31", + "community": 225, + "norm_label": "targets", + "id": "src_tauri_tauri_conf_bundle_targets" + }, + { + "label": "icon", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L32", + "community": 225, + "norm_label": "icon", + "id": "src_tauri_tauri_conf_bundle_icon" + }, + { + "label": "externalBin", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L39", + "community": 225, + "norm_label": "externalbin", + "id": "src_tauri_tauri_conf_bundle_externalbin" + }, + { + "label": "macOS", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L40", + "community": 225, + "norm_label": "macos", + "id": "src_tauri_tauri_conf_bundle_macos" + }, + { + "label": "entitlements", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L41", + "community": 225, + "norm_label": "entitlements", + "id": "src_tauri_tauri_conf_macos_entitlements" + }, + { + "label": "frameworks", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L42", + "community": 225, + "norm_label": "frameworks", + "id": "src_tauri_tauri_conf_macos_frameworks" + }, + { + "label": "minimumSystemVersion", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L43", + "community": 225, + "norm_label": "minimumsystemversion", + "id": "src_tauri_tauri_conf_macos_minimumsystemversion" + }, + { + "label": "tsconfig.json", + "file_type": "code", + "source_file": "apps/rebreak-magic/tsconfig.json", + "source_location": "L1", + "community": 1315, + "norm_label": "tsconfig.json", + "id": "apps_rebreak_magic_tsconfig_json" + }, + { + "label": "extends", + "file_type": "code", + "source_file": "apps/rebreak-magic/tsconfig.json", + "source_location": "L2", + "community": 1315, + "norm_label": "extends", + "id": "rebreak_magic_tsconfig_extends" + }, + { + "label": "IOS_NEFILTER_ARCHITECTURE.md", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L1", + "community": 309, + "norm_label": "ios_nefilter_architecture.md", + "id": "docs_internal_ios_nefilter_architecture_md" + }, + { + "label": "iOS-Schutz / NEFilter \u2013 Architektur-\u00dcbersicht", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L1", + "community": 309, + "norm_label": "ios-schutz / nefilter \u2013 architektur-ubersicht", + "id": "internal_ios_nefilter_architecture_ios_schutz_nefilter_architektur_\u00fcbersicht" + }, + { + "label": "1. Ziel", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L6", + "community": 309, + "norm_label": "1. ziel", + "id": "internal_ios_nefilter_architecture_1_ziel" + }, + { + "label": "2. Native iOS-Module (Expo)", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L17", + "community": 309, + "norm_label": "2. native ios-module (expo)", + "id": "internal_ios_nefilter_architecture_2_native_ios_module_expo" + }, + { + "label": "3. Wie NEFilter erkannt wird", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L36", + "community": 309, + "norm_label": "3. wie nefilter erkannt wird", + "id": "internal_ios_nefilter_architecture_3_wie_nefilter_erkannt_wird" + }, + { + "label": "Supervised vs. Unsupervised", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L59", + "community": 309, + "norm_label": "supervised vs. unsupervised", + "id": "internal_ios_nefilter_architecture_supervised_vs_unsupervised" + }, + { + "label": "4. Backend: Wie das NEFilter-Tracking funktioniert", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L74", + "community": 309, + "norm_label": "4. backend: wie das nefilter-tracking funktioniert", + "id": "internal_ios_nefilter_architecture_4_backend_wie_das_nefilter_tracking_funktioniert" + }, + { + "label": "4.1 App reportet Status", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L76", + "community": 309, + "norm_label": "4.1 app reportet status", + "id": "internal_ios_nefilter_architecture_4_1_app_reportet_status" + }, + { + "label": "4.2 Backend-Endpoint", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L92", + "community": 309, + "norm_label": "4.2 backend-endpoint", + "id": "internal_ios_nefilter_architecture_4_2_backend_endpoint" + }, + { + "label": "4.3 Datenbank", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L103", + "community": 309, + "norm_label": "4.3 datenbank", + "id": "internal_ios_nefilter_architecture_4_3_datenbank" + }, + { + "label": "4.4 Auslesen", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L117", + "community": 309, + "norm_label": "4.4 auslesen", + "id": "internal_ios_nefilter_architecture_4_4_auslesen" + }, + { + "label": "5. Der DNS-Token-Handshake (separater Weg)", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L137", + "community": 309, + "norm_label": "5. der dns-token-handshake (separater weg)", + "id": "internal_ios_nefilter_architecture_5_der_dns_token_handshake_separater_weg" + }, + { + "label": "6. Was das f\u00fcr ReBreak Magic bedeutet", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L156", + "community": 309, + "norm_label": "6. was das fur rebreak magic bedeutet", + "id": "internal_ios_nefilter_architecture_6_was_das_f\u00fcr_rebreak_magic_bedeutet" + }, + { + "label": "7. Wichtige Dateien im \u00dcberblick", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L173", + "community": 309, + "norm_label": "7. wichtige dateien im uberblick", + "id": "internal_ios_nefilter_architecture_7_wichtige_dateien_im_\u00fcberblick" + }, + { + "label": "Native iOS", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L175", + "community": 309, + "norm_label": "native ios", + "id": "internal_ios_nefilter_architecture_native_ios" + }, + { + "label": "App-Logik", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L186", + "community": 309, + "norm_label": "app-logik", + "id": "internal_ios_nefilter_architecture_app_logik" + }, + { + "label": "Backend", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L192", + "community": 309, + "norm_label": "backend", + "id": "internal_ios_nefilter_architecture_backend" + }, + { + "label": "8. Zusammenfassung", + "file_type": "document", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L205", + "community": 309, + "norm_label": "8. zusammenfassung", + "id": "internal_ios_nefilter_architecture_8_zusammenfassung" + }, + { + "label": "2026-06-18-mdm-health-check.md", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L1", + "community": 606, + "norm_label": "2026-06-18-mdm-health-check.md", + "id": "docs_superpowers_plans_2026_06_18_mdm_health_check_md" + }, + { + "label": "MDM Healthcheck Implementation Plan", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L1", + "community": 606, + "norm_label": "mdm healthcheck implementation plan", + "id": "plans_2026_06_18_mdm_health_check_mdm_healthcheck_implementation_plan" + }, + { + "label": "Files", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L13", + "community": 606, + "norm_label": "files", + "id": "plans_2026_06_18_mdm_health_check_files" + }, + { + "label": "Task 1: Extend UserDevice Prisma schema", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L23", + "community": 606, + "norm_label": "task 1: extend userdevice prisma schema", + "id": "plans_2026_06_18_mdm_health_check_task_1_extend_userdevice_prisma_schema" + }, + { + "label": "Task 2: Create migration for MDM health columns", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L60", + "community": 606, + "norm_label": "task 2: create migration for mdm health columns", + "id": "plans_2026_06_18_mdm_health_check_task_2_create_migration_for_mdm_health_columns" + }, + { + "label": "Task 3: Extend mdm.ts DB layer", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L95", + "community": 606, + "norm_label": "task 3: extend mdm.ts db layer", + "id": "plans_2026_06_18_mdm_health_check_task_3_extend_mdm_ts_db_layer" + }, + { + "label": "Task 4: Create mdm-health-cron.ts plugin", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L227", + "community": 606, + "norm_label": "task 4: create mdm-health-cron.ts plugin", + "id": "plans_2026_06_18_mdm_health_check_task_4_create_mdm_health_cron_ts_plugin" + }, + { + "label": "Task 5: Write tests for MDM healthcheck", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L339", + "community": 606, + "norm_label": "task 5: write tests for mdm healthcheck", + "id": "plans_2026_06_18_mdm_health_check_task_5_write_tests_for_mdm_healthcheck" + }, + { + "label": "Task 6: Apply migration and verify", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L470", + "community": 606, + "norm_label": "task 6: apply migration and verify", + "id": "plans_2026_06_18_mdm_health_check_task_6_apply_migration_and_verify" + }, + { + "label": "Self-Review", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", "source_location": "L496", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_bump_ios_version", - "community": 63, - "norm_label": "bump_ios_version()" + "community": 606, + "norm_label": "self-review", + "id": "plans_2026_06_18_mdm_health_check_self_review" }, { - "label": "bump_android_version()", + "label": "app.json", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L553", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_bump_android_version", - "community": 63, - "norm_label": "bump_android_version()" + "source_file": "app.json", + "source_location": "L1", + "community": 708, + "norm_label": "app.json", + "id": "app_json" }, { - "label": "collect_release_notes()", + "label": "ios", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L607", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_collect_release_notes", - "community": 63, - "norm_label": "collect_release_notes()" + "source_file": "app.json", + "source_location": "L2", + "community": 708, + "norm_label": "ios", + "id": "rebreak_monorepo_app_ios" }, { - "label": "archive_release_notes_to_changelog()", + "label": "bundleIdentifier", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L647", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_archive_release_notes_to_changelog", - "community": 63, - "norm_label": "archive_release_notes_to_changelog()" + "source_file": "app.json", + "source_location": "L3", + "community": 708, + "norm_label": "bundleidentifier", + "id": "rebreak_monorepo_app_ios_bundleidentifier" }, { - "label": "deploy_mdm()", + "label": "package.json", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L697", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_deploy_mdm", - "community": 63, - "norm_label": "deploy_mdm()" + "source_file": "package.json", + "source_location": "L1", + "community": 271, + "norm_label": "package.json", + "id": "package_json" }, { - "label": "deploy_testflight()", + "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L765", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_deploy_testflight", - "community": 63, - "norm_label": "deploy_testflight()" + "source_file": "package.json", + "source_location": "L2", + "community": 271, + "norm_label": "name", + "id": "rebreak_monorepo_package_name" }, { - "label": "deploy_android()", + "label": "private", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L835", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_deploy_android", - "community": 63, - "norm_label": "deploy_android()" + "source_file": "package.json", + "source_location": "L3", + "community": 271, + "norm_label": "private", + "id": "rebreak_monorepo_package_private" }, { - "label": "human_size()", + "label": "version", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L959", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_human_size", - "community": 63, - "norm_label": "human_size()" + "source_file": "package.json", + "source_location": "L4", + "community": 271, + "norm_label": "version", + "id": "rebreak_monorepo_package_version" }, { - "label": "cleanup_build_artifacts()", + "label": "scripts", "file_type": "code", - "source_file": "apps/rebreak-native/deploy.sh", - "source_location": "L966", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_deploy_cleanup_build_artifacts", - "community": 63, - "norm_label": "cleanup_build_artifacts()" + "source_file": "package.json", + "source_location": "L5", + "community": 1027, + "norm_label": "scripts", + "id": "rebreak_monorepo_package_scripts" }, { - "label": "dev.sh", + "label": "dev:backend", "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", + "source_file": "package.json", + "source_location": "L6", + "community": 1027, + "norm_label": "dev:backend", + "id": "rebreak_monorepo_package_scripts_dev_backend" + }, + { + "label": "dev:native", + "file_type": "code", + "source_file": "package.json", + "source_location": "L7", + "community": 1027, + "norm_label": "dev:native", + "id": "rebreak_monorepo_package_scripts_dev_native" + }, + { + "label": "dev:admin", + "file_type": "code", + "source_file": "package.json", + "source_location": "L8", + "community": 1027, + "norm_label": "dev:admin", + "id": "rebreak_monorepo_package_scripts_dev_admin" + }, + { + "label": "build:backend", + "file_type": "code", + "source_file": "package.json", + "source_location": "L9", + "community": 1027, + "norm_label": "build:backend", + "id": "rebreak_monorepo_package_scripts_build_backend" + }, + { + "label": "build:admin", + "file_type": "code", + "source_file": "package.json", + "source_location": "L10", + "community": 1027, + "norm_label": "build:admin", + "id": "rebreak_monorepo_package_scripts_build_admin" + }, + { + "label": "android", + "file_type": "code", + "source_file": "package.json", + "source_location": "L11", + "community": 1027, + "norm_label": "android", + "id": "rebreak_monorepo_package_scripts_android" + }, + { + "label": "ios", + "file_type": "code", + "source_file": "package.json", + "source_location": "L12", + "community": 1027, + "norm_label": "ios", + "id": "rebreak_monorepo_package_scripts_ios" + }, + { + "label": "engines", + "file_type": "code", + "source_file": "package.json", + "source_location": "L14", + "community": 271, + "norm_label": "engines", + "id": "rebreak_monorepo_package_engines" + }, + { + "label": "node", + "file_type": "code", + "source_file": "package.json", + "source_location": "L15", + "community": 271, + "norm_label": "node", + "id": "rebreak_monorepo_package_engines_node" + }, + { + "label": "pnpm", + "file_type": "code", + "source_file": "package.json", + "source_location": "L16", + "community": 271, + "norm_label": "pnpm", + "id": "rebreak_monorepo_package_engines_pnpm" + }, + { + "label": "packageManager", + "file_type": "code", + "source_file": "package.json", + "source_location": "L18", + "community": 271, + "norm_label": "packagemanager", + "id": "rebreak_monorepo_package_packagemanager" + }, + { + "label": "pnpm", + "file_type": "code", + "source_file": "package.json", + "source_location": "L19", + "community": 271, + "norm_label": "pnpm", + "id": "rebreak_monorepo_package_pnpm" + }, + { + "label": "overrides", + "file_type": "code", + "source_file": "package.json", + "source_location": "L20", + "community": 291, + "norm_label": "overrides", + "id": "rebreak_monorepo_package_pnpm_overrides" + }, + { + "label": "metro", + "file_type": "code", + "source_file": "package.json", + "source_location": "L21", + "community": 291, + "norm_label": "metro", + "id": "rebreak_monorepo_package_overrides_metro" + }, + { + "label": "metro-cache", + "file_type": "code", + "source_file": "package.json", + "source_location": "L22", + "community": 291, + "norm_label": "metro-cache", + "id": "rebreak_monorepo_package_overrides_metro_cache" + }, + { + "label": "metro-config", + "file_type": "code", + "source_file": "package.json", + "source_location": "L23", + "community": 291, + "norm_label": "metro-config", + "id": "rebreak_monorepo_package_overrides_metro_config" + }, + { + "label": "metro-core", + "file_type": "code", + "source_file": "package.json", + "source_location": "L24", + "community": 291, + "norm_label": "metro-core", + "id": "rebreak_monorepo_package_overrides_metro_core" + }, + { + "label": "metro-file-map", + "file_type": "code", + "source_file": "package.json", + "source_location": "L25", + "community": 291, + "norm_label": "metro-file-map", + "id": "rebreak_monorepo_package_overrides_metro_file_map" + }, + { + "label": "metro-resolver", + "file_type": "code", + "source_file": "package.json", + "source_location": "L26", + "community": 291, + "norm_label": "metro-resolver", + "id": "rebreak_monorepo_package_overrides_metro_resolver" + }, + { + "label": "metro-runtime", + "file_type": "code", + "source_file": "package.json", + "source_location": "L27", + "community": 291, + "norm_label": "metro-runtime", + "id": "rebreak_monorepo_package_overrides_metro_runtime" + }, + { + "label": "metro-source-map", + "file_type": "code", + "source_file": "package.json", + "source_location": "L28", + "community": 291, + "norm_label": "metro-source-map", + "id": "rebreak_monorepo_package_overrides_metro_source_map" + }, + { + "label": "metro-symbolicate", + "file_type": "code", + "source_file": "package.json", + "source_location": "L29", + "community": 291, + "norm_label": "metro-symbolicate", + "id": "rebreak_monorepo_package_overrides_metro_symbolicate" + }, + { + "label": "metro-transform-plugins", + "file_type": "code", + "source_file": "package.json", + "source_location": "L30", + "community": 291, + "norm_label": "metro-transform-plugins", + "id": "rebreak_monorepo_package_overrides_metro_transform_plugins" + }, + { + "label": "metro-transform-worker", + "file_type": "code", + "source_file": "package.json", + "source_location": "L31", + "community": 291, + "norm_label": "metro-transform-worker", + "id": "rebreak_monorepo_package_overrides_metro_transform_worker" + }, + { + "label": "patchedDependencies", + "file_type": "code", + "source_file": "package.json", + "source_location": "L33", + "community": 271, + "norm_label": "patcheddependencies", + "id": "rebreak_monorepo_package_pnpm_patcheddependencies" + }, + { + "label": "metro-core@0.83.3", + "file_type": "code", + "source_file": "package.json", + "source_location": "L34", + "community": 271, + "norm_label": "metro-core@0.83.3", + "id": "rebreak_monorepo_package_patcheddependencies_metro_core_0_83_3" + }, + { + "label": "react-native-callkeep", + "file_type": "code", + "source_file": "package.json", + "source_location": "L35", + "community": 271, + "norm_label": "react-native-callkeep", + "id": "rebreak_monorepo_package_patcheddependencies_react_native_callkeep" + }, + { + "label": "tsconfig.json", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L1", + "community": 709, + "norm_label": "tsconfig.json", + "id": "tsconfig_json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L2", + "community": 709, + "norm_label": "compileroptions", + "id": "rebreak_monorepo_tsconfig_compileroptions" + }, + { + "label": "extends", + "file_type": "code", + "source_file": "tsconfig.json", + "source_location": "L3", + "community": 709, + "norm_label": "extends", + "id": "rebreak_monorepo_tsconfig_extends" + }, + { + "label": "ecosystem.config.js", + "file_type": "code", + "source_file": "ecosystem.config.js", + "source_location": "L1", + "community": 767, + "norm_label": "ecosystem.config.js", + "id": "ecosystem_config_js" + }, + { + "label": "devices.json", + "file_type": "code", + "source_file": ".expo/devices.json", + "source_location": "L1", + "community": 754, + "norm_label": "devices.json", + "id": "expo_devices_json" + }, + { + "label": "devices", + "file_type": "code", + "source_file": ".expo/devices.json", + "source_location": "L2", + "community": 754, + "norm_label": "devices", + "id": "expo_devices_devices" + }, + { + "label": "nitro.config.ts", + "file_type": "code", + "source_file": "backend/nitro.config.ts", + "source_location": "L1", + "community": 768, + "norm_label": "nitro.config.ts", + "id": "backend_nitro_config_ts" + }, + { + "label": "prisma.config.ts", + "file_type": "code", + "source_file": "backend/prisma.config.ts", + "source_location": "L1", + "community": 769, + "norm_label": "prisma.config.ts", + "id": "backend_prisma_config_ts" + }, + { + "label": "start-staging.sh", + "file_type": "code", + "source_file": "backend/start-staging.sh", "source_location": "L1", "metadata": { "language": "bash", "kind": "file" }, - "id": "apps_rebreak_native_dev_sh", - "community": 182, - "norm_label": "dev.sh" + "community": 628, + "norm_label": "start-staging.sh", + "id": "backend_start_staging_sh" }, { - "label": "dev.sh script", + "label": "start-staging.sh script", "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", + "source_file": "backend/start-staging.sh", "source_location": "L1", "metadata": { "language": "bash", "kind": "bash_entrypoint" }, - "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", - "community": 182, - "norm_label": "dev.sh script" + "community": 628, + "norm_label": "start-staging.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_backend_start_staging_sh__entry" }, { - "label": "log()", + "label": "NODE_ENV", "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L95", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_log", - "community": 182, - "norm_label": "log()" - }, - { - "label": "ok()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L96", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_ok", - "community": 182, - "norm_label": "ok()" - }, - { - "label": "warn()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L97", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_warn", - "community": 182, - "norm_label": "warn()" - }, - { - "label": "error()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L98", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_error", - "community": 182, - "norm_label": "error()" - }, - { - "label": "die()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L99", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_die", - "community": 182, - "norm_label": "die()" - }, - { - "label": "section()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L101", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_section", - "community": 182, - "norm_label": "section()" - }, - { - "label": "REBREAK_ENABLE_FAMILY_CONTROLS", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L111", + "source_file": "backend/start-staging.sh", + "source_location": "L25", "metadata": { "language": "bash", "kind": "code" }, - "id": "rebreak_native_dev_rebreak_enable_family_controls", - "community": 182, - "norm_label": "rebreak_enable_family_controls" + "community": 628, + "norm_label": "node_env", + "id": "backend_start_staging_node_env" }, { - "label": "EXPO_PUBLIC_ENABLE_DEBUG", + "label": "NITRO_PORT", "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L112", + "source_file": "backend/start-staging.sh", + "source_location": "L26", "metadata": { "language": "bash", "kind": "code" }, - "id": "rebreak_native_dev_expo_public_enable_debug", - "community": 182, - "norm_label": "expo_public_enable_debug" + "community": 628, + "norm_label": "nitro_port", + "id": "backend_start_staging_nitro_port" }, { - "label": "REBREAK_DEV", + "label": "NITRO_HOST", "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L113", + "source_file": "backend/start-staging.sh", + "source_location": "L27", "metadata": { "language": "bash", "kind": "code" }, - "id": "rebreak_native_dev_rebreak_dev", - "community": 182, - "norm_label": "rebreak_dev" + "community": 628, + "norm_label": "nitro_host", + "id": "backend_start_staging_nitro_host" }, { - "label": "cmd_ios()", + "label": "PORT", "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L119", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_cmd_ios", - "community": 182, - "norm_label": "cmd_ios()" - }, - { - "label": "cmd_android()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L189", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_cmd_android", - "community": 182, - "norm_label": "cmd_android()" - }, - { - "label": "detect_ios_device()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L271", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_detect_ios_device", - "community": 182, - "norm_label": "detect_ios_device()" - }, - { - "label": "detect_ios_device_name()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L282", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_detect_ios_device_name", - "community": 182, - "norm_label": "detect_ios_device_name()" - }, - { - "label": "detect_android_devices()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L292", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_detect_android_devices", - "community": 182, - "norm_label": "detect_android_devices()" - }, - { - "label": "start_shared_metro()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L298", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_start_shared_metro", - "community": 182, - "norm_label": "start_shared_metro()" - }, - { - "label": "cmd_mobile()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L319", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_cmd_mobile", - "community": 182, - "norm_label": "cmd_mobile()" - }, - { - "label": "cmd_metro()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L443", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_cmd_metro", - "community": 182, - "norm_label": "cmd_metro()" - }, - { - "label": "cmd_clean()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L469", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_cmd_clean", - "community": 182, - "norm_label": "cmd_clean()" - }, - { - "label": "cmd_install_ios()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L530", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_cmd_install_ios", - "community": 182, - "norm_label": "cmd_install_ios()" - }, - { - "label": "cmd_install_android()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L568", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_cmd_install_android", - "community": 182, - "norm_label": "cmd_install_android()" - }, - { - "label": "cmd_magic()", - "file_type": "code", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L615", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "id": "rebreak_native_dev_cmd_magic", - "community": 182, - "norm_label": "cmd_magic()" - }, - { - "label": "useDeviceApprovalRealtime.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", - "source_location": "L1", - "id": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", - "community": 17, - "norm_label": "usedeviceapprovalrealtime.ts" - }, - { - "label": "useDeviceApprovalRealtime()", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", - "source_location": "L17", - "id": "hooks_usedeviceapprovalrealtime_usedeviceapprovalrealtime", - "community": 17, - "norm_label": "usedeviceapprovalrealtime()" - }, - { - "label": "useDomainSubmissionRealtime.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", - "source_location": "L1", - "id": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts", - "community": 17, - "norm_label": "usedomainsubmissionrealtime.ts" - }, - { - "label": "useDomainSubmissionRealtime()", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", - "source_location": "L14", - "id": "hooks_usedomainsubmissionrealtime_usedomainsubmissionrealtime", - "community": 18, - "norm_label": "usedomainsubmissionrealtime()" - }, - { - "label": "useIncomingCalls.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L1", - "id": "apps_rebreak_native_hooks_useincomingcalls_ts", - "community": 17, - "norm_label": "useincomingcalls.ts" - }, - { - "label": "useIncomingCalls()", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L14", - "id": "hooks_useincomingcalls_useincomingcalls", - "community": 17, - "norm_label": "useincomingcalls()" - }, - { - "label": "lyraResponse.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L1", - "id": "apps_rebreak_native_lib_lyraresponse_ts", - "community": 437, - "norm_label": "lyraresponse.ts" - }, - { - "label": "LyraEmotion", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L5", - "id": "lib_lyraresponse_lyraemotion", - "community": 437, - "norm_label": "lyraemotion" - }, - { - "label": "ChipSpec", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L6", - "id": "lib_lyraresponse_chipspec", - "community": 437, - "norm_label": "chipspec" - }, - { - "label": "parseLyraResponse()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L9", - "id": "lib_lyraresponse_parselyraresponse", - "community": 437, - "norm_label": "parselyraresponse()" - }, - { - "label": "detectEmotion()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L57", - "id": "lib_lyraresponse_detectemotion", - "community": 437, - "norm_label": "detectemotion()" - }, - { - "label": "protection.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L1", - "id": "apps_rebreak_native_lib_protection_ts", - "community": 864, - "norm_label": "protection.ts" - }, - { - "label": "ProtectionPhase", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L42", - "id": "lib_protection_protectionphase", - "community": 864, - "norm_label": "protectionphase" - }, - { - "label": "CooldownState", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L50", - "id": "lib_protection_cooldownstate", - "community": 864, - "norm_label": "cooldownstate" - }, - { - "label": "ProtectionState", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L57", - "id": "lib_protection_protectionstate", - "community": 864, - "norm_label": "protectionstate" - }, - { - "label": "BackendCooldownStatus", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L69", - "id": "lib_protection_backendcooldownstatus", - "community": 864, - "norm_label": "backendcooldownstatus" - }, - { - "label": "BackendProtectionState", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L80", - "id": "lib_protection_backendprotectionstate", - "community": 864, - "norm_label": "backendprotectionstate" - }, - { - "label": "setCooldownTestMode()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L95", - "id": "lib_protection_setcooldowntestmode", - "community": 864, - "norm_label": "setcooldowntestmode()" - }, - { - "label": "getCooldownTestMode()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L99", - "id": "lib_protection_getcooldowntestmode", - "community": 864, - "norm_label": "getcooldowntestmode()" - }, - { - "label": "markProtectionActivatedHere()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L114", - "id": "lib_protection_markprotectionactivatedhere", - "community": 864, - "norm_label": "markprotectionactivatedhere()" - }, - { - "label": "wasProtectionEverActiveHere()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L118", - "id": "lib_protection_wasprotectioneveractivehere", - "community": 864, - "norm_label": "wasprotectioneveractivehere()" - }, - { - "label": "protection", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L127", - "id": "lib_protection_protection", - "community": 864, - "norm_label": "protection" - }, - { - "label": "isAllLayersOn()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L700", - "id": "lib_protection_isalllayerson", - "community": 864, - "norm_label": "isalllayerson()" - }, - { - "label": "formatCooldownRemaining()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L717", - "id": "lib_protection_formatcooldownremaining", - "community": 864, - "norm_label": "formatcooldownremaining()" - }, - { - "label": "realtimeStatus.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/realtimeStatus.ts", - "source_location": "L1", - "id": "apps_rebreak_native_lib_realtimestatus_ts", - "community": 17, - "norm_label": "realtimestatus.ts" - }, - { - "label": "isRealtimeErrorReal()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/realtimeStatus.ts", - "source_location": "L17", - "id": "lib_realtimestatus_isrealtimeerrorreal", - "community": 17, - "norm_label": "isrealtimeerrorreal()" - }, - { - "label": "sosConstants.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L1", - "id": "apps_rebreak_native_lib_sosconstants_ts", - "community": 876, - "norm_label": "sosconstants.ts" - }, - { - "label": "ChipSet", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L3", - "id": "lib_sosconstants_chipset", - "community": 876, - "norm_label": "chipset" - }, - { - "label": "Chip", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L4", - "id": "lib_sosconstants_chip", - "community": 876, - "norm_label": "chip" - }, - { - "label": "CHIP_SETS", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L6", - "id": "lib_sosconstants_chip_sets", - "community": 876, - "norm_label": "chip_sets" - }, - { - "label": "BreathPhase", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L44", - "id": "lib_sosconstants_breathphase", - "community": 876, - "norm_label": "breathphase" - }, - { - "label": "BreathState", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L45", - "id": "lib_sosconstants_breathstate", - "community": 876, - "norm_label": "breathstate" - }, - { - "label": "BREATH_PHASES", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L48", - "id": "lib_sosconstants_breath_phases", - "community": 876, - "norm_label": "breath_phases" - }, - { - "label": "ar.json", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L1", - "id": "apps_rebreak_native_locales_ar_json", - "community": 28, - "norm_label": "ar.json" - }, - { - "label": "common", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L2", - "id": "locales_ar_common", - "community": 878, - "norm_label": "common" - }, - { - "label": "loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L3", - "id": "locales_ar_common_loading", - "community": 878, - "norm_label": "loading" - }, - { - "label": "cancel", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L4", - "id": "locales_ar_common_cancel", - "community": 878, - "norm_label": "cancel" - }, - { - "label": "continue", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L5", - "id": "locales_ar_common_continue", - "community": 878, - "norm_label": "continue" - }, - { - "label": "back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L6", - "id": "locales_ar_common_back", - "community": 878, - "norm_label": "back" - }, - { - "label": "error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L7", - "id": "locales_ar_common_error", - "community": 878, - "norm_label": "error" - }, - { - "label": "success", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L8", - "id": "locales_ar_common_success", - "community": 878, - "norm_label": "success" - }, - { - "label": "ok", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L9", - "id": "locales_ar_common_ok", - "community": 878, - "norm_label": "ok" - }, - { - "label": "confirm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L10", - "id": "locales_ar_common_confirm", - "community": 878, - "norm_label": "confirm" - }, - { - "label": "retry", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L11", - "id": "locales_ar_common_retry", - "community": 878, - "norm_label": "retry" - }, - { - "label": "unknown_error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L12", - "id": "locales_ar_common_unknown_error", - "community": 878, - "norm_label": "unknown_error" - }, - { - "label": "auth", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L14", - "id": "locales_ar_auth", - "community": 23, - "norm_label": "auth" - }, - { - "label": "welcomeBack", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L15", - "id": "locales_ar_auth_welcomeback", - "community": 23, - "norm_label": "welcomeback" - }, - { - "label": "signinSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L16", - "id": "locales_ar_auth_signinsubtitle", - "community": 23, - "norm_label": "signinsubtitle" - }, - { - "label": "signin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L17", - "id": "locales_ar_auth_signin", - "community": 23, - "norm_label": "signin" - }, - { - "label": "signingIn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L18", - "id": "locales_ar_auth_signingin", - "community": 23, - "norm_label": "signingin" - }, - { - "label": "signup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L19", - "id": "locales_ar_auth_signup", - "community": 23, - "norm_label": "signup" - }, - { - "label": "signupTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L20", - "id": "locales_ar_auth_signuptitle", - "community": 23, - "norm_label": "signuptitle" - }, - { - "label": "signupSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L21", - "id": "locales_ar_auth_signupsubtitle", - "community": 23, - "norm_label": "signupsubtitle" - }, - { - "label": "signOut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L22", - "id": "locales_ar_auth_signout", - "community": 28, - "norm_label": "signout" - }, - { - "label": "email", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L23", - "id": "locales_ar_auth_email", - "community": 23, - "norm_label": "email" - }, - { - "label": "emailPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L24", - "id": "locales_ar_auth_emailplaceholder", - "community": 23, - "norm_label": "emailplaceholder" - }, - { - "label": "emailRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L25", - "id": "locales_ar_auth_emailrequired", - "community": 23, - "norm_label": "emailrequired" - }, - { - "label": "password", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L26", - "id": "locales_ar_auth_password", - "community": 23, - "norm_label": "password" - }, - { - "label": "passwordPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L27", - "id": "locales_ar_auth_passwordplaceholder", - "community": 23, - "norm_label": "passwordplaceholder" - }, - { - "label": "passwordRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", + "source_file": "backend/start-staging.sh", "source_location": "L28", - "id": "locales_ar_auth_passwordrequired", - "community": 23, - "norm_label": "passwordrequired" - }, - { - "label": "passwordMin8", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L29", - "id": "locales_ar_auth_passwordmin8", - "community": 23, - "norm_label": "passwordmin8" - }, - { - "label": "newPassword", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L30", - "id": "locales_ar_auth_newpassword", - "community": 23, - "norm_label": "newpassword" - }, - { - "label": "nickname", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L31", - "id": "locales_ar_auth_nickname", - "community": 868, - "norm_label": "nickname" - }, - { - "label": "nicknamePlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L32", - "id": "locales_ar_auth_nicknameplaceholder", - "community": 23, - "norm_label": "nicknameplaceholder" - }, - { - "label": "noAccount", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L33", - "id": "locales_ar_auth_noaccount", - "community": 23, - "norm_label": "noaccount" - }, - { - "label": "alreadyRegistered", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L34", - "id": "locales_ar_auth_alreadyregistered", - "community": 23, - "norm_label": "alreadyregistered" - }, - { - "label": "fillRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L35", - "id": "locales_ar_auth_fillrequired", - "community": 23, - "norm_label": "fillrequired" - }, - { - "label": "googleSignin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L36", - "id": "locales_ar_auth_googlesignin", - "community": 23, - "norm_label": "googlesignin" - }, - { - "label": "appleSignin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L37", - "id": "locales_ar_auth_applesignin", - "community": 23, - "norm_label": "applesignin" - }, - { - "label": "googleSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L38", - "id": "locales_ar_auth_googlesignup", - "community": 23, - "norm_label": "googlesignup" - }, - { - "label": "appleSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L39", - "id": "locales_ar_auth_applesignup", - "community": 23, - "norm_label": "applesignup" - }, - { - "label": "orWithEmail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L40", - "id": "locales_ar_auth_orwithemail", - "community": 23, - "norm_label": "orwithemail" - }, - { - "label": "forgotPassword", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L41", - "id": "locales_ar_auth_forgotpassword", - "community": 23, - "norm_label": "forgotpassword" - }, - { - "label": "resetPasswordTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L42", - "id": "locales_ar_auth_resetpasswordtitle", - "community": 23, - "norm_label": "resetpasswordtitle" - }, - { - "label": "resetPasswordSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L43", - "id": "locales_ar_auth_resetpasswordsubtitle", - "community": 23, - "norm_label": "resetpasswordsubtitle" - }, - { - "label": "resetPasswordSend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L44", - "id": "locales_ar_auth_resetpasswordsend", - "community": 23, - "norm_label": "resetpasswordsend" - }, - { - "label": "resetPasswordSent", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L45", - "id": "locales_ar_auth_resetpasswordsent", - "community": 23, - "norm_label": "resetpasswordsent" - }, - { - "label": "resetPasswordSentDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L46", - "id": "locales_ar_auth_resetpasswordsentdesc", - "community": 23, - "norm_label": "resetpasswordsentdesc" - }, - { - "label": "resetPasswordSentDescPrefix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L47", - "id": "locales_ar_auth_resetpasswordsentdescprefix", - "community": 23, - "norm_label": "resetpasswordsentdescprefix" - }, - { - "label": "resetPasswordSentDescSuffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L48", - "id": "locales_ar_auth_resetpasswordsentdescsuffix", - "community": 23, - "norm_label": "resetpasswordsentdescsuffix" - }, - { - "label": "backToLogin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L49", - "id": "locales_ar_auth_backtologin", - "community": 23, - "norm_label": "backtologin" - }, - { - "label": "backToLoginPlain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L50", - "id": "locales_ar_auth_backtologinplain", - "community": 23, - "norm_label": "backtologinplain" - }, - { - "label": "backToSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L51", - "id": "locales_ar_auth_backtosignup", - "community": 23, - "norm_label": "backtosignup" - }, - { - "label": "chooseAvatar", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L52", - "id": "locales_ar_auth_chooseavatar", - "community": 23, - "norm_label": "chooseavatar" - }, - { - "label": "privacyNotice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L53", - "id": "locales_ar_auth_privacynotice", - "community": 23, - "norm_label": "privacynotice" - }, - { - "label": "acceptTerms", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L54", - "id": "locales_ar_auth_acceptterms", - "community": 23, - "norm_label": "acceptterms" - }, - { - "label": "acceptTermsSuffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L55", - "id": "locales_ar_auth_accepttermssuffix", - "community": 23, - "norm_label": "accepttermssuffix" - }, - { - "label": "termsLink", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L56", - "id": "locales_ar_auth_termslink", - "community": 23, - "norm_label": "termslink" - }, - { - "label": "pleaseAcceptTerms", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L57", - "id": "locales_ar_auth_pleaseacceptterms", - "community": 23, - "norm_label": "pleaseacceptterms" - }, - { - "label": "confirmEmailTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L58", - "id": "locales_ar_auth_confirmemailtitle", - "community": 23, - "norm_label": "confirmemailtitle" - }, - { - "label": "confirmEmailDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L59", - "id": "locales_ar_auth_confirmemaildesc", - "community": 23, - "norm_label": "confirmemaildesc" - }, - { - "label": "confirmEmailLine1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L60", - "id": "locales_ar_auth_confirmemailline1", - "community": 23, - "norm_label": "confirmemailline1" - }, - { - "label": "confirmEmailLine2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L61", - "id": "locales_ar_auth_confirmemailline2", - "community": 23, - "norm_label": "confirmemailline2" - }, - { - "label": "confirmBtn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L62", - "id": "locales_ar_auth_confirmbtn", - "community": 23, - "norm_label": "confirmbtn" - }, - { - "label": "confirmed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L63", - "id": "locales_ar_auth_confirmed", - "community": 23, - "norm_label": "confirmed" - }, - { - "label": "confirming", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L64", - "id": "locales_ar_auth_confirming", - "community": 23, - "norm_label": "confirming" - }, - { - "label": "confirmSuccess", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L65", - "id": "locales_ar_auth_confirmsuccess", - "community": 23, - "norm_label": "confirmsuccess" - }, - { - "label": "confirmTimeout", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L66", - "id": "locales_ar_auth_confirmtimeout", - "community": 23, - "norm_label": "confirmtimeout" - }, - { - "label": "confirmFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L67", - "id": "locales_ar_auth_confirmfailed", - "community": 23, - "norm_label": "confirmfailed" - }, - { - "label": "resend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L68", - "id": "locales_ar_auth_resend", - "community": 23, - "norm_label": "resend" - }, - { - "label": "resendCooldown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L69", - "id": "locales_ar_auth_resendcooldown", - "community": 23, - "norm_label": "resendcooldown" - }, - { - "label": "noCode", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L70", - "id": "locales_ar_auth_nocode", - "community": 23, - "norm_label": "nocode" - }, - { - "label": "deviceLimitTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L71", - "id": "locales_ar_auth_devicelimittitle", - "community": 23, - "norm_label": "devicelimittitle" - }, - { - "label": "deviceLimitDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L72", - "id": "locales_ar_auth_devicelimitdesc", - "community": 23, - "norm_label": "devicelimitdesc" - }, - { - "label": "deviceLimitUpgrade", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L73", - "id": "locales_ar_auth_devicelimitupgrade", - "community": 23, - "norm_label": "devicelimitupgrade" - }, - { - "label": "toLogin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L74", - "id": "locales_ar_auth_tologin", - "community": 23, - "norm_label": "tologin" - }, - { - "label": "oauthFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L75", - "id": "locales_ar_auth_oauthfailed", - "community": 23, - "norm_label": "oauthfailed" - }, - { - "label": "loginFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L76", - "id": "locales_ar_auth_loginfailed", - "community": 23, - "norm_label": "loginfailed" - }, - { - "label": "registerFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L77", - "id": "locales_ar_auth_registerfailed", - "community": 23, - "norm_label": "registerfailed" - }, - { - "label": "device_locked_headline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L78", - "id": "locales_ar_auth_device_locked_headline", - "community": 23, - "norm_label": "device_locked_headline" - }, - { - "label": "device_locked_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L79", - "id": "locales_ar_auth_device_locked_body", - "community": 23, - "norm_label": "device_locked_body" - }, - { - "label": "device_locked_countdown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L80", - "id": "locales_ar_auth_device_locked_countdown", - "community": 23, - "norm_label": "device_locked_countdown" - }, - { - "label": "device_locked_email_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L81", - "id": "locales_ar_auth_device_locked_email_hint", - "community": 23, - "norm_label": "device_locked_email_hint" - }, - { - "label": "device_locked_use_original", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L82", - "id": "locales_ar_auth_device_locked_use_original", - "community": 23, - "norm_label": "device_locked_use_original" - }, - { - "label": "device_locked_back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L83", - "id": "locales_ar_auth_device_locked_back", - "community": 23, - "norm_label": "device_locked_back" - }, - { - "label": "landing", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L85", - "id": "locales_ar_landing", - "community": 28, - "norm_label": "landing" - }, - { - "label": "appName", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L86", - "id": "locales_ar_landing_appname", - "community": 28, - "norm_label": "appname" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L87", - "id": "locales_ar_landing_tagline", - "community": 28, - "norm_label": "tagline" - }, - { - "label": "start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L88", - "id": "locales_ar_landing_start", - "community": 28, - "norm_label": "start" - }, - { - "label": "splash", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L90", - "id": "locales_ar_splash", - "community": 28, - "norm_label": "splash" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L91", - "id": "locales_ar_splash_tagline", - "community": 28, - "norm_label": "tagline" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L92", - "id": "locales_ar_splash_subtitle", - "community": 28, - "norm_label": "subtitle" - }, - { - "label": "madeInGermany", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L93", - "id": "locales_ar_splash_madeingermany", - "community": 28, - "norm_label": "madeingermany" - }, - { - "label": "applock", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L95", - "id": "locales_ar_applock", - "community": 411, - "norm_label": "applock" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L96", - "id": "locales_ar_applock_title", - "community": 411, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L97", - "id": "locales_ar_applock_subtitle", - "community": 411, - "norm_label": "subtitle" - }, - { - "label": "unlock", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L98", - "id": "locales_ar_applock_unlock", - "community": 411, - "norm_label": "unlock" - }, - { - "label": "prompt", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L99", - "id": "locales_ar_applock_prompt", - "community": 411, - "norm_label": "prompt" - }, - { - "label": "signOut_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L100", - "id": "locales_ar_applock_signout_title", - "community": 411, - "norm_label": "signout_title" - }, - { - "label": "signOut_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L101", - "id": "locales_ar_applock_signout_body", - "community": 411, - "norm_label": "signout_body" - }, - { - "label": "appHeader", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L103", - "id": "locales_ar_appheader", - "community": 28, - "norm_label": "appheader" - }, - { - "label": "appName", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L104", - "id": "locales_ar_appheader_appname", - "community": 28, - "norm_label": "appname" - }, - { - "label": "sosLabel", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L105", - "id": "locales_ar_appheader_soslabel", - "community": 28, - "norm_label": "soslabel" - }, - { - "label": "sosTagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L106", - "id": "locales_ar_appheader_sostagline", - "community": 28, - "norm_label": "sostagline" - }, - { - "label": "sosSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L107", - "id": "locales_ar_appheader_sossubtitle", - "community": 28, - "norm_label": "sossubtitle" - }, - { - "label": "editProfile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L108", - "id": "locales_ar_appheader_editprofile", - "community": 28, - "norm_label": "editprofile" - }, - { - "label": "settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L109", - "id": "locales_ar_appheader_settings", - "community": 28, - "norm_label": "settings" - }, - { - "label": "signOut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L110", - "id": "locales_ar_appheader_signout", - "community": 28, - "norm_label": "signout" - }, - { - "label": "headerMenu", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L112", - "id": "locales_ar_headermenu", - "community": 28, - "norm_label": "headermenu" - }, - { - "label": "profile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L113", - "id": "locales_ar_headermenu_profile", - "community": 28, - "norm_label": "profile" - }, - { - "label": "settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L114", - "id": "locales_ar_headermenu_settings", - "community": 28, - "norm_label": "settings" - }, - { - "label": "games", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L115", - "id": "locales_ar_headermenu_games", - "community": 28, - "norm_label": "games" - }, - { - "label": "debug", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L116", - "id": "locales_ar_headermenu_debug", - "community": 28, - "norm_label": "debug" - }, - { - "label": "logout", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L117", - "id": "locales_ar_headermenu_logout", - "community": 28, - "norm_label": "logout" - }, - { - "label": "tabs", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L119", - "id": "locales_ar_tabs", - "community": 28, - "norm_label": "tabs" - }, - { - "label": "home", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L120", - "id": "locales_ar_tabs_home", - "community": 28, - "norm_label": "home" - }, - { - "label": "chat", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L121", - "id": "locales_ar_tabs_chat", - "community": 28, - "norm_label": "chat" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L122", - "id": "locales_ar_tabs_coach", - "community": 28, - "norm_label": "coach" - }, - { - "label": "blocker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L123", - "id": "locales_ar_tabs_blocker", - "community": 28, - "norm_label": "blocker" - }, - { - "label": "mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L124", - "id": "locales_ar_tabs_mail", - "community": 28, - "norm_label": "mail" - }, - { - "label": "profile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L125", - "id": "locales_ar_tabs_profile", - "community": 28, - "norm_label": "profile" - }, - { - "label": "games", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L127", - "id": "locales_ar_games", - "community": 411, - "norm_label": "games" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L128", - "id": "locales_ar_games_title", - "community": 411, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L129", - "id": "locales_ar_games_subtitle", - "community": 411, - "norm_label": "subtitle" - }, - { - "label": "back_to_picker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L130", - "id": "locales_ar_games_back_to_picker", - "community": 411, - "norm_label": "back_to_picker" - }, - { - "label": "last_score", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L131", - "id": "locales_ar_games_last_score", - "community": 411, - "norm_label": "last_score" - }, - { - "label": "skeleton_footer", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L132", - "id": "locales_ar_games_skeleton_footer", - "community": 411, - "norm_label": "skeleton_footer" - }, - { - "label": "home", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L134", - "id": "locales_ar_home", - "community": 28, - "norm_label": "home" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L135", - "id": "locales_ar_home_tagline", - "community": 28, - "norm_label": "tagline" - }, - { - "label": "start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L136", - "id": "locales_ar_home_start", - "community": 28, - "norm_label": "start" - }, - { - "label": "greeting_morning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L137", - "id": "locales_ar_home_greeting_morning", - "community": 28, - "norm_label": "greeting_morning" - }, - { - "label": "greeting_day", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L138", - "id": "locales_ar_home_greeting_day", - "community": 28, - "norm_label": "greeting_day" - }, - { - "label": "greeting_evening", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L139", - "id": "locales_ar_home_greeting_evening", - "community": 28, - "norm_label": "greeting_evening" - }, - { - "label": "streak_days_one", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L140", - "id": "locales_ar_home_streak_days_one", - "community": 28, - "norm_label": "streak_days_one" - }, - { - "label": "streak_days_other", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L141", - "id": "locales_ar_home_streak_days_other", - "community": 28, - "norm_label": "streak_days_other" - }, - { - "label": "streak_start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L142", - "id": "locales_ar_home_streak_start", - "community": 28, - "norm_label": "streak_start" - }, - { - "label": "quote_of_day", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L143", - "id": "locales_ar_home_quote_of_day", - "community": 28, - "norm_label": "quote_of_day" - }, - { - "label": "quick_access", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L144", - "id": "locales_ar_home_quick_access", - "community": 28, - "norm_label": "quick_access" - }, - { - "label": "stats_urges", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L145", - "id": "locales_ar_home_stats_urges", - "community": 28, - "norm_label": "stats_urges" - }, - { - "label": "stats_chats", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L146", - "id": "locales_ar_home_stats_chats", - "community": 28, - "norm_label": "stats_chats" - }, - { - "label": "stats_mails", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L147", - "id": "locales_ar_home_stats_mails", - "community": 28, - "norm_label": "stats_mails" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L149", - "id": "locales_ar_coach", - "community": 411, - "norm_label": "coach" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L150", - "id": "locales_ar_coach_title", - "community": 411, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L151", - "id": "locales_ar_coach_subtitle", - "community": 411, - "norm_label": "subtitle" - }, - { - "label": "welcome", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L152", - "id": "locales_ar_coach_welcome", - "community": 411, - "norm_label": "welcome" - }, - { - "label": "input_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L153", - "id": "locales_ar_coach_input_placeholder", - "community": 411, - "norm_label": "input_placeholder" - }, - { - "label": "new_chat", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L154", - "id": "locales_ar_coach_new_chat", - "community": 411, - "norm_label": "new_chat" - }, - { - "label": "lyra", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L155", - "id": "locales_ar_coach_lyra", - "community": 41, - "norm_label": "lyra" - }, - { - "label": "modeBadge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L156", - "id": "locales_ar_coach_modebadge", - "community": 411, - "norm_label": "modebadge" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L157", - "id": "locales_ar_modebadge_coach", - "community": 411, - "norm_label": "coach" - }, - { - "label": "sos", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L158", - "id": "locales_ar_modebadge_sos", - "community": 411, - "norm_label": "sos" - }, - { - "label": "placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L160", - "id": "locales_ar_coach_placeholder", - "community": 411, - "norm_label": "placeholder" - }, - { - "label": "speaking", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L161", - "id": "locales_ar_coach_speaking", - "community": 411, - "norm_label": "speaking" - }, - { - "label": "recording", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L162", - "id": "locales_ar_coach_recording", - "community": 411, - "norm_label": "recording" - }, - { - "label": "transcribing", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L163", - "id": "locales_ar_coach_transcribing", - "community": 411, - "norm_label": "transcribing" - }, - { - "label": "feedback_saved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L164", - "id": "locales_ar_coach_feedback_saved", - "community": 411, - "norm_label": "feedback_saved" - }, - { - "label": "welcome_back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L165", - "id": "locales_ar_coach_welcome_back", - "community": 411, - "norm_label": "welcome_back" - }, - { - "label": "online", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L166", - "id": "locales_ar_coach_online", - "community": 411, - "norm_label": "online" - }, - { - "label": "thinking", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L167", - "id": "locales_ar_coach_thinking", - "community": 411, - "norm_label": "thinking" - }, - { - "label": "error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L168", - "id": "locales_ar_coach_error", - "community": 878, - "norm_label": "error" - }, - { - "label": "blocker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L170", - "id": "locales_ar_blocker", - "community": 2, - "norm_label": "blocker" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L171", - "id": "locales_ar_blocker_title", - "community": 2, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L172", - "id": "locales_ar_blocker_subtitle", - "community": 2, - "norm_label": "subtitle" - }, - { - "label": "status_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L173", - "id": "locales_ar_blocker_status_active", - "community": 2, - "norm_label": "status_active" - }, - { - "label": "status_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L174", - "id": "locales_ar_blocker_status_inactive", - "community": 2, - "norm_label": "status_inactive" - }, - { - "label": "filter_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L175", - "id": "locales_ar_blocker_filter_label", - "community": 2, - "norm_label": "filter_label" - }, - { - "label": "filter_active_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L176", - "id": "locales_ar_blocker_filter_active_desc", - "community": 2, - "norm_label": "filter_active_desc" - }, - { - "label": "filter_inactive_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L177", - "id": "locales_ar_blocker_filter_inactive_desc", - "community": 2, - "norm_label": "filter_inactive_desc" - }, - { - "label": "tamper_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L178", - "id": "locales_ar_blocker_tamper_title", - "community": 2, - "norm_label": "tamper_title" - }, - { - "label": "tamper_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L179", - "id": "locales_ar_blocker_tamper_desc", - "community": 2, - "norm_label": "tamper_desc" - }, - { - "label": "custom_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L180", - "id": "locales_ar_blocker_custom_domains", - "community": 2, - "norm_label": "custom_domains" - }, - { - "label": "add_domain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L181", - "id": "locales_ar_blocker_add_domain", - "community": 2, - "norm_label": "add_domain" - }, - { - "label": "help_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L182", - "id": "locales_ar_blocker_help_link", - "community": 2, - "norm_label": "help_link" - }, - { - "label": "status_approved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L183", - "id": "locales_ar_blocker_status_approved", - "community": 2, - "norm_label": "status_approved" - }, - { - "label": "status_rejected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L184", - "id": "locales_ar_blocker_status_rejected", - "community": 2, - "norm_label": "status_rejected" - }, - { - "label": "status_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L185", - "id": "locales_ar_blocker_status_pending", - "community": 2, - "norm_label": "status_pending" - }, - { - "label": "add_sheet_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L186", - "id": "locales_ar_blocker_add_sheet_title", - "community": 2, - "norm_label": "add_sheet_title" - }, - { - "label": "add_sheet_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L187", - "id": "locales_ar_blocker_add_sheet_label", - "community": 2, - "norm_label": "add_sheet_label" - }, - { - "label": "add_sheet_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L188", - "id": "locales_ar_blocker_add_sheet_placeholder", - "community": 2, - "norm_label": "add_sheet_placeholder" - }, - { - "label": "add_sheet_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L189", - "id": "locales_ar_blocker_add_sheet_invalid", - "community": 2, - "norm_label": "add_sheet_invalid" - }, - { - "label": "add_sheet_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L190", - "id": "locales_ar_blocker_add_sheet_help", - "community": 2, - "norm_label": "add_sheet_help" - }, - { - "label": "preview_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L191", - "id": "locales_ar_blocker_preview_web", - "community": 2, - "norm_label": "preview_web" - }, - { - "label": "preview_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L192", - "id": "locales_ar_blocker_preview_mail", - "community": 2, - "norm_label": "preview_mail" - }, - { - "label": "preview_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L193", - "id": "locales_ar_blocker_preview_invalid", - "community": 2, - "norm_label": "preview_invalid" - }, - { - "label": "custom_filter_overview_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L194", - "id": "locales_ar_blocker_custom_filter_overview_title", - "community": 2, - "norm_label": "custom_filter_overview_title" - }, - { - "label": "custom_filter_overview_count", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L195", - "id": "locales_ar_blocker_custom_filter_overview_count", - "community": 2, - "norm_label": "custom_filter_overview_count" - }, - { - "label": "add_sheet_warning_free", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L196", - "id": "locales_ar_blocker_add_sheet_warning_free", - "community": 2, - "norm_label": "add_sheet_warning_free" - }, - { - "label": "add_sheet_warning_pro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L197", - "id": "locales_ar_blocker_add_sheet_warning_pro", - "community": 2, - "norm_label": "add_sheet_warning_pro" - }, - { - "label": "add_sheet_confirm_permanent", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L198", - "id": "locales_ar_blocker_add_sheet_confirm_permanent", - "community": 2, - "norm_label": "add_sheet_confirm_permanent" - }, - { - "label": "add_sheet_add_failed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L199", - "id": "locales_ar_blocker_add_sheet_add_failed", - "community": 2, - "norm_label": "add_sheet_add_failed" - }, - { - "label": "add_sheet_already_global", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L200", - "id": "locales_ar_blocker_add_sheet_already_global", - "community": 2, - "norm_label": "add_sheet_already_global" - }, - { - "label": "cooldown_banner_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L201", - "id": "locales_ar_blocker_cooldown_banner_title", - "community": 2, - "norm_label": "cooldown_banner_title" - }, - { - "label": "deactivation_actionsheet_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L202", - "id": "locales_ar_blocker_deactivation_actionsheet_title", - "community": 2, - "norm_label": "deactivation_actionsheet_title" - }, - { - "label": "deactivation_actionsheet_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L203", - "id": "locales_ar_blocker_deactivation_actionsheet_message", - "community": 2, - "norm_label": "deactivation_actionsheet_message" - }, - { - "label": "deactivation_start_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L204", - "id": "locales_ar_blocker_deactivation_start_cta", - "community": 2, - "norm_label": "deactivation_start_cta" - }, - { - "label": "deactivation_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L205", - "id": "locales_ar_blocker_deactivation_failed_msg", - "community": 2, - "norm_label": "deactivation_failed_msg" - }, - { - "label": "deactivation_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L206", - "id": "locales_ar_blocker_deactivation_heading", - "community": 2, - "norm_label": "deactivation_heading" - }, - { - "label": "deactivation_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L207", - "id": "locales_ar_blocker_deactivation_title", - "community": 2, - "norm_label": "deactivation_title" - }, - { - "label": "deactivation_intro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L208", - "id": "locales_ar_blocker_deactivation_intro", - "community": 2, - "norm_label": "deactivation_intro" - }, - { - "label": "deactivation_bullet1_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L209", - "id": "locales_ar_blocker_deactivation_bullet1_title", - "community": 2, - "norm_label": "deactivation_bullet1_title" - }, - { - "label": "deactivation_bullet1_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L210", - "id": "locales_ar_blocker_deactivation_bullet1_text", - "community": 2, - "norm_label": "deactivation_bullet1_text" - }, - { - "label": "deactivation_bullet2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L211", - "id": "locales_ar_blocker_deactivation_bullet2_title", - "community": 2, - "norm_label": "deactivation_bullet2_title" - }, - { - "label": "deactivation_bullet2_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L212", - "id": "locales_ar_blocker_deactivation_bullet2_text", - "community": 2, - "norm_label": "deactivation_bullet2_text" - }, - { - "label": "deactivation_bullet3_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L213", - "id": "locales_ar_blocker_deactivation_bullet3_title", - "community": 2, - "norm_label": "deactivation_bullet3_title" - }, - { - "label": "deactivation_bullet3_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L214", - "id": "locales_ar_blocker_deactivation_bullet3_text", - "community": 2, - "norm_label": "deactivation_bullet3_text" - }, - { - "label": "deactivation_breathe_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L215", - "id": "locales_ar_blocker_deactivation_breathe_cta", - "community": 2, - "norm_label": "deactivation_breathe_cta" - }, - { - "label": "deactivation_start_anyway", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L216", - "id": "locales_ar_blocker_deactivation_start_anyway", - "community": 2, - "norm_label": "deactivation_start_anyway" - }, - { - "label": "deactivation_starting", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L217", - "id": "locales_ar_blocker_deactivation_starting", - "community": 2, - "norm_label": "deactivation_starting" - }, - { - "label": "deactivation_cancel_failed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L218", - "id": "locales_ar_blocker_deactivation_cancel_failed", - "community": 2, - "norm_label": "deactivation_cancel_failed" - }, - { - "label": "domain_section_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L219", - "id": "locales_ar_blocker_domain_section_title", - "community": 2, - "norm_label": "domain_section_title" - }, - { - "label": "domain_add_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L220", - "id": "locales_ar_blocker_domain_add_a11y", - "community": 2, - "norm_label": "domain_add_a11y" - }, - { - "label": "domain_limit_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L221", - "id": "locales_ar_blocker_domain_limit_title", - "community": 2, - "norm_label": "domain_limit_title" - }, - { - "label": "domain_limit_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L222", - "id": "locales_ar_blocker_domain_limit_desc", - "community": 2, - "norm_label": "domain_limit_desc" - }, - { - "label": "domain_empty", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L223", - "id": "locales_ar_blocker_domain_empty", - "community": 2, - "norm_label": "domain_empty" - }, - { - "label": "domain_badge_voting", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L224", - "id": "locales_ar_blocker_domain_badge_voting", - "community": 2, - "norm_label": "domain_badge_voting" - }, - { - "label": "domain_badge_pruefung", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L225", - "id": "locales_ar_blocker_domain_badge_pruefung", - "community": 2, - "norm_label": "domain_badge_pruefung" - }, - { - "label": "domain_badge_rejected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L226", - "id": "locales_ar_blocker_domain_badge_rejected", - "community": 2, - "norm_label": "domain_badge_rejected" - }, - { - "label": "domain_badge_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L227", - "id": "locales_ar_blocker_domain_badge_active", - "community": 2, - "norm_label": "domain_badge_active" - }, - { - "label": "domain_btn_freigeben", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L228", - "id": "locales_ar_blocker_domain_btn_freigeben", - "community": 2, - "norm_label": "domain_btn_freigeben" - }, - { - "label": "domain_btn_erneut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L229", - "id": "locales_ar_blocker_domain_btn_erneut", - "community": 2, - "norm_label": "domain_btn_erneut" - }, - { - "label": "domain_btn_in_abstimmung", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L230", - "id": "locales_ar_blocker_domain_btn_in_abstimmung", - "community": 2, - "norm_label": "domain_btn_in_abstimmung" - }, - { - "label": "domain_btn_rebreak_prueft", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L231", - "id": "locales_ar_blocker_domain_btn_rebreak_prueft", - "community": 2, - "norm_label": "domain_btn_rebreak_prueft" - }, - { - "label": "domain_confirm_legend_resubmit", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L232", - "id": "locales_ar_blocker_domain_confirm_legend_resubmit", - "community": 2, - "norm_label": "domain_confirm_legend_resubmit" - }, - { - "label": "domain_confirm_legend_first", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L233", - "id": "locales_ar_blocker_domain_confirm_legend_first", - "community": 2, - "norm_label": "domain_confirm_legend_first" - }, - { - "label": "domain_confirm_community_resubmit", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L234", - "id": "locales_ar_blocker_domain_confirm_community_resubmit", - "community": 2, - "norm_label": "domain_confirm_community_resubmit" - }, - { - "label": "domain_confirm_community_first", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L235", - "id": "locales_ar_blocker_domain_confirm_community_first", - "community": 2, - "norm_label": "domain_confirm_community_first" - }, - { - "label": "domain_confirm_legend_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L236", - "id": "locales_ar_blocker_domain_confirm_legend_message", - "community": 2, - "norm_label": "domain_confirm_legend_message" - }, - { - "label": "domain_confirm_community_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L237", - "id": "locales_ar_blocker_domain_confirm_community_message", - "community": 2, - "norm_label": "domain_confirm_community_message" - }, - { - "label": "domain_success_legend_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L238", - "id": "locales_ar_blocker_domain_success_legend_title", - "community": 2, - "norm_label": "domain_success_legend_title" - }, - { - "label": "domain_success_community_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L239", - "id": "locales_ar_blocker_domain_success_community_title", - "community": 2, - "norm_label": "domain_success_community_title" - }, - { - "label": "domain_success_legend_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L240", - "id": "locales_ar_blocker_domain_success_legend_message", - "community": 2, - "norm_label": "domain_success_legend_message" - }, - { - "label": "domain_success_community_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L241", - "id": "locales_ar_blocker_domain_success_community_message", - "community": 2, - "norm_label": "domain_success_community_message" - }, - { - "label": "upgrade_alert_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L242", - "id": "locales_ar_blocker_upgrade_alert_title", - "community": 2, - "norm_label": "upgrade_alert_title" - }, - { - "label": "upgrade_alert_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L243", - "id": "locales_ar_blocker_upgrade_alert_desc", - "community": 2, - "norm_label": "upgrade_alert_desc" - }, - { - "label": "protection_card_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L244", - "id": "locales_ar_blocker_protection_card_title", - "community": 2, - "norm_label": "protection_card_title" - }, - { - "label": "protection_card_locked_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L245", - "id": "locales_ar_blocker_protection_card_locked_title", - "community": 2, - "norm_label": "protection_card_locked_title" - }, - { - "label": "protection_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L246", - "id": "locales_ar_blocker_protection_subtitle_inactive", - "community": 2, - "norm_label": "protection_subtitle_inactive" - }, - { - "label": "protection_subtitle_cooldown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L247", - "id": "locales_ar_blocker_protection_subtitle_cooldown", - "community": 2, - "norm_label": "protection_subtitle_cooldown" - }, - { - "label": "protection_subtitle_free", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L248", - "id": "locales_ar_blocker_protection_subtitle_free", - "community": 2, - "norm_label": "protection_subtitle_free" - }, - { - "label": "protection_subtitle_legend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L249", - "id": "locales_ar_blocker_protection_subtitle_legend", - "community": 2, - "norm_label": "protection_subtitle_legend" - }, - { - "label": "protection_subtitle_pro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L250", - "id": "locales_ar_blocker_protection_subtitle_pro", - "community": 2, - "norm_label": "protection_subtitle_pro" - }, - { - "label": "protection_settings_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L251", - "id": "locales_ar_blocker_protection_settings_a11y", - "community": 2, - "norm_label": "protection_settings_a11y" - }, - { - "label": "protection_stat_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L252", - "id": "locales_ar_blocker_protection_stat_domains", - "community": 2, - "norm_label": "protection_stat_domains" - }, - { - "label": "protection_stat_method", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L253", - "id": "locales_ar_blocker_protection_stat_method", - "community": 2, - "norm_label": "protection_stat_method" - }, - { - "label": "protection_stat_method_dns", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L254", - "id": "locales_ar_blocker_protection_stat_method_dns", - "community": 2, - "norm_label": "protection_stat_method_dns" - }, - { - "label": "protection_stat_method_native", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L255", - "id": "locales_ar_blocker_protection_stat_method_native", - "community": 2, - "norm_label": "protection_stat_method_native" - }, - { - "label": "protection_stat_status", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L256", - "id": "locales_ar_blocker_protection_stat_status", - "community": 2, - "norm_label": "protection_stat_status" - }, - { - "label": "protection_stat_status_live", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L257", - "id": "locales_ar_blocker_protection_stat_status_live", - "community": 2, - "norm_label": "protection_stat_status_live" - }, - { - "label": "activate_url_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L258", - "id": "locales_ar_blocker_activate_url_failed_title", - "community": 2, - "norm_label": "activate_url_failed_title" - }, - { - "label": "activate_url_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L259", - "id": "locales_ar_blocker_activate_url_failed_msg", - "community": 2, - "norm_label": "activate_url_failed_msg" - }, - { - "label": "activate_settings_btn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L260", - "id": "locales_ar_blocker_activate_settings_btn", - "community": 2, - "norm_label": "activate_settings_btn" - }, - { - "label": "permission_denied", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L261", - "id": "locales_ar_blocker_permission_denied", - "community": 602, - "norm_label": "permission_denied" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L262", - "id": "locales_ar_permission_denied_title", - "community": 602, - "norm_label": "title" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L263", - "id": "locales_ar_permission_denied_body", - "community": 602, - "norm_label": "body" - }, - { - "label": "retry_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L264", - "id": "locales_ar_permission_denied_retry_cta", - "community": 602, - "norm_label": "retry_cta" - }, - { - "label": "retry_loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L265", - "id": "locales_ar_permission_denied_retry_loading", - "community": 602, - "norm_label": "retry_loading" - }, - { - "label": "settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L266", - "id": "locales_ar_permission_denied_settings_cta", - "community": 602, - "norm_label": "settings_cta" - }, - { - "label": "fallback_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L267", - "id": "locales_ar_permission_denied_fallback_label", - "community": 602, - "norm_label": "fallback_label" - }, - { - "label": "fallback_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L268", - "id": "locales_ar_permission_denied_fallback_body", - "community": 602, - "norm_label": "fallback_body" - }, - { - "label": "family_controls_error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L270", - "id": "locales_ar_blocker_family_controls_error", - "community": 602, - "norm_label": "family_controls_error" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L271", - "id": "locales_ar_family_controls_error_title", - "community": 602, - "norm_label": "title" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L272", - "id": "locales_ar_family_controls_error_body", - "community": 602, - "norm_label": "body" - }, - { - "label": "retry_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L273", - "id": "locales_ar_family_controls_error_retry_cta", - "community": 602, - "norm_label": "retry_cta" - }, - { - "label": "retry_loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L274", - "id": "locales_ar_family_controls_error_retry_loading", - "community": 602, - "norm_label": "retry_loading" - }, - { - "label": "settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L275", - "id": "locales_ar_family_controls_error_settings_cta", - "community": 602, - "norm_label": "settings_cta" - }, - { - "label": "fallback_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L276", - "id": "locales_ar_family_controls_error_fallback_label", - "community": 602, - "norm_label": "fallback_label" - }, - { - "label": "fallback_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L277", - "id": "locales_ar_family_controls_error_fallback_body", - "community": 602, - "norm_label": "fallback_body" - }, - { - "label": "protection_off_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L279", - "id": "locales_ar_blocker_protection_off_title", - "community": 2, - "norm_label": "protection_off_title" - }, - { - "label": "protection_off_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L280", - "id": "locales_ar_blocker_protection_off_message", - "community": 2, - "norm_label": "protection_off_message" - }, - { - "label": "reactivate_btn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L281", - "id": "locales_ar_blocker_reactivate_btn", - "community": 2, - "norm_label": "reactivate_btn" - }, - { - "label": "protection_off_later", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L282", - "id": "locales_ar_blocker_protection_off_later", - "community": 2, - "norm_label": "protection_off_later" - }, - { - "label": "activate_app_lock_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L283", - "id": "locales_ar_blocker_activate_app_lock_failed_title", - "community": 2, - "norm_label": "activate_app_lock_failed_title" - }, - { - "label": "activate_app_lock_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L284", - "id": "locales_ar_blocker_activate_app_lock_failed_msg", - "community": 2, - "norm_label": "activate_app_lock_failed_msg" - }, - { - "label": "sync_list_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L285", - "id": "locales_ar_blocker_sync_list_failed_title", - "community": 2, - "norm_label": "sync_list_failed_title" - }, - { - "label": "sync_list_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L286", - "id": "locales_ar_blocker_sync_list_failed_msg", - "community": 2, - "norm_label": "sync_list_failed_msg" - }, - { - "label": "activation_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L287", - "id": "locales_ar_blocker_activation_failed_title", - "community": 2, - "norm_label": "activation_failed_title" - }, - { - "label": "details_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L288", - "id": "locales_ar_blocker_details_done", - "community": 2, - "norm_label": "details_done" - }, - { - "label": "details_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L289", - "id": "locales_ar_blocker_details_title", - "community": 2, - "norm_label": "details_title" - }, - { - "label": "details_active_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L290", - "id": "locales_ar_blocker_details_active_title", - "community": 2, - "norm_label": "details_active_title" - }, - { - "label": "details_domains_blocked", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L291", - "id": "locales_ar_blocker_details_domains_blocked", - "community": 2, - "norm_label": "details_domains_blocked" - }, - { - "label": "details_layers_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L292", - "id": "locales_ar_blocker_details_layers_heading", - "community": 2, - "norm_label": "details_layers_heading" - }, - { - "label": "details_layer_url_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L293", - "id": "locales_ar_blocker_details_layer_url_label", - "community": 2, - "norm_label": "details_layer_url_label" - }, - { - "label": "details_layer_url_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L294", - "id": "locales_ar_blocker_details_layer_url_desc", - "community": 2, - "norm_label": "details_layer_url_desc" - }, - { - "label": "details_layer_applock_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L295", - "id": "locales_ar_blocker_details_layer_applock_label", - "community": 2, - "norm_label": "details_layer_applock_label" - }, - { - "label": "details_layer_applock_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L296", - "id": "locales_ar_blocker_details_layer_applock_desc", - "community": 2, - "norm_label": "details_layer_applock_desc" - }, - { - "label": "details_layer_vpn_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L297", - "id": "locales_ar_blocker_details_layer_vpn_label", - "community": 2, - "norm_label": "details_layer_vpn_label" - }, - { - "label": "details_layer_vpn_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L298", - "id": "locales_ar_blocker_details_layer_vpn_desc", - "community": 2, - "norm_label": "details_layer_vpn_desc" - }, - { - "label": "details_layer_a11y_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L299", - "id": "locales_ar_blocker_details_layer_a11y_label", - "community": 2, - "norm_label": "details_layer_a11y_label" - }, - { - "label": "details_layer_a11y_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L300", - "id": "locales_ar_blocker_details_layer_a11y_desc", - "community": 2, - "norm_label": "details_layer_a11y_desc" - }, - { - "label": "details_layer_tamper_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L301", - "id": "locales_ar_blocker_details_layer_tamper_label", - "community": 2, - "norm_label": "details_layer_tamper_label" - }, - { - "label": "details_layer_tamper_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L302", - "id": "locales_ar_blocker_details_layer_tamper_desc", - "community": 2, - "norm_label": "details_layer_tamper_desc" - }, - { - "label": "details_lyra_cta_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L303", - "id": "locales_ar_blocker_details_lyra_cta_title", - "community": 2, - "norm_label": "details_lyra_cta_title" - }, - { - "label": "details_lyra_cta_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L304", - "id": "locales_ar_blocker_details_lyra_cta_subtitle", - "community": 2, - "norm_label": "details_lyra_cta_subtitle" - }, - { - "label": "details_deactivate_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L305", - "id": "locales_ar_blocker_details_deactivate_link", - "community": 2, - "norm_label": "details_deactivate_link" - }, - { - "label": "layers_url_filter_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L306", - "id": "locales_ar_blocker_layers_url_filter_title", - "community": 2, - "norm_label": "layers_url_filter_title" - }, - { - "label": "layers_url_filter_subtitle_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L307", - "id": "locales_ar_blocker_layers_url_filter_subtitle_active", - "community": 2, - "norm_label": "layers_url_filter_subtitle_active" - }, - { - "label": "layers_url_filter_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L308", - "id": "locales_ar_blocker_layers_url_filter_subtitle_inactive", - "community": 2, - "norm_label": "layers_url_filter_subtitle_inactive" - }, - { - "label": "layers_app_lock_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L309", - "id": "locales_ar_blocker_layers_app_lock_title", - "community": 2, - "norm_label": "layers_app_lock_title" - }, - { - "label": "layers_app_lock_subtitle_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L310", - "id": "locales_ar_blocker_layers_app_lock_subtitle_active", - "community": 2, - "norm_label": "layers_app_lock_subtitle_active" - }, - { - "label": "layers_app_lock_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L311", - "id": "locales_ar_blocker_layers_app_lock_subtitle_inactive", - "community": 2, - "norm_label": "layers_app_lock_subtitle_inactive" - }, - { - "label": "layers_app_lock_warning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L312", - "id": "locales_ar_blocker_layers_app_lock_warning", - "community": 2, - "norm_label": "layers_app_lock_warning" - }, - { - "label": "layers_app_lock_locked_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L313", - "id": "locales_ar_blocker_layers_app_lock_locked_hint", - "community": 2, - "norm_label": "layers_app_lock_locked_hint" - }, - { - "label": "screentime_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L314", - "id": "locales_ar_blocker_screentime_title", - "community": 2, - "norm_label": "screentime_title" - }, - { - "label": "screentime_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L315", - "id": "locales_ar_blocker_screentime_desc", - "community": 2, - "norm_label": "screentime_desc" - }, - { - "label": "screentime_generate_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L316", - "id": "locales_ar_blocker_screentime_generate_cta", - "community": 2, - "norm_label": "screentime_generate_cta" - }, - { - "label": "screentime_code_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L317", - "id": "locales_ar_blocker_screentime_code_label", - "community": 2, - "norm_label": "screentime_code_label" - }, - { - "label": "screentime_step1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L318", - "id": "locales_ar_blocker_screentime_step1", - "community": 2, - "norm_label": "screentime_step1" - }, - { - "label": "screentime_step2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L319", - "id": "locales_ar_blocker_screentime_step2", - "community": 2, - "norm_label": "screentime_step2" - }, - { - "label": "screentime_step3", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L320", - "id": "locales_ar_blocker_screentime_step3", - "community": 2, - "norm_label": "screentime_step3" - }, - { - "label": "screentime_step_note", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L321", - "id": "locales_ar_blocker_screentime_step_note", - "community": 2, - "norm_label": "screentime_step_note" - }, - { - "label": "screentime_open_settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L322", - "id": "locales_ar_blocker_screentime_open_settings_cta", - "community": 2, - "norm_label": "screentime_open_settings_cta" - }, - { - "label": "screentime_confirm_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L323", - "id": "locales_ar_blocker_screentime_confirm_cta", - "community": 2, - "norm_label": "screentime_confirm_cta" - }, - { - "label": "screentime_confirmed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L324", - "id": "locales_ar_blocker_screentime_confirmed_title", - "community": 2, - "norm_label": "screentime_confirmed_title" - }, - { - "label": "screentime_confirmed_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L325", - "id": "locales_ar_blocker_screentime_confirmed_desc", - "community": 2, - "norm_label": "screentime_confirmed_desc" - }, - { - "label": "layers_a11y_subtitle_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L326", - "id": "locales_ar_blocker_layers_a11y_subtitle_active", - "community": 2, - "norm_label": "layers_a11y_subtitle_active" - }, - { - "label": "layers_a11y_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L327", - "id": "locales_ar_blocker_layers_a11y_subtitle_inactive", - "community": 2, - "norm_label": "layers_a11y_subtitle_inactive" - }, - { - "label": "kpi_global_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L328", - "id": "locales_ar_blocker_kpi_global_label", - "community": 2, - "norm_label": "kpi_global_label" - }, - { - "label": "kpi_global_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L329", - "id": "locales_ar_blocker_kpi_global_subtitle", - "community": 2, - "norm_label": "kpi_global_subtitle" - }, - { - "label": "delta_week", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L330", - "id": "locales_ar_blocker_delta_week", - "community": 2, - "norm_label": "delta_week" - }, - { - "label": "delta_month", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L331", - "id": "locales_ar_blocker_delta_month", - "community": 2, - "norm_label": "delta_month" - }, - { - "label": "kpi_submissions_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L332", - "id": "locales_ar_blocker_kpi_submissions_title", - "community": 2, - "norm_label": "kpi_submissions_title" - }, - { - "label": "kpi_submissions_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L333", - "id": "locales_ar_blocker_kpi_submissions_subtitle", - "community": 2, - "norm_label": "kpi_submissions_subtitle" - }, - { - "label": "kpi_my_submissions", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L334", - "id": "locales_ar_blocker_kpi_my_submissions", - "community": 2, - "norm_label": "kpi_my_submissions" - }, - { - "label": "kpi_status_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L335", - "id": "locales_ar_blocker_kpi_status_active", - "community": 2, - "norm_label": "kpi_status_active" - }, - { - "label": "kpi_status_vote", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L336", - "id": "locales_ar_blocker_kpi_status_vote", - "community": 2, - "norm_label": "kpi_status_vote" - }, - { - "label": "kpi_status_review", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L337", - "id": "locales_ar_blocker_kpi_status_review", - "community": 2, - "norm_label": "kpi_status_review" - }, - { - "label": "kpi_in_vote", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L338", - "id": "locales_ar_blocker_kpi_in_vote", - "community": 2, - "norm_label": "kpi_in_vote" - }, - { - "label": "kpi_in_review", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L339", - "id": "locales_ar_blocker_kpi_in_review", - "community": 2, - "norm_label": "kpi_in_review" - }, - { - "label": "kpi_avg_per_user", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L340", - "id": "locales_ar_blocker_kpi_avg_per_user", - "community": 2, - "norm_label": "kpi_avg_per_user" - }, - { - "label": "kpi_avg_wait", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L341", - "id": "locales_ar_blocker_kpi_avg_wait", - "community": 2, - "norm_label": "kpi_avg_wait" - }, - { - "label": "kpi_days_suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L342", - "id": "locales_ar_blocker_kpi_days_suffix", - "community": 2, - "norm_label": "kpi_days_suffix" - }, - { - "label": "faq_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L343", - "id": "locales_ar_blocker_faq_heading", - "community": 2, - "norm_label": "faq_heading" - }, - { - "label": "faq1_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L344", - "id": "locales_ar_blocker_faq1_q", - "community": 2, - "norm_label": "faq1_q" - }, - { - "label": "faq1_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L345", - "id": "locales_ar_blocker_faq1_a", - "community": 2, - "norm_label": "faq1_a" - }, - { - "label": "faq2_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L346", - "id": "locales_ar_blocker_faq2_q", - "community": 2, - "norm_label": "faq2_q" - }, - { - "label": "faq2_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L347", - "id": "locales_ar_blocker_faq2_a", - "community": 2, - "norm_label": "faq2_a" - }, - { - "label": "faq3_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L348", - "id": "locales_ar_blocker_faq3_q", - "community": 2, - "norm_label": "faq3_q" - }, - { - "label": "faq3_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L349", - "id": "locales_ar_blocker_faq3_a", - "community": 2, - "norm_label": "faq3_a" - }, - { - "label": "faq4_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L350", - "id": "locales_ar_blocker_faq4_q", - "community": 2, - "norm_label": "faq4_q" - }, - { - "label": "faq4_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L351", - "id": "locales_ar_blocker_faq4_a", - "community": 2, - "norm_label": "faq4_a" - }, - { - "label": "faq5_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L352", - "id": "locales_ar_blocker_faq5_q", - "community": 2, - "norm_label": "faq5_q" - }, - { - "label": "faq5_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L353", - "id": "locales_ar_blocker_faq5_a", - "community": 2, - "norm_label": "faq5_a" - }, - { - "label": "faq6_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L354", - "id": "locales_ar_blocker_faq6_q", - "community": 2, - "norm_label": "faq6_q" - }, - { - "label": "faq6_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L355", - "id": "locales_ar_blocker_faq6_a", - "community": 2, - "norm_label": "faq6_a" - }, - { - "label": "faq7_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L356", - "id": "locales_ar_blocker_faq7_q", - "community": 2, - "norm_label": "faq7_q" - }, - { - "label": "faq7_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L357", - "id": "locales_ar_blocker_faq7_a", - "community": 2, - "norm_label": "faq7_a" - }, - { - "label": "faq8_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L358", - "id": "locales_ar_blocker_faq8_q", - "community": 2, - "norm_label": "faq8_q" - }, - { - "label": "faq8_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L359", - "id": "locales_ar_blocker_faq8_a", - "community": 2, - "norm_label": "faq8_a" - }, - { - "label": "faq9_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L360", - "id": "locales_ar_blocker_faq9_q", - "community": 2, - "norm_label": "faq9_q" - }, - { - "label": "faq9_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L361", - "id": "locales_ar_blocker_faq9_a", - "community": 2, - "norm_label": "faq9_a" - }, - { - "label": "more_info_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L362", - "id": "locales_ar_blocker_more_info_title", - "community": 2, - "norm_label": "more_info_title" - }, - { - "label": "cooldown_elapsed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L363", - "id": "locales_ar_blocker_cooldown_elapsed_title", - "community": 2, - "norm_label": "cooldown_elapsed_title" - }, - { - "label": "cooldown_elapsed_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L364", - "id": "locales_ar_blocker_cooldown_elapsed_message", - "community": 2, - "norm_label": "cooldown_elapsed_message" - }, - { - "label": "cooldown_elapsed_message_ios", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L365", - "id": "locales_ar_blocker_cooldown_elapsed_message_ios", - "community": 2, - "norm_label": "cooldown_elapsed_message_ios" - }, - { - "label": "cooldown_elapsed_open_settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L366", - "id": "locales_ar_blocker_cooldown_elapsed_open_settings", - "community": 2, - "norm_label": "cooldown_elapsed_open_settings" - }, - { - "label": "app_lock_coming_soon_badge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L367", - "id": "locales_ar_blocker_app_lock_coming_soon_badge", - "community": 2, - "norm_label": "app_lock_coming_soon_badge" - }, - { - "label": "app_lock_coming_soon_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L368", - "id": "locales_ar_blocker_app_lock_coming_soon_desc", - "community": 2, - "norm_label": "app_lock_coming_soon_desc" - }, - { - "label": "type_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L369", - "id": "locales_ar_blocker_type_web", - "community": 2, - "norm_label": "type_web" - }, - { - "label": "type_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L370", - "id": "locales_ar_blocker_type_mail", - "community": 2, - "norm_label": "type_mail" - }, - { - "label": "add_web_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L371", - "id": "locales_ar_blocker_add_web_label", - "community": 2, - "norm_label": "add_web_label" - }, - { - "label": "add_web_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L372", - "id": "locales_ar_blocker_add_web_placeholder", - "community": 2, - "norm_label": "add_web_placeholder" - }, - { - "label": "add_web_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L373", - "id": "locales_ar_blocker_add_web_help", - "community": 2, - "norm_label": "add_web_help" - }, - { - "label": "add_mail_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L374", - "id": "locales_ar_blocker_add_mail_label", - "community": 2, - "norm_label": "add_mail_label" - }, - { - "label": "add_mail_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L375", - "id": "locales_ar_blocker_add_mail_placeholder", - "community": 2, - "norm_label": "add_mail_placeholder" - }, - { - "label": "add_mail_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L376", - "id": "locales_ar_blocker_add_mail_help", - "community": 2, - "norm_label": "add_mail_help" - }, - { - "label": "add_mail_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L377", - "id": "locales_ar_blocker_add_mail_invalid", - "community": 2, - "norm_label": "add_mail_invalid" - }, - { - "label": "add_sheet_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L378", - "id": "locales_ar_blocker_add_sheet_cta", - "community": 2, - "norm_label": "add_sheet_cta" - }, - { - "label": "section_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L379", - "id": "locales_ar_blocker_section_domains", - "community": 2, - "norm_label": "section_domains" - }, - { - "label": "section_mails", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L380", - "id": "locales_ar_blocker_section_mails", - "community": 2, - "norm_label": "section_mails" - }, - { - "label": "count_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L381", - "id": "locales_ar_blocker_count_label", - "community": 2, - "norm_label": "count_label" - }, - { - "label": "error_web_limit_reached", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L382", - "id": "locales_ar_blocker_error_web_limit_reached", - "community": 2, - "norm_label": "error_web_limit_reached" - }, - { - "label": "error_mail_limit_reached", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L383", - "id": "locales_ar_blocker_error_mail_limit_reached", - "community": 2, - "norm_label": "error_mail_limit_reached" - }, - { - "label": "error_invalid_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L384", - "id": "locales_ar_blocker_error_invalid_mail", - "community": 2, - "norm_label": "error_invalid_mail" - }, - { - "label": "error_invalid_input", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L385", - "id": "locales_ar_blocker_error_invalid_input", - "community": 877, - "norm_label": "error_invalid_input" - }, - { - "label": "error_public_domain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L386", - "id": "locales_ar_blocker_error_public_domain", - "community": 2, - "norm_label": "error_public_domain" - }, - { - "label": "error_duplicate", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L387", - "id": "locales_ar_blocker_error_duplicate", - "community": 2, - "norm_label": "error_duplicate" - }, - { - "label": "kind_override_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L388", - "id": "locales_ar_blocker_kind_override_label", - "community": 2, - "norm_label": "kind_override_label" - }, - { - "label": "empty_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L389", - "id": "locales_ar_blocker_empty_web", - "community": 2, - "norm_label": "empty_web" - }, - { - "label": "empty_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L390", - "id": "locales_ar_blocker_empty_mail", - "community": 2, - "norm_label": "empty_mail" - }, - { - "label": "protection_subtitle_mdm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L391", - "id": "locales_ar_blocker_protection_subtitle_mdm", - "community": 2, - "norm_label": "protection_subtitle_mdm" - }, - { - "label": "protection_stat_method_nefilter", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L392", - "id": "locales_ar_blocker_protection_stat_method_nefilter", - "community": 2, - "norm_label": "protection_stat_method_nefilter" - }, - { - "label": "protection_stat_method_mdm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L393", - "id": "locales_ar_blocker_protection_stat_method_mdm", - "community": 2, - "norm_label": "protection_stat_method_mdm" - }, - { - "label": "mdm_info_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L394", - "id": "locales_ar_blocker_mdm_info_hint", - "community": 2, - "norm_label": "mdm_info_hint" - }, - { - "label": "mdm_deactivate_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L395", - "id": "locales_ar_blocker_mdm_deactivate_title", - "community": 2, - "norm_label": "mdm_deactivate_title" - }, - { - "label": "mdm_deactivate_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L396", - "id": "locales_ar_blocker_mdm_deactivate_body", - "community": 2, - "norm_label": "mdm_deactivate_body" - }, - { - "label": "onboarding", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L398", - "id": "locales_ar_onboarding", - "community": 871, - "norm_label": "onboarding" - }, - { - "label": "lyra", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L399", - "id": "locales_ar_onboarding_lyra", - "community": 41, - "norm_label": "lyra" - }, - { - "label": "welcome", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L400", - "id": "locales_ar_lyra_welcome", - "community": 871, - "norm_label": "welcome" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L401", - "id": "locales_ar_welcome_body", - "community": 871, - "norm_label": "body" - }, - { - "label": "privacy", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L403", - "id": "locales_ar_lyra_privacy", - "community": 889, - "norm_label": "privacy" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L404", - "id": "locales_ar_privacy_body", - "community": 889, - "norm_label": "body" - }, - { - "label": "nickname", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L406", - "id": "locales_ar_lyra_nickname", - "community": 41, - "norm_label": "nickname" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L407", - "id": "locales_ar_nickname_body", - "community": 41, - "norm_label": "body" - }, - { - "label": "diga_choice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L409", - "id": "locales_ar_lyra_diga_choice", - "community": 868, - "norm_label": "diga_choice" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L410", - "id": "locales_ar_diga_choice_body", - "community": 868, - "norm_label": "body" - }, - { - "label": "diga_code", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L412", - "id": "locales_ar_lyra_diga_code", - "community": 877, - "norm_label": "diga_code" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L413", - "id": "locales_ar_diga_code_body", - "community": 877, - "norm_label": "body" - }, - { - "label": "plan", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L415", - "id": "locales_ar_lyra_plan", - "community": 82, - "norm_label": "plan" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L416", - "id": "locales_ar_plan_body", - "community": 41, - "norm_label": "body" - }, - { - "label": "payment", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L418", - "id": "locales_ar_lyra_payment", - "community": 871, - "norm_label": "payment" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L419", - "id": "locales_ar_payment_body", - "community": 871, - "norm_label": "body" - }, - { - "label": "protection", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L421", - "id": "locales_ar_lyra_protection", - "community": 55, - "norm_label": "protection" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L422", - "id": "locales_ar_protection_body", - "community": 55, - "norm_label": "body" - }, - { - "label": "protection_url", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L424", - "id": "locales_ar_lyra_protection_url", - "community": 41, - "norm_label": "protection_url" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L425", - "id": "locales_ar_protection_url_body", - "community": 41, - "norm_label": "body" - }, - { - "label": "protection_lock", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L427", - "id": "locales_ar_lyra_protection_lock", - "community": 41, - "norm_label": "protection_lock" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L428", - "id": "locales_ar_protection_lock_body", - "community": 41, - "norm_label": "body" - }, - { - "label": "protection_url_android", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L430", - "id": "locales_ar_lyra_protection_url_android", - "community": 41, - "norm_label": "protection_url_android" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L431", - "id": "locales_ar_protection_url_android_body", - "community": 41, - "norm_label": "body" - }, - { - "label": "protection_lock_android", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L433", - "id": "locales_ar_lyra_protection_lock_android", - "community": 41, - "norm_label": "protection_lock_android" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L434", - "id": "locales_ar_protection_lock_android_body", - "community": 41, - "norm_label": "body" - }, - { - "label": "done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L436", - "id": "locales_ar_lyra_done", - "community": 41, - "norm_label": "done" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L437", - "id": "locales_ar_done_body", - "community": 41, - "norm_label": "body" - }, - { - "label": "audio_play", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L439", - "id": "locales_ar_lyra_audio_play", - "community": 41, - "norm_label": "audio_play" - }, - { - "label": "audio_loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L440", - "id": "locales_ar_lyra_audio_loading", - "community": 41, - "norm_label": "audio_loading" - }, - { - "label": "audio_stop", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L441", - "id": "locales_ar_lyra_audio_stop", - "community": 41, - "norm_label": "audio_stop" - }, - { - "label": "audio_disable", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L442", - "id": "locales_ar_lyra_audio_disable", - "community": 41, - "norm_label": "audio_disable" - }, - { - "label": "welcome", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L444", - "id": "locales_ar_onboarding_welcome", - "community": 871, - "norm_label": "welcome" - }, - { - "label": "cta_primary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L445", - "id": "locales_ar_welcome_cta_primary", - "community": 871, - "norm_label": "cta_primary" - }, - { - "label": "bullet_anon", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L446", - "id": "locales_ar_welcome_bullet_anon", - "community": 871, - "norm_label": "bullet_anon" - }, - { - "label": "bullet_protect", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L447", - "id": "locales_ar_welcome_bullet_protect", - "community": 871, - "norm_label": "bullet_protect" - }, - { - "label": "bullet_community", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L448", - "id": "locales_ar_welcome_bullet_community", - "community": 871, - "norm_label": "bullet_community" - }, - { - "label": "privacy", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L450", - "id": "locales_ar_onboarding_privacy", - "community": 889, - "norm_label": "privacy" - }, - { - "label": "cta_primary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L451", - "id": "locales_ar_privacy_cta_primary", - "community": 889, - "norm_label": "cta_primary" - }, - { - "label": "promise_alias", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L452", - "id": "locales_ar_privacy_promise_alias", - "community": 889, - "norm_label": "promise_alias" - }, - { - "label": "promise_minimal", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L453", - "id": "locales_ar_privacy_promise_minimal", - "community": 889, - "norm_label": "promise_minimal" - }, - { - "label": "promise_no_ads", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L454", - "id": "locales_ar_privacy_promise_no_ads", - "community": 889, - "norm_label": "promise_no_ads" - }, - { - "label": "promise_germany", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L455", - "id": "locales_ar_privacy_promise_germany", - "community": 889, - "norm_label": "promise_germany" - }, - { - "label": "nickname", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L457", - "id": "locales_ar_onboarding_nickname", - "community": 868, - "norm_label": "nickname" - }, - { - "label": "cta_primary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L458", - "id": "locales_ar_nickname_cta_primary", - "community": 868, - "norm_label": "cta_primary" - }, - { - "label": "label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L459", - "id": "locales_ar_nickname_label", - "community": 868, - "norm_label": "label" - }, - { - "label": "placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L460", - "id": "locales_ar_nickname_placeholder", - "community": 868, - "norm_label": "placeholder" - }, - { - "label": "hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L461", - "id": "locales_ar_nickname_hint", - "community": 868, - "norm_label": "hint" - }, - { - "label": "error_too_short", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L462", - "id": "locales_ar_nickname_error_too_short", - "community": 868, - "norm_label": "error_too_short" - }, - { - "label": "error_too_long", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L463", - "id": "locales_ar_nickname_error_too_long", - "community": 868, - "norm_label": "error_too_long" - }, - { - "label": "error_profanity", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L464", - "id": "locales_ar_nickname_error_profanity", - "community": 868, - "norm_label": "error_profanity" - }, - { - "label": "error_taken", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L465", - "id": "locales_ar_nickname_error_taken", - "community": 868, - "norm_label": "error_taken" - }, - { - "label": "diga_choice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L467", - "id": "locales_ar_onboarding_diga_choice", - "community": 868, - "norm_label": "diga_choice" - }, - { - "label": "cta_yes", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L468", - "id": "locales_ar_diga_choice_cta_yes", - "community": 868, - "norm_label": "cta_yes" - }, - { - "label": "cta_no", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L469", - "id": "locales_ar_diga_choice_cta_no", - "community": 868, - "norm_label": "cta_no" - }, - { - "label": "hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L470", - "id": "locales_ar_diga_choice_hint", - "community": 868, - "norm_label": "hint" - }, - { - "label": "diga_code", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L472", - "id": "locales_ar_onboarding_diga_code", - "community": 877, - "norm_label": "diga_code" - }, - { - "label": "cta_primary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L473", - "id": "locales_ar_diga_code_cta_primary", - "community": 877, - "norm_label": "cta_primary" - }, - { - "label": "cta_secondary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L474", - "id": "locales_ar_diga_code_cta_secondary", - "community": 877, - "norm_label": "cta_secondary" - }, - { - "label": "label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L475", - "id": "locales_ar_diga_code_label", - "community": 877, - "norm_label": "label" - }, - { - "label": "hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L476", - "id": "locales_ar_diga_code_hint", - "community": 877, - "norm_label": "hint" - }, - { - "label": "error_not_found", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L477", - "id": "locales_ar_diga_code_error_not_found", - "community": 877, - "norm_label": "error_not_found" - }, - { - "label": "error_already_used", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L478", - "id": "locales_ar_diga_code_error_already_used", - "community": 877, - "norm_label": "error_already_used" - }, - { - "label": "error_expired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L479", - "id": "locales_ar_diga_code_error_expired", - "community": 877, - "norm_label": "error_expired" - }, - { - "label": "error_invalid_input", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L480", - "id": "locales_ar_diga_code_error_invalid_input", - "community": 877, - "norm_label": "error_invalid_input" - }, - { - "label": "plan", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L482", - "id": "locales_ar_onboarding_plan", - "community": 82, - "norm_label": "plan" - }, - { - "label": "cta_trial", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L483", - "id": "locales_ar_plan_cta_trial", - "community": 82, - "norm_label": "cta_trial" - }, - { - "label": "cta_legend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L484", - "id": "locales_ar_plan_cta_legend", - "community": 82, - "norm_label": "cta_legend" - }, - { - "label": "billing_monthly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L485", - "id": "locales_ar_plan_billing_monthly", - "community": 82, - "norm_label": "billing_monthly" - }, - { - "label": "billing_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L486", - "id": "locales_ar_plan_billing_yearly", - "community": 82, - "norm_label": "billing_yearly" - }, - { - "label": "billing_savings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L487", - "id": "locales_ar_plan_billing_savings", - "community": 82, - "norm_label": "billing_savings" - }, - { - "label": "tier_pro_badge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L488", - "id": "locales_ar_plan_tier_pro_badge", - "community": 82, - "norm_label": "tier_pro_badge" - }, - { - "label": "tier_pro_price_monthly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L489", - "id": "locales_ar_plan_tier_pro_price_monthly", - "community": 82, - "norm_label": "tier_pro_price_monthly" - }, - { - "label": "tier_pro_price_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L490", - "id": "locales_ar_plan_tier_pro_price_yearly", - "community": 82, - "norm_label": "tier_pro_price_yearly" - }, - { - "label": "tier_pro_anchor_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L491", - "id": "locales_ar_plan_tier_pro_anchor_yearly", - "community": 82, - "norm_label": "tier_pro_anchor_yearly" - }, - { - "label": "tier_pro_total_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L492", - "id": "locales_ar_plan_tier_pro_total_yearly", - "community": 82, - "norm_label": "tier_pro_total_yearly" - }, - { - "label": "tier_pro_subline_monthly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L493", - "id": "locales_ar_plan_tier_pro_subline_monthly", - "community": 82, - "norm_label": "tier_pro_subline_monthly" - }, - { - "label": "tier_pro_subline_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L494", - "id": "locales_ar_plan_tier_pro_subline_yearly", - "community": 82, - "norm_label": "tier_pro_subline_yearly" - }, - { - "label": "tier_legend_price_monthly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L495", - "id": "locales_ar_plan_tier_legend_price_monthly", - "community": 82, - "norm_label": "tier_legend_price_monthly" - }, - { - "label": "tier_legend_price_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L496", - "id": "locales_ar_plan_tier_legend_price_yearly", - "community": 82, - "norm_label": "tier_legend_price_yearly" - }, - { - "label": "tier_legend_anchor_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L497", - "id": "locales_ar_plan_tier_legend_anchor_yearly", - "community": 82, - "norm_label": "tier_legend_anchor_yearly" - }, - { - "label": "tier_legend_total_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L498", - "id": "locales_ar_plan_tier_legend_total_yearly", - "community": 82, - "norm_label": "tier_legend_total_yearly" - }, - { - "label": "tier_legend_subline_monthly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L499", - "id": "locales_ar_plan_tier_legend_subline_monthly", - "community": 82, - "norm_label": "tier_legend_subline_monthly" - }, - { - "label": "tier_legend_subline_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L500", - "id": "locales_ar_plan_tier_legend_subline_yearly", - "community": 82, - "norm_label": "tier_legend_subline_yearly" - }, - { - "label": "feat_blocklist", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L501", - "id": "locales_ar_plan_feat_blocklist", - "community": 82, - "norm_label": "feat_blocklist" - }, - { - "label": "feat_lyra", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L502", - "id": "locales_ar_plan_feat_lyra", - "community": 82, - "norm_label": "feat_lyra" - }, - { - "label": "feat_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L503", - "id": "locales_ar_plan_feat_mail", - "community": 82, - "norm_label": "feat_mail" - }, - { - "label": "feat_community", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L504", - "id": "locales_ar_plan_feat_community", - "community": 82, - "norm_label": "feat_community" - }, - { - "label": "feat_legend_all_pro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L505", - "id": "locales_ar_plan_feat_legend_all_pro", - "community": 82, - "norm_label": "feat_legend_all_pro" - }, - { - "label": "feat_legend_multi_device", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L506", - "id": "locales_ar_plan_feat_legend_multi_device", - "community": 82, - "norm_label": "feat_legend_multi_device" - }, - { - "label": "feat_legend_voice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L507", - "id": "locales_ar_plan_feat_legend_voice", - "community": 82, - "norm_label": "feat_legend_voice" - }, - { - "label": "disclaimer", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L508", - "id": "locales_ar_plan_disclaimer", - "community": 82, - "norm_label": "disclaimer" - }, - { - "label": "hardship_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L509", - "id": "locales_ar_plan_hardship_link", - "community": 82, - "norm_label": "hardship_link" - }, - { - "label": "payment", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L511", - "id": "locales_ar_onboarding_payment", - "community": 871, - "norm_label": "payment" - }, - { - "label": "cta_dev_skip", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L512", - "id": "locales_ar_payment_cta_dev_skip", - "community": 871, - "norm_label": "cta_dev_skip" - }, - { - "label": "dev_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L513", - "id": "locales_ar_payment_dev_label", - "community": 871, - "norm_label": "dev_label" - }, - { - "label": "dev_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L514", - "id": "locales_ar_payment_dev_body", - "community": 871, - "norm_label": "dev_body" - }, - { - "label": "protection", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L516", - "id": "locales_ar_onboarding_protection", - "community": 55, - "norm_label": "protection" - }, - { - "label": "cta_primary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L517", - "id": "locales_ar_protection_cta_primary", - "community": 55, - "norm_label": "cta_primary" - }, - { - "label": "cta_open_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L518", - "id": "locales_ar_protection_cta_open_a11y", - "community": 55, - "norm_label": "cta_open_a11y" - }, - { - "label": "cta_check_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L519", - "id": "locales_ar_protection_cta_check_a11y", - "community": 55, - "norm_label": "cta_check_a11y" - }, - { - "label": "url_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L520", - "id": "locales_ar_protection_url_title", - "community": 55, - "norm_label": "url_title" - }, - { - "label": "lock_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L521", - "id": "locales_ar_protection_lock_title", - "community": 55, - "norm_label": "lock_title" - }, - { - "label": "url_title_android", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L522", - "id": "locales_ar_protection_url_title_android", - "community": 55, - "norm_label": "url_title_android" - }, - { - "label": "lock_title_android", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L523", - "id": "locales_ar_protection_lock_title_android", - "community": 55, - "norm_label": "lock_title_android" - }, - { - "label": "tap_marker_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L524", - "id": "locales_ar_protection_tap_marker_hint", - "community": 55, - "norm_label": "tap_marker_hint" - }, - { - "label": "tap_marker_hint_android_vpn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L525", - "id": "locales_ar_protection_tap_marker_hint_android_vpn", - "community": 55, - "norm_label": "tap_marker_hint_android_vpn" - }, - { - "label": "tap_marker_hint_android_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L526", - "id": "locales_ar_protection_tap_marker_hint_android_a11y", - "community": 55, - "norm_label": "tap_marker_hint_android_a11y" - }, - { - "label": "android_a11y_pending_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L527", - "id": "locales_ar_protection_android_a11y_pending_title", - "community": 55, - "norm_label": "android_a11y_pending_title" - }, - { - "label": "android_a11y_pending_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L528", - "id": "locales_ar_protection_android_a11y_pending_body", - "community": 55, - "norm_label": "android_a11y_pending_body" - }, - { - "label": "dialog_button_allow", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L529", - "id": "locales_ar_protection_dialog_button_allow", - "community": 55, - "norm_label": "dialog_button_allow" - }, - { - "label": "dialog_button_continue", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L530", - "id": "locales_ar_protection_dialog_button_continue", - "community": 55, - "norm_label": "dialog_button_continue" - }, - { - "label": "dialog_button_vpn_ok", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L531", - "id": "locales_ar_protection_dialog_button_vpn_ok", - "community": 55, - "norm_label": "dialog_button_vpn_ok" - }, - { - "label": "dialog_button_a11y_toggle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L532", - "id": "locales_ar_protection_dialog_button_a11y_toggle", - "community": 55, - "norm_label": "dialog_button_a11y_toggle" - }, - { - "label": "android_restart_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L533", - "id": "locales_ar_protection_android_restart_title", - "community": 55, - "norm_label": "android_restart_title" - }, - { - "label": "android_restart_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L534", - "id": "locales_ar_protection_android_restart_body", - "community": 55, - "norm_label": "android_restart_body" - }, - { - "label": "android_restart_now", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L535", - "id": "locales_ar_protection_android_restart_now", - "community": 55, - "norm_label": "android_restart_now" - }, - { - "label": "android_restart_later", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L536", - "id": "locales_ar_protection_android_restart_later", - "community": 55, - "norm_label": "android_restart_later" - }, - { - "label": "applock_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L537", - "id": "locales_ar_protection_applock_failed_title", - "community": 55, - "norm_label": "applock_failed_title" - }, - { - "label": "de.json", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L1", - "id": "apps_rebreak_native_locales_de_json", - "community": 605, - "norm_label": "de.json" - }, - { - "label": "common", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L2", - "id": "locales_de_common", - "community": 879, - "norm_label": "common" - }, - { - "label": "loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L3", - "id": "locales_de_common_loading", - "community": 879, - "norm_label": "loading" - }, - { - "label": "cancel", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L4", - "id": "locales_de_common_cancel", - "community": 879, - "norm_label": "cancel" - }, - { - "label": "continue", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L5", - "id": "locales_de_common_continue", - "community": 879, - "norm_label": "continue" - }, - { - "label": "back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L6", - "id": "locales_de_common_back", - "community": 879, - "norm_label": "back" - }, - { - "label": "error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L7", - "id": "locales_de_common_error", - "community": 879, - "norm_label": "error" - }, - { - "label": "success", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L8", - "id": "locales_de_common_success", - "community": 879, - "norm_label": "success" - }, - { - "label": "ok", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L9", - "id": "locales_de_common_ok", - "community": 879, - "norm_label": "ok" - }, - { - "label": "confirm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L10", - "id": "locales_de_common_confirm", - "community": 879, - "norm_label": "confirm" - }, - { - "label": "retry", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L11", - "id": "locales_de_common_retry", - "community": 879, - "norm_label": "retry" - }, - { - "label": "unknown_error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L12", - "id": "locales_de_common_unknown_error", - "community": 879, - "norm_label": "unknown_error" - }, - { - "label": "auth", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L14", - "id": "locales_de_auth", - "community": 24, - "norm_label": "auth" - }, - { - "label": "welcomeBack", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L15", - "id": "locales_de_auth_welcomeback", - "community": 413, - "norm_label": "welcomeback" - }, - { - "label": "signinSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L16", - "id": "locales_de_auth_signinsubtitle", - "community": 24, - "norm_label": "signinsubtitle" - }, - { - "label": "signin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L17", - "id": "locales_de_auth_signin", - "community": 24, - "norm_label": "signin" - }, - { - "label": "signingIn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L18", - "id": "locales_de_auth_signingin", - "community": 24, - "norm_label": "signingin" - }, - { - "label": "signup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L19", - "id": "locales_de_auth_signup", - "community": 24, - "norm_label": "signup" - }, - { - "label": "signupTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L20", - "id": "locales_de_auth_signuptitle", - "community": 24, - "norm_label": "signuptitle" - }, - { - "label": "signupSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L21", - "id": "locales_de_auth_signupsubtitle", - "community": 24, - "norm_label": "signupsubtitle" - }, - { - "label": "signOut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L22", - "id": "locales_de_auth_signout", - "community": 24, - "norm_label": "signout" - }, - { - "label": "email", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L23", - "id": "locales_de_auth_email", - "community": 24, - "norm_label": "email" - }, - { - "label": "emailPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L24", - "id": "locales_de_auth_emailplaceholder", - "community": 24, - "norm_label": "emailplaceholder" - }, - { - "label": "emailRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L25", - "id": "locales_de_auth_emailrequired", - "community": 24, - "norm_label": "emailrequired" - }, - { - "label": "password", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L26", - "id": "locales_de_auth_password", - "community": 24, - "norm_label": "password" - }, - { - "label": "passwordPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L27", - "id": "locales_de_auth_passwordplaceholder", - "community": 24, - "norm_label": "passwordplaceholder" - }, - { - "label": "passwordRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L28", - "id": "locales_de_auth_passwordrequired", - "community": 24, - "norm_label": "passwordrequired" - }, - { - "label": "passwordMin8", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L29", - "id": "locales_de_auth_passwordmin8", - "community": 24, - "norm_label": "passwordmin8" - }, - { - "label": "newPassword", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L30", - "id": "locales_de_auth_newpassword", - "community": 24, - "norm_label": "newpassword" - }, - { - "label": "nickname", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L31", - "id": "locales_de_auth_nickname", - "community": 49, - "norm_label": "nickname" - }, - { - "label": "nicknamePlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L32", - "id": "locales_de_auth_nicknameplaceholder", - "community": 24, - "norm_label": "nicknameplaceholder" - }, - { - "label": "noAccount", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L33", - "id": "locales_de_auth_noaccount", - "community": 24, - "norm_label": "noaccount" - }, - { - "label": "alreadyRegistered", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L34", - "id": "locales_de_auth_alreadyregistered", - "community": 24, - "norm_label": "alreadyregistered" - }, - { - "label": "fillRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L35", - "id": "locales_de_auth_fillrequired", - "community": 24, - "norm_label": "fillrequired" - }, - { - "label": "googleSignin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L36", - "id": "locales_de_auth_googlesignin", - "community": 24, - "norm_label": "googlesignin" - }, - { - "label": "appleSignin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L37", - "id": "locales_de_auth_applesignin", - "community": 24, - "norm_label": "applesignin" - }, - { - "label": "googleSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L38", - "id": "locales_de_auth_googlesignup", - "community": 24, - "norm_label": "googlesignup" - }, - { - "label": "appleSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L39", - "id": "locales_de_auth_applesignup", - "community": 24, - "norm_label": "applesignup" - }, - { - "label": "orWithEmail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L40", - "id": "locales_de_auth_orwithemail", - "community": 24, - "norm_label": "orwithemail" - }, - { - "label": "forgotPassword", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L41", - "id": "locales_de_auth_forgotpassword", - "community": 24, - "norm_label": "forgotpassword" - }, - { - "label": "resetPasswordTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L42", - "id": "locales_de_auth_resetpasswordtitle", - "community": 24, - "norm_label": "resetpasswordtitle" - }, - { - "label": "resetPasswordSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L43", - "id": "locales_de_auth_resetpasswordsubtitle", - "community": 24, - "norm_label": "resetpasswordsubtitle" - }, - { - "label": "resetPasswordSend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L44", - "id": "locales_de_auth_resetpasswordsend", - "community": 24, - "norm_label": "resetpasswordsend" - }, - { - "label": "resetPasswordSent", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L45", - "id": "locales_de_auth_resetpasswordsent", - "community": 24, - "norm_label": "resetpasswordsent" - }, - { - "label": "resetPasswordSentDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L46", - "id": "locales_de_auth_resetpasswordsentdesc", - "community": 24, - "norm_label": "resetpasswordsentdesc" - }, - { - "label": "resetPasswordSentDescPrefix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L47", - "id": "locales_de_auth_resetpasswordsentdescprefix", - "community": 24, - "norm_label": "resetpasswordsentdescprefix" - }, - { - "label": "resetPasswordSentDescSuffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L48", - "id": "locales_de_auth_resetpasswordsentdescsuffix", - "community": 24, - "norm_label": "resetpasswordsentdescsuffix" - }, - { - "label": "backToLogin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L49", - "id": "locales_de_auth_backtologin", - "community": 24, - "norm_label": "backtologin" - }, - { - "label": "backToLoginPlain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L50", - "id": "locales_de_auth_backtologinplain", - "community": 24, - "norm_label": "backtologinplain" - }, - { - "label": "backToSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L51", - "id": "locales_de_auth_backtosignup", - "community": 24, - "norm_label": "backtosignup" - }, - { - "label": "chooseAvatar", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L52", - "id": "locales_de_auth_chooseavatar", - "community": 24, - "norm_label": "chooseavatar" - }, - { - "label": "privacyNotice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L53", - "id": "locales_de_auth_privacynotice", - "community": 24, - "norm_label": "privacynotice" - }, - { - "label": "acceptTerms", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L54", - "id": "locales_de_auth_acceptterms", - "community": 24, - "norm_label": "acceptterms" - }, - { - "label": "acceptTermsSuffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L55", - "id": "locales_de_auth_accepttermssuffix", - "community": 24, - "norm_label": "accepttermssuffix" - }, - { - "label": "termsLink", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L56", - "id": "locales_de_auth_termslink", - "community": 24, - "norm_label": "termslink" - }, - { - "label": "pleaseAcceptTerms", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L57", - "id": "locales_de_auth_pleaseacceptterms", - "community": 24, - "norm_label": "pleaseacceptterms" - }, - { - "label": "confirmEmailTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L58", - "id": "locales_de_auth_confirmemailtitle", - "community": 24, - "norm_label": "confirmemailtitle" - }, - { - "label": "confirmEmailDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L59", - "id": "locales_de_auth_confirmemaildesc", - "community": 24, - "norm_label": "confirmemaildesc" - }, - { - "label": "confirmEmailLine1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L60", - "id": "locales_de_auth_confirmemailline1", - "community": 24, - "norm_label": "confirmemailline1" - }, - { - "label": "confirmEmailLine2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L61", - "id": "locales_de_auth_confirmemailline2", - "community": 24, - "norm_label": "confirmemailline2" - }, - { - "label": "confirmBtn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L62", - "id": "locales_de_auth_confirmbtn", - "community": 24, - "norm_label": "confirmbtn" - }, - { - "label": "confirmed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L63", - "id": "locales_de_auth_confirmed", - "community": 24, - "norm_label": "confirmed" - }, - { - "label": "confirming", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L64", - "id": "locales_de_auth_confirming", - "community": 24, - "norm_label": "confirming" - }, - { - "label": "confirmSuccess", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L65", - "id": "locales_de_auth_confirmsuccess", - "community": 24, - "norm_label": "confirmsuccess" - }, - { - "label": "confirmTimeout", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L66", - "id": "locales_de_auth_confirmtimeout", - "community": 24, - "norm_label": "confirmtimeout" - }, - { - "label": "confirmFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L67", - "id": "locales_de_auth_confirmfailed", - "community": 24, - "norm_label": "confirmfailed" - }, - { - "label": "resend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L68", - "id": "locales_de_auth_resend", - "community": 24, - "norm_label": "resend" - }, - { - "label": "resendCooldown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L69", - "id": "locales_de_auth_resendcooldown", - "community": 24, - "norm_label": "resendcooldown" - }, - { - "label": "noCode", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L70", - "id": "locales_de_auth_nocode", - "community": 24, - "norm_label": "nocode" - }, - { - "label": "deviceLimitTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L71", - "id": "locales_de_auth_devicelimittitle", - "community": 24, - "norm_label": "devicelimittitle" - }, - { - "label": "deviceLimitDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L72", - "id": "locales_de_auth_devicelimitdesc", - "community": 29, - "norm_label": "devicelimitdesc" - }, - { - "label": "deviceLimitUpgrade", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L73", - "id": "locales_de_auth_devicelimitupgrade", - "community": 24, - "norm_label": "devicelimitupgrade" - }, - { - "label": "toLogin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L74", - "id": "locales_de_auth_tologin", - "community": 24, - "norm_label": "tologin" - }, - { - "label": "oauthFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L75", - "id": "locales_de_auth_oauthfailed", - "community": 24, - "norm_label": "oauthfailed" - }, - { - "label": "loginFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L76", - "id": "locales_de_auth_loginfailed", - "community": 24, - "norm_label": "loginfailed" - }, - { - "label": "registerFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L77", - "id": "locales_de_auth_registerfailed", - "community": 24, - "norm_label": "registerfailed" - }, - { - "label": "device_locked_headline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L78", - "id": "locales_de_auth_device_locked_headline", - "community": 24, - "norm_label": "device_locked_headline" - }, - { - "label": "device_locked_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L79", - "id": "locales_de_auth_device_locked_body", - "community": 24, - "norm_label": "device_locked_body" - }, - { - "label": "device_locked_countdown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L80", - "id": "locales_de_auth_device_locked_countdown", - "community": 24, - "norm_label": "device_locked_countdown" - }, - { - "label": "device_locked_email_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L81", - "id": "locales_de_auth_device_locked_email_hint", - "community": 24, - "norm_label": "device_locked_email_hint" - }, - { - "label": "device_locked_use_original", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L82", - "id": "locales_de_auth_device_locked_use_original", - "community": 24, - "norm_label": "device_locked_use_original" - }, - { - "label": "device_locked_back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L83", - "id": "locales_de_auth_device_locked_back", - "community": 24, - "norm_label": "device_locked_back" - }, - { - "label": "resetOtpTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L84", - "id": "locales_de_auth_resetotptitle", - "community": 24, - "norm_label": "resetotptitle" - }, - { - "label": "resetOtpLine1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L85", - "id": "locales_de_auth_resetotpline1", - "community": 24, - "norm_label": "resetotpline1" - }, - { - "label": "resetOtpLine2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L86", - "id": "locales_de_auth_resetotpline2", - "community": 24, - "norm_label": "resetotpline2" - }, - { - "label": "resetOtpConfirmBtn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L87", - "id": "locales_de_auth_resetotpconfirmbtn", - "community": 24, - "norm_label": "resetotpconfirmbtn" - }, - { - "label": "resetOtpResend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L88", - "id": "locales_de_auth_resetotpresend", - "community": 24, - "norm_label": "resetotpresend" - }, - { - "label": "resetOtpBackToForgot", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L89", - "id": "locales_de_auth_resetotpbacktoforgot", - "community": 24, - "norm_label": "resetotpbacktoforgot" - }, - { - "label": "newPasswordTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L90", - "id": "locales_de_auth_newpasswordtitle", - "community": 24, - "norm_label": "newpasswordtitle" - }, - { - "label": "newPasswordSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L91", - "id": "locales_de_auth_newpasswordsubtitle", - "community": 24, - "norm_label": "newpasswordsubtitle" - }, - { - "label": "newPasswordPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L92", - "id": "locales_de_auth_newpasswordplaceholder", - "community": 24, - "norm_label": "newpasswordplaceholder" - }, - { - "label": "newPasswordConfirmPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L93", - "id": "locales_de_auth_newpasswordconfirmplaceholder", - "community": 24, - "norm_label": "newpasswordconfirmplaceholder" - }, - { - "label": "newPasswordSave", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L94", - "id": "locales_de_auth_newpasswordsave", - "community": 24, - "norm_label": "newpasswordsave" - }, - { - "label": "newPasswordSaved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L95", - "id": "locales_de_auth_newpasswordsaved", - "community": 24, - "norm_label": "newpasswordsaved" - }, - { - "label": "newPasswordMismatch", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L96", - "id": "locales_de_auth_newpasswordmismatch", - "community": 24, - "norm_label": "newpasswordmismatch" - }, - { - "label": "newPasswordCancelLink", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L97", - "id": "locales_de_auth_newpasswordcancellink", - "community": 24, - "norm_label": "newpasswordcancellink" - }, - { - "label": "landing", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L99", - "id": "locales_de_landing", - "community": 605, - "norm_label": "landing" - }, - { - "label": "appName", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L100", - "id": "locales_de_landing_appname", - "community": 605, - "norm_label": "appname" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L101", - "id": "locales_de_landing_tagline", - "community": 605, - "norm_label": "tagline" - }, - { - "label": "start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L102", - "id": "locales_de_landing_start", - "community": 605, - "norm_label": "start" - }, - { - "label": "splash", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L104", - "id": "locales_de_splash", - "community": 605, - "norm_label": "splash" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L105", - "id": "locales_de_splash_tagline", - "community": 605, - "norm_label": "tagline" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L106", - "id": "locales_de_splash_subtitle", - "community": 605, - "norm_label": "subtitle" - }, - { - "label": "madeInGermany", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L107", - "id": "locales_de_splash_madeingermany", - "community": 605, - "norm_label": "madeingermany" - }, - { - "label": "applock", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L109", - "id": "locales_de_applock", - "community": 605, - "norm_label": "applock" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L110", - "id": "locales_de_applock_title", - "community": 605, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L111", - "id": "locales_de_applock_subtitle", - "community": 605, - "norm_label": "subtitle" - }, - { - "label": "unlock", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L112", - "id": "locales_de_applock_unlock", - "community": 605, - "norm_label": "unlock" - }, - { - "label": "prompt", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L113", - "id": "locales_de_applock_prompt", - "community": 605, - "norm_label": "prompt" - }, - { - "label": "signOut_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L114", - "id": "locales_de_applock_signout_title", - "community": 605, - "norm_label": "signout_title" - }, - { - "label": "signOut_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L115", - "id": "locales_de_applock_signout_body", - "community": 605, - "norm_label": "signout_body" - }, - { - "label": "appHeader", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L117", - "id": "locales_de_appheader", - "community": 27, - "norm_label": "appheader" - }, - { - "label": "appName", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L118", - "id": "locales_de_appheader_appname", - "community": 27, - "norm_label": "appname" - }, - { - "label": "sosLabel", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L119", - "id": "locales_de_appheader_soslabel", - "community": 27, - "norm_label": "soslabel" - }, - { - "label": "sosTagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L120", - "id": "locales_de_appheader_sostagline", - "community": 27, - "norm_label": "sostagline" - }, - { - "label": "sosSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L121", - "id": "locales_de_appheader_sossubtitle", - "community": 27, - "norm_label": "sossubtitle" - }, - { - "label": "editProfile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L122", - "id": "locales_de_appheader_editprofile", - "community": 27, - "norm_label": "editprofile" - }, - { - "label": "settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L123", - "id": "locales_de_appheader_settings", - "community": 872, - "norm_label": "settings" - }, - { - "label": "signOut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L124", - "id": "locales_de_appheader_signout", - "community": 27, - "norm_label": "signout" - }, - { - "label": "headerMenu", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L126", - "id": "locales_de_headermenu", - "community": 872, - "norm_label": "headermenu" - }, - { - "label": "profile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L127", - "id": "locales_de_headermenu_profile", - "community": 872, - "norm_label": "profile" - }, - { - "label": "settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L128", - "id": "locales_de_headermenu_settings", - "community": 872, - "norm_label": "settings" - }, - { - "label": "games", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L129", - "id": "locales_de_headermenu_games", - "community": 872, - "norm_label": "games" - }, - { - "label": "debug", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L130", - "id": "locales_de_headermenu_debug", - "community": 872, - "norm_label": "debug" - }, - { - "label": "logout", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L131", - "id": "locales_de_headermenu_logout", - "community": 872, - "norm_label": "logout" - }, - { - "label": "tabs", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L133", - "id": "locales_de_tabs", - "community": 872, - "norm_label": "tabs" - }, - { - "label": "home", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L134", - "id": "locales_de_tabs_home", - "community": 872, - "norm_label": "home" - }, - { - "label": "chat", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L135", - "id": "locales_de_tabs_chat", - "community": 872, - "norm_label": "chat" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L136", - "id": "locales_de_tabs_coach", - "community": 872, - "norm_label": "coach" - }, - { - "label": "blocker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L137", - "id": "locales_de_tabs_blocker", - "community": 872, - "norm_label": "blocker" - }, - { - "label": "mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L138", - "id": "locales_de_tabs_mail", - "community": 872, - "norm_label": "mail" - }, - { - "label": "profile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L139", - "id": "locales_de_tabs_profile", - "community": 872, - "norm_label": "profile" - }, - { - "label": "games", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L141", - "id": "locales_de_games", - "community": 605, - "norm_label": "games" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L142", - "id": "locales_de_games_title", - "community": 605, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L143", - "id": "locales_de_games_subtitle", - "community": 605, - "norm_label": "subtitle" - }, - { - "label": "back_to_picker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L144", - "id": "locales_de_games_back_to_picker", - "community": 605, - "norm_label": "back_to_picker" - }, - { - "label": "last_score", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L145", - "id": "locales_de_games_last_score", - "community": 605, - "norm_label": "last_score" - }, - { - "label": "skeleton_footer", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L146", - "id": "locales_de_games_skeleton_footer", - "community": 605, - "norm_label": "skeleton_footer" - }, - { - "label": "home", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L148", - "id": "locales_de_home", - "community": 69, - "norm_label": "home" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L149", - "id": "locales_de_home_tagline", - "community": 605, - "norm_label": "tagline" - }, - { - "label": "start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L150", - "id": "locales_de_home_start", - "community": 69, - "norm_label": "start" - }, - { - "label": "greeting_morning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L151", - "id": "locales_de_home_greeting_morning", - "community": 69, - "norm_label": "greeting_morning" - }, - { - "label": "greeting_day", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L152", - "id": "locales_de_home_greeting_day", - "community": 69, - "norm_label": "greeting_day" - }, - { - "label": "greeting_evening", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L153", - "id": "locales_de_home_greeting_evening", - "community": 69, - "norm_label": "greeting_evening" - }, - { - "label": "streak_days_one", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L154", - "id": "locales_de_home_streak_days_one", - "community": 69, - "norm_label": "streak_days_one" - }, - { - "label": "streak_days_other", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L155", - "id": "locales_de_home_streak_days_other", - "community": 69, - "norm_label": "streak_days_other" - }, - { - "label": "streak_start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L156", - "id": "locales_de_home_streak_start", - "community": 69, - "norm_label": "streak_start" - }, - { - "label": "quote_of_day", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L157", - "id": "locales_de_home_quote_of_day", - "community": 69, - "norm_label": "quote_of_day" - }, - { - "label": "quick_access", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L158", - "id": "locales_de_home_quick_access", - "community": 69, - "norm_label": "quick_access" - }, - { - "label": "stats_urges", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L159", - "id": "locales_de_home_stats_urges", - "community": 69, - "norm_label": "stats_urges" - }, - { - "label": "stats_chats", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L160", - "id": "locales_de_home_stats_chats", - "community": 69, - "norm_label": "stats_chats" - }, - { - "label": "stats_mails", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L161", - "id": "locales_de_home_stats_mails", - "community": 69, - "norm_label": "stats_mails" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L163", - "id": "locales_de_coach", - "community": 413, - "norm_label": "coach" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L164", - "id": "locales_de_coach_title", - "community": 413, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L165", - "id": "locales_de_coach_subtitle", - "community": 413, - "norm_label": "subtitle" - }, - { - "label": "welcome", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L166", - "id": "locales_de_coach_welcome", - "community": 413, - "norm_label": "welcome" - }, - { - "label": "input_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L167", - "id": "locales_de_coach_input_placeholder", - "community": 413, - "norm_label": "input_placeholder" - }, - { - "label": "new_chat", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L168", - "id": "locales_de_coach_new_chat", - "community": 413, - "norm_label": "new_chat" - }, - { - "label": "lyra", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L169", - "id": "locales_de_coach_lyra", - "community": 49, - "norm_label": "lyra" - }, - { - "label": "modeBadge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L170", - "id": "locales_de_coach_modebadge", - "community": 413, - "norm_label": "modebadge" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L171", - "id": "locales_de_modebadge_coach", - "community": 413, - "norm_label": "coach" - }, - { - "label": "sos", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L172", - "id": "locales_de_modebadge_sos", - "community": 413, - "norm_label": "sos" - }, - { - "label": "placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L174", - "id": "locales_de_coach_placeholder", - "community": 413, - "norm_label": "placeholder" - }, - { - "label": "speaking", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L175", - "id": "locales_de_coach_speaking", - "community": 413, - "norm_label": "speaking" - }, - { - "label": "recording", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L176", - "id": "locales_de_coach_recording", - "community": 413, - "norm_label": "recording" - }, - { - "label": "transcribing", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L177", - "id": "locales_de_coach_transcribing", - "community": 413, - "norm_label": "transcribing" - }, - { - "label": "feedback_saved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L178", - "id": "locales_de_coach_feedback_saved", - "community": 413, - "norm_label": "feedback_saved" - }, - { - "label": "welcome_back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L179", - "id": "locales_de_coach_welcome_back", - "community": 413, - "norm_label": "welcome_back" - }, - { - "label": "online", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L180", - "id": "locales_de_coach_online", - "community": 413, - "norm_label": "online" - }, - { - "label": "thinking", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L181", - "id": "locales_de_coach_thinking", - "community": 413, - "norm_label": "thinking" - }, - { - "label": "error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L182", - "id": "locales_de_coach_error", - "community": 879, - "norm_label": "error" - }, - { - "label": "crisis_bar_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L183", - "id": "locales_de_coach_crisis_bar_label", - "community": 413, - "norm_label": "crisis_bar_label" - }, - { - "label": "blocker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L185", - "id": "locales_de_blocker", - "community": 1, - "norm_label": "blocker" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L186", - "id": "locales_de_blocker_title", - "community": 1, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L187", - "id": "locales_de_blocker_subtitle", - "community": 1, - "norm_label": "subtitle" - }, - { - "label": "status_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L188", - "id": "locales_de_blocker_status_active", - "community": 1, - "norm_label": "status_active" - }, - { - "label": "status_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L189", - "id": "locales_de_blocker_status_inactive", - "community": 1, - "norm_label": "status_inactive" - }, - { - "label": "filter_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L190", - "id": "locales_de_blocker_filter_label", - "community": 1, - "norm_label": "filter_label" - }, - { - "label": "filter_active_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L191", - "id": "locales_de_blocker_filter_active_desc", - "community": 1, - "norm_label": "filter_active_desc" - }, - { - "label": "filter_inactive_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L192", - "id": "locales_de_blocker_filter_inactive_desc", - "community": 1, - "norm_label": "filter_inactive_desc" - }, - { - "label": "tamper_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L193", - "id": "locales_de_blocker_tamper_title", - "community": 1, - "norm_label": "tamper_title" - }, - { - "label": "tamper_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L194", - "id": "locales_de_blocker_tamper_desc", - "community": 1, - "norm_label": "tamper_desc" - }, - { - "label": "custom_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L195", - "id": "locales_de_blocker_custom_domains", - "community": 22, - "norm_label": "custom_domains" - }, - { - "label": "add_domain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L196", - "id": "locales_de_blocker_add_domain", - "community": 1, - "norm_label": "add_domain" - }, - { - "label": "help_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L197", - "id": "locales_de_blocker_help_link", - "community": 1, - "norm_label": "help_link" - }, - { - "label": "status_approved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L198", - "id": "locales_de_blocker_status_approved", - "community": 1, - "norm_label": "status_approved" - }, - { - "label": "status_rejected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L199", - "id": "locales_de_blocker_status_rejected", - "community": 1, - "norm_label": "status_rejected" - }, - { - "label": "status_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L200", - "id": "locales_de_blocker_status_pending", - "community": 1, - "norm_label": "status_pending" - }, - { - "label": "add_sheet_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L201", - "id": "locales_de_blocker_add_sheet_title", - "community": 1, - "norm_label": "add_sheet_title" - }, - { - "label": "add_sheet_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L202", - "id": "locales_de_blocker_add_sheet_label", - "community": 1, - "norm_label": "add_sheet_label" - }, - { - "label": "add_sheet_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L203", - "id": "locales_de_blocker_add_sheet_placeholder", - "community": 1, - "norm_label": "add_sheet_placeholder" - }, - { - "label": "add_sheet_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L204", - "id": "locales_de_blocker_add_sheet_invalid", - "community": 1, - "norm_label": "add_sheet_invalid" - }, - { - "label": "add_sheet_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L205", - "id": "locales_de_blocker_add_sheet_help", - "community": 1, - "norm_label": "add_sheet_help" - }, - { - "label": "preview_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L206", - "id": "locales_de_blocker_preview_web", - "community": 1, - "norm_label": "preview_web" - }, - { - "label": "preview_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L207", - "id": "locales_de_blocker_preview_mail", - "community": 1, - "norm_label": "preview_mail" - }, - { - "label": "preview_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L208", - "id": "locales_de_blocker_preview_invalid", - "community": 1, - "norm_label": "preview_invalid" - }, - { - "label": "custom_filter_overview_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L209", - "id": "locales_de_blocker_custom_filter_overview_title", - "community": 1, - "norm_label": "custom_filter_overview_title" - }, - { - "label": "custom_filter_overview_count", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L210", - "id": "locales_de_blocker_custom_filter_overview_count", - "community": 1, - "norm_label": "custom_filter_overview_count" - }, - { - "label": "add_sheet_warning_free", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L211", - "id": "locales_de_blocker_add_sheet_warning_free", - "community": 1, - "norm_label": "add_sheet_warning_free" - }, - { - "label": "add_sheet_warning_pro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L212", - "id": "locales_de_blocker_add_sheet_warning_pro", - "community": 1, - "norm_label": "add_sheet_warning_pro" - }, - { - "label": "add_sheet_confirm_permanent", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L213", - "id": "locales_de_blocker_add_sheet_confirm_permanent", - "community": 1, - "norm_label": "add_sheet_confirm_permanent" - }, - { - "label": "add_sheet_add_failed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L214", - "id": "locales_de_blocker_add_sheet_add_failed", - "community": 1, - "norm_label": "add_sheet_add_failed" - }, - { - "label": "add_sheet_already_global", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L215", - "id": "locales_de_blocker_add_sheet_already_global", - "community": 1, - "norm_label": "add_sheet_already_global" - }, - { - "label": "add_sheet_already_protected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L216", - "id": "locales_de_blocker_add_sheet_already_protected", - "community": 1, - "norm_label": "add_sheet_already_protected" - }, - { - "label": "add_sheet_in_global_not_vip", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L217", - "id": "locales_de_blocker_add_sheet_in_global_not_vip", - "community": 1, - "norm_label": "add_sheet_in_global_not_vip" - }, - { - "label": "add_sheet_add_to_vip_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L218", - "id": "locales_de_blocker_add_sheet_add_to_vip_cta", - "community": 1, - "norm_label": "add_sheet_add_to_vip_cta" - }, - { - "label": "cooldown_banner_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L219", - "id": "locales_de_blocker_cooldown_banner_title", - "community": 1, - "norm_label": "cooldown_banner_title" - }, - { - "label": "deactivation_actionsheet_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L220", - "id": "locales_de_blocker_deactivation_actionsheet_title", - "community": 1, - "norm_label": "deactivation_actionsheet_title" - }, - { - "label": "deactivation_actionsheet_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L221", - "id": "locales_de_blocker_deactivation_actionsheet_message", - "community": 1, - "norm_label": "deactivation_actionsheet_message" - }, - { - "label": "deactivation_start_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L222", - "id": "locales_de_blocker_deactivation_start_cta", - "community": 1, - "norm_label": "deactivation_start_cta" - }, - { - "label": "deactivation_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L223", - "id": "locales_de_blocker_deactivation_failed_msg", - "community": 1, - "norm_label": "deactivation_failed_msg" - }, - { - "label": "deactivation_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L224", - "id": "locales_de_blocker_deactivation_heading", - "community": 1, - "norm_label": "deactivation_heading" - }, - { - "label": "deactivation_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L225", - "id": "locales_de_blocker_deactivation_title", - "community": 1, - "norm_label": "deactivation_title" - }, - { - "label": "deactivation_intro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L226", - "id": "locales_de_blocker_deactivation_intro", - "community": 1, - "norm_label": "deactivation_intro" - }, - { - "label": "deactivation_bullet1_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L227", - "id": "locales_de_blocker_deactivation_bullet1_title", - "community": 1, - "norm_label": "deactivation_bullet1_title" - }, - { - "label": "deactivation_bullet1_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L228", - "id": "locales_de_blocker_deactivation_bullet1_text", - "community": 1, - "norm_label": "deactivation_bullet1_text" - }, - { - "label": "deactivation_bullet2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L229", - "id": "locales_de_blocker_deactivation_bullet2_title", - "community": 1, - "norm_label": "deactivation_bullet2_title" - }, - { - "label": "deactivation_bullet2_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L230", - "id": "locales_de_blocker_deactivation_bullet2_text", - "community": 1, - "norm_label": "deactivation_bullet2_text" - }, - { - "label": "deactivation_bullet3_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L231", - "id": "locales_de_blocker_deactivation_bullet3_title", - "community": 1, - "norm_label": "deactivation_bullet3_title" - }, - { - "label": "deactivation_bullet3_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L232", - "id": "locales_de_blocker_deactivation_bullet3_text", - "community": 1, - "norm_label": "deactivation_bullet3_text" - }, - { - "label": "deactivation_breathe_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L233", - "id": "locales_de_blocker_deactivation_breathe_cta", - "community": 1, - "norm_label": "deactivation_breathe_cta" - }, - { - "label": "deactivation_start_anyway", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L234", - "id": "locales_de_blocker_deactivation_start_anyway", - "community": 1, - "norm_label": "deactivation_start_anyway" - }, - { - "label": "deactivation_starting", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L235", - "id": "locales_de_blocker_deactivation_starting", - "community": 1, - "norm_label": "deactivation_starting" - }, - { - "label": "deactivation_cancel_failed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L236", - "id": "locales_de_blocker_deactivation_cancel_failed", - "community": 1, - "norm_label": "deactivation_cancel_failed" - }, - { - "label": "domain_section_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L237", - "id": "locales_de_blocker_domain_section_title", - "community": 1, - "norm_label": "domain_section_title" - }, - { - "label": "domain_add_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L238", - "id": "locales_de_blocker_domain_add_a11y", - "community": 1, - "norm_label": "domain_add_a11y" - }, - { - "label": "domain_limit_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L239", - "id": "locales_de_blocker_domain_limit_title", - "community": 1, - "norm_label": "domain_limit_title" - }, - { - "label": "domain_limit_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L240", - "id": "locales_de_blocker_domain_limit_desc", - "community": 1, - "norm_label": "domain_limit_desc" - }, - { - "label": "domain_empty", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L241", - "id": "locales_de_blocker_domain_empty", - "community": 1, - "norm_label": "domain_empty" - }, - { - "label": "domain_badge_voting", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L242", - "id": "locales_de_blocker_domain_badge_voting", - "community": 1, - "norm_label": "domain_badge_voting" - }, - { - "label": "domain_badge_pruefung", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L243", - "id": "locales_de_blocker_domain_badge_pruefung", - "community": 1, - "norm_label": "domain_badge_pruefung" - }, - { - "label": "domain_badge_rejected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L244", - "id": "locales_de_blocker_domain_badge_rejected", - "community": 1, - "norm_label": "domain_badge_rejected" - }, - { - "label": "domain_badge_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L245", - "id": "locales_de_blocker_domain_badge_active", - "community": 1, - "norm_label": "domain_badge_active" - }, - { - "label": "domain_btn_freigeben", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L246", - "id": "locales_de_blocker_domain_btn_freigeben", - "community": 1, - "norm_label": "domain_btn_freigeben" - }, - { - "label": "domain_btn_erneut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L247", - "id": "locales_de_blocker_domain_btn_erneut", - "community": 1, - "norm_label": "domain_btn_erneut" - }, - { - "label": "domain_btn_in_abstimmung", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L248", - "id": "locales_de_blocker_domain_btn_in_abstimmung", - "community": 1, - "norm_label": "domain_btn_in_abstimmung" - }, - { - "label": "domain_btn_rebreak_prueft", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L249", - "id": "locales_de_blocker_domain_btn_rebreak_prueft", - "community": 1, - "norm_label": "domain_btn_rebreak_prueft" - }, - { - "label": "domain_confirm_legend_resubmit", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L250", - "id": "locales_de_blocker_domain_confirm_legend_resubmit", - "community": 1, - "norm_label": "domain_confirm_legend_resubmit" - }, - { - "label": "domain_confirm_legend_first", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L251", - "id": "locales_de_blocker_domain_confirm_legend_first", - "community": 1, - "norm_label": "domain_confirm_legend_first" - }, - { - "label": "domain_confirm_community_resubmit", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L252", - "id": "locales_de_blocker_domain_confirm_community_resubmit", - "community": 1, - "norm_label": "domain_confirm_community_resubmit" - }, - { - "label": "domain_confirm_community_first", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L253", - "id": "locales_de_blocker_domain_confirm_community_first", - "community": 1, - "norm_label": "domain_confirm_community_first" - }, - { - "label": "domain_confirm_legend_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L254", - "id": "locales_de_blocker_domain_confirm_legend_message", - "community": 1, - "norm_label": "domain_confirm_legend_message" - }, - { - "label": "domain_confirm_community_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L255", - "id": "locales_de_blocker_domain_confirm_community_message", - "community": 1, - "norm_label": "domain_confirm_community_message" - }, - { - "label": "domain_success_legend_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L256", - "id": "locales_de_blocker_domain_success_legend_title", - "community": 1, - "norm_label": "domain_success_legend_title" - }, - { - "label": "domain_success_community_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L257", - "id": "locales_de_blocker_domain_success_community_title", - "community": 1, - "norm_label": "domain_success_community_title" - }, - { - "label": "domain_success_legend_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L258", - "id": "locales_de_blocker_domain_success_legend_message", - "community": 1, - "norm_label": "domain_success_legend_message" - }, - { - "label": "domain_success_community_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L259", - "id": "locales_de_blocker_domain_success_community_message", - "community": 1, - "norm_label": "domain_success_community_message" - }, - { - "label": "upgrade_alert_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L260", - "id": "locales_de_blocker_upgrade_alert_title", - "community": 1, - "norm_label": "upgrade_alert_title" - }, - { - "label": "upgrade_alert_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L261", - "id": "locales_de_blocker_upgrade_alert_desc", - "community": 1, - "norm_label": "upgrade_alert_desc" - }, - { - "label": "protection_card_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L262", - "id": "locales_de_blocker_protection_card_title", - "community": 1, - "norm_label": "protection_card_title" - }, - { - "label": "protection_card_locked_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L263", - "id": "locales_de_blocker_protection_card_locked_title", - "community": 1, - "norm_label": "protection_card_locked_title" - }, - { - "label": "protection_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L264", - "id": "locales_de_blocker_protection_subtitle_inactive", - "community": 1, - "norm_label": "protection_subtitle_inactive" - }, - { - "label": "protection_subtitle_cooldown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L265", - "id": "locales_de_blocker_protection_subtitle_cooldown", - "community": 1, - "norm_label": "protection_subtitle_cooldown" - }, - { - "label": "protection_subtitle_free", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L266", - "id": "locales_de_blocker_protection_subtitle_free", - "community": 1, - "norm_label": "protection_subtitle_free" - }, - { - "label": "protection_subtitle_legend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L267", - "id": "locales_de_blocker_protection_subtitle_legend", - "community": 1, - "norm_label": "protection_subtitle_legend" - }, - { - "label": "protection_subtitle_pro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L268", - "id": "locales_de_blocker_protection_subtitle_pro", - "community": 1, - "norm_label": "protection_subtitle_pro" - }, - { - "label": "protection_settings_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L269", - "id": "locales_de_blocker_protection_settings_a11y", - "community": 1, - "norm_label": "protection_settings_a11y" - }, - { - "label": "protection_stat_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L270", - "id": "locales_de_blocker_protection_stat_domains", - "community": 1, - "norm_label": "protection_stat_domains" - }, - { - "label": "protection_stat_method", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L271", - "id": "locales_de_blocker_protection_stat_method", - "community": 1, - "norm_label": "protection_stat_method" - }, - { - "label": "protection_stat_method_dns", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L272", - "id": "locales_de_blocker_protection_stat_method_dns", - "community": 1, - "norm_label": "protection_stat_method_dns" - }, - { - "label": "protection_stat_method_native", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L273", - "id": "locales_de_blocker_protection_stat_method_native", - "community": 1, - "norm_label": "protection_stat_method_native" - }, - { - "label": "protection_stat_status", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L274", - "id": "locales_de_blocker_protection_stat_status", - "community": 1, - "norm_label": "protection_stat_status" - }, - { - "label": "protection_stat_status_live", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L275", - "id": "locales_de_blocker_protection_stat_status_live", - "community": 1, - "norm_label": "protection_stat_status_live" - }, - { - "label": "activate_url_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L276", - "id": "locales_de_blocker_activate_url_failed_title", - "community": 1, - "norm_label": "activate_url_failed_title" - }, - { - "label": "activate_url_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L277", - "id": "locales_de_blocker_activate_url_failed_msg", - "community": 1, - "norm_label": "activate_url_failed_msg" - }, - { - "label": "activate_settings_btn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L278", - "id": "locales_de_blocker_activate_settings_btn", - "community": 1, - "norm_label": "activate_settings_btn" - }, - { - "label": "permission_denied", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L279", - "id": "locales_de_blocker_permission_denied", - "community": 426, - "norm_label": "permission_denied" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L280", - "id": "locales_de_permission_denied_title", - "community": 426, - "norm_label": "title" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L281", - "id": "locales_de_permission_denied_body", - "community": 426, - "norm_label": "body" - }, - { - "label": "retry_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L282", - "id": "locales_de_permission_denied_retry_cta", - "community": 426, - "norm_label": "retry_cta" - }, - { - "label": "retry_loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L283", - "id": "locales_de_permission_denied_retry_loading", - "community": 426, - "norm_label": "retry_loading" - }, - { - "label": "settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L284", - "id": "locales_de_permission_denied_settings_cta", - "community": 426, - "norm_label": "settings_cta" - }, - { - "label": "fallback_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L285", - "id": "locales_de_permission_denied_fallback_label", - "community": 426, - "norm_label": "fallback_label" - }, - { - "label": "fallback_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L286", - "id": "locales_de_permission_denied_fallback_body", - "community": 426, - "norm_label": "fallback_body" - }, - { - "label": "family_controls_error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L288", - "id": "locales_de_blocker_family_controls_error", - "community": 426, - "norm_label": "family_controls_error" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L289", - "id": "locales_de_family_controls_error_title", - "community": 426, - "norm_label": "title" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L290", - "id": "locales_de_family_controls_error_body", - "community": 426, - "norm_label": "body" - }, - { - "label": "retry_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L291", - "id": "locales_de_family_controls_error_retry_cta", - "community": 426, - "norm_label": "retry_cta" - }, - { - "label": "retry_loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L292", - "id": "locales_de_family_controls_error_retry_loading", - "community": 426, - "norm_label": "retry_loading" - }, - { - "label": "settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L293", - "id": "locales_de_family_controls_error_settings_cta", - "community": 426, - "norm_label": "settings_cta" - }, - { - "label": "fallback_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L294", - "id": "locales_de_family_controls_error_fallback_label", - "community": 426, - "norm_label": "fallback_label" - }, - { - "label": "fallback_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L295", - "id": "locales_de_family_controls_error_fallback_body", - "community": 426, - "norm_label": "fallback_body" - }, - { - "label": "protection_off_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L297", - "id": "locales_de_blocker_protection_off_title", - "community": 1, - "norm_label": "protection_off_title" - }, - { - "label": "protection_off_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L298", - "id": "locales_de_blocker_protection_off_message", - "community": 1, - "norm_label": "protection_off_message" - }, - { - "label": "reactivate_btn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L299", - "id": "locales_de_blocker_reactivate_btn", - "community": 1, - "norm_label": "reactivate_btn" - }, - { - "label": "protection_off_later", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L300", - "id": "locales_de_blocker_protection_off_later", - "community": 1, - "norm_label": "protection_off_later" - }, - { - "label": "activate_app_lock_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L301", - "id": "locales_de_blocker_activate_app_lock_failed_title", - "community": 1, - "norm_label": "activate_app_lock_failed_title" - }, - { - "label": "activate_app_lock_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L302", - "id": "locales_de_blocker_activate_app_lock_failed_msg", - "community": 1, - "norm_label": "activate_app_lock_failed_msg" - }, - { - "label": "sync_list_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L303", - "id": "locales_de_blocker_sync_list_failed_title", - "community": 1, - "norm_label": "sync_list_failed_title" - }, - { - "label": "sync_list_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L304", - "id": "locales_de_blocker_sync_list_failed_msg", - "community": 1, - "norm_label": "sync_list_failed_msg" - }, - { - "label": "activation_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L305", - "id": "locales_de_blocker_activation_failed_title", - "community": 1, - "norm_label": "activation_failed_title" - }, - { - "label": "details_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L306", - "id": "locales_de_blocker_details_done", - "community": 1, - "norm_label": "details_done" - }, - { - "label": "details_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L307", - "id": "locales_de_blocker_details_title", - "community": 1, - "norm_label": "details_title" - }, - { - "label": "details_active_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L308", - "id": "locales_de_blocker_details_active_title", - "community": 1, - "norm_label": "details_active_title" - }, - { - "label": "details_domains_blocked", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L309", - "id": "locales_de_blocker_details_domains_blocked", - "community": 1, - "norm_label": "details_domains_blocked" - }, - { - "label": "details_layers_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L310", - "id": "locales_de_blocker_details_layers_heading", - "community": 1, - "norm_label": "details_layers_heading" - }, - { - "label": "details_layer_url_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L311", - "id": "locales_de_blocker_details_layer_url_label", - "community": 1, - "norm_label": "details_layer_url_label" - }, - { - "label": "details_layer_url_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L312", - "id": "locales_de_blocker_details_layer_url_desc", - "community": 1, - "norm_label": "details_layer_url_desc" - }, - { - "label": "details_layer_applock_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L313", - "id": "locales_de_blocker_details_layer_applock_label", - "community": 1, - "norm_label": "details_layer_applock_label" - }, - { - "label": "details_layer_applock_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L314", - "id": "locales_de_blocker_details_layer_applock_desc", - "community": 1, - "norm_label": "details_layer_applock_desc" - }, - { - "label": "details_layer_vpn_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L315", - "id": "locales_de_blocker_details_layer_vpn_label", - "community": 1, - "norm_label": "details_layer_vpn_label" - }, - { - "label": "details_layer_vpn_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L316", - "id": "locales_de_blocker_details_layer_vpn_desc", - "community": 1, - "norm_label": "details_layer_vpn_desc" - }, - { - "label": "details_layer_a11y_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L317", - "id": "locales_de_blocker_details_layer_a11y_label", - "community": 1, - "norm_label": "details_layer_a11y_label" - }, - { - "label": "details_layer_a11y_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L318", - "id": "locales_de_blocker_details_layer_a11y_desc", - "community": 1, - "norm_label": "details_layer_a11y_desc" - }, - { - "label": "details_layer_tamper_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L319", - "id": "locales_de_blocker_details_layer_tamper_label", - "community": 1, - "norm_label": "details_layer_tamper_label" - }, - { - "label": "details_layer_tamper_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L320", - "id": "locales_de_blocker_details_layer_tamper_desc", - "community": 1, - "norm_label": "details_layer_tamper_desc" - }, - { - "label": "details_lyra_cta_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L321", - "id": "locales_de_blocker_details_lyra_cta_title", - "community": 1, - "norm_label": "details_lyra_cta_title" - }, - { - "label": "details_lyra_cta_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L322", - "id": "locales_de_blocker_details_lyra_cta_subtitle", - "community": 1, - "norm_label": "details_lyra_cta_subtitle" - }, - { - "label": "details_deactivate_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L323", - "id": "locales_de_blocker_details_deactivate_link", - "community": 1, - "norm_label": "details_deactivate_link" - }, - { - "label": "layers_url_filter_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L324", - "id": "locales_de_blocker_layers_url_filter_title", - "community": 1, - "norm_label": "layers_url_filter_title" - }, - { - "label": "layers_url_filter_subtitle_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L325", - "id": "locales_de_blocker_layers_url_filter_subtitle_active", - "community": 1, - "norm_label": "layers_url_filter_subtitle_active" - }, - { - "label": "layers_url_filter_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L326", - "id": "locales_de_blocker_layers_url_filter_subtitle_inactive", - "community": 1, - "norm_label": "layers_url_filter_subtitle_inactive" - }, - { - "label": "layers_app_lock_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L327", - "id": "locales_de_blocker_layers_app_lock_title", - "community": 1, - "norm_label": "layers_app_lock_title" - }, - { - "label": "layers_app_lock_subtitle_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L328", - "id": "locales_de_blocker_layers_app_lock_subtitle_active", - "community": 1, - "norm_label": "layers_app_lock_subtitle_active" - }, - { - "label": "layers_app_lock_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L329", - "id": "locales_de_blocker_layers_app_lock_subtitle_inactive", - "community": 1, - "norm_label": "layers_app_lock_subtitle_inactive" - }, - { - "label": "layers_app_lock_warning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L330", - "id": "locales_de_blocker_layers_app_lock_warning", - "community": 1, - "norm_label": "layers_app_lock_warning" - }, - { - "label": "layers_app_lock_locked_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L331", - "id": "locales_de_blocker_layers_app_lock_locked_hint", - "community": 1, - "norm_label": "layers_app_lock_locked_hint" - }, - { - "label": "screentime_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L332", - "id": "locales_de_blocker_screentime_title", - "community": 1, - "norm_label": "screentime_title" - }, - { - "label": "screentime_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L333", - "id": "locales_de_blocker_screentime_desc", - "community": 389, - "norm_label": "screentime_desc" - }, - { - "label": "screentime_generate_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L334", - "id": "locales_de_blocker_screentime_generate_cta", - "community": 1, - "norm_label": "screentime_generate_cta" - }, - { - "label": "screentime_code_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L335", - "id": "locales_de_blocker_screentime_code_label", - "community": 1, - "norm_label": "screentime_code_label" - }, - { - "label": "screentime_step1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L336", - "id": "locales_de_blocker_screentime_step1", - "community": 1, - "norm_label": "screentime_step1" - }, - { - "label": "screentime_step2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L337", - "id": "locales_de_blocker_screentime_step2", - "community": 1, - "norm_label": "screentime_step2" - }, - { - "label": "screentime_step3", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L338", - "id": "locales_de_blocker_screentime_step3", - "community": 1, - "norm_label": "screentime_step3" - }, - { - "label": "screentime_step_note", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L339", - "id": "locales_de_blocker_screentime_step_note", - "community": 1, - "norm_label": "screentime_step_note" - }, - { - "label": "screentime_open_settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L340", - "id": "locales_de_blocker_screentime_open_settings_cta", - "community": 1, - "norm_label": "screentime_open_settings_cta" - }, - { - "label": "screentime_confirm_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L341", - "id": "locales_de_blocker_screentime_confirm_cta", - "community": 1, - "norm_label": "screentime_confirm_cta" - }, - { - "label": "screentime_confirmed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L342", - "id": "locales_de_blocker_screentime_confirmed_title", - "community": 1, - "norm_label": "screentime_confirmed_title" - }, - { - "label": "screentime_confirmed_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L343", - "id": "locales_de_blocker_screentime_confirmed_desc", - "community": 1, - "norm_label": "screentime_confirmed_desc" - }, - { - "label": "layers_a11y_subtitle_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L344", - "id": "locales_de_blocker_layers_a11y_subtitle_active", - "community": 1, - "norm_label": "layers_a11y_subtitle_active" - }, - { - "label": "layers_a11y_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L345", - "id": "locales_de_blocker_layers_a11y_subtitle_inactive", - "community": 1, - "norm_label": "layers_a11y_subtitle_inactive" - }, - { - "label": "kpi_global_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L346", - "id": "locales_de_blocker_kpi_global_label", - "community": 1, - "norm_label": "kpi_global_label" - }, - { - "label": "kpi_global_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L347", - "id": "locales_de_blocker_kpi_global_subtitle", - "community": 1, - "norm_label": "kpi_global_subtitle" - }, - { - "label": "delta_week", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L348", - "id": "locales_de_blocker_delta_week", - "community": 1, - "norm_label": "delta_week" - }, - { - "label": "delta_month", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L349", - "id": "locales_de_blocker_delta_month", - "community": 1, - "norm_label": "delta_month" - }, - { - "label": "kpi_submissions_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L350", - "id": "locales_de_blocker_kpi_submissions_title", - "community": 1, - "norm_label": "kpi_submissions_title" - }, - { - "label": "kpi_submissions_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L351", - "id": "locales_de_blocker_kpi_submissions_subtitle", - "community": 1, - "norm_label": "kpi_submissions_subtitle" - }, - { - "label": "kpi_my_submissions", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L352", - "id": "locales_de_blocker_kpi_my_submissions", - "community": 1, - "norm_label": "kpi_my_submissions" - }, - { - "label": "kpi_status_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L353", - "id": "locales_de_blocker_kpi_status_active", - "community": 1, - "norm_label": "kpi_status_active" - }, - { - "label": "kpi_status_vote", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L354", - "id": "locales_de_blocker_kpi_status_vote", - "community": 1, - "norm_label": "kpi_status_vote" - }, - { - "label": "kpi_status_review", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L355", - "id": "locales_de_blocker_kpi_status_review", - "community": 1, - "norm_label": "kpi_status_review" - }, - { - "label": "kpi_in_vote", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L356", - "id": "locales_de_blocker_kpi_in_vote", - "community": 1, - "norm_label": "kpi_in_vote" - }, - { - "label": "kpi_in_review", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L357", - "id": "locales_de_blocker_kpi_in_review", - "community": 1, - "norm_label": "kpi_in_review" - }, - { - "label": "kpi_avg_per_user", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L358", - "id": "locales_de_blocker_kpi_avg_per_user", - "community": 1, - "norm_label": "kpi_avg_per_user" - }, - { - "label": "kpi_avg_wait", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L359", - "id": "locales_de_blocker_kpi_avg_wait", - "community": 1, - "norm_label": "kpi_avg_wait" - }, - { - "label": "kpi_days_suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L360", - "id": "locales_de_blocker_kpi_days_suffix", - "community": 1, - "norm_label": "kpi_days_suffix" - }, - { - "label": "faq_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L361", - "id": "locales_de_blocker_faq_heading", - "community": 1, - "norm_label": "faq_heading" - }, - { - "label": "faq1_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L362", - "id": "locales_de_blocker_faq1_q", - "community": 1, - "norm_label": "faq1_q" - }, - { - "label": "faq1_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L363", - "id": "locales_de_blocker_faq1_a", - "community": 1, - "norm_label": "faq1_a" - }, - { - "label": "faq2_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L364", - "id": "locales_de_blocker_faq2_q", - "community": 1, - "norm_label": "faq2_q" - }, - { - "label": "faq2_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L365", - "id": "locales_de_blocker_faq2_a", - "community": 1, - "norm_label": "faq2_a" - }, - { - "label": "faq3_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L366", - "id": "locales_de_blocker_faq3_q", - "community": 1, - "norm_label": "faq3_q" - }, - { - "label": "faq3_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L367", - "id": "locales_de_blocker_faq3_a", - "community": 1, - "norm_label": "faq3_a" - }, - { - "label": "faq4_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L368", - "id": "locales_de_blocker_faq4_q", - "community": 1, - "norm_label": "faq4_q" - }, - { - "label": "faq4_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L369", - "id": "locales_de_blocker_faq4_a", - "community": 1, - "norm_label": "faq4_a" - }, - { - "label": "faq5_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L370", - "id": "locales_de_blocker_faq5_q", - "community": 1, - "norm_label": "faq5_q" - }, - { - "label": "faq5_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L371", - "id": "locales_de_blocker_faq5_a", - "community": 1, - "norm_label": "faq5_a" - }, - { - "label": "faq6_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L372", - "id": "locales_de_blocker_faq6_q", - "community": 1, - "norm_label": "faq6_q" - }, - { - "label": "faq6_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L373", - "id": "locales_de_blocker_faq6_a", - "community": 1, - "norm_label": "faq6_a" - }, - { - "label": "faq7_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L374", - "id": "locales_de_blocker_faq7_q", - "community": 1, - "norm_label": "faq7_q" - }, - { - "label": "faq7_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L375", - "id": "locales_de_blocker_faq7_a", - "community": 1, - "norm_label": "faq7_a" - }, - { - "label": "faq8_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L376", - "id": "locales_de_blocker_faq8_q", - "community": 1, - "norm_label": "faq8_q" - }, - { - "label": "faq8_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L377", - "id": "locales_de_blocker_faq8_a", - "community": 1, - "norm_label": "faq8_a" - }, - { - "label": "faq9_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L378", - "id": "locales_de_blocker_faq9_q", - "community": 1, - "norm_label": "faq9_q" - }, - { - "label": "faq9_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L379", - "id": "locales_de_blocker_faq9_a", - "community": 1, - "norm_label": "faq9_a" - }, - { - "label": "more_info_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L380", - "id": "locales_de_blocker_more_info_title", - "community": 1, - "norm_label": "more_info_title" - }, - { - "label": "cooldown_elapsed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L381", - "id": "locales_de_blocker_cooldown_elapsed_title", - "community": 1, - "norm_label": "cooldown_elapsed_title" - }, - { - "label": "cooldown_elapsed_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L382", - "id": "locales_de_blocker_cooldown_elapsed_message", - "community": 1, - "norm_label": "cooldown_elapsed_message" - }, - { - "label": "cooldown_elapsed_message_ios", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L383", - "id": "locales_de_blocker_cooldown_elapsed_message_ios", - "community": 1, - "norm_label": "cooldown_elapsed_message_ios" - }, - { - "label": "cooldown_elapsed_open_settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L384", - "id": "locales_de_blocker_cooldown_elapsed_open_settings", - "community": 1, - "norm_label": "cooldown_elapsed_open_settings" - }, - { - "label": "app_lock_coming_soon_badge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L385", - "id": "locales_de_blocker_app_lock_coming_soon_badge", - "community": 1, - "norm_label": "app_lock_coming_soon_badge" - }, - { - "label": "app_lock_coming_soon_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L386", - "id": "locales_de_blocker_app_lock_coming_soon_desc", - "community": 1, - "norm_label": "app_lock_coming_soon_desc" - }, - { - "label": "type_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L387", - "id": "locales_de_blocker_type_web", - "community": 1, - "norm_label": "type_web" - }, - { - "label": "type_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L388", - "id": "locales_de_blocker_type_mail", - "community": 1, - "norm_label": "type_mail" - }, - { - "label": "add_web_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L389", - "id": "locales_de_blocker_add_web_label", - "community": 1, - "norm_label": "add_web_label" - }, - { - "label": "add_web_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L390", - "id": "locales_de_blocker_add_web_placeholder", - "community": 1, - "norm_label": "add_web_placeholder" - }, - { - "label": "add_web_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L391", - "id": "locales_de_blocker_add_web_help", - "community": 1, - "norm_label": "add_web_help" - }, - { - "label": "add_mail_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L392", - "id": "locales_de_blocker_add_mail_label", - "community": 1, - "norm_label": "add_mail_label" - }, - { - "label": "add_mail_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L393", - "id": "locales_de_blocker_add_mail_placeholder", - "community": 1, - "norm_label": "add_mail_placeholder" - }, - { - "label": "add_mail_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L394", - "id": "locales_de_blocker_add_mail_help", - "community": 1, - "norm_label": "add_mail_help" - }, - { - "label": "add_mail_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L395", - "id": "locales_de_blocker_add_mail_invalid", - "community": 1, - "norm_label": "add_mail_invalid" - }, - { - "label": "add_sheet_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L396", - "id": "locales_de_blocker_add_sheet_cta", - "community": 1, - "norm_label": "add_sheet_cta" - }, - { - "label": "section_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L397", - "id": "locales_de_blocker_section_domains", - "community": 1, - "norm_label": "section_domains" - }, - { - "label": "section_mails", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L398", - "id": "locales_de_blocker_section_mails", - "community": 1, - "norm_label": "section_mails" - }, - { - "label": "count_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L399", - "id": "locales_de_blocker_count_label", - "community": 1, - "norm_label": "count_label" - }, - { - "label": "error_web_limit_reached", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L400", - "id": "locales_de_blocker_error_web_limit_reached", - "community": 1, - "norm_label": "error_web_limit_reached" - }, - { - "label": "error_mail_limit_reached", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L401", - "id": "locales_de_blocker_error_mail_limit_reached", - "community": 1, - "norm_label": "error_mail_limit_reached" - }, - { - "label": "error_limit_reached", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L402", - "id": "locales_de_blocker_error_limit_reached", - "community": 1, - "norm_label": "error_limit_reached" - }, - { - "label": "error_invalid_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L403", - "id": "locales_de_blocker_error_invalid_mail", - "community": 1, - "norm_label": "error_invalid_mail" - }, - { - "label": "error_invalid_input", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L404", - "id": "locales_de_blocker_error_invalid_input", - "community": 49, - "norm_label": "error_invalid_input" - }, - { - "label": "error_public_domain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L405", - "id": "locales_de_blocker_error_public_domain", - "community": 1, - "norm_label": "error_public_domain" - }, - { - "label": "error_duplicate", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L406", - "id": "locales_de_blocker_error_duplicate", - "community": 1, - "norm_label": "error_duplicate" - }, - { - "label": "kind_override_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L407", - "id": "locales_de_blocker_kind_override_label", - "community": 1, - "norm_label": "kind_override_label" - }, - { - "label": "empty_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L408", - "id": "locales_de_blocker_empty_web", - "community": 1, - "norm_label": "empty_web" - }, - { - "label": "empty_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L409", - "id": "locales_de_blocker_empty_mail", - "community": 1, - "norm_label": "empty_mail" - }, - { - "label": "vip_section_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L410", - "id": "locales_de_blocker_vip_section_title", - "community": 1, - "norm_label": "vip_section_title" - }, - { - "label": "vip_empty", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L411", - "id": "locales_de_blocker_vip_empty", - "community": 1, - "norm_label": "vip_empty" - }, - { - "label": "vip_global_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L412", - "id": "locales_de_blocker_vip_global_hint", - "community": 1, - "norm_label": "vip_global_hint" - }, - { - "label": "my_filters_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L413", - "id": "locales_de_blocker_my_filters_title", - "community": 1, - "norm_label": "my_filters_title" - }, - { - "label": "my_filters_empty", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L414", - "id": "locales_de_blocker_my_filters_empty", - "community": 1, - "norm_label": "my_filters_empty" - }, - { - "label": "vip_layer2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L415", - "id": "locales_de_blocker_vip_layer2_title", - "community": 1, - "norm_label": "vip_layer2_title" - }, - { - "label": "vip_layer2_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L416", - "id": "locales_de_blocker_vip_layer2_desc", - "community": 1, - "norm_label": "vip_layer2_desc" - }, - { - "label": "vip_layer2_global_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L417", - "id": "locales_de_blocker_vip_layer2_global_hint", - "community": 1, - "norm_label": "vip_layer2_global_hint" - }, - { - "label": "vip_layer2_count", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L418", - "id": "locales_de_blocker_vip_layer2_count", - "community": 1, - "norm_label": "vip_layer2_count" - }, - { - "label": "vip_section_custom_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L419", - "id": "locales_de_blocker_vip_section_custom_title", - "community": 1, - "norm_label": "vip_section_custom_title" - }, - { - "label": "vip_section_curated_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L420", - "id": "locales_de_blocker_vip_section_curated_title", - "community": 1, - "norm_label": "vip_section_curated_title" - }, - { - "label": "vip_section_custom_count", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L421", - "id": "locales_de_blocker_vip_section_custom_count", - "community": 1, - "norm_label": "vip_section_custom_count" - }, - { - "label": "vip_section_curated_count", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L422", - "id": "locales_de_blocker_vip_section_curated_count", - "community": 1, - "norm_label": "vip_section_curated_count" - }, - { - "label": "remove_domain_sheet_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L423", - "id": "locales_de_blocker_remove_domain_sheet_heading", - "community": 1, - "norm_label": "remove_domain_sheet_heading" - }, - { - "label": "remove_domain_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L424", - "id": "locales_de_blocker_remove_domain_title", - "community": 1, - "norm_label": "remove_domain_title" - }, - { - "label": "remove_domain_intro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L425", - "id": "locales_de_blocker_remove_domain_intro", - "community": 1, - "norm_label": "remove_domain_intro" - }, - { - "label": "remove_domain_bullet1_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L426", - "id": "locales_de_blocker_remove_domain_bullet1_title", - "community": 1, - "norm_label": "remove_domain_bullet1_title" - }, - { - "label": "remove_domain_bullet1_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L427", - "id": "locales_de_blocker_remove_domain_bullet1_text", - "community": 1, - "norm_label": "remove_domain_bullet1_text" - }, - { - "label": "remove_domain_bullet2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L428", - "id": "locales_de_blocker_remove_domain_bullet2_title", - "community": 1, - "norm_label": "remove_domain_bullet2_title" - }, - { - "label": "remove_domain_bullet2_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L429", - "id": "locales_de_blocker_remove_domain_bullet2_text", - "community": 1, - "norm_label": "remove_domain_bullet2_text" - }, - { - "label": "remove_domain_keep_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L430", - "id": "locales_de_blocker_remove_domain_keep_cta", - "community": 1, - "norm_label": "remove_domain_keep_cta" - }, - { - "label": "remove_domain_remove_anyway", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L431", - "id": "locales_de_blocker_remove_domain_remove_anyway", - "community": 1, - "norm_label": "remove_domain_remove_anyway" - }, - { - "label": "remove_domain_removing", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L432", - "id": "locales_de_blocker_remove_domain_removing", - "community": 1, - "norm_label": "remove_domain_removing" - }, - { - "label": "remove_domain_failed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L433", - "id": "locales_de_blocker_remove_domain_failed", - "community": 1, - "norm_label": "remove_domain_failed" - }, - { - "label": "remove_domain_actionsheet_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L434", - "id": "locales_de_blocker_remove_domain_actionsheet_title", - "community": 1, - "norm_label": "remove_domain_actionsheet_title" - }, - { - "label": "remove_domain_actionsheet_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L435", - "id": "locales_de_blocker_remove_domain_actionsheet_message", - "community": 1, - "norm_label": "remove_domain_actionsheet_message" - }, - { - "label": "remove_domain_confirm_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L436", - "id": "locales_de_blocker_remove_domain_confirm_cta", - "community": 1, - "norm_label": "remove_domain_confirm_cta" - }, - { - "label": "vip_swap_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L437", - "id": "locales_de_blocker_vip_swap_title", - "community": 1, - "norm_label": "vip_swap_title" - }, - { - "label": "vip_swap_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L438", - "id": "locales_de_blocker_vip_swap_desc", - "community": 1, - "norm_label": "vip_swap_desc" - }, - { - "label": "vip_swap_pick", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L439", - "id": "locales_de_blocker_vip_swap_pick", - "community": 1, - "norm_label": "vip_swap_pick" - }, - { - "label": "vip_swap_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L440", - "id": "locales_de_blocker_vip_swap_cta", - "community": 1, - "norm_label": "vip_swap_cta" - }, - { - "label": "vip_swap_no_candidates", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L441", - "id": "locales_de_blocker_vip_swap_no_candidates", - "community": 1, - "norm_label": "vip_swap_no_candidates" - }, - { - "label": "vip_swap_error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L442", - "id": "locales_de_blocker_vip_swap_error", - "community": 1, - "norm_label": "vip_swap_error" - }, - { - "label": "vip_evict_badge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L443", - "id": "locales_de_blocker_vip_evict_badge", - "community": 1, - "norm_label": "vip_evict_badge" - }, - { - "label": "suggest_curated_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L444", - "id": "locales_de_blocker_suggest_curated_link", - "community": 1, - "norm_label": "suggest_curated_link" - }, - { - "label": "suggest_curated_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L445", - "id": "locales_de_blocker_suggest_curated_title", - "community": 1, - "norm_label": "suggest_curated_title" - }, - { - "label": "suggest_curated_explanation", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L446", - "id": "locales_de_blocker_suggest_curated_explanation", - "community": 1, - "norm_label": "suggest_curated_explanation" - }, - { - "label": "suggest_curated_input_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L447", - "id": "locales_de_blocker_suggest_curated_input_label", - "community": 1, - "norm_label": "suggest_curated_input_label" - }, - { - "label": "suggest_curated_input_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L448", - "id": "locales_de_blocker_suggest_curated_input_placeholder", - "community": 1, - "norm_label": "suggest_curated_input_placeholder" - }, - { - "label": "suggest_curated_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L449", - "id": "locales_de_blocker_suggest_curated_cta", - "community": 1, - "norm_label": "suggest_curated_cta" - }, - { - "label": "suggest_curated_success_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L450", - "id": "locales_de_blocker_suggest_curated_success_title", - "community": 1, - "norm_label": "suggest_curated_success_title" - }, - { - "label": "suggest_curated_success_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L451", - "id": "locales_de_blocker_suggest_curated_success_body", - "community": 1, - "norm_label": "suggest_curated_success_body" - }, - { - "label": "suggest_curated_error_invalid_domain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L452", - "id": "locales_de_blocker_suggest_curated_error_invalid_domain", - "community": 1, - "norm_label": "suggest_curated_error_invalid_domain" - }, - { - "label": "suggest_curated_error_already_suggested", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L453", - "id": "locales_de_blocker_suggest_curated_error_already_suggested", - "community": 1, - "norm_label": "suggest_curated_error_already_suggested" - }, - { - "label": "suggest_curated_error_already_approved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L454", - "id": "locales_de_blocker_suggest_curated_error_already_approved", - "community": 1, - "norm_label": "suggest_curated_error_already_approved" - }, - { - "label": "suggest_curated_error_already_rejected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L455", - "id": "locales_de_blocker_suggest_curated_error_already_rejected", - "community": 1, - "norm_label": "suggest_curated_error_already_rejected" - }, - { - "label": "suggest_curated_error_generic", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L456", - "id": "locales_de_blocker_suggest_curated_error_generic", - "community": 1, - "norm_label": "suggest_curated_error_generic" - }, - { - "label": "protection_subtitle_mdm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L457", - "id": "locales_de_blocker_protection_subtitle_mdm", - "community": 1, - "norm_label": "protection_subtitle_mdm" - }, - { - "label": "protection_stat_method_nefilter", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L458", - "id": "locales_de_blocker_protection_stat_method_nefilter", - "community": 1, - "norm_label": "protection_stat_method_nefilter" - }, - { - "label": "protection_stat_method_mdm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L459", - "id": "locales_de_blocker_protection_stat_method_mdm", - "community": 1, - "norm_label": "protection_stat_method_mdm" - }, - { - "label": "mdm_info_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L460", - "id": "locales_de_blocker_mdm_info_hint", - "community": 1, - "norm_label": "mdm_info_hint" - }, - { - "label": "mdm_deactivate_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L461", - "id": "locales_de_blocker_mdm_deactivate_title", - "community": 1, - "norm_label": "mdm_deactivate_title" - }, - { - "label": "mdm_deactivate_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L462", - "id": "locales_de_blocker_mdm_deactivate_body", - "community": 1, - "norm_label": "mdm_deactivate_body" - }, - { - "label": "setup_progress_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L463", - "id": "locales_de_blocker_setup_progress_label", - "community": 1, - "norm_label": "setup_progress_label" - }, - { - "label": "setup_step1_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L464", - "id": "locales_de_blocker_setup_step1_title", - "community": 1, - "norm_label": "setup_step1_title" - }, - { - "label": "setup_step1_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L465", - "id": "locales_de_blocker_setup_step1_subtitle_pending", - "community": 1, - "norm_label": "setup_step1_subtitle_pending" - }, - { - "label": "setup_step1_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L466", - "id": "locales_de_blocker_setup_step1_subtitle_done", - "community": 1, - "norm_label": "setup_step1_subtitle_done" - }, - { - "label": "setup_step1_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L467", - "id": "locales_de_blocker_setup_step1_cta", - "community": 1, - "norm_label": "setup_step1_cta" - }, - { - "label": "setup_step2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L468", - "id": "locales_de_blocker_setup_step2_title", - "community": 1, - "norm_label": "setup_step2_title" - }, - { - "label": "setup_step2_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L469", - "id": "locales_de_blocker_setup_step2_subtitle_pending", - "community": 1, - "norm_label": "setup_step2_subtitle_pending" - }, - { - "label": "setup_step2_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L470", - "id": "locales_de_blocker_setup_step2_subtitle_done", - "community": 1, - "norm_label": "setup_step2_subtitle_done" - }, - { - "label": "setup_step3_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L471", - "id": "locales_de_blocker_setup_step3_title", - "community": 1, - "norm_label": "setup_step3_title" - }, - { - "label": "setup_step3_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L472", - "id": "locales_de_blocker_setup_step3_subtitle_pending", - "community": 1, - "norm_label": "setup_step3_subtitle_pending" - }, - { - "label": "setup_step3_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L473", - "id": "locales_de_blocker_setup_step3_subtitle_done", - "community": 1, - "norm_label": "setup_step3_subtitle_done" - }, - { - "label": "setup_step3_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L474", - "id": "locales_de_blocker_setup_step3_cta", - "community": 1, - "norm_label": "setup_step3_cta" - }, - { - "label": "setup_step3_warning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L475", - "id": "locales_de_blocker_setup_step3_warning", - "community": 1, - "norm_label": "setup_step3_warning" - }, - { - "label": "setup_complete_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L476", - "id": "locales_de_blocker_setup_complete_title", - "community": 1, - "norm_label": "setup_complete_title" - }, - { - "label": "setup_complete_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L477", - "id": "locales_de_blocker_setup_complete_subtitle", - "community": 1, - "norm_label": "setup_complete_subtitle" - }, - { - "label": "setup_step_locked_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L478", - "id": "locales_de_blocker_setup_step_locked_hint", - "community": 1, - "norm_label": "setup_step_locked_hint" - }, - { - "label": "android_step1_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L479", - "id": "locales_de_blocker_android_step1_title", - "community": 1, - "norm_label": "android_step1_title" - }, - { - "label": "android_step1_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L480", - "id": "locales_de_blocker_android_step1_subtitle_pending", - "community": 1, - "norm_label": "android_step1_subtitle_pending" - }, - { - "label": "android_step1_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L481", - "id": "locales_de_blocker_android_step1_subtitle_done", - "community": 1, - "norm_label": "android_step1_subtitle_done" - }, - { - "label": "android_step1_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L482", - "id": "locales_de_blocker_android_step1_cta", - "community": 1, - "norm_label": "android_step1_cta" - }, - { - "label": "activating", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L483", - "id": "locales_de_blocker_activating", - "community": 1, - "norm_label": "activating" - }, - { - "label": "android_step2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L484", - "id": "locales_de_blocker_android_step2_title", - "community": 1, - "norm_label": "android_step2_title" - }, - { - "label": "android_step2_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L485", - "id": "locales_de_blocker_android_step2_subtitle_pending", - "community": 1, - "norm_label": "android_step2_subtitle_pending" - }, - { - "label": "android_step2_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L486", - "id": "locales_de_blocker_android_step2_subtitle_done", - "community": 1, - "norm_label": "android_step2_subtitle_done" - }, - { - "label": "android_step2_instruction1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L487", - "id": "locales_de_blocker_android_step2_instruction1", - "community": 1, - "norm_label": "android_step2_instruction1" - }, - { - "label": "android_step2_instruction2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L488", - "id": "locales_de_blocker_android_step2_instruction2", - "community": 1, - "norm_label": "android_step2_instruction2" - }, - { - "label": "android_step2_instruction3", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L489", - "id": "locales_de_blocker_android_step2_instruction3", - "community": 1, - "norm_label": "android_step2_instruction3" - }, - { - "label": "android_step2_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L490", - "id": "locales_de_blocker_android_step2_cta", - "community": 1, - "norm_label": "android_step2_cta" - }, - { - "label": "android_step2_note", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L491", - "id": "locales_de_blocker_android_step2_note", - "community": 1, - "norm_label": "android_step2_note" - }, - { - "label": "android_battery_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L492", - "id": "locales_de_blocker_android_battery_title", - "community": 1, - "norm_label": "android_battery_title" - }, - { - "label": "android_battery_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L493", - "id": "locales_de_blocker_android_battery_subtitle_pending", - "community": 1, - "norm_label": "android_battery_subtitle_pending" - }, - { - "label": "android_battery_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L494", - "id": "locales_de_blocker_android_battery_subtitle_done", - "community": 1, - "norm_label": "android_battery_subtitle_done" - }, - { - "label": "android_battery_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L495", - "id": "locales_de_blocker_android_battery_body", - "community": 1, - "norm_label": "android_battery_body" - }, - { - "label": "android_battery_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L496", - "id": "locales_de_blocker_android_battery_cta", - "community": 1, - "norm_label": "android_battery_cta" - }, - { - "label": "android_battery_samsung_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L497", - "id": "locales_de_blocker_android_battery_samsung_hint", - "community": 1, - "norm_label": "android_battery_samsung_hint" - }, - { - "label": "android_step3_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L498", - "id": "locales_de_blocker_android_step3_title", - "community": 1, - "norm_label": "android_step3_title" - }, - { - "label": "android_step3_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L499", - "id": "locales_de_blocker_android_step3_subtitle_pending", - "community": 1, - "norm_label": "android_step3_subtitle_pending" - }, - { - "label": "android_step3_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L500", - "id": "locales_de_blocker_android_step3_subtitle_done", - "community": 1, - "norm_label": "android_step3_subtitle_done" - }, - { - "label": "android_step3_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L501", - "id": "locales_de_blocker_android_step3_cta", - "community": 1, - "norm_label": "android_step3_cta" - }, - { - "label": "android_step3_warning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L502", - "id": "locales_de_blocker_android_step3_warning", - "community": 1, - "norm_label": "android_step3_warning" - }, - { - "label": "android_admin_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L503", - "id": "locales_de_blocker_android_admin_failed_title", - "community": 1, - "norm_label": "android_admin_failed_title" - }, - { - "label": "android_admin_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L504", - "id": "locales_de_blocker_android_admin_failed_msg", - "community": 1, - "norm_label": "android_admin_failed_msg" - }, - { - "label": "onboarding", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L506", - "id": "locales_de_onboarding", - "community": 49, - "norm_label": "onboarding" - }, - { - "label": "lyra", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L507", - "id": "locales_de_onboarding_lyra", - "community": 49, - "norm_label": "lyra" - }, - { - "label": "welcome", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L508", - "id": "locales_de_lyra_welcome", - "community": 49, - "norm_label": "welcome" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L509", - "id": "locales_de_welcome_body", - "community": 49, - "norm_label": "body" - }, - { - "label": "privacy", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L511", - "id": "locales_de_lyra_privacy", - "community": 49, - "norm_label": "privacy" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L512", - "id": "locales_de_privacy_body", - "community": 49, - "norm_label": "body" - }, - { - "label": "nickname", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L514", - "id": "locales_de_lyra_nickname", - "community": 49, - "norm_label": "nickname" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L515", - "id": "locales_de_nickname_body", - "community": 49, - "norm_label": "body" - }, - { - "label": "diga_choice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L517", - "id": "locales_de_lyra_diga_choice", - "community": 49, - "norm_label": "diga_choice" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L518", - "id": "locales_de_diga_choice_body", - "community": 49, - "norm_label": "body" - }, - { - "label": "diga_code", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L520", - "id": "locales_de_lyra_diga_code", - "community": 49, - "norm_label": "diga_code" - }, - { - "label": "en.json", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L1", - "id": "apps_rebreak_native_locales_en_json", - "community": 35, - "norm_label": "en.json" - }, - { - "label": "common", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L2", - "id": "locales_en_common", - "community": 442, - "norm_label": "common" - }, - { - "label": "loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L3", - "id": "locales_en_common_loading", - "community": 442, - "norm_label": "loading" - }, - { - "label": "cancel", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L4", - "id": "locales_en_common_cancel", - "community": 442, - "norm_label": "cancel" - }, - { - "label": "continue", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L5", - "id": "locales_en_common_continue", - "community": 442, - "norm_label": "continue" - }, - { - "label": "back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L6", - "id": "locales_en_common_back", - "community": 442, - "norm_label": "back" - }, - { - "label": "error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L7", - "id": "locales_en_common_error", - "community": 442, - "norm_label": "error" - }, - { - "label": "success", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L8", - "id": "locales_en_common_success", - "community": 442, - "norm_label": "success" - }, - { - "label": "ok", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L9", - "id": "locales_en_common_ok", - "community": 442, - "norm_label": "ok" - }, - { - "label": "confirm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L10", - "id": "locales_en_common_confirm", - "community": 442, - "norm_label": "confirm" - }, - { - "label": "retry", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L11", - "id": "locales_en_common_retry", - "community": 442, - "norm_label": "retry" - }, - { - "label": "unknown_error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L12", - "id": "locales_en_common_unknown_error", - "community": 442, - "norm_label": "unknown_error" - }, - { - "label": "auth", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L14", - "id": "locales_en_auth", - "community": 19, - "norm_label": "auth" - }, - { - "label": "welcomeBack", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L15", - "id": "locales_en_auth_welcomeback", - "community": 19, - "norm_label": "welcomeback" - }, - { - "label": "signinSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L16", - "id": "locales_en_auth_signinsubtitle", - "community": 19, - "norm_label": "signinsubtitle" - }, - { - "label": "signin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L17", - "id": "locales_en_auth_signin", - "community": 19, - "norm_label": "signin" - }, - { - "label": "signingIn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L18", - "id": "locales_en_auth_signingin", - "community": 19, - "norm_label": "signingin" - }, - { - "label": "signup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L19", - "id": "locales_en_auth_signup", - "community": 19, - "norm_label": "signup" - }, - { - "label": "signupTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L20", - "id": "locales_en_auth_signuptitle", - "community": 19, - "norm_label": "signuptitle" - }, - { - "label": "signupSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L21", - "id": "locales_en_auth_signupsubtitle", - "community": 19, - "norm_label": "signupsubtitle" - }, - { - "label": "signOut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L22", - "id": "locales_en_auth_signout", - "community": 35, - "norm_label": "signout" - }, - { - "label": "email", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L23", - "id": "locales_en_auth_email", - "community": 19, - "norm_label": "email" - }, - { - "label": "emailPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L24", - "id": "locales_en_auth_emailplaceholder", - "community": 19, - "norm_label": "emailplaceholder" - }, - { - "label": "emailRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L25", - "id": "locales_en_auth_emailrequired", - "community": 19, - "norm_label": "emailrequired" - }, - { - "label": "password", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L26", - "id": "locales_en_auth_password", - "community": 19, - "norm_label": "password" - }, - { - "label": "passwordPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L27", - "id": "locales_en_auth_passwordplaceholder", - "community": 19, - "norm_label": "passwordplaceholder" - }, - { - "label": "passwordRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L28", - "id": "locales_en_auth_passwordrequired", - "community": 19, - "norm_label": "passwordrequired" - }, - { - "label": "passwordMin8", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L29", - "id": "locales_en_auth_passwordmin8", - "community": 19, - "norm_label": "passwordmin8" - }, - { - "label": "newPassword", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L30", - "id": "locales_en_auth_newpassword", - "community": 19, - "norm_label": "newpassword" - }, - { - "label": "nickname", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L31", - "id": "locales_en_auth_nickname", - "community": 45, - "norm_label": "nickname" - }, - { - "label": "nicknamePlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L32", - "id": "locales_en_auth_nicknameplaceholder", - "community": 19, - "norm_label": "nicknameplaceholder" - }, - { - "label": "noAccount", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L33", - "id": "locales_en_auth_noaccount", - "community": 19, - "norm_label": "noaccount" - }, - { - "label": "alreadyRegistered", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L34", - "id": "locales_en_auth_alreadyregistered", - "community": 19, - "norm_label": "alreadyregistered" - }, - { - "label": "fillRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L35", - "id": "locales_en_auth_fillrequired", - "community": 19, - "norm_label": "fillrequired" - }, - { - "label": "googleSignin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L36", - "id": "locales_en_auth_googlesignin", - "community": 19, - "norm_label": "googlesignin" - }, - { - "label": "appleSignin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L37", - "id": "locales_en_auth_applesignin", - "community": 19, - "norm_label": "applesignin" - }, - { - "label": "googleSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L38", - "id": "locales_en_auth_googlesignup", - "community": 19, - "norm_label": "googlesignup" - }, - { - "label": "appleSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L39", - "id": "locales_en_auth_applesignup", - "community": 19, - "norm_label": "applesignup" - }, - { - "label": "orWithEmail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L40", - "id": "locales_en_auth_orwithemail", - "community": 19, - "norm_label": "orwithemail" - }, - { - "label": "forgotPassword", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L41", - "id": "locales_en_auth_forgotpassword", - "community": 19, - "norm_label": "forgotpassword" - }, - { - "label": "resetPasswordTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L42", - "id": "locales_en_auth_resetpasswordtitle", - "community": 19, - "norm_label": "resetpasswordtitle" - }, - { - "label": "resetPasswordSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L43", - "id": "locales_en_auth_resetpasswordsubtitle", - "community": 19, - "norm_label": "resetpasswordsubtitle" - }, - { - "label": "resetPasswordSend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L44", - "id": "locales_en_auth_resetpasswordsend", - "community": 19, - "norm_label": "resetpasswordsend" - }, - { - "label": "resetPasswordSent", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L45", - "id": "locales_en_auth_resetpasswordsent", - "community": 19, - "norm_label": "resetpasswordsent" - }, - { - "label": "resetPasswordSentDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L46", - "id": "locales_en_auth_resetpasswordsentdesc", - "community": 19, - "norm_label": "resetpasswordsentdesc" - }, - { - "label": "resetPasswordSentDescPrefix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L47", - "id": "locales_en_auth_resetpasswordsentdescprefix", - "community": 19, - "norm_label": "resetpasswordsentdescprefix" - }, - { - "label": "resetPasswordSentDescSuffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L48", - "id": "locales_en_auth_resetpasswordsentdescsuffix", - "community": 19, - "norm_label": "resetpasswordsentdescsuffix" - }, - { - "label": "backToLogin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L49", - "id": "locales_en_auth_backtologin", - "community": 19, - "norm_label": "backtologin" - }, - { - "label": "backToLoginPlain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L50", - "id": "locales_en_auth_backtologinplain", - "community": 19, - "norm_label": "backtologinplain" - }, - { - "label": "backToSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L51", - "id": "locales_en_auth_backtosignup", - "community": 19, - "norm_label": "backtosignup" - }, - { - "label": "chooseAvatar", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L52", - "id": "locales_en_auth_chooseavatar", - "community": 19, - "norm_label": "chooseavatar" - }, - { - "label": "privacyNotice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L53", - "id": "locales_en_auth_privacynotice", - "community": 19, - "norm_label": "privacynotice" - }, - { - "label": "acceptTerms", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L54", - "id": "locales_en_auth_acceptterms", - "community": 19, - "norm_label": "acceptterms" - }, - { - "label": "acceptTermsSuffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L55", - "id": "locales_en_auth_accepttermssuffix", - "community": 19, - "norm_label": "accepttermssuffix" - }, - { - "label": "termsLink", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L56", - "id": "locales_en_auth_termslink", - "community": 19, - "norm_label": "termslink" - }, - { - "label": "pleaseAcceptTerms", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L57", - "id": "locales_en_auth_pleaseacceptterms", - "community": 19, - "norm_label": "pleaseacceptterms" - }, - { - "label": "confirmEmailTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L58", - "id": "locales_en_auth_confirmemailtitle", - "community": 19, - "norm_label": "confirmemailtitle" - }, - { - "label": "confirmEmailDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L59", - "id": "locales_en_auth_confirmemaildesc", - "community": 19, - "norm_label": "confirmemaildesc" - }, - { - "label": "confirmEmailLine1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L60", - "id": "locales_en_auth_confirmemailline1", - "community": 19, - "norm_label": "confirmemailline1" - }, - { - "label": "confirmEmailLine2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L61", - "id": "locales_en_auth_confirmemailline2", - "community": 19, - "norm_label": "confirmemailline2" - }, - { - "label": "confirmBtn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L62", - "id": "locales_en_auth_confirmbtn", - "community": 19, - "norm_label": "confirmbtn" - }, - { - "label": "confirmed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L63", - "id": "locales_en_auth_confirmed", - "community": 19, - "norm_label": "confirmed" - }, - { - "label": "confirming", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L64", - "id": "locales_en_auth_confirming", - "community": 19, - "norm_label": "confirming" - }, - { - "label": "confirmSuccess", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L65", - "id": "locales_en_auth_confirmsuccess", - "community": 19, - "norm_label": "confirmsuccess" - }, - { - "label": "confirmTimeout", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L66", - "id": "locales_en_auth_confirmtimeout", - "community": 19, - "norm_label": "confirmtimeout" - }, - { - "label": "confirmFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L67", - "id": "locales_en_auth_confirmfailed", - "community": 19, - "norm_label": "confirmfailed" - }, - { - "label": "resend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L68", - "id": "locales_en_auth_resend", - "community": 19, - "norm_label": "resend" - }, - { - "label": "resendCooldown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L69", - "id": "locales_en_auth_resendcooldown", - "community": 19, - "norm_label": "resendcooldown" - }, - { - "label": "noCode", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L70", - "id": "locales_en_auth_nocode", - "community": 19, - "norm_label": "nocode" - }, - { - "label": "deviceLimitTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L71", - "id": "locales_en_auth_devicelimittitle", - "community": 19, - "norm_label": "devicelimittitle" - }, - { - "label": "deviceLimitDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L72", - "id": "locales_en_auth_devicelimitdesc", - "community": 19, - "norm_label": "devicelimitdesc" - }, - { - "label": "deviceLimitUpgrade", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L73", - "id": "locales_en_auth_devicelimitupgrade", - "community": 19, - "norm_label": "devicelimitupgrade" - }, - { - "label": "toLogin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L74", - "id": "locales_en_auth_tologin", - "community": 19, - "norm_label": "tologin" - }, - { - "label": "oauthFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L75", - "id": "locales_en_auth_oauthfailed", - "community": 19, - "norm_label": "oauthfailed" - }, - { - "label": "loginFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L76", - "id": "locales_en_auth_loginfailed", - "community": 19, - "norm_label": "loginfailed" - }, - { - "label": "registerFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L77", - "id": "locales_en_auth_registerfailed", - "community": 19, - "norm_label": "registerfailed" - }, - { - "label": "device_locked_headline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L78", - "id": "locales_en_auth_device_locked_headline", - "community": 19, - "norm_label": "device_locked_headline" - }, - { - "label": "device_locked_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L79", - "id": "locales_en_auth_device_locked_body", - "community": 19, - "norm_label": "device_locked_body" - }, - { - "label": "device_locked_countdown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L80", - "id": "locales_en_auth_device_locked_countdown", - "community": 19, - "norm_label": "device_locked_countdown" - }, - { - "label": "device_locked_email_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L81", - "id": "locales_en_auth_device_locked_email_hint", - "community": 19, - "norm_label": "device_locked_email_hint" - }, - { - "label": "device_locked_use_original", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L82", - "id": "locales_en_auth_device_locked_use_original", - "community": 19, - "norm_label": "device_locked_use_original" - }, - { - "label": "device_locked_back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L83", - "id": "locales_en_auth_device_locked_back", - "community": 19, - "norm_label": "device_locked_back" - }, - { - "label": "resetOtpTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L84", - "id": "locales_en_auth_resetotptitle", - "community": 19, - "norm_label": "resetotptitle" - }, - { - "label": "resetOtpLine1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L85", - "id": "locales_en_auth_resetotpline1", - "community": 19, - "norm_label": "resetotpline1" - }, - { - "label": "resetOtpLine2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L86", - "id": "locales_en_auth_resetotpline2", - "community": 19, - "norm_label": "resetotpline2" - }, - { - "label": "resetOtpConfirmBtn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L87", - "id": "locales_en_auth_resetotpconfirmbtn", - "community": 19, - "norm_label": "resetotpconfirmbtn" - }, - { - "label": "resetOtpResend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L88", - "id": "locales_en_auth_resetotpresend", - "community": 19, - "norm_label": "resetotpresend" - }, - { - "label": "resetOtpBackToForgot", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L89", - "id": "locales_en_auth_resetotpbacktoforgot", - "community": 19, - "norm_label": "resetotpbacktoforgot" - }, - { - "label": "newPasswordTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L90", - "id": "locales_en_auth_newpasswordtitle", - "community": 19, - "norm_label": "newpasswordtitle" - }, - { - "label": "newPasswordSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L91", - "id": "locales_en_auth_newpasswordsubtitle", - "community": 19, - "norm_label": "newpasswordsubtitle" - }, - { - "label": "newPasswordPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L92", - "id": "locales_en_auth_newpasswordplaceholder", - "community": 19, - "norm_label": "newpasswordplaceholder" - }, - { - "label": "newPasswordConfirmPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L93", - "id": "locales_en_auth_newpasswordconfirmplaceholder", - "community": 19, - "norm_label": "newpasswordconfirmplaceholder" - }, - { - "label": "newPasswordSave", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L94", - "id": "locales_en_auth_newpasswordsave", - "community": 19, - "norm_label": "newpasswordsave" - }, - { - "label": "newPasswordSaved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L95", - "id": "locales_en_auth_newpasswordsaved", - "community": 19, - "norm_label": "newpasswordsaved" - }, - { - "label": "newPasswordMismatch", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L96", - "id": "locales_en_auth_newpasswordmismatch", - "community": 19, - "norm_label": "newpasswordmismatch" - }, - { - "label": "newPasswordCancelLink", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L97", - "id": "locales_en_auth_newpasswordcancellink", - "community": 19, - "norm_label": "newpasswordcancellink" - }, - { - "label": "landing", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L99", - "id": "locales_en_landing", - "community": 35, - "norm_label": "landing" - }, - { - "label": "appName", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L100", - "id": "locales_en_landing_appname", - "community": 35, - "norm_label": "appname" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L101", - "id": "locales_en_landing_tagline", - "community": 35, - "norm_label": "tagline" - }, - { - "label": "start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L102", - "id": "locales_en_landing_start", - "community": 35, - "norm_label": "start" - }, - { - "label": "splash", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L104", - "id": "locales_en_splash", - "community": 35, - "norm_label": "splash" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L105", - "id": "locales_en_splash_tagline", - "community": 35, - "norm_label": "tagline" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L106", - "id": "locales_en_splash_subtitle", - "community": 35, - "norm_label": "subtitle" - }, - { - "label": "madeInGermany", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L107", - "id": "locales_en_splash_madeingermany", - "community": 35, - "norm_label": "madeingermany" - }, - { - "label": "applock", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L109", - "id": "locales_en_applock", - "community": 35, - "norm_label": "applock" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L110", - "id": "locales_en_applock_title", - "community": 35, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L111", - "id": "locales_en_applock_subtitle", - "community": 35, - "norm_label": "subtitle" - }, - { - "label": "unlock", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L112", - "id": "locales_en_applock_unlock", - "community": 35, - "norm_label": "unlock" - }, - { - "label": "prompt", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L113", - "id": "locales_en_applock_prompt", - "community": 35, - "norm_label": "prompt" - }, - { - "label": "signOut_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L114", - "id": "locales_en_applock_signout_title", - "community": 35, - "norm_label": "signout_title" - }, - { - "label": "signOut_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L115", - "id": "locales_en_applock_signout_body", - "community": 35, - "norm_label": "signout_body" - }, - { - "label": "appHeader", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L117", - "id": "locales_en_appheader", - "community": 35, - "norm_label": "appheader" - }, - { - "label": "appName", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L118", - "id": "locales_en_appheader_appname", - "community": 35, - "norm_label": "appname" - }, - { - "label": "sosLabel", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L119", - "id": "locales_en_appheader_soslabel", - "community": 35, - "norm_label": "soslabel" - }, - { - "label": "sosTagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L120", - "id": "locales_en_appheader_sostagline", - "community": 35, - "norm_label": "sostagline" - }, - { - "label": "sosSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L121", - "id": "locales_en_appheader_sossubtitle", - "community": 35, - "norm_label": "sossubtitle" - }, - { - "label": "editProfile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L122", - "id": "locales_en_appheader_editprofile", - "community": 35, - "norm_label": "editprofile" - }, - { - "label": "settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L123", - "id": "locales_en_appheader_settings", - "community": 35, - "norm_label": "settings" - }, - { - "label": "signOut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L124", - "id": "locales_en_appheader_signout", - "community": 35, - "norm_label": "signout" - }, - { - "label": "headerMenu", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L126", - "id": "locales_en_headermenu", - "community": 35, - "norm_label": "headermenu" - }, - { - "label": "profile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L127", - "id": "locales_en_headermenu_profile", - "community": 35, - "norm_label": "profile" - }, - { - "label": "settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L128", - "id": "locales_en_headermenu_settings", - "community": 35, - "norm_label": "settings" - }, - { - "label": "games", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L129", - "id": "locales_en_headermenu_games", - "community": 35, - "norm_label": "games" - }, - { - "label": "debug", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L130", - "id": "locales_en_headermenu_debug", - "community": 35, - "norm_label": "debug" - }, - { - "label": "logout", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L131", - "id": "locales_en_headermenu_logout", - "community": 35, - "norm_label": "logout" - }, - { - "label": "tabs", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L133", - "id": "locales_en_tabs", - "community": 35, - "norm_label": "tabs" - }, - { - "label": "home", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L134", - "id": "locales_en_tabs_home", - "community": 35, - "norm_label": "home" - }, - { - "label": "chat", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L135", - "id": "locales_en_tabs_chat", - "community": 35, - "norm_label": "chat" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L136", - "id": "locales_en_tabs_coach", - "community": 35, - "norm_label": "coach" - }, - { - "label": "blocker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L137", - "id": "locales_en_tabs_blocker", - "community": 35, - "norm_label": "blocker" - }, - { - "label": "mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L138", - "id": "locales_en_tabs_mail", - "community": 35, - "norm_label": "mail" - }, - { - "label": "profile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L139", - "id": "locales_en_tabs_profile", - "community": 35, - "norm_label": "profile" - }, - { - "label": "games", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L141", - "id": "locales_en_games", - "community": 35, - "norm_label": "games" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L142", - "id": "locales_en_games_title", - "community": 35, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L143", - "id": "locales_en_games_subtitle", - "community": 35, - "norm_label": "subtitle" - }, - { - "label": "back_to_picker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L144", - "id": "locales_en_games_back_to_picker", - "community": 35, - "norm_label": "back_to_picker" - }, - { - "label": "last_score", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L145", - "id": "locales_en_games_last_score", - "community": 35, - "norm_label": "last_score" - }, - { - "label": "skeleton_footer", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L146", - "id": "locales_en_games_skeleton_footer", - "community": 35, - "norm_label": "skeleton_footer" - }, - { - "label": "home", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L148", - "id": "locales_en_home", - "community": 35, - "norm_label": "home" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L149", - "id": "locales_en_home_tagline", - "community": 35, - "norm_label": "tagline" - }, - { - "label": "start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L150", - "id": "locales_en_home_start", - "community": 35, - "norm_label": "start" - }, - { - "label": "greeting_morning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L151", - "id": "locales_en_home_greeting_morning", - "community": 35, - "norm_label": "greeting_morning" - }, - { - "label": "greeting_day", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L152", - "id": "locales_en_home_greeting_day", - "community": 35, - "norm_label": "greeting_day" - }, - { - "label": "greeting_evening", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L153", - "id": "locales_en_home_greeting_evening", - "community": 35, - "norm_label": "greeting_evening" - }, - { - "label": "streak_days_one", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L154", - "id": "locales_en_home_streak_days_one", - "community": 35, - "norm_label": "streak_days_one" - }, - { - "label": "streak_days_other", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L155", - "id": "locales_en_home_streak_days_other", - "community": 35, - "norm_label": "streak_days_other" - }, - { - "label": "streak_start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L156", - "id": "locales_en_home_streak_start", - "community": 35, - "norm_label": "streak_start" - }, - { - "label": "quote_of_day", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L157", - "id": "locales_en_home_quote_of_day", - "community": 35, - "norm_label": "quote_of_day" - }, - { - "label": "quick_access", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L158", - "id": "locales_en_home_quick_access", - "community": 35, - "norm_label": "quick_access" - }, - { - "label": "stats_urges", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L159", - "id": "locales_en_home_stats_urges", - "community": 35, - "norm_label": "stats_urges" - }, - { - "label": "stats_chats", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L160", - "id": "locales_en_home_stats_chats", - "community": 35, - "norm_label": "stats_chats" - }, - { - "label": "stats_mails", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L161", - "id": "locales_en_home_stats_mails", - "community": 35, - "norm_label": "stats_mails" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L163", - "id": "locales_en_coach", - "community": 45, - "norm_label": "coach" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L164", - "id": "locales_en_coach_title", - "community": 45, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L165", - "id": "locales_en_coach_subtitle", - "community": 45, - "norm_label": "subtitle" - }, - { - "label": "welcome", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L166", - "id": "locales_en_coach_welcome", - "community": 45, - "norm_label": "welcome" - }, - { - "label": "input_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L167", - "id": "locales_en_coach_input_placeholder", - "community": 45, - "norm_label": "input_placeholder" - }, - { - "label": "new_chat", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L168", - "id": "locales_en_coach_new_chat", - "community": 45, - "norm_label": "new_chat" - }, - { - "label": "lyra", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L169", - "id": "locales_en_coach_lyra", - "community": 45, - "norm_label": "lyra" - }, - { - "label": "modeBadge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L170", - "id": "locales_en_coach_modebadge", - "community": 45, - "norm_label": "modebadge" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L171", - "id": "locales_en_modebadge_coach", - "community": 45, - "norm_label": "coach" - }, - { - "label": "sos", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L172", - "id": "locales_en_modebadge_sos", - "community": 45, - "norm_label": "sos" - }, - { - "label": "placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L174", - "id": "locales_en_coach_placeholder", - "community": 45, - "norm_label": "placeholder" - }, - { - "label": "speaking", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L175", - "id": "locales_en_coach_speaking", - "community": 45, - "norm_label": "speaking" - }, - { - "label": "recording", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L176", - "id": "locales_en_coach_recording", - "community": 45, - "norm_label": "recording" - }, - { - "label": "transcribing", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L177", - "id": "locales_en_coach_transcribing", - "community": 45, - "norm_label": "transcribing" - }, - { - "label": "feedback_saved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L178", - "id": "locales_en_coach_feedback_saved", - "community": 45, - "norm_label": "feedback_saved" - }, - { - "label": "welcome_back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L179", - "id": "locales_en_coach_welcome_back", - "community": 45, - "norm_label": "welcome_back" - }, - { - "label": "online", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L180", - "id": "locales_en_coach_online", - "community": 45, - "norm_label": "online" - }, - { - "label": "thinking", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L181", - "id": "locales_en_coach_thinking", - "community": 45, - "norm_label": "thinking" - }, - { - "label": "error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L182", - "id": "locales_en_coach_error", - "community": 442, - "norm_label": "error" - }, - { - "label": "crisis_bar_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L183", - "id": "locales_en_coach_crisis_bar_label", - "community": 45, - "norm_label": "crisis_bar_label" - }, - { - "label": "blocker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L185", - "id": "locales_en_blocker", - "community": 0, - "norm_label": "blocker" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L186", - "id": "locales_en_blocker_title", - "community": 0, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L187", - "id": "locales_en_blocker_subtitle", - "community": 0, - "norm_label": "subtitle" - }, - { - "label": "status_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L188", - "id": "locales_en_blocker_status_active", - "community": 0, - "norm_label": "status_active" - }, - { - "label": "status_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L189", - "id": "locales_en_blocker_status_inactive", - "community": 0, - "norm_label": "status_inactive" - }, - { - "label": "filter_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L190", - "id": "locales_en_blocker_filter_label", - "community": 0, - "norm_label": "filter_label" - }, - { - "label": "filter_active_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L191", - "id": "locales_en_blocker_filter_active_desc", - "community": 0, - "norm_label": "filter_active_desc" - }, - { - "label": "filter_inactive_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L192", - "id": "locales_en_blocker_filter_inactive_desc", - "community": 0, - "norm_label": "filter_inactive_desc" - }, - { - "label": "tamper_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L193", - "id": "locales_en_blocker_tamper_title", - "community": 0, - "norm_label": "tamper_title" - }, - { - "label": "tamper_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L194", - "id": "locales_en_blocker_tamper_desc", - "community": 0, - "norm_label": "tamper_desc" - }, - { - "label": "custom_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L195", - "id": "locales_en_blocker_custom_domains", - "community": 0, - "norm_label": "custom_domains" - }, - { - "label": "add_domain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L196", - "id": "locales_en_blocker_add_domain", - "community": 0, - "norm_label": "add_domain" - }, - { - "label": "help_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L197", - "id": "locales_en_blocker_help_link", - "community": 0, - "norm_label": "help_link" - }, - { - "label": "status_approved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L198", - "id": "locales_en_blocker_status_approved", - "community": 0, - "norm_label": "status_approved" - }, - { - "label": "status_rejected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L199", - "id": "locales_en_blocker_status_rejected", - "community": 0, - "norm_label": "status_rejected" - }, - { - "label": "status_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L200", - "id": "locales_en_blocker_status_pending", - "community": 0, - "norm_label": "status_pending" - }, - { - "label": "add_sheet_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L201", - "id": "locales_en_blocker_add_sheet_title", - "community": 0, - "norm_label": "add_sheet_title" - }, - { - "label": "add_sheet_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L202", - "id": "locales_en_blocker_add_sheet_label", - "community": 0, - "norm_label": "add_sheet_label" - }, - { - "label": "add_sheet_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L203", - "id": "locales_en_blocker_add_sheet_placeholder", - "community": 0, - "norm_label": "add_sheet_placeholder" - }, - { - "label": "add_sheet_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L204", - "id": "locales_en_blocker_add_sheet_invalid", - "community": 0, - "norm_label": "add_sheet_invalid" - }, - { - "label": "add_sheet_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L205", - "id": "locales_en_blocker_add_sheet_help", - "community": 0, - "norm_label": "add_sheet_help" - }, - { - "label": "preview_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L206", - "id": "locales_en_blocker_preview_web", - "community": 0, - "norm_label": "preview_web" - }, - { - "label": "preview_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L207", - "id": "locales_en_blocker_preview_mail", - "community": 0, - "norm_label": "preview_mail" - }, - { - "label": "preview_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L208", - "id": "locales_en_blocker_preview_invalid", - "community": 0, - "norm_label": "preview_invalid" - }, - { - "label": "custom_filter_overview_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L209", - "id": "locales_en_blocker_custom_filter_overview_title", - "community": 0, - "norm_label": "custom_filter_overview_title" - }, - { - "label": "custom_filter_overview_count", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L210", - "id": "locales_en_blocker_custom_filter_overview_count", - "community": 0, - "norm_label": "custom_filter_overview_count" - }, - { - "label": "add_sheet_warning_free", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L211", - "id": "locales_en_blocker_add_sheet_warning_free", - "community": 0, - "norm_label": "add_sheet_warning_free" - }, - { - "label": "add_sheet_warning_pro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L212", - "id": "locales_en_blocker_add_sheet_warning_pro", - "community": 0, - "norm_label": "add_sheet_warning_pro" - }, - { - "label": "add_sheet_confirm_permanent", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L213", - "id": "locales_en_blocker_add_sheet_confirm_permanent", - "community": 0, - "norm_label": "add_sheet_confirm_permanent" - }, - { - "label": "add_sheet_add_failed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L214", - "id": "locales_en_blocker_add_sheet_add_failed", - "community": 0, - "norm_label": "add_sheet_add_failed" - }, - { - "label": "add_sheet_already_global", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L215", - "id": "locales_en_blocker_add_sheet_already_global", - "community": 0, - "norm_label": "add_sheet_already_global" - }, - { - "label": "add_sheet_already_protected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L216", - "id": "locales_en_blocker_add_sheet_already_protected", - "community": 0, - "norm_label": "add_sheet_already_protected" - }, - { - "label": "add_sheet_in_global_not_vip", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L217", - "id": "locales_en_blocker_add_sheet_in_global_not_vip", - "community": 0, - "norm_label": "add_sheet_in_global_not_vip" - }, - { - "label": "add_sheet_add_to_vip_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L218", - "id": "locales_en_blocker_add_sheet_add_to_vip_cta", - "community": 0, - "norm_label": "add_sheet_add_to_vip_cta" - }, - { - "label": "cooldown_banner_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L219", - "id": "locales_en_blocker_cooldown_banner_title", - "community": 0, - "norm_label": "cooldown_banner_title" - }, - { - "label": "deactivation_actionsheet_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L220", - "id": "locales_en_blocker_deactivation_actionsheet_title", - "community": 0, - "norm_label": "deactivation_actionsheet_title" - }, - { - "label": "deactivation_actionsheet_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L221", - "id": "locales_en_blocker_deactivation_actionsheet_message", - "community": 0, - "norm_label": "deactivation_actionsheet_message" - }, - { - "label": "deactivation_start_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L222", - "id": "locales_en_blocker_deactivation_start_cta", - "community": 0, - "norm_label": "deactivation_start_cta" - }, - { - "label": "deactivation_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L223", - "id": "locales_en_blocker_deactivation_failed_msg", - "community": 0, - "norm_label": "deactivation_failed_msg" - }, - { - "label": "deactivation_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L224", - "id": "locales_en_blocker_deactivation_heading", - "community": 0, - "norm_label": "deactivation_heading" - }, - { - "label": "deactivation_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L225", - "id": "locales_en_blocker_deactivation_title", - "community": 0, - "norm_label": "deactivation_title" - }, - { - "label": "deactivation_intro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L226", - "id": "locales_en_blocker_deactivation_intro", - "community": 0, - "norm_label": "deactivation_intro" - }, - { - "label": "deactivation_bullet1_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L227", - "id": "locales_en_blocker_deactivation_bullet1_title", - "community": 0, - "norm_label": "deactivation_bullet1_title" - }, - { - "label": "deactivation_bullet1_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L228", - "id": "locales_en_blocker_deactivation_bullet1_text", - "community": 0, - "norm_label": "deactivation_bullet1_text" - }, - { - "label": "deactivation_bullet2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L229", - "id": "locales_en_blocker_deactivation_bullet2_title", - "community": 0, - "norm_label": "deactivation_bullet2_title" - }, - { - "label": "deactivation_bullet2_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L230", - "id": "locales_en_blocker_deactivation_bullet2_text", - "community": 0, - "norm_label": "deactivation_bullet2_text" - }, - { - "label": "deactivation_bullet3_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L231", - "id": "locales_en_blocker_deactivation_bullet3_title", - "community": 0, - "norm_label": "deactivation_bullet3_title" - }, - { - "label": "deactivation_bullet3_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L232", - "id": "locales_en_blocker_deactivation_bullet3_text", - "community": 0, - "norm_label": "deactivation_bullet3_text" - }, - { - "label": "deactivation_breathe_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L233", - "id": "locales_en_blocker_deactivation_breathe_cta", - "community": 0, - "norm_label": "deactivation_breathe_cta" - }, - { - "label": "deactivation_start_anyway", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L234", - "id": "locales_en_blocker_deactivation_start_anyway", - "community": 0, - "norm_label": "deactivation_start_anyway" - }, - { - "label": "deactivation_starting", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L235", - "id": "locales_en_blocker_deactivation_starting", - "community": 0, - "norm_label": "deactivation_starting" - }, - { - "label": "deactivation_cancel_failed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L236", - "id": "locales_en_blocker_deactivation_cancel_failed", - "community": 0, - "norm_label": "deactivation_cancel_failed" - }, - { - "label": "domain_section_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L237", - "id": "locales_en_blocker_domain_section_title", - "community": 0, - "norm_label": "domain_section_title" - }, - { - "label": "domain_add_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L238", - "id": "locales_en_blocker_domain_add_a11y", - "community": 0, - "norm_label": "domain_add_a11y" - }, - { - "label": "domain_limit_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L239", - "id": "locales_en_blocker_domain_limit_title", - "community": 0, - "norm_label": "domain_limit_title" - }, - { - "label": "domain_limit_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L240", - "id": "locales_en_blocker_domain_limit_desc", - "community": 0, - "norm_label": "domain_limit_desc" - }, - { - "label": "domain_empty", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L241", - "id": "locales_en_blocker_domain_empty", - "community": 0, - "norm_label": "domain_empty" - }, - { - "label": "domain_badge_voting", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L242", - "id": "locales_en_blocker_domain_badge_voting", - "community": 0, - "norm_label": "domain_badge_voting" - }, - { - "label": "domain_badge_pruefung", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L243", - "id": "locales_en_blocker_domain_badge_pruefung", - "community": 0, - "norm_label": "domain_badge_pruefung" - }, - { - "label": "domain_badge_rejected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L244", - "id": "locales_en_blocker_domain_badge_rejected", - "community": 0, - "norm_label": "domain_badge_rejected" - }, - { - "label": "domain_badge_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L245", - "id": "locales_en_blocker_domain_badge_active", - "community": 0, - "norm_label": "domain_badge_active" - }, - { - "label": "domain_btn_freigeben", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L246", - "id": "locales_en_blocker_domain_btn_freigeben", - "community": 0, - "norm_label": "domain_btn_freigeben" - }, - { - "label": "domain_btn_erneut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L247", - "id": "locales_en_blocker_domain_btn_erneut", - "community": 0, - "norm_label": "domain_btn_erneut" - }, - { - "label": "domain_btn_in_abstimmung", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L248", - "id": "locales_en_blocker_domain_btn_in_abstimmung", - "community": 0, - "norm_label": "domain_btn_in_abstimmung" - }, - { - "label": "domain_btn_rebreak_prueft", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L249", - "id": "locales_en_blocker_domain_btn_rebreak_prueft", - "community": 0, - "norm_label": "domain_btn_rebreak_prueft" - }, - { - "label": "domain_confirm_legend_resubmit", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L250", - "id": "locales_en_blocker_domain_confirm_legend_resubmit", - "community": 0, - "norm_label": "domain_confirm_legend_resubmit" - }, - { - "label": "domain_confirm_legend_first", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L251", - "id": "locales_en_blocker_domain_confirm_legend_first", - "community": 0, - "norm_label": "domain_confirm_legend_first" - }, - { - "label": "domain_confirm_community_resubmit", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L252", - "id": "locales_en_blocker_domain_confirm_community_resubmit", - "community": 0, - "norm_label": "domain_confirm_community_resubmit" - }, - { - "label": "domain_confirm_community_first", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L253", - "id": "locales_en_blocker_domain_confirm_community_first", - "community": 0, - "norm_label": "domain_confirm_community_first" - }, - { - "label": "domain_confirm_legend_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L254", - "id": "locales_en_blocker_domain_confirm_legend_message", - "community": 0, - "norm_label": "domain_confirm_legend_message" - }, - { - "label": "domain_confirm_community_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L255", - "id": "locales_en_blocker_domain_confirm_community_message", - "community": 0, - "norm_label": "domain_confirm_community_message" - }, - { - "label": "domain_success_legend_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L256", - "id": "locales_en_blocker_domain_success_legend_title", - "community": 0, - "norm_label": "domain_success_legend_title" - }, - { - "label": "domain_success_community_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L257", - "id": "locales_en_blocker_domain_success_community_title", - "community": 0, - "norm_label": "domain_success_community_title" - }, - { - "label": "domain_success_legend_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L258", - "id": "locales_en_blocker_domain_success_legend_message", - "community": 0, - "norm_label": "domain_success_legend_message" - }, - { - "label": "domain_success_community_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L259", - "id": "locales_en_blocker_domain_success_community_message", - "community": 0, - "norm_label": "domain_success_community_message" - }, - { - "label": "upgrade_alert_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L260", - "id": "locales_en_blocker_upgrade_alert_title", - "community": 0, - "norm_label": "upgrade_alert_title" - }, - { - "label": "upgrade_alert_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L261", - "id": "locales_en_blocker_upgrade_alert_desc", - "community": 0, - "norm_label": "upgrade_alert_desc" - }, - { - "label": "protection_card_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L262", - "id": "locales_en_blocker_protection_card_title", - "community": 0, - "norm_label": "protection_card_title" - }, - { - "label": "protection_card_locked_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L263", - "id": "locales_en_blocker_protection_card_locked_title", - "community": 0, - "norm_label": "protection_card_locked_title" - }, - { - "label": "protection_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L264", - "id": "locales_en_blocker_protection_subtitle_inactive", - "community": 0, - "norm_label": "protection_subtitle_inactive" - }, - { - "label": "protection_subtitle_cooldown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L265", - "id": "locales_en_blocker_protection_subtitle_cooldown", - "community": 0, - "norm_label": "protection_subtitle_cooldown" - }, - { - "label": "protection_subtitle_free", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L266", - "id": "locales_en_blocker_protection_subtitle_free", - "community": 0, - "norm_label": "protection_subtitle_free" - }, - { - "label": "protection_subtitle_legend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L267", - "id": "locales_en_blocker_protection_subtitle_legend", - "community": 0, - "norm_label": "protection_subtitle_legend" - }, - { - "label": "protection_subtitle_pro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L268", - "id": "locales_en_blocker_protection_subtitle_pro", - "community": 0, - "norm_label": "protection_subtitle_pro" - }, - { - "label": "protection_settings_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L269", - "id": "locales_en_blocker_protection_settings_a11y", - "community": 0, - "norm_label": "protection_settings_a11y" - }, - { - "label": "protection_stat_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L270", - "id": "locales_en_blocker_protection_stat_domains", - "community": 0, - "norm_label": "protection_stat_domains" - }, - { - "label": "protection_stat_method", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L271", - "id": "locales_en_blocker_protection_stat_method", - "community": 0, - "norm_label": "protection_stat_method" - }, - { - "label": "protection_stat_method_dns", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L272", - "id": "locales_en_blocker_protection_stat_method_dns", - "community": 0, - "norm_label": "protection_stat_method_dns" - }, - { - "label": "protection_stat_method_native", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L273", - "id": "locales_en_blocker_protection_stat_method_native", - "community": 0, - "norm_label": "protection_stat_method_native" - }, - { - "label": "protection_stat_status", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L274", - "id": "locales_en_blocker_protection_stat_status", - "community": 0, - "norm_label": "protection_stat_status" - }, - { - "label": "protection_stat_status_live", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L275", - "id": "locales_en_blocker_protection_stat_status_live", - "community": 0, - "norm_label": "protection_stat_status_live" - }, - { - "label": "permission_denied", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L276", - "id": "locales_en_blocker_permission_denied", - "community": 432, - "norm_label": "permission_denied" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L277", - "id": "locales_en_permission_denied_title", - "community": 432, - "norm_label": "title" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L278", - "id": "locales_en_permission_denied_body", - "community": 432, - "norm_label": "body" - }, - { - "label": "retry_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L279", - "id": "locales_en_permission_denied_retry_cta", - "community": 432, - "norm_label": "retry_cta" - }, - { - "label": "retry_loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L280", - "id": "locales_en_permission_denied_retry_loading", - "community": 432, - "norm_label": "retry_loading" - }, - { - "label": "settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L281", - "id": "locales_en_permission_denied_settings_cta", - "community": 432, - "norm_label": "settings_cta" - }, - { - "label": "fallback_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L282", - "id": "locales_en_permission_denied_fallback_label", - "community": 432, - "norm_label": "fallback_label" - }, - { - "label": "fallback_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L283", - "id": "locales_en_permission_denied_fallback_body", - "community": 432, - "norm_label": "fallback_body" - }, - { - "label": "family_controls_error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L285", - "id": "locales_en_blocker_family_controls_error", - "community": 432, - "norm_label": "family_controls_error" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L286", - "id": "locales_en_family_controls_error_title", - "community": 432, - "norm_label": "title" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L287", - "id": "locales_en_family_controls_error_body", - "community": 432, - "norm_label": "body" - }, - { - "label": "retry_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L288", - "id": "locales_en_family_controls_error_retry_cta", - "community": 432, - "norm_label": "retry_cta" - }, - { - "label": "retry_loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L289", - "id": "locales_en_family_controls_error_retry_loading", - "community": 432, - "norm_label": "retry_loading" - }, - { - "label": "settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L290", - "id": "locales_en_family_controls_error_settings_cta", - "community": 432, - "norm_label": "settings_cta" - }, - { - "label": "fallback_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L291", - "id": "locales_en_family_controls_error_fallback_label", - "community": 432, - "norm_label": "fallback_label" - }, - { - "label": "fallback_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L292", - "id": "locales_en_family_controls_error_fallback_body", - "community": 432, - "norm_label": "fallback_body" - }, - { - "label": "activate_url_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L294", - "id": "locales_en_blocker_activate_url_failed_title", - "community": 0, - "norm_label": "activate_url_failed_title" - }, - { - "label": "activate_url_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L295", - "id": "locales_en_blocker_activate_url_failed_msg", - "community": 0, - "norm_label": "activate_url_failed_msg" - }, - { - "label": "activate_settings_btn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L296", - "id": "locales_en_blocker_activate_settings_btn", - "community": 0, - "norm_label": "activate_settings_btn" - }, - { - "label": "protection_off_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L297", - "id": "locales_en_blocker_protection_off_title", - "community": 0, - "norm_label": "protection_off_title" - }, - { - "label": "protection_off_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L298", - "id": "locales_en_blocker_protection_off_message", - "community": 0, - "norm_label": "protection_off_message" - }, - { - "label": "reactivate_btn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L299", - "id": "locales_en_blocker_reactivate_btn", - "community": 0, - "norm_label": "reactivate_btn" - }, - { - "label": "protection_off_later", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L300", - "id": "locales_en_blocker_protection_off_later", - "community": 0, - "norm_label": "protection_off_later" - }, - { - "label": "activate_app_lock_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L301", - "id": "locales_en_blocker_activate_app_lock_failed_title", - "community": 0, - "norm_label": "activate_app_lock_failed_title" - }, - { - "label": "activate_app_lock_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L302", - "id": "locales_en_blocker_activate_app_lock_failed_msg", - "community": 0, - "norm_label": "activate_app_lock_failed_msg" - }, - { - "label": "sync_list_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L303", - "id": "locales_en_blocker_sync_list_failed_title", - "community": 0, - "norm_label": "sync_list_failed_title" - }, - { - "label": "sync_list_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L304", - "id": "locales_en_blocker_sync_list_failed_msg", - "community": 0, - "norm_label": "sync_list_failed_msg" - }, - { - "label": "activation_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L305", - "id": "locales_en_blocker_activation_failed_title", - "community": 0, - "norm_label": "activation_failed_title" - }, - { - "label": "details_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L306", - "id": "locales_en_blocker_details_done", - "community": 0, - "norm_label": "details_done" - }, - { - "label": "details_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L307", - "id": "locales_en_blocker_details_title", - "community": 0, - "norm_label": "details_title" - }, - { - "label": "details_active_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L308", - "id": "locales_en_blocker_details_active_title", - "community": 0, - "norm_label": "details_active_title" - }, - { - "label": "details_domains_blocked", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L309", - "id": "locales_en_blocker_details_domains_blocked", - "community": 0, - "norm_label": "details_domains_blocked" - }, - { - "label": "details_layers_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L310", - "id": "locales_en_blocker_details_layers_heading", - "community": 0, - "norm_label": "details_layers_heading" - }, - { - "label": "details_layer_url_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L311", - "id": "locales_en_blocker_details_layer_url_label", - "community": 0, - "norm_label": "details_layer_url_label" - }, - { - "label": "details_layer_url_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L312", - "id": "locales_en_blocker_details_layer_url_desc", - "community": 0, - "norm_label": "details_layer_url_desc" - }, - { - "label": "details_layer_applock_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L313", - "id": "locales_en_blocker_details_layer_applock_label", - "community": 0, - "norm_label": "details_layer_applock_label" - }, - { - "label": "details_layer_applock_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L314", - "id": "locales_en_blocker_details_layer_applock_desc", - "community": 0, - "norm_label": "details_layer_applock_desc" - }, - { - "label": "details_layer_vpn_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L315", - "id": "locales_en_blocker_details_layer_vpn_label", - "community": 0, - "norm_label": "details_layer_vpn_label" - }, - { - "label": "details_layer_vpn_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L316", - "id": "locales_en_blocker_details_layer_vpn_desc", - "community": 0, - "norm_label": "details_layer_vpn_desc" - }, - { - "label": "details_layer_a11y_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L317", - "id": "locales_en_blocker_details_layer_a11y_label", - "community": 0, - "norm_label": "details_layer_a11y_label" - }, - { - "label": "details_layer_a11y_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L318", - "id": "locales_en_blocker_details_layer_a11y_desc", - "community": 0, - "norm_label": "details_layer_a11y_desc" - }, - { - "label": "details_layer_tamper_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L319", - "id": "locales_en_blocker_details_layer_tamper_label", - "community": 0, - "norm_label": "details_layer_tamper_label" - }, - { - "label": "details_layer_tamper_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L320", - "id": "locales_en_blocker_details_layer_tamper_desc", - "community": 0, - "norm_label": "details_layer_tamper_desc" - }, - { - "label": "details_lyra_cta_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L321", - "id": "locales_en_blocker_details_lyra_cta_title", - "community": 0, - "norm_label": "details_lyra_cta_title" - }, - { - "label": "details_lyra_cta_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L322", - "id": "locales_en_blocker_details_lyra_cta_subtitle", - "community": 0, - "norm_label": "details_lyra_cta_subtitle" - }, - { - "label": "details_deactivate_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L323", - "id": "locales_en_blocker_details_deactivate_link", - "community": 0, - "norm_label": "details_deactivate_link" - }, - { - "label": "layers_url_filter_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L324", - "id": "locales_en_blocker_layers_url_filter_title", - "community": 0, - "norm_label": "layers_url_filter_title" - }, - { - "label": "layers_url_filter_subtitle_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L325", - "id": "locales_en_blocker_layers_url_filter_subtitle_active", - "community": 0, - "norm_label": "layers_url_filter_subtitle_active" - }, - { - "label": "layers_url_filter_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L326", - "id": "locales_en_blocker_layers_url_filter_subtitle_inactive", - "community": 0, - "norm_label": "layers_url_filter_subtitle_inactive" - }, - { - "label": "layers_app_lock_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L327", - "id": "locales_en_blocker_layers_app_lock_title", - "community": 0, - "norm_label": "layers_app_lock_title" - }, - { - "label": "layers_app_lock_subtitle_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L328", - "id": "locales_en_blocker_layers_app_lock_subtitle_active", - "community": 0, - "norm_label": "layers_app_lock_subtitle_active" - }, - { - "label": "layers_app_lock_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L329", - "id": "locales_en_blocker_layers_app_lock_subtitle_inactive", - "community": 0, - "norm_label": "layers_app_lock_subtitle_inactive" - }, - { - "label": "layers_app_lock_warning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L330", - "id": "locales_en_blocker_layers_app_lock_warning", - "community": 0, - "norm_label": "layers_app_lock_warning" - }, - { - "label": "layers_app_lock_locked_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L331", - "id": "locales_en_blocker_layers_app_lock_locked_hint", - "community": 0, - "norm_label": "layers_app_lock_locked_hint" - }, - { - "label": "screentime_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L332", - "id": "locales_en_blocker_screentime_title", - "community": 0, - "norm_label": "screentime_title" - }, - { - "label": "screentime_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L333", - "id": "locales_en_blocker_screentime_desc", - "community": 0, - "norm_label": "screentime_desc" - }, - { - "label": "screentime_generate_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L334", - "id": "locales_en_blocker_screentime_generate_cta", - "community": 0, - "norm_label": "screentime_generate_cta" - }, - { - "label": "screentime_code_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L335", - "id": "locales_en_blocker_screentime_code_label", - "community": 0, - "norm_label": "screentime_code_label" - }, - { - "label": "screentime_step1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L336", - "id": "locales_en_blocker_screentime_step1", - "community": 0, - "norm_label": "screentime_step1" - }, - { - "label": "screentime_step2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L337", - "id": "locales_en_blocker_screentime_step2", - "community": 0, - "norm_label": "screentime_step2" - }, - { - "label": "screentime_step3", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L338", - "id": "locales_en_blocker_screentime_step3", - "community": 0, - "norm_label": "screentime_step3" - }, - { - "label": "screentime_step_note", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L339", - "id": "locales_en_blocker_screentime_step_note", - "community": 0, - "norm_label": "screentime_step_note" - }, - { - "label": "screentime_open_settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L340", - "id": "locales_en_blocker_screentime_open_settings_cta", - "community": 0, - "norm_label": "screentime_open_settings_cta" - }, - { - "label": "screentime_confirm_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L341", - "id": "locales_en_blocker_screentime_confirm_cta", - "community": 0, - "norm_label": "screentime_confirm_cta" - }, - { - "label": "screentime_confirmed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L342", - "id": "locales_en_blocker_screentime_confirmed_title", - "community": 0, - "norm_label": "screentime_confirmed_title" - }, - { - "label": "screentime_confirmed_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L343", - "id": "locales_en_blocker_screentime_confirmed_desc", - "community": 0, - "norm_label": "screentime_confirmed_desc" - }, - { - "label": "layers_a11y_subtitle_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L344", - "id": "locales_en_blocker_layers_a11y_subtitle_active", - "community": 0, - "norm_label": "layers_a11y_subtitle_active" - }, - { - "label": "layers_a11y_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L345", - "id": "locales_en_blocker_layers_a11y_subtitle_inactive", - "community": 0, - "norm_label": "layers_a11y_subtitle_inactive" - }, - { - "label": "kpi_global_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L346", - "id": "locales_en_blocker_kpi_global_label", - "community": 0, - "norm_label": "kpi_global_label" - }, - { - "label": "kpi_global_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L347", - "id": "locales_en_blocker_kpi_global_subtitle", - "community": 0, - "norm_label": "kpi_global_subtitle" - }, - { - "label": "delta_week", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L348", - "id": "locales_en_blocker_delta_week", - "community": 0, - "norm_label": "delta_week" - }, - { - "label": "delta_month", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L349", - "id": "locales_en_blocker_delta_month", - "community": 0, - "norm_label": "delta_month" - }, - { - "label": "kpi_submissions_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L350", - "id": "locales_en_blocker_kpi_submissions_title", - "community": 0, - "norm_label": "kpi_submissions_title" - }, - { - "label": "kpi_submissions_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L351", - "id": "locales_en_blocker_kpi_submissions_subtitle", - "community": 0, - "norm_label": "kpi_submissions_subtitle" - }, - { - "label": "kpi_my_submissions", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L352", - "id": "locales_en_blocker_kpi_my_submissions", - "community": 0, - "norm_label": "kpi_my_submissions" - }, - { - "label": "kpi_status_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L353", - "id": "locales_en_blocker_kpi_status_active", - "community": 0, - "norm_label": "kpi_status_active" - }, - { - "label": "kpi_status_vote", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L354", - "id": "locales_en_blocker_kpi_status_vote", - "community": 0, - "norm_label": "kpi_status_vote" - }, - { - "label": "kpi_status_review", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L355", - "id": "locales_en_blocker_kpi_status_review", - "community": 0, - "norm_label": "kpi_status_review" - }, - { - "label": "kpi_in_vote", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L356", - "id": "locales_en_blocker_kpi_in_vote", - "community": 0, - "norm_label": "kpi_in_vote" - }, - { - "label": "kpi_in_review", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L357", - "id": "locales_en_blocker_kpi_in_review", - "community": 0, - "norm_label": "kpi_in_review" - }, - { - "label": "kpi_avg_per_user", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L358", - "id": "locales_en_blocker_kpi_avg_per_user", - "community": 0, - "norm_label": "kpi_avg_per_user" - }, - { - "label": "kpi_avg_wait", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L359", - "id": "locales_en_blocker_kpi_avg_wait", - "community": 0, - "norm_label": "kpi_avg_wait" - }, - { - "label": "kpi_days_suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L360", - "id": "locales_en_blocker_kpi_days_suffix", - "community": 0, - "norm_label": "kpi_days_suffix" - }, - { - "label": "faq_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L361", - "id": "locales_en_blocker_faq_heading", - "community": 0, - "norm_label": "faq_heading" - }, - { - "label": "faq1_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L362", - "id": "locales_en_blocker_faq1_q", - "community": 0, - "norm_label": "faq1_q" - }, - { - "label": "faq1_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L363", - "id": "locales_en_blocker_faq1_a", - "community": 0, - "norm_label": "faq1_a" - }, - { - "label": "faq2_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L364", - "id": "locales_en_blocker_faq2_q", - "community": 0, - "norm_label": "faq2_q" - }, - { - "label": "faq2_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L365", - "id": "locales_en_blocker_faq2_a", - "community": 0, - "norm_label": "faq2_a" - }, - { - "label": "faq3_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L366", - "id": "locales_en_blocker_faq3_q", - "community": 0, - "norm_label": "faq3_q" - }, - { - "label": "faq3_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L367", - "id": "locales_en_blocker_faq3_a", - "community": 0, - "norm_label": "faq3_a" - }, - { - "label": "faq4_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L368", - "id": "locales_en_blocker_faq4_q", - "community": 0, - "norm_label": "faq4_q" - }, - { - "label": "faq4_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L369", - "id": "locales_en_blocker_faq4_a", - "community": 0, - "norm_label": "faq4_a" - }, - { - "label": "faq5_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L370", - "id": "locales_en_blocker_faq5_q", - "community": 0, - "norm_label": "faq5_q" - }, - { - "label": "faq5_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L371", - "id": "locales_en_blocker_faq5_a", - "community": 0, - "norm_label": "faq5_a" - }, - { - "label": "faq6_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L372", - "id": "locales_en_blocker_faq6_q", - "community": 0, - "norm_label": "faq6_q" - }, - { - "label": "faq6_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L373", - "id": "locales_en_blocker_faq6_a", - "community": 0, - "norm_label": "faq6_a" - }, - { - "label": "faq7_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L374", - "id": "locales_en_blocker_faq7_q", - "community": 0, - "norm_label": "faq7_q" - }, - { - "label": "faq7_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L375", - "id": "locales_en_blocker_faq7_a", - "community": 0, - "norm_label": "faq7_a" - }, - { - "label": "faq8_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L376", - "id": "locales_en_blocker_faq8_q", - "community": 0, - "norm_label": "faq8_q" - }, - { - "label": "faq8_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L377", - "id": "locales_en_blocker_faq8_a", - "community": 0, - "norm_label": "faq8_a" - }, - { - "label": "faq9_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L378", - "id": "locales_en_blocker_faq9_q", - "community": 0, - "norm_label": "faq9_q" - }, - { - "label": "faq9_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L379", - "id": "locales_en_blocker_faq9_a", - "community": 0, - "norm_label": "faq9_a" - }, - { - "label": "more_info_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L380", - "id": "locales_en_blocker_more_info_title", - "community": 0, - "norm_label": "more_info_title" - }, - { - "label": "cooldown_elapsed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L381", - "id": "locales_en_blocker_cooldown_elapsed_title", - "community": 0, - "norm_label": "cooldown_elapsed_title" - }, - { - "label": "cooldown_elapsed_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L382", - "id": "locales_en_blocker_cooldown_elapsed_message", - "community": 0, - "norm_label": "cooldown_elapsed_message" - }, - { - "label": "cooldown_elapsed_message_ios", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L383", - "id": "locales_en_blocker_cooldown_elapsed_message_ios", - "community": 0, - "norm_label": "cooldown_elapsed_message_ios" - }, - { - "label": "cooldown_elapsed_open_settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L384", - "id": "locales_en_blocker_cooldown_elapsed_open_settings", - "community": 0, - "norm_label": "cooldown_elapsed_open_settings" - }, - { - "label": "app_lock_coming_soon_badge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L385", - "id": "locales_en_blocker_app_lock_coming_soon_badge", - "community": 0, - "norm_label": "app_lock_coming_soon_badge" - }, - { - "label": "app_lock_coming_soon_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L386", - "id": "locales_en_blocker_app_lock_coming_soon_desc", - "community": 0, - "norm_label": "app_lock_coming_soon_desc" - }, - { - "label": "type_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L387", - "id": "locales_en_blocker_type_web", - "community": 0, - "norm_label": "type_web" - }, - { - "label": "type_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L388", - "id": "locales_en_blocker_type_mail", - "community": 0, - "norm_label": "type_mail" - }, - { - "label": "add_web_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L389", - "id": "locales_en_blocker_add_web_label", - "community": 0, - "norm_label": "add_web_label" - }, - { - "label": "add_web_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L390", - "id": "locales_en_blocker_add_web_placeholder", - "community": 0, - "norm_label": "add_web_placeholder" - }, - { - "label": "add_web_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L391", - "id": "locales_en_blocker_add_web_help", - "community": 0, - "norm_label": "add_web_help" - }, - { - "label": "add_mail_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L392", - "id": "locales_en_blocker_add_mail_label", - "community": 0, - "norm_label": "add_mail_label" - }, - { - "label": "add_mail_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L393", - "id": "locales_en_blocker_add_mail_placeholder", - "community": 0, - "norm_label": "add_mail_placeholder" - }, - { - "label": "add_mail_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L394", - "id": "locales_en_blocker_add_mail_help", - "community": 0, - "norm_label": "add_mail_help" - }, - { - "label": "add_mail_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L395", - "id": "locales_en_blocker_add_mail_invalid", - "community": 0, - "norm_label": "add_mail_invalid" - }, - { - "label": "add_sheet_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L396", - "id": "locales_en_blocker_add_sheet_cta", - "community": 0, - "norm_label": "add_sheet_cta" - }, - { - "label": "section_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L397", - "id": "locales_en_blocker_section_domains", - "community": 0, - "norm_label": "section_domains" - }, - { - "label": "section_mails", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L398", - "id": "locales_en_blocker_section_mails", - "community": 0, - "norm_label": "section_mails" - }, - { - "label": "count_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L399", - "id": "locales_en_blocker_count_label", - "community": 0, - "norm_label": "count_label" - }, - { - "label": "error_web_limit_reached", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L400", - "id": "locales_en_blocker_error_web_limit_reached", - "community": 0, - "norm_label": "error_web_limit_reached" - }, - { - "label": "error_mail_limit_reached", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L401", - "id": "locales_en_blocker_error_mail_limit_reached", - "community": 0, - "norm_label": "error_mail_limit_reached" - }, - { - "label": "error_limit_reached", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L402", - "id": "locales_en_blocker_error_limit_reached", - "community": 0, - "norm_label": "error_limit_reached" - }, - { - "label": "error_invalid_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L403", - "id": "locales_en_blocker_error_invalid_mail", - "community": 0, - "norm_label": "error_invalid_mail" - }, - { - "label": "error_invalid_input", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L404", - "id": "locales_en_blocker_error_invalid_input", - "community": 45, - "norm_label": "error_invalid_input" - }, - { - "label": "error_public_domain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L405", - "id": "locales_en_blocker_error_public_domain", - "community": 0, - "norm_label": "error_public_domain" - }, - { - "label": "error_duplicate", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L406", - "id": "locales_en_blocker_error_duplicate", - "community": 0, - "norm_label": "error_duplicate" - }, - { - "label": "kind_override_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L407", - "id": "locales_en_blocker_kind_override_label", - "community": 0, - "norm_label": "kind_override_label" - }, - { - "label": "empty_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L408", - "id": "locales_en_blocker_empty_web", - "community": 0, - "norm_label": "empty_web" - }, - { - "label": "empty_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L409", - "id": "locales_en_blocker_empty_mail", - "community": 0, - "norm_label": "empty_mail" - }, - { - "label": "vip_section_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L410", - "id": "locales_en_blocker_vip_section_title", - "community": 0, - "norm_label": "vip_section_title" - }, - { - "label": "vip_empty", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L411", - "id": "locales_en_blocker_vip_empty", - "community": 0, - "norm_label": "vip_empty" - }, - { - "label": "vip_global_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L412", - "id": "locales_en_blocker_vip_global_hint", - "community": 0, - "norm_label": "vip_global_hint" - }, - { - "label": "my_filters_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L413", - "id": "locales_en_blocker_my_filters_title", - "community": 0, - "norm_label": "my_filters_title" - }, - { - "label": "my_filters_empty", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L414", - "id": "locales_en_blocker_my_filters_empty", - "community": 0, - "norm_label": "my_filters_empty" - }, - { - "label": "vip_layer2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L415", - "id": "locales_en_blocker_vip_layer2_title", - "community": 0, - "norm_label": "vip_layer2_title" - }, - { - "label": "vip_layer2_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L416", - "id": "locales_en_blocker_vip_layer2_desc", - "community": 0, - "norm_label": "vip_layer2_desc" - }, - { - "label": "vip_layer2_global_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L417", - "id": "locales_en_blocker_vip_layer2_global_hint", - "community": 0, - "norm_label": "vip_layer2_global_hint" - }, - { - "label": "vip_layer2_count", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L418", - "id": "locales_en_blocker_vip_layer2_count", - "community": 0, - "norm_label": "vip_layer2_count" - }, - { - "label": "vip_section_custom_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L419", - "id": "locales_en_blocker_vip_section_custom_title", - "community": 0, - "norm_label": "vip_section_custom_title" - }, - { - "label": "vip_section_curated_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L420", - "id": "locales_en_blocker_vip_section_curated_title", - "community": 0, - "norm_label": "vip_section_curated_title" - }, - { - "label": "vip_section_custom_count", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L421", - "id": "locales_en_blocker_vip_section_custom_count", - "community": 0, - "norm_label": "vip_section_custom_count" - }, - { - "label": "vip_section_curated_count", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L422", - "id": "locales_en_blocker_vip_section_curated_count", - "community": 0, - "norm_label": "vip_section_curated_count" - }, - { - "label": "remove_domain_sheet_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L423", - "id": "locales_en_blocker_remove_domain_sheet_heading", - "community": 0, - "norm_label": "remove_domain_sheet_heading" - }, - { - "label": "remove_domain_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L424", - "id": "locales_en_blocker_remove_domain_title", - "community": 0, - "norm_label": "remove_domain_title" - }, - { - "label": "remove_domain_intro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L425", - "id": "locales_en_blocker_remove_domain_intro", - "community": 0, - "norm_label": "remove_domain_intro" - }, - { - "label": "remove_domain_bullet1_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L426", - "id": "locales_en_blocker_remove_domain_bullet1_title", - "community": 0, - "norm_label": "remove_domain_bullet1_title" - }, - { - "label": "remove_domain_bullet1_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L427", - "id": "locales_en_blocker_remove_domain_bullet1_text", - "community": 0, - "norm_label": "remove_domain_bullet1_text" - }, - { - "label": "remove_domain_bullet2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L428", - "id": "locales_en_blocker_remove_domain_bullet2_title", - "community": 0, - "norm_label": "remove_domain_bullet2_title" - }, - { - "label": "remove_domain_bullet2_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L429", - "id": "locales_en_blocker_remove_domain_bullet2_text", - "community": 0, - "norm_label": "remove_domain_bullet2_text" - }, - { - "label": "remove_domain_keep_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L430", - "id": "locales_en_blocker_remove_domain_keep_cta", - "community": 0, - "norm_label": "remove_domain_keep_cta" - }, - { - "label": "remove_domain_remove_anyway", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L431", - "id": "locales_en_blocker_remove_domain_remove_anyway", - "community": 0, - "norm_label": "remove_domain_remove_anyway" - }, - { - "label": "remove_domain_removing", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L432", - "id": "locales_en_blocker_remove_domain_removing", - "community": 0, - "norm_label": "remove_domain_removing" - }, - { - "label": "remove_domain_failed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L433", - "id": "locales_en_blocker_remove_domain_failed", - "community": 0, - "norm_label": "remove_domain_failed" - }, - { - "label": "remove_domain_actionsheet_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L434", - "id": "locales_en_blocker_remove_domain_actionsheet_title", - "community": 0, - "norm_label": "remove_domain_actionsheet_title" - }, - { - "label": "remove_domain_actionsheet_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L435", - "id": "locales_en_blocker_remove_domain_actionsheet_message", - "community": 0, - "norm_label": "remove_domain_actionsheet_message" - }, - { - "label": "remove_domain_confirm_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L436", - "id": "locales_en_blocker_remove_domain_confirm_cta", - "community": 0, - "norm_label": "remove_domain_confirm_cta" - }, - { - "label": "vip_swap_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L437", - "id": "locales_en_blocker_vip_swap_title", - "community": 0, - "norm_label": "vip_swap_title" - }, - { - "label": "vip_swap_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L438", - "id": "locales_en_blocker_vip_swap_desc", - "community": 0, - "norm_label": "vip_swap_desc" - }, - { - "label": "vip_swap_pick", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L439", - "id": "locales_en_blocker_vip_swap_pick", - "community": 0, - "norm_label": "vip_swap_pick" - }, - { - "label": "vip_swap_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L440", - "id": "locales_en_blocker_vip_swap_cta", - "community": 0, - "norm_label": "vip_swap_cta" - }, - { - "label": "vip_swap_no_candidates", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L441", - "id": "locales_en_blocker_vip_swap_no_candidates", - "community": 0, - "norm_label": "vip_swap_no_candidates" - }, - { - "label": "vip_swap_error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L442", - "id": "locales_en_blocker_vip_swap_error", - "community": 0, - "norm_label": "vip_swap_error" - }, - { - "label": "vip_evict_badge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L443", - "id": "locales_en_blocker_vip_evict_badge", - "community": 0, - "norm_label": "vip_evict_badge" - }, - { - "label": "suggest_curated_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L444", - "id": "locales_en_blocker_suggest_curated_link", - "community": 0, - "norm_label": "suggest_curated_link" - }, - { - "label": "suggest_curated_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L445", - "id": "locales_en_blocker_suggest_curated_title", - "community": 0, - "norm_label": "suggest_curated_title" - }, - { - "label": "suggest_curated_explanation", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L446", - "id": "locales_en_blocker_suggest_curated_explanation", - "community": 0, - "norm_label": "suggest_curated_explanation" - }, - { - "label": "suggest_curated_input_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L447", - "id": "locales_en_blocker_suggest_curated_input_label", - "community": 0, - "norm_label": "suggest_curated_input_label" - }, - { - "label": "suggest_curated_input_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L448", - "id": "locales_en_blocker_suggest_curated_input_placeholder", - "community": 0, - "norm_label": "suggest_curated_input_placeholder" - }, - { - "label": "suggest_curated_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L449", - "id": "locales_en_blocker_suggest_curated_cta", - "community": 0, - "norm_label": "suggest_curated_cta" - }, - { - "label": "suggest_curated_success_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L450", - "id": "locales_en_blocker_suggest_curated_success_title", - "community": 0, - "norm_label": "suggest_curated_success_title" - }, - { - "label": "suggest_curated_success_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L451", - "id": "locales_en_blocker_suggest_curated_success_body", - "community": 0, - "norm_label": "suggest_curated_success_body" - }, - { - "label": "suggest_curated_error_invalid_domain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L452", - "id": "locales_en_blocker_suggest_curated_error_invalid_domain", - "community": 0, - "norm_label": "suggest_curated_error_invalid_domain" - }, - { - "label": "suggest_curated_error_already_suggested", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L453", - "id": "locales_en_blocker_suggest_curated_error_already_suggested", - "community": 0, - "norm_label": "suggest_curated_error_already_suggested" - }, - { - "label": "suggest_curated_error_already_approved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L454", - "id": "locales_en_blocker_suggest_curated_error_already_approved", - "community": 0, - "norm_label": "suggest_curated_error_already_approved" - }, - { - "label": "suggest_curated_error_already_rejected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L455", - "id": "locales_en_blocker_suggest_curated_error_already_rejected", - "community": 0, - "norm_label": "suggest_curated_error_already_rejected" - }, - { - "label": "suggest_curated_error_generic", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L456", - "id": "locales_en_blocker_suggest_curated_error_generic", - "community": 0, - "norm_label": "suggest_curated_error_generic" - }, - { - "label": "protection_subtitle_mdm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L457", - "id": "locales_en_blocker_protection_subtitle_mdm", - "community": 0, - "norm_label": "protection_subtitle_mdm" - }, - { - "label": "protection_stat_method_nefilter", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L458", - "id": "locales_en_blocker_protection_stat_method_nefilter", - "community": 0, - "norm_label": "protection_stat_method_nefilter" - }, - { - "label": "protection_stat_method_mdm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L459", - "id": "locales_en_blocker_protection_stat_method_mdm", - "community": 0, - "norm_label": "protection_stat_method_mdm" - }, - { - "label": "mdm_info_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L460", - "id": "locales_en_blocker_mdm_info_hint", - "community": 0, - "norm_label": "mdm_info_hint" - }, - { - "label": "mdm_deactivate_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L461", - "id": "locales_en_blocker_mdm_deactivate_title", - "community": 0, - "norm_label": "mdm_deactivate_title" - }, - { - "label": "mdm_deactivate_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L462", - "id": "locales_en_blocker_mdm_deactivate_body", - "community": 0, - "norm_label": "mdm_deactivate_body" - }, - { - "label": "setup_progress_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L463", - "id": "locales_en_blocker_setup_progress_label", - "community": 0, - "norm_label": "setup_progress_label" - }, - { - "label": "setup_step1_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L464", - "id": "locales_en_blocker_setup_step1_title", - "community": 0, - "norm_label": "setup_step1_title" - }, - { - "label": "setup_step1_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L465", - "id": "locales_en_blocker_setup_step1_subtitle_pending", - "community": 0, - "norm_label": "setup_step1_subtitle_pending" - }, - { - "label": "setup_step1_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L466", - "id": "locales_en_blocker_setup_step1_subtitle_done", - "community": 0, - "norm_label": "setup_step1_subtitle_done" - }, - { - "label": "setup_step1_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L467", - "id": "locales_en_blocker_setup_step1_cta", - "community": 0, - "norm_label": "setup_step1_cta" - }, - { - "label": "setup_step2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L468", - "id": "locales_en_blocker_setup_step2_title", - "community": 0, - "norm_label": "setup_step2_title" - }, - { - "label": "setup_step2_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L469", - "id": "locales_en_blocker_setup_step2_subtitle_pending", - "community": 0, - "norm_label": "setup_step2_subtitle_pending" - }, - { - "label": "setup_step2_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L470", - "id": "locales_en_blocker_setup_step2_subtitle_done", - "community": 0, - "norm_label": "setup_step2_subtitle_done" - }, - { - "label": "setup_step3_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L471", - "id": "locales_en_blocker_setup_step3_title", - "community": 0, - "norm_label": "setup_step3_title" - }, - { - "label": "setup_step3_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L472", - "id": "locales_en_blocker_setup_step3_subtitle_pending", - "community": 0, - "norm_label": "setup_step3_subtitle_pending" - }, - { - "label": "setup_step3_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L473", - "id": "locales_en_blocker_setup_step3_subtitle_done", - "community": 0, - "norm_label": "setup_step3_subtitle_done" - }, - { - "label": "setup_step3_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L474", - "id": "locales_en_blocker_setup_step3_cta", - "community": 0, - "norm_label": "setup_step3_cta" - }, - { - "label": "setup_step3_warning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L475", - "id": "locales_en_blocker_setup_step3_warning", - "community": 0, - "norm_label": "setup_step3_warning" - }, - { - "label": "setup_complete_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L476", - "id": "locales_en_blocker_setup_complete_title", - "community": 0, - "norm_label": "setup_complete_title" - }, - { - "label": "setup_complete_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L477", - "id": "locales_en_blocker_setup_complete_subtitle", - "community": 0, - "norm_label": "setup_complete_subtitle" - }, - { - "label": "setup_step_locked_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L478", - "id": "locales_en_blocker_setup_step_locked_hint", - "community": 0, - "norm_label": "setup_step_locked_hint" - }, - { - "label": "android_step1_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L479", - "id": "locales_en_blocker_android_step1_title", - "community": 0, - "norm_label": "android_step1_title" - }, - { - "label": "android_step1_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L480", - "id": "locales_en_blocker_android_step1_subtitle_pending", - "community": 0, - "norm_label": "android_step1_subtitle_pending" - }, - { - "label": "android_step1_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L481", - "id": "locales_en_blocker_android_step1_subtitle_done", - "community": 0, - "norm_label": "android_step1_subtitle_done" - }, - { - "label": "android_step1_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L482", - "id": "locales_en_blocker_android_step1_cta", - "community": 0, - "norm_label": "android_step1_cta" - }, - { - "label": "activating", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L483", - "id": "locales_en_blocker_activating", - "community": 0, - "norm_label": "activating" - }, - { - "label": "android_step2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L484", - "id": "locales_en_blocker_android_step2_title", - "community": 0, - "norm_label": "android_step2_title" - }, - { - "label": "android_step2_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L485", - "id": "locales_en_blocker_android_step2_subtitle_pending", - "community": 0, - "norm_label": "android_step2_subtitle_pending" - }, - { - "label": "android_step2_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L486", - "id": "locales_en_blocker_android_step2_subtitle_done", - "community": 0, - "norm_label": "android_step2_subtitle_done" - }, - { - "label": "android_step2_instruction1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L487", - "id": "locales_en_blocker_android_step2_instruction1", - "community": 0, - "norm_label": "android_step2_instruction1" - }, - { - "label": "android_step2_instruction2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L488", - "id": "locales_en_blocker_android_step2_instruction2", - "community": 0, - "norm_label": "android_step2_instruction2" - }, - { - "label": "android_step2_instruction3", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L489", - "id": "locales_en_blocker_android_step2_instruction3", - "community": 0, - "norm_label": "android_step2_instruction3" - }, - { - "label": "android_step2_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L490", - "id": "locales_en_blocker_android_step2_cta", - "community": 0, - "norm_label": "android_step2_cta" - }, - { - "label": "android_step2_note", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L491", - "id": "locales_en_blocker_android_step2_note", - "community": 0, - "norm_label": "android_step2_note" - }, - { - "label": "android_battery_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L492", - "id": "locales_en_blocker_android_battery_title", - "community": 0, - "norm_label": "android_battery_title" - }, - { - "label": "android_battery_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L493", - "id": "locales_en_blocker_android_battery_subtitle_pending", - "community": 0, - "norm_label": "android_battery_subtitle_pending" - }, - { - "label": "android_battery_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L494", - "id": "locales_en_blocker_android_battery_subtitle_done", - "community": 0, - "norm_label": "android_battery_subtitle_done" - }, - { - "label": "android_battery_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L495", - "id": "locales_en_blocker_android_battery_body", - "community": 0, - "norm_label": "android_battery_body" - }, - { - "label": "android_battery_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L496", - "id": "locales_en_blocker_android_battery_cta", - "community": 0, - "norm_label": "android_battery_cta" - }, - { - "label": "android_battery_samsung_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L497", - "id": "locales_en_blocker_android_battery_samsung_hint", - "community": 0, - "norm_label": "android_battery_samsung_hint" - }, - { - "label": "android_step3_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L498", - "id": "locales_en_blocker_android_step3_title", - "community": 0, - "norm_label": "android_step3_title" - }, - { - "label": "android_step3_subtitle_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L499", - "id": "locales_en_blocker_android_step3_subtitle_pending", - "community": 0, - "norm_label": "android_step3_subtitle_pending" - }, - { - "label": "android_step3_subtitle_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L500", - "id": "locales_en_blocker_android_step3_subtitle_done", - "community": 0, - "norm_label": "android_step3_subtitle_done" - }, - { - "label": "android_step3_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L501", - "id": "locales_en_blocker_android_step3_cta", - "community": 0, - "norm_label": "android_step3_cta" - }, - { - "label": "android_step3_warning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L502", - "id": "locales_en_blocker_android_step3_warning", - "community": 0, - "norm_label": "android_step3_warning" - }, - { - "label": "android_admin_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L503", - "id": "locales_en_blocker_android_admin_failed_title", - "community": 0, - "norm_label": "android_admin_failed_title" - }, - { - "label": "android_admin_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L504", - "id": "locales_en_blocker_android_admin_failed_msg", - "community": 0, - "norm_label": "android_admin_failed_msg" - }, - { - "label": "onboarding", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L506", - "id": "locales_en_onboarding", - "community": 45, - "norm_label": "onboarding" - }, - { - "label": "lyra", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L507", - "id": "locales_en_onboarding_lyra", - "community": 45, - "norm_label": "lyra" - }, - { - "label": "welcome", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L508", - "id": "locales_en_lyra_welcome", - "community": 45, - "norm_label": "welcome" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L509", - "id": "locales_en_welcome_body", - "community": 45, - "norm_label": "body" - }, - { - "label": "privacy", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L511", - "id": "locales_en_lyra_privacy", - "community": 45, - "norm_label": "privacy" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L512", - "id": "locales_en_privacy_body", - "community": 45, - "norm_label": "body" - }, - { - "label": "nickname", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L514", - "id": "locales_en_lyra_nickname", - "community": 45, - "norm_label": "nickname" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L515", - "id": "locales_en_nickname_body", - "community": 45, - "norm_label": "body" - }, - { - "label": "diga_choice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L517", - "id": "locales_en_lyra_diga_choice", - "community": 45, - "norm_label": "diga_choice" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L518", - "id": "locales_en_diga_choice_body", - "community": 45, - "norm_label": "body" - }, - { - "label": "diga_code", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/en.json", - "source_location": "L520", - "id": "locales_en_lyra_diga_code", - "community": 45, - "norm_label": "diga_code" - }, - { - "label": "fr.json", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L1", - "id": "apps_rebreak_native_locales_fr_json", - "community": 130, - "norm_label": "fr.json" - }, - { - "label": "common", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L2", - "id": "locales_fr_common", - "community": 130, - "norm_label": "common" - }, - { - "label": "loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L3", - "id": "locales_fr_common_loading", - "community": 130, - "norm_label": "loading" - }, - { - "label": "cancel", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L4", - "id": "locales_fr_common_cancel", - "community": 130, - "norm_label": "cancel" - }, - { - "label": "continue", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L5", - "id": "locales_fr_common_continue", - "community": 130, - "norm_label": "continue" - }, - { - "label": "back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L6", - "id": "locales_fr_common_back", - "community": 130, - "norm_label": "back" - }, - { - "label": "error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L7", - "id": "locales_fr_common_error", - "community": 130, - "norm_label": "error" - }, - { - "label": "success", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L8", - "id": "locales_fr_common_success", - "community": 130, - "norm_label": "success" - }, - { - "label": "ok", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L9", - "id": "locales_fr_common_ok", - "community": 130, - "norm_label": "ok" - }, - { - "label": "confirm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L10", - "id": "locales_fr_common_confirm", - "community": 130, - "norm_label": "confirm" - }, - { - "label": "retry", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L11", - "id": "locales_fr_common_retry", - "community": 130, - "norm_label": "retry" - }, - { - "label": "unknown_error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L12", - "id": "locales_fr_common_unknown_error", - "community": 130, - "norm_label": "unknown_error" - }, - { - "label": "auth", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L14", - "id": "locales_fr_auth", - "community": 25, - "norm_label": "auth" - }, - { - "label": "welcomeBack", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L15", - "id": "locales_fr_auth_welcomeback", - "community": 25, - "norm_label": "welcomeback" - }, - { - "label": "signinSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L16", - "id": "locales_fr_auth_signinsubtitle", - "community": 25, - "norm_label": "signinsubtitle" - }, - { - "label": "signin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L17", - "id": "locales_fr_auth_signin", - "community": 25, - "norm_label": "signin" - }, - { - "label": "signingIn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L18", - "id": "locales_fr_auth_signingin", - "community": 25, - "norm_label": "signingin" - }, - { - "label": "signup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L19", - "id": "locales_fr_auth_signup", - "community": 25, - "norm_label": "signup" - }, - { - "label": "signupTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L20", - "id": "locales_fr_auth_signuptitle", - "community": 25, - "norm_label": "signuptitle" - }, - { - "label": "signupSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L21", - "id": "locales_fr_auth_signupsubtitle", - "community": 25, - "norm_label": "signupsubtitle" - }, - { - "label": "signOut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L22", - "id": "locales_fr_auth_signout", - "community": 43, - "norm_label": "signout" - }, - { - "label": "email", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L23", - "id": "locales_fr_auth_email", - "community": 25, - "norm_label": "email" - }, - { - "label": "emailPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L24", - "id": "locales_fr_auth_emailplaceholder", - "community": 25, - "norm_label": "emailplaceholder" - }, - { - "label": "emailRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L25", - "id": "locales_fr_auth_emailrequired", - "community": 25, - "norm_label": "emailrequired" - }, - { - "label": "password", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L26", - "id": "locales_fr_auth_password", - "community": 25, - "norm_label": "password" - }, - { - "label": "passwordPlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L27", - "id": "locales_fr_auth_passwordplaceholder", - "community": 25, - "norm_label": "passwordplaceholder" - }, - { - "label": "passwordRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L28", - "id": "locales_fr_auth_passwordrequired", - "community": 25, - "norm_label": "passwordrequired" - }, - { - "label": "passwordMin8", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L29", - "id": "locales_fr_auth_passwordmin8", - "community": 25, - "norm_label": "passwordmin8" - }, - { - "label": "newPassword", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L30", - "id": "locales_fr_auth_newpassword", - "community": 25, - "norm_label": "newpassword" - }, - { - "label": "nickname", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L31", - "id": "locales_fr_auth_nickname", - "community": 687, - "norm_label": "nickname" - }, - { - "label": "nicknamePlaceholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L32", - "id": "locales_fr_auth_nicknameplaceholder", - "community": 25, - "norm_label": "nicknameplaceholder" - }, - { - "label": "noAccount", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L33", - "id": "locales_fr_auth_noaccount", - "community": 25, - "norm_label": "noaccount" - }, - { - "label": "alreadyRegistered", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L34", - "id": "locales_fr_auth_alreadyregistered", - "community": 25, - "norm_label": "alreadyregistered" - }, - { - "label": "fillRequired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L35", - "id": "locales_fr_auth_fillrequired", - "community": 25, - "norm_label": "fillrequired" - }, - { - "label": "googleSignin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L36", - "id": "locales_fr_auth_googlesignin", - "community": 25, - "norm_label": "googlesignin" - }, - { - "label": "appleSignin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L37", - "id": "locales_fr_auth_applesignin", - "community": 25, - "norm_label": "applesignin" - }, - { - "label": "googleSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L38", - "id": "locales_fr_auth_googlesignup", - "community": 25, - "norm_label": "googlesignup" - }, - { - "label": "appleSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L39", - "id": "locales_fr_auth_applesignup", - "community": 25, - "norm_label": "applesignup" - }, - { - "label": "orWithEmail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L40", - "id": "locales_fr_auth_orwithemail", - "community": 25, - "norm_label": "orwithemail" - }, - { - "label": "forgotPassword", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L41", - "id": "locales_fr_auth_forgotpassword", - "community": 25, - "norm_label": "forgotpassword" - }, - { - "label": "resetPasswordTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L42", - "id": "locales_fr_auth_resetpasswordtitle", - "community": 25, - "norm_label": "resetpasswordtitle" - }, - { - "label": "resetPasswordSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L43", - "id": "locales_fr_auth_resetpasswordsubtitle", - "community": 25, - "norm_label": "resetpasswordsubtitle" - }, - { - "label": "resetPasswordSend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L44", - "id": "locales_fr_auth_resetpasswordsend", - "community": 25, - "norm_label": "resetpasswordsend" - }, - { - "label": "resetPasswordSent", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L45", - "id": "locales_fr_auth_resetpasswordsent", - "community": 25, - "norm_label": "resetpasswordsent" - }, - { - "label": "resetPasswordSentDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L46", - "id": "locales_fr_auth_resetpasswordsentdesc", - "community": 25, - "norm_label": "resetpasswordsentdesc" - }, - { - "label": "resetPasswordSentDescPrefix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L47", - "id": "locales_fr_auth_resetpasswordsentdescprefix", - "community": 25, - "norm_label": "resetpasswordsentdescprefix" - }, - { - "label": "resetPasswordSentDescSuffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L48", - "id": "locales_fr_auth_resetpasswordsentdescsuffix", - "community": 25, - "norm_label": "resetpasswordsentdescsuffix" - }, - { - "label": "backToLogin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L49", - "id": "locales_fr_auth_backtologin", - "community": 25, - "norm_label": "backtologin" - }, - { - "label": "backToLoginPlain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L50", - "id": "locales_fr_auth_backtologinplain", - "community": 25, - "norm_label": "backtologinplain" - }, - { - "label": "backToSignup", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L51", - "id": "locales_fr_auth_backtosignup", - "community": 25, - "norm_label": "backtosignup" - }, - { - "label": "chooseAvatar", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L52", - "id": "locales_fr_auth_chooseavatar", - "community": 25, - "norm_label": "chooseavatar" - }, - { - "label": "privacyNotice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L53", - "id": "locales_fr_auth_privacynotice", - "community": 25, - "norm_label": "privacynotice" - }, - { - "label": "acceptTerms", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L54", - "id": "locales_fr_auth_acceptterms", - "community": 25, - "norm_label": "acceptterms" - }, - { - "label": "acceptTermsSuffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L55", - "id": "locales_fr_auth_accepttermssuffix", - "community": 25, - "norm_label": "accepttermssuffix" - }, - { - "label": "termsLink", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L56", - "id": "locales_fr_auth_termslink", - "community": 25, - "norm_label": "termslink" - }, - { - "label": "pleaseAcceptTerms", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L57", - "id": "locales_fr_auth_pleaseacceptterms", - "community": 25, - "norm_label": "pleaseacceptterms" - }, - { - "label": "confirmEmailTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L58", - "id": "locales_fr_auth_confirmemailtitle", - "community": 25, - "norm_label": "confirmemailtitle" - }, - { - "label": "confirmEmailDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L59", - "id": "locales_fr_auth_confirmemaildesc", - "community": 25, - "norm_label": "confirmemaildesc" - }, - { - "label": "confirmEmailLine1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L60", - "id": "locales_fr_auth_confirmemailline1", - "community": 25, - "norm_label": "confirmemailline1" - }, - { - "label": "confirmEmailLine2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L61", - "id": "locales_fr_auth_confirmemailline2", - "community": 25, - "norm_label": "confirmemailline2" - }, - { - "label": "confirmBtn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L62", - "id": "locales_fr_auth_confirmbtn", - "community": 25, - "norm_label": "confirmbtn" - }, - { - "label": "confirmed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L63", - "id": "locales_fr_auth_confirmed", - "community": 25, - "norm_label": "confirmed" - }, - { - "label": "confirming", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L64", - "id": "locales_fr_auth_confirming", - "community": 25, - "norm_label": "confirming" - }, - { - "label": "confirmSuccess", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L65", - "id": "locales_fr_auth_confirmsuccess", - "community": 25, - "norm_label": "confirmsuccess" - }, - { - "label": "confirmTimeout", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L66", - "id": "locales_fr_auth_confirmtimeout", - "community": 25, - "norm_label": "confirmtimeout" - }, - { - "label": "confirmFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L67", - "id": "locales_fr_auth_confirmfailed", - "community": 25, - "norm_label": "confirmfailed" - }, - { - "label": "resend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L68", - "id": "locales_fr_auth_resend", - "community": 25, - "norm_label": "resend" - }, - { - "label": "resendCooldown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L69", - "id": "locales_fr_auth_resendcooldown", - "community": 25, - "norm_label": "resendcooldown" - }, - { - "label": "noCode", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L70", - "id": "locales_fr_auth_nocode", - "community": 25, - "norm_label": "nocode" - }, - { - "label": "deviceLimitTitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L71", - "id": "locales_fr_auth_devicelimittitle", - "community": 25, - "norm_label": "devicelimittitle" - }, - { - "label": "deviceLimitDesc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L72", - "id": "locales_fr_auth_devicelimitdesc", - "community": 25, - "norm_label": "devicelimitdesc" - }, - { - "label": "deviceLimitUpgrade", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L73", - "id": "locales_fr_auth_devicelimitupgrade", - "community": 25, - "norm_label": "devicelimitupgrade" - }, - { - "label": "toLogin", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L74", - "id": "locales_fr_auth_tologin", - "community": 25, - "norm_label": "tologin" - }, - { - "label": "oauthFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L75", - "id": "locales_fr_auth_oauthfailed", - "community": 25, - "norm_label": "oauthfailed" - }, - { - "label": "loginFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L76", - "id": "locales_fr_auth_loginfailed", - "community": 25, - "norm_label": "loginfailed" - }, - { - "label": "registerFailed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L77", - "id": "locales_fr_auth_registerfailed", - "community": 25, - "norm_label": "registerfailed" - }, - { - "label": "device_locked_headline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L78", - "id": "locales_fr_auth_device_locked_headline", - "community": 25, - "norm_label": "device_locked_headline" - }, - { - "label": "device_locked_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L79", - "id": "locales_fr_auth_device_locked_body", - "community": 25, - "norm_label": "device_locked_body" - }, - { - "label": "device_locked_countdown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L80", - "id": "locales_fr_auth_device_locked_countdown", - "community": 25, - "norm_label": "device_locked_countdown" - }, - { - "label": "device_locked_email_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L81", - "id": "locales_fr_auth_device_locked_email_hint", - "community": 25, - "norm_label": "device_locked_email_hint" - }, - { - "label": "device_locked_use_original", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L82", - "id": "locales_fr_auth_device_locked_use_original", - "community": 25, - "norm_label": "device_locked_use_original" - }, - { - "label": "device_locked_back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L83", - "id": "locales_fr_auth_device_locked_back", - "community": 25, - "norm_label": "device_locked_back" - }, - { - "label": "landing", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L85", - "id": "locales_fr_landing", - "community": 43, - "norm_label": "landing" - }, - { - "label": "appName", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L86", - "id": "locales_fr_landing_appname", - "community": 43, - "norm_label": "appname" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L87", - "id": "locales_fr_landing_tagline", - "community": 43, - "norm_label": "tagline" - }, - { - "label": "start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L88", - "id": "locales_fr_landing_start", - "community": 43, - "norm_label": "start" - }, - { - "label": "splash", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L90", - "id": "locales_fr_splash", - "community": 130, - "norm_label": "splash" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L91", - "id": "locales_fr_splash_tagline", - "community": 130, - "norm_label": "tagline" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L92", - "id": "locales_fr_splash_subtitle", - "community": 130, - "norm_label": "subtitle" - }, - { - "label": "madeInGermany", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L93", - "id": "locales_fr_splash_madeingermany", - "community": 130, - "norm_label": "madeingermany" - }, - { - "label": "applock", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L95", - "id": "locales_fr_applock", - "community": 130, - "norm_label": "applock" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L96", - "id": "locales_fr_applock_title", - "community": 130, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L97", - "id": "locales_fr_applock_subtitle", - "community": 130, - "norm_label": "subtitle" - }, - { - "label": "unlock", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L98", - "id": "locales_fr_applock_unlock", - "community": 130, - "norm_label": "unlock" - }, - { - "label": "prompt", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L99", - "id": "locales_fr_applock_prompt", - "community": 130, - "norm_label": "prompt" - }, - { - "label": "signOut_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L100", - "id": "locales_fr_applock_signout_title", - "community": 130, - "norm_label": "signout_title" - }, - { - "label": "signOut_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L101", - "id": "locales_fr_applock_signout_body", - "community": 130, - "norm_label": "signout_body" - }, - { - "label": "appHeader", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L103", - "id": "locales_fr_appheader", - "community": 43, - "norm_label": "appheader" - }, - { - "label": "appName", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L104", - "id": "locales_fr_appheader_appname", - "community": 43, - "norm_label": "appname" - }, - { - "label": "sosLabel", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L105", - "id": "locales_fr_appheader_soslabel", - "community": 43, - "norm_label": "soslabel" - }, - { - "label": "sosTagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L106", - "id": "locales_fr_appheader_sostagline", - "community": 43, - "norm_label": "sostagline" - }, - { - "label": "sosSubtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L107", - "id": "locales_fr_appheader_sossubtitle", - "community": 43, - "norm_label": "sossubtitle" - }, - { - "label": "editProfile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L108", - "id": "locales_fr_appheader_editprofile", - "community": 43, - "norm_label": "editprofile" - }, - { - "label": "settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L109", - "id": "locales_fr_appheader_settings", - "community": 130, - "norm_label": "settings" - }, - { - "label": "signOut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L110", - "id": "locales_fr_appheader_signout", - "community": 43, - "norm_label": "signout" - }, - { - "label": "headerMenu", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L112", - "id": "locales_fr_headermenu", - "community": 130, - "norm_label": "headermenu" - }, - { - "label": "profile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L113", - "id": "locales_fr_headermenu_profile", - "community": 130, - "norm_label": "profile" - }, - { - "label": "settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L114", - "id": "locales_fr_headermenu_settings", - "community": 130, - "norm_label": "settings" - }, - { - "label": "games", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L115", - "id": "locales_fr_headermenu_games", - "community": 130, - "norm_label": "games" - }, - { - "label": "debug", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L116", - "id": "locales_fr_headermenu_debug", - "community": 130, - "norm_label": "debug" - }, - { - "label": "logout", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L117", - "id": "locales_fr_headermenu_logout", - "community": 130, - "norm_label": "logout" - }, - { - "label": "tabs", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L119", - "id": "locales_fr_tabs", - "community": 130, - "norm_label": "tabs" - }, - { - "label": "home", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L120", - "id": "locales_fr_tabs_home", - "community": 130, - "norm_label": "home" - }, - { - "label": "chat", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L121", - "id": "locales_fr_tabs_chat", - "community": 130, - "norm_label": "chat" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L122", - "id": "locales_fr_tabs_coach", - "community": 130, - "norm_label": "coach" - }, - { - "label": "blocker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L123", - "id": "locales_fr_tabs_blocker", - "community": 130, - "norm_label": "blocker" - }, - { - "label": "mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L124", - "id": "locales_fr_tabs_mail", - "community": 130, - "norm_label": "mail" - }, - { - "label": "profile", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L125", - "id": "locales_fr_tabs_profile", - "community": 130, - "norm_label": "profile" - }, - { - "label": "games", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L127", - "id": "locales_fr_games", - "community": 130, - "norm_label": "games" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L128", - "id": "locales_fr_games_title", - "community": 130, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L129", - "id": "locales_fr_games_subtitle", - "community": 130, - "norm_label": "subtitle" - }, - { - "label": "back_to_picker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L130", - "id": "locales_fr_games_back_to_picker", - "community": 130, - "norm_label": "back_to_picker" - }, - { - "label": "last_score", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L131", - "id": "locales_fr_games_last_score", - "community": 130, - "norm_label": "last_score" - }, - { - "label": "skeleton_footer", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L132", - "id": "locales_fr_games_skeleton_footer", - "community": 130, - "norm_label": "skeleton_footer" - }, - { - "label": "home", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L134", - "id": "locales_fr_home", - "community": 43, - "norm_label": "home" - }, - { - "label": "tagline", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L135", - "id": "locales_fr_home_tagline", - "community": 43, - "norm_label": "tagline" - }, - { - "label": "start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L136", - "id": "locales_fr_home_start", - "community": 43, - "norm_label": "start" - }, - { - "label": "greeting_morning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L137", - "id": "locales_fr_home_greeting_morning", - "community": 43, - "norm_label": "greeting_morning" - }, - { - "label": "greeting_day", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L138", - "id": "locales_fr_home_greeting_day", - "community": 43, - "norm_label": "greeting_day" - }, - { - "label": "greeting_evening", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L139", - "id": "locales_fr_home_greeting_evening", - "community": 43, - "norm_label": "greeting_evening" - }, - { - "label": "streak_days_one", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L140", - "id": "locales_fr_home_streak_days_one", - "community": 43, - "norm_label": "streak_days_one" - }, - { - "label": "streak_days_other", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L141", - "id": "locales_fr_home_streak_days_other", - "community": 43, - "norm_label": "streak_days_other" - }, - { - "label": "streak_start", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L142", - "id": "locales_fr_home_streak_start", - "community": 43, - "norm_label": "streak_start" - }, - { - "label": "quote_of_day", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L143", - "id": "locales_fr_home_quote_of_day", - "community": 43, - "norm_label": "quote_of_day" - }, - { - "label": "quick_access", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L144", - "id": "locales_fr_home_quick_access", - "community": 43, - "norm_label": "quick_access" - }, - { - "label": "stats_urges", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L145", - "id": "locales_fr_home_stats_urges", - "community": 43, - "norm_label": "stats_urges" - }, - { - "label": "stats_chats", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L146", - "id": "locales_fr_home_stats_chats", - "community": 43, - "norm_label": "stats_chats" - }, - { - "label": "stats_mails", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L147", - "id": "locales_fr_home_stats_mails", - "community": 43, - "norm_label": "stats_mails" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L149", - "id": "locales_fr_coach", - "community": 130, - "norm_label": "coach" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L150", - "id": "locales_fr_coach_title", - "community": 130, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L151", - "id": "locales_fr_coach_subtitle", - "community": 130, - "norm_label": "subtitle" - }, - { - "label": "welcome", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L152", - "id": "locales_fr_coach_welcome", - "community": 130, - "norm_label": "welcome" - }, - { - "label": "input_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L153", - "id": "locales_fr_coach_input_placeholder", - "community": 130, - "norm_label": "input_placeholder" - }, - { - "label": "new_chat", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L154", - "id": "locales_fr_coach_new_chat", - "community": 130, - "norm_label": "new_chat" - }, - { - "label": "lyra", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L155", - "id": "locales_fr_coach_lyra", - "community": 40, - "norm_label": "lyra" - }, - { - "label": "modeBadge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L156", - "id": "locales_fr_coach_modebadge", - "community": 130, - "norm_label": "modebadge" - }, - { - "label": "coach", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L157", - "id": "locales_fr_modebadge_coach", - "community": 130, - "norm_label": "coach" - }, - { - "label": "sos", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L158", - "id": "locales_fr_modebadge_sos", - "community": 130, - "norm_label": "sos" - }, - { - "label": "placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L160", - "id": "locales_fr_coach_placeholder", - "community": 687, - "norm_label": "placeholder" - }, - { - "label": "speaking", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L161", - "id": "locales_fr_coach_speaking", - "community": 130, - "norm_label": "speaking" - }, - { - "label": "recording", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L162", - "id": "locales_fr_coach_recording", - "community": 130, - "norm_label": "recording" - }, - { - "label": "transcribing", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L163", - "id": "locales_fr_coach_transcribing", - "community": 130, - "norm_label": "transcribing" - }, - { - "label": "feedback_saved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L164", - "id": "locales_fr_coach_feedback_saved", - "community": 130, - "norm_label": "feedback_saved" - }, - { - "label": "welcome_back", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L165", - "id": "locales_fr_coach_welcome_back", - "community": 130, - "norm_label": "welcome_back" - }, - { - "label": "online", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L166", - "id": "locales_fr_coach_online", - "community": 130, - "norm_label": "online" - }, - { - "label": "thinking", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L167", - "id": "locales_fr_coach_thinking", - "community": 130, - "norm_label": "thinking" - }, - { - "label": "error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L168", - "id": "locales_fr_coach_error", - "community": 130, - "norm_label": "error" - }, - { - "label": "blocker", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L170", - "id": "locales_fr_blocker", - "community": 3, - "norm_label": "blocker" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L171", - "id": "locales_fr_blocker_title", - "community": 3, - "norm_label": "title" - }, - { - "label": "subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L172", - "id": "locales_fr_blocker_subtitle", - "community": 3, - "norm_label": "subtitle" - }, - { - "label": "status_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L173", - "id": "locales_fr_blocker_status_active", - "community": 3, - "norm_label": "status_active" - }, - { - "label": "status_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L174", - "id": "locales_fr_blocker_status_inactive", - "community": 3, - "norm_label": "status_inactive" - }, - { - "label": "filter_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L175", - "id": "locales_fr_blocker_filter_label", - "community": 3, - "norm_label": "filter_label" - }, - { - "label": "filter_active_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L176", - "id": "locales_fr_blocker_filter_active_desc", - "community": 3, - "norm_label": "filter_active_desc" - }, - { - "label": "filter_inactive_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L177", - "id": "locales_fr_blocker_filter_inactive_desc", - "community": 3, - "norm_label": "filter_inactive_desc" - }, - { - "label": "tamper_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L178", - "id": "locales_fr_blocker_tamper_title", - "community": 3, - "norm_label": "tamper_title" - }, - { - "label": "tamper_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L179", - "id": "locales_fr_blocker_tamper_desc", - "community": 3, - "norm_label": "tamper_desc" - }, - { - "label": "custom_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L180", - "id": "locales_fr_blocker_custom_domains", - "community": 3, - "norm_label": "custom_domains" - }, - { - "label": "add_domain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L181", - "id": "locales_fr_blocker_add_domain", - "community": 3, - "norm_label": "add_domain" - }, - { - "label": "help_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L182", - "id": "locales_fr_blocker_help_link", - "community": 3, - "norm_label": "help_link" - }, - { - "label": "status_approved", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L183", - "id": "locales_fr_blocker_status_approved", - "community": 3, - "norm_label": "status_approved" - }, - { - "label": "status_rejected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L184", - "id": "locales_fr_blocker_status_rejected", - "community": 3, - "norm_label": "status_rejected" - }, - { - "label": "status_pending", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L185", - "id": "locales_fr_blocker_status_pending", - "community": 3, - "norm_label": "status_pending" - }, - { - "label": "add_sheet_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L186", - "id": "locales_fr_blocker_add_sheet_title", - "community": 3, - "norm_label": "add_sheet_title" - }, - { - "label": "add_sheet_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L187", - "id": "locales_fr_blocker_add_sheet_label", - "community": 3, - "norm_label": "add_sheet_label" - }, - { - "label": "add_sheet_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L188", - "id": "locales_fr_blocker_add_sheet_placeholder", - "community": 3, - "norm_label": "add_sheet_placeholder" - }, - { - "label": "add_sheet_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L189", - "id": "locales_fr_blocker_add_sheet_invalid", - "community": 3, - "norm_label": "add_sheet_invalid" - }, - { - "label": "add_sheet_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L190", - "id": "locales_fr_blocker_add_sheet_help", - "community": 3, - "norm_label": "add_sheet_help" - }, - { - "label": "preview_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L191", - "id": "locales_fr_blocker_preview_web", - "community": 3, - "norm_label": "preview_web" - }, - { - "label": "preview_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L192", - "id": "locales_fr_blocker_preview_mail", - "community": 3, - "norm_label": "preview_mail" - }, - { - "label": "preview_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L193", - "id": "locales_fr_blocker_preview_invalid", - "community": 3, - "norm_label": "preview_invalid" - }, - { - "label": "custom_filter_overview_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L194", - "id": "locales_fr_blocker_custom_filter_overview_title", - "community": 3, - "norm_label": "custom_filter_overview_title" - }, - { - "label": "custom_filter_overview_count", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L195", - "id": "locales_fr_blocker_custom_filter_overview_count", - "community": 3, - "norm_label": "custom_filter_overview_count" - }, - { - "label": "add_sheet_warning_free", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L196", - "id": "locales_fr_blocker_add_sheet_warning_free", - "community": 3, - "norm_label": "add_sheet_warning_free" - }, - { - "label": "add_sheet_warning_pro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L197", - "id": "locales_fr_blocker_add_sheet_warning_pro", - "community": 3, - "norm_label": "add_sheet_warning_pro" - }, - { - "label": "add_sheet_confirm_permanent", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L198", - "id": "locales_fr_blocker_add_sheet_confirm_permanent", - "community": 3, - "norm_label": "add_sheet_confirm_permanent" - }, - { - "label": "add_sheet_add_failed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L199", - "id": "locales_fr_blocker_add_sheet_add_failed", - "community": 3, - "norm_label": "add_sheet_add_failed" - }, - { - "label": "add_sheet_already_global", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L200", - "id": "locales_fr_blocker_add_sheet_already_global", - "community": 3, - "norm_label": "add_sheet_already_global" - }, - { - "label": "cooldown_banner_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L201", - "id": "locales_fr_blocker_cooldown_banner_title", - "community": 3, - "norm_label": "cooldown_banner_title" - }, - { - "label": "deactivation_actionsheet_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L202", - "id": "locales_fr_blocker_deactivation_actionsheet_title", - "community": 3, - "norm_label": "deactivation_actionsheet_title" - }, - { - "label": "deactivation_actionsheet_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L203", - "id": "locales_fr_blocker_deactivation_actionsheet_message", - "community": 3, - "norm_label": "deactivation_actionsheet_message" - }, - { - "label": "deactivation_start_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L204", - "id": "locales_fr_blocker_deactivation_start_cta", - "community": 3, - "norm_label": "deactivation_start_cta" - }, - { - "label": "deactivation_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L205", - "id": "locales_fr_blocker_deactivation_failed_msg", - "community": 3, - "norm_label": "deactivation_failed_msg" - }, - { - "label": "deactivation_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L206", - "id": "locales_fr_blocker_deactivation_heading", - "community": 3, - "norm_label": "deactivation_heading" - }, - { - "label": "deactivation_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L207", - "id": "locales_fr_blocker_deactivation_title", - "community": 3, - "norm_label": "deactivation_title" - }, - { - "label": "deactivation_intro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L208", - "id": "locales_fr_blocker_deactivation_intro", - "community": 3, - "norm_label": "deactivation_intro" - }, - { - "label": "deactivation_bullet1_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L209", - "id": "locales_fr_blocker_deactivation_bullet1_title", - "community": 3, - "norm_label": "deactivation_bullet1_title" - }, - { - "label": "deactivation_bullet1_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L210", - "id": "locales_fr_blocker_deactivation_bullet1_text", - "community": 3, - "norm_label": "deactivation_bullet1_text" - }, - { - "label": "deactivation_bullet2_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L211", - "id": "locales_fr_blocker_deactivation_bullet2_title", - "community": 3, - "norm_label": "deactivation_bullet2_title" - }, - { - "label": "deactivation_bullet2_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L212", - "id": "locales_fr_blocker_deactivation_bullet2_text", - "community": 3, - "norm_label": "deactivation_bullet2_text" - }, - { - "label": "deactivation_bullet3_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L213", - "id": "locales_fr_blocker_deactivation_bullet3_title", - "community": 3, - "norm_label": "deactivation_bullet3_title" - }, - { - "label": "deactivation_bullet3_text", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L214", - "id": "locales_fr_blocker_deactivation_bullet3_text", - "community": 3, - "norm_label": "deactivation_bullet3_text" - }, - { - "label": "deactivation_breathe_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L215", - "id": "locales_fr_blocker_deactivation_breathe_cta", - "community": 3, - "norm_label": "deactivation_breathe_cta" - }, - { - "label": "deactivation_start_anyway", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L216", - "id": "locales_fr_blocker_deactivation_start_anyway", - "community": 3, - "norm_label": "deactivation_start_anyway" - }, - { - "label": "deactivation_starting", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L217", - "id": "locales_fr_blocker_deactivation_starting", - "community": 3, - "norm_label": "deactivation_starting" - }, - { - "label": "deactivation_cancel_failed", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L218", - "id": "locales_fr_blocker_deactivation_cancel_failed", - "community": 3, - "norm_label": "deactivation_cancel_failed" - }, - { - "label": "domain_section_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L219", - "id": "locales_fr_blocker_domain_section_title", - "community": 3, - "norm_label": "domain_section_title" - }, - { - "label": "domain_add_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L220", - "id": "locales_fr_blocker_domain_add_a11y", - "community": 3, - "norm_label": "domain_add_a11y" - }, - { - "label": "domain_limit_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L221", - "id": "locales_fr_blocker_domain_limit_title", - "community": 3, - "norm_label": "domain_limit_title" - }, - { - "label": "domain_limit_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L222", - "id": "locales_fr_blocker_domain_limit_desc", - "community": 3, - "norm_label": "domain_limit_desc" - }, - { - "label": "domain_empty", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L223", - "id": "locales_fr_blocker_domain_empty", - "community": 3, - "norm_label": "domain_empty" - }, - { - "label": "domain_badge_voting", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L224", - "id": "locales_fr_blocker_domain_badge_voting", - "community": 3, - "norm_label": "domain_badge_voting" - }, - { - "label": "domain_badge_pruefung", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L225", - "id": "locales_fr_blocker_domain_badge_pruefung", - "community": 3, - "norm_label": "domain_badge_pruefung" - }, - { - "label": "domain_badge_rejected", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L226", - "id": "locales_fr_blocker_domain_badge_rejected", - "community": 3, - "norm_label": "domain_badge_rejected" - }, - { - "label": "domain_badge_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L227", - "id": "locales_fr_blocker_domain_badge_active", - "community": 3, - "norm_label": "domain_badge_active" - }, - { - "label": "domain_btn_freigeben", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L228", - "id": "locales_fr_blocker_domain_btn_freigeben", - "community": 3, - "norm_label": "domain_btn_freigeben" - }, - { - "label": "domain_btn_erneut", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L229", - "id": "locales_fr_blocker_domain_btn_erneut", - "community": 3, - "norm_label": "domain_btn_erneut" - }, - { - "label": "domain_btn_in_abstimmung", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L230", - "id": "locales_fr_blocker_domain_btn_in_abstimmung", - "community": 3, - "norm_label": "domain_btn_in_abstimmung" - }, - { - "label": "domain_btn_rebreak_prueft", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L231", - "id": "locales_fr_blocker_domain_btn_rebreak_prueft", - "community": 3, - "norm_label": "domain_btn_rebreak_prueft" - }, - { - "label": "domain_confirm_legend_resubmit", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L232", - "id": "locales_fr_blocker_domain_confirm_legend_resubmit", - "community": 3, - "norm_label": "domain_confirm_legend_resubmit" - }, - { - "label": "domain_confirm_legend_first", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L233", - "id": "locales_fr_blocker_domain_confirm_legend_first", - "community": 3, - "norm_label": "domain_confirm_legend_first" - }, - { - "label": "domain_confirm_community_resubmit", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L234", - "id": "locales_fr_blocker_domain_confirm_community_resubmit", - "community": 3, - "norm_label": "domain_confirm_community_resubmit" - }, - { - "label": "domain_confirm_community_first", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L235", - "id": "locales_fr_blocker_domain_confirm_community_first", - "community": 3, - "norm_label": "domain_confirm_community_first" - }, - { - "label": "domain_confirm_legend_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L236", - "id": "locales_fr_blocker_domain_confirm_legend_message", - "community": 3, - "norm_label": "domain_confirm_legend_message" - }, - { - "label": "domain_confirm_community_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L237", - "id": "locales_fr_blocker_domain_confirm_community_message", - "community": 3, - "norm_label": "domain_confirm_community_message" - }, - { - "label": "domain_success_legend_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L238", - "id": "locales_fr_blocker_domain_success_legend_title", - "community": 3, - "norm_label": "domain_success_legend_title" - }, - { - "label": "domain_success_community_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L239", - "id": "locales_fr_blocker_domain_success_community_title", - "community": 3, - "norm_label": "domain_success_community_title" - }, - { - "label": "domain_success_legend_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L240", - "id": "locales_fr_blocker_domain_success_legend_message", - "community": 3, - "norm_label": "domain_success_legend_message" - }, - { - "label": "domain_success_community_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L241", - "id": "locales_fr_blocker_domain_success_community_message", - "community": 3, - "norm_label": "domain_success_community_message" - }, - { - "label": "upgrade_alert_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L242", - "id": "locales_fr_blocker_upgrade_alert_title", - "community": 3, - "norm_label": "upgrade_alert_title" - }, - { - "label": "upgrade_alert_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L243", - "id": "locales_fr_blocker_upgrade_alert_desc", - "community": 3, - "norm_label": "upgrade_alert_desc" - }, - { - "label": "protection_card_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L244", - "id": "locales_fr_blocker_protection_card_title", - "community": 3, - "norm_label": "protection_card_title" - }, - { - "label": "protection_card_locked_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L245", - "id": "locales_fr_blocker_protection_card_locked_title", - "community": 3, - "norm_label": "protection_card_locked_title" - }, - { - "label": "protection_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L246", - "id": "locales_fr_blocker_protection_subtitle_inactive", - "community": 3, - "norm_label": "protection_subtitle_inactive" - }, - { - "label": "protection_subtitle_cooldown", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L247", - "id": "locales_fr_blocker_protection_subtitle_cooldown", - "community": 3, - "norm_label": "protection_subtitle_cooldown" - }, - { - "label": "protection_subtitle_free", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L248", - "id": "locales_fr_blocker_protection_subtitle_free", - "community": 3, - "norm_label": "protection_subtitle_free" - }, - { - "label": "protection_subtitle_legend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L249", - "id": "locales_fr_blocker_protection_subtitle_legend", - "community": 3, - "norm_label": "protection_subtitle_legend" - }, - { - "label": "protection_subtitle_pro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L250", - "id": "locales_fr_blocker_protection_subtitle_pro", - "community": 3, - "norm_label": "protection_subtitle_pro" - }, - { - "label": "protection_settings_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L251", - "id": "locales_fr_blocker_protection_settings_a11y", - "community": 3, - "norm_label": "protection_settings_a11y" - }, - { - "label": "protection_stat_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L252", - "id": "locales_fr_blocker_protection_stat_domains", - "community": 3, - "norm_label": "protection_stat_domains" - }, - { - "label": "protection_stat_method", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L253", - "id": "locales_fr_blocker_protection_stat_method", - "community": 3, - "norm_label": "protection_stat_method" - }, - { - "label": "protection_stat_method_dns", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L254", - "id": "locales_fr_blocker_protection_stat_method_dns", - "community": 3, - "norm_label": "protection_stat_method_dns" - }, - { - "label": "protection_stat_method_native", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L255", - "id": "locales_fr_blocker_protection_stat_method_native", - "community": 3, - "norm_label": "protection_stat_method_native" - }, - { - "label": "protection_stat_status", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L256", - "id": "locales_fr_blocker_protection_stat_status", - "community": 3, - "norm_label": "protection_stat_status" - }, - { - "label": "protection_stat_status_live", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L257", - "id": "locales_fr_blocker_protection_stat_status_live", - "community": 3, - "norm_label": "protection_stat_status_live" - }, - { - "label": "activate_url_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L258", - "id": "locales_fr_blocker_activate_url_failed_title", - "community": 3, - "norm_label": "activate_url_failed_title" - }, - { - "label": "activate_url_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L259", - "id": "locales_fr_blocker_activate_url_failed_msg", - "community": 3, - "norm_label": "activate_url_failed_msg" - }, - { - "label": "activate_settings_btn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L260", - "id": "locales_fr_blocker_activate_settings_btn", - "community": 3, - "norm_label": "activate_settings_btn" - }, - { - "label": "permission_denied", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L261", - "id": "locales_fr_blocker_permission_denied", - "community": 604, - "norm_label": "permission_denied" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L262", - "id": "locales_fr_permission_denied_title", - "community": 604, - "norm_label": "title" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L263", - "id": "locales_fr_permission_denied_body", - "community": 604, - "norm_label": "body" - }, - { - "label": "retry_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L264", - "id": "locales_fr_permission_denied_retry_cta", - "community": 604, - "norm_label": "retry_cta" - }, - { - "label": "retry_loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L265", - "id": "locales_fr_permission_denied_retry_loading", - "community": 604, - "norm_label": "retry_loading" - }, - { - "label": "settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L266", - "id": "locales_fr_permission_denied_settings_cta", - "community": 604, - "norm_label": "settings_cta" - }, - { - "label": "fallback_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L267", - "id": "locales_fr_permission_denied_fallback_label", - "community": 604, - "norm_label": "fallback_label" - }, - { - "label": "fallback_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L268", - "id": "locales_fr_permission_denied_fallback_body", - "community": 604, - "norm_label": "fallback_body" - }, - { - "label": "family_controls_error", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L270", - "id": "locales_fr_blocker_family_controls_error", - "community": 604, - "norm_label": "family_controls_error" - }, - { - "label": "title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L271", - "id": "locales_fr_family_controls_error_title", - "community": 604, - "norm_label": "title" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L272", - "id": "locales_fr_family_controls_error_body", - "community": 604, - "norm_label": "body" - }, - { - "label": "retry_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L273", - "id": "locales_fr_family_controls_error_retry_cta", - "community": 604, - "norm_label": "retry_cta" - }, - { - "label": "retry_loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L274", - "id": "locales_fr_family_controls_error_retry_loading", - "community": 604, - "norm_label": "retry_loading" - }, - { - "label": "settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L275", - "id": "locales_fr_family_controls_error_settings_cta", - "community": 604, - "norm_label": "settings_cta" - }, - { - "label": "fallback_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L276", - "id": "locales_fr_family_controls_error_fallback_label", - "community": 604, - "norm_label": "fallback_label" - }, - { - "label": "fallback_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L277", - "id": "locales_fr_family_controls_error_fallback_body", - "community": 604, - "norm_label": "fallback_body" - }, - { - "label": "protection_off_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L279", - "id": "locales_fr_blocker_protection_off_title", - "community": 3, - "norm_label": "protection_off_title" - }, - { - "label": "protection_off_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L280", - "id": "locales_fr_blocker_protection_off_message", - "community": 3, - "norm_label": "protection_off_message" - }, - { - "label": "reactivate_btn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L281", - "id": "locales_fr_blocker_reactivate_btn", - "community": 3, - "norm_label": "reactivate_btn" - }, - { - "label": "protection_off_later", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L282", - "id": "locales_fr_blocker_protection_off_later", - "community": 3, - "norm_label": "protection_off_later" - }, - { - "label": "activate_app_lock_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L283", - "id": "locales_fr_blocker_activate_app_lock_failed_title", - "community": 3, - "norm_label": "activate_app_lock_failed_title" - }, - { - "label": "activate_app_lock_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L284", - "id": "locales_fr_blocker_activate_app_lock_failed_msg", - "community": 3, - "norm_label": "activate_app_lock_failed_msg" - }, - { - "label": "sync_list_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L285", - "id": "locales_fr_blocker_sync_list_failed_title", - "community": 3, - "norm_label": "sync_list_failed_title" - }, - { - "label": "sync_list_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L286", - "id": "locales_fr_blocker_sync_list_failed_msg", - "community": 3, - "norm_label": "sync_list_failed_msg" - }, - { - "label": "activation_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L287", - "id": "locales_fr_blocker_activation_failed_title", - "community": 3, - "norm_label": "activation_failed_title" - }, - { - "label": "details_done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L288", - "id": "locales_fr_blocker_details_done", - "community": 3, - "norm_label": "details_done" - }, - { - "label": "details_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L289", - "id": "locales_fr_blocker_details_title", - "community": 3, - "norm_label": "details_title" - }, - { - "label": "details_active_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L290", - "id": "locales_fr_blocker_details_active_title", - "community": 3, - "norm_label": "details_active_title" - }, - { - "label": "details_domains_blocked", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L291", - "id": "locales_fr_blocker_details_domains_blocked", - "community": 3, - "norm_label": "details_domains_blocked" - }, - { - "label": "details_layers_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L292", - "id": "locales_fr_blocker_details_layers_heading", - "community": 3, - "norm_label": "details_layers_heading" - }, - { - "label": "details_layer_url_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L293", - "id": "locales_fr_blocker_details_layer_url_label", - "community": 3, - "norm_label": "details_layer_url_label" - }, - { - "label": "details_layer_url_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L294", - "id": "locales_fr_blocker_details_layer_url_desc", - "community": 3, - "norm_label": "details_layer_url_desc" - }, - { - "label": "details_layer_applock_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L295", - "id": "locales_fr_blocker_details_layer_applock_label", - "community": 3, - "norm_label": "details_layer_applock_label" - }, - { - "label": "details_layer_applock_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L296", - "id": "locales_fr_blocker_details_layer_applock_desc", - "community": 3, - "norm_label": "details_layer_applock_desc" - }, - { - "label": "details_layer_vpn_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L297", - "id": "locales_fr_blocker_details_layer_vpn_label", - "community": 3, - "norm_label": "details_layer_vpn_label" - }, - { - "label": "details_layer_vpn_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L298", - "id": "locales_fr_blocker_details_layer_vpn_desc", - "community": 3, - "norm_label": "details_layer_vpn_desc" - }, - { - "label": "details_layer_a11y_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L299", - "id": "locales_fr_blocker_details_layer_a11y_label", - "community": 3, - "norm_label": "details_layer_a11y_label" - }, - { - "label": "details_layer_a11y_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L300", - "id": "locales_fr_blocker_details_layer_a11y_desc", - "community": 3, - "norm_label": "details_layer_a11y_desc" - }, - { - "label": "details_layer_tamper_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L301", - "id": "locales_fr_blocker_details_layer_tamper_label", - "community": 3, - "norm_label": "details_layer_tamper_label" - }, - { - "label": "details_layer_tamper_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L302", - "id": "locales_fr_blocker_details_layer_tamper_desc", - "community": 3, - "norm_label": "details_layer_tamper_desc" - }, - { - "label": "details_lyra_cta_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L303", - "id": "locales_fr_blocker_details_lyra_cta_title", - "community": 3, - "norm_label": "details_lyra_cta_title" - }, - { - "label": "details_lyra_cta_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L304", - "id": "locales_fr_blocker_details_lyra_cta_subtitle", - "community": 3, - "norm_label": "details_lyra_cta_subtitle" - }, - { - "label": "details_deactivate_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L305", - "id": "locales_fr_blocker_details_deactivate_link", - "community": 3, - "norm_label": "details_deactivate_link" - }, - { - "label": "layers_url_filter_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L306", - "id": "locales_fr_blocker_layers_url_filter_title", - "community": 3, - "norm_label": "layers_url_filter_title" - }, - { - "label": "layers_url_filter_subtitle_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L307", - "id": "locales_fr_blocker_layers_url_filter_subtitle_active", - "community": 3, - "norm_label": "layers_url_filter_subtitle_active" - }, - { - "label": "layers_url_filter_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L308", - "id": "locales_fr_blocker_layers_url_filter_subtitle_inactive", - "community": 3, - "norm_label": "layers_url_filter_subtitle_inactive" - }, - { - "label": "layers_app_lock_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L309", - "id": "locales_fr_blocker_layers_app_lock_title", - "community": 3, - "norm_label": "layers_app_lock_title" - }, - { - "label": "layers_app_lock_subtitle_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L310", - "id": "locales_fr_blocker_layers_app_lock_subtitle_active", - "community": 3, - "norm_label": "layers_app_lock_subtitle_active" - }, - { - "label": "layers_app_lock_subtitle_inactive", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L311", - "id": "locales_fr_blocker_layers_app_lock_subtitle_inactive", - "community": 3, - "norm_label": "layers_app_lock_subtitle_inactive" - }, - { - "label": "layers_app_lock_warning", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L312", - "id": "locales_fr_blocker_layers_app_lock_warning", - "community": 3, - "norm_label": "layers_app_lock_warning" - }, - { - "label": "layers_app_lock_locked_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L313", - "id": "locales_fr_blocker_layers_app_lock_locked_hint", - "community": 3, - "norm_label": "layers_app_lock_locked_hint" - }, - { - "label": "screentime_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L314", - "id": "locales_fr_blocker_screentime_title", - "community": 3, - "norm_label": "screentime_title" - }, - { - "label": "screentime_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L315", - "id": "locales_fr_blocker_screentime_desc", - "community": 3, - "norm_label": "screentime_desc" - }, - { - "label": "screentime_generate_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L316", - "id": "locales_fr_blocker_screentime_generate_cta", - "community": 3, - "norm_label": "screentime_generate_cta" - }, - { - "label": "screentime_code_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L317", - "id": "locales_fr_blocker_screentime_code_label", - "community": 3, - "norm_label": "screentime_code_label" - }, - { - "label": "screentime_step1", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L318", - "id": "locales_fr_blocker_screentime_step1", - "community": 3, - "norm_label": "screentime_step1" - }, - { - "label": "screentime_step2", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L319", - "id": "locales_fr_blocker_screentime_step2", - "community": 3, - "norm_label": "screentime_step2" - }, - { - "label": "screentime_step3", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L320", - "id": "locales_fr_blocker_screentime_step3", - "community": 3, - "norm_label": "screentime_step3" - }, - { - "label": "screentime_step_note", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L321", - "id": "locales_fr_blocker_screentime_step_note", - "community": 3, - "norm_label": "screentime_step_note" - }, - { - "label": "screentime_open_settings_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L322", - "id": "locales_fr_blocker_screentime_open_settings_cta", - "community": 3, - "norm_label": "screentime_open_settings_cta" - }, - { - "label": "screentime_confirm_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L323", - "id": "locales_fr_blocker_screentime_confirm_cta", - "community": 3, - "norm_label": "screentime_confirm_cta" - }, - { - "label": "screentime_confirmed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L324", - "id": "locales_fr_blocker_screentime_confirmed_title", - "community": 3, - "norm_label": "screentime_confirmed_title" - }, - { - "label": "screentime_confirmed_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L325", - "id": "locales_fr_blocker_screentime_confirmed_desc", - "community": 3, - "norm_label": "screentime_confirmed_desc" - }, - { - "label": "kpi_global_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L326", - "id": "locales_fr_blocker_kpi_global_label", - "community": 3, - "norm_label": "kpi_global_label" - }, - { - "label": "kpi_global_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L327", - "id": "locales_fr_blocker_kpi_global_subtitle", - "community": 3, - "norm_label": "kpi_global_subtitle" - }, - { - "label": "delta_week", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L328", - "id": "locales_fr_blocker_delta_week", - "community": 3, - "norm_label": "delta_week" - }, - { - "label": "delta_month", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L329", - "id": "locales_fr_blocker_delta_month", - "community": 3, - "norm_label": "delta_month" - }, - { - "label": "kpi_submissions_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L330", - "id": "locales_fr_blocker_kpi_submissions_title", - "community": 3, - "norm_label": "kpi_submissions_title" - }, - { - "label": "kpi_submissions_subtitle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L331", - "id": "locales_fr_blocker_kpi_submissions_subtitle", - "community": 3, - "norm_label": "kpi_submissions_subtitle" - }, - { - "label": "kpi_my_submissions", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L332", - "id": "locales_fr_blocker_kpi_my_submissions", - "community": 3, - "norm_label": "kpi_my_submissions" - }, - { - "label": "kpi_status_active", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L333", - "id": "locales_fr_blocker_kpi_status_active", - "community": 3, - "norm_label": "kpi_status_active" - }, - { - "label": "kpi_status_vote", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L334", - "id": "locales_fr_blocker_kpi_status_vote", - "community": 3, - "norm_label": "kpi_status_vote" - }, - { - "label": "kpi_status_review", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L335", - "id": "locales_fr_blocker_kpi_status_review", - "community": 3, - "norm_label": "kpi_status_review" - }, - { - "label": "kpi_in_vote", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L336", - "id": "locales_fr_blocker_kpi_in_vote", - "community": 3, - "norm_label": "kpi_in_vote" - }, - { - "label": "kpi_in_review", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L337", - "id": "locales_fr_blocker_kpi_in_review", - "community": 3, - "norm_label": "kpi_in_review" - }, - { - "label": "kpi_avg_per_user", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L338", - "id": "locales_fr_blocker_kpi_avg_per_user", - "community": 3, - "norm_label": "kpi_avg_per_user" - }, - { - "label": "kpi_avg_wait", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L339", - "id": "locales_fr_blocker_kpi_avg_wait", - "community": 3, - "norm_label": "kpi_avg_wait" - }, - { - "label": "kpi_days_suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L340", - "id": "locales_fr_blocker_kpi_days_suffix", - "community": 3, - "norm_label": "kpi_days_suffix" - }, - { - "label": "faq_heading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L341", - "id": "locales_fr_blocker_faq_heading", - "community": 3, - "norm_label": "faq_heading" - }, - { - "label": "faq1_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L342", - "id": "locales_fr_blocker_faq1_q", - "community": 3, - "norm_label": "faq1_q" - }, - { - "label": "faq1_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L343", - "id": "locales_fr_blocker_faq1_a", - "community": 3, - "norm_label": "faq1_a" - }, - { - "label": "faq2_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L344", - "id": "locales_fr_blocker_faq2_q", - "community": 3, - "norm_label": "faq2_q" - }, - { - "label": "faq2_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L345", - "id": "locales_fr_blocker_faq2_a", - "community": 3, - "norm_label": "faq2_a" - }, - { - "label": "faq3_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L346", - "id": "locales_fr_blocker_faq3_q", - "community": 3, - "norm_label": "faq3_q" - }, - { - "label": "faq3_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L347", - "id": "locales_fr_blocker_faq3_a", - "community": 3, - "norm_label": "faq3_a" - }, - { - "label": "faq4_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L348", - "id": "locales_fr_blocker_faq4_q", - "community": 3, - "norm_label": "faq4_q" - }, - { - "label": "faq4_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L349", - "id": "locales_fr_blocker_faq4_a", - "community": 3, - "norm_label": "faq4_a" - }, - { - "label": "faq5_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L350", - "id": "locales_fr_blocker_faq5_q", - "community": 3, - "norm_label": "faq5_q" - }, - { - "label": "faq5_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L351", - "id": "locales_fr_blocker_faq5_a", - "community": 3, - "norm_label": "faq5_a" - }, - { - "label": "faq6_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L352", - "id": "locales_fr_blocker_faq6_q", - "community": 3, - "norm_label": "faq6_q" - }, - { - "label": "faq6_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L353", - "id": "locales_fr_blocker_faq6_a", - "community": 3, - "norm_label": "faq6_a" - }, - { - "label": "faq7_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L354", - "id": "locales_fr_blocker_faq7_q", - "community": 3, - "norm_label": "faq7_q" - }, - { - "label": "faq7_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L355", - "id": "locales_fr_blocker_faq7_a", - "community": 3, - "norm_label": "faq7_a" - }, - { - "label": "faq8_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L356", - "id": "locales_fr_blocker_faq8_q", - "community": 3, - "norm_label": "faq8_q" - }, - { - "label": "faq8_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L357", - "id": "locales_fr_blocker_faq8_a", - "community": 3, - "norm_label": "faq8_a" - }, - { - "label": "faq9_q", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L358", - "id": "locales_fr_blocker_faq9_q", - "community": 3, - "norm_label": "faq9_q" - }, - { - "label": "faq9_a", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L359", - "id": "locales_fr_blocker_faq9_a", - "community": 3, - "norm_label": "faq9_a" - }, - { - "label": "more_info_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L360", - "id": "locales_fr_blocker_more_info_title", - "community": 3, - "norm_label": "more_info_title" - }, - { - "label": "cooldown_elapsed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L361", - "id": "locales_fr_blocker_cooldown_elapsed_title", - "community": 3, - "norm_label": "cooldown_elapsed_title" - }, - { - "label": "cooldown_elapsed_message", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L362", - "id": "locales_fr_blocker_cooldown_elapsed_message", - "community": 3, - "norm_label": "cooldown_elapsed_message" - }, - { - "label": "cooldown_elapsed_message_ios", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L363", - "id": "locales_fr_blocker_cooldown_elapsed_message_ios", - "community": 3, - "norm_label": "cooldown_elapsed_message_ios" - }, - { - "label": "cooldown_elapsed_open_settings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L364", - "id": "locales_fr_blocker_cooldown_elapsed_open_settings", - "community": 3, - "norm_label": "cooldown_elapsed_open_settings" - }, - { - "label": "app_lock_coming_soon_badge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L365", - "id": "locales_fr_blocker_app_lock_coming_soon_badge", - "community": 3, - "norm_label": "app_lock_coming_soon_badge" - }, - { - "label": "app_lock_coming_soon_desc", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L366", - "id": "locales_fr_blocker_app_lock_coming_soon_desc", - "community": 3, - "norm_label": "app_lock_coming_soon_desc" - }, - { - "label": "type_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L367", - "id": "locales_fr_blocker_type_web", - "community": 3, - "norm_label": "type_web" - }, - { - "label": "type_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L368", - "id": "locales_fr_blocker_type_mail", - "community": 3, - "norm_label": "type_mail" - }, - { - "label": "add_web_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L369", - "id": "locales_fr_blocker_add_web_label", - "community": 3, - "norm_label": "add_web_label" - }, - { - "label": "add_web_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L370", - "id": "locales_fr_blocker_add_web_placeholder", - "community": 3, - "norm_label": "add_web_placeholder" - }, - { - "label": "add_web_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L371", - "id": "locales_fr_blocker_add_web_help", - "community": 3, - "norm_label": "add_web_help" - }, - { - "label": "add_mail_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L372", - "id": "locales_fr_blocker_add_mail_label", - "community": 3, - "norm_label": "add_mail_label" - }, - { - "label": "add_mail_placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L373", - "id": "locales_fr_blocker_add_mail_placeholder", - "community": 3, - "norm_label": "add_mail_placeholder" - }, - { - "label": "add_mail_help", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L374", - "id": "locales_fr_blocker_add_mail_help", - "community": 3, - "norm_label": "add_mail_help" - }, - { - "label": "add_mail_invalid", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L375", - "id": "locales_fr_blocker_add_mail_invalid", - "community": 3, - "norm_label": "add_mail_invalid" - }, - { - "label": "add_sheet_cta", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L376", - "id": "locales_fr_blocker_add_sheet_cta", - "community": 3, - "norm_label": "add_sheet_cta" - }, - { - "label": "section_domains", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L377", - "id": "locales_fr_blocker_section_domains", - "community": 3, - "norm_label": "section_domains" - }, - { - "label": "section_mails", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L378", - "id": "locales_fr_blocker_section_mails", - "community": 3, - "norm_label": "section_mails" - }, - { - "label": "count_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L379", - "id": "locales_fr_blocker_count_label", - "community": 3, - "norm_label": "count_label" - }, - { - "label": "error_web_limit_reached", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L380", - "id": "locales_fr_blocker_error_web_limit_reached", - "community": 3, - "norm_label": "error_web_limit_reached" - }, - { - "label": "error_mail_limit_reached", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L381", - "id": "locales_fr_blocker_error_mail_limit_reached", - "community": 3, - "norm_label": "error_mail_limit_reached" - }, - { - "label": "error_invalid_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L382", - "id": "locales_fr_blocker_error_invalid_mail", - "community": 3, - "norm_label": "error_invalid_mail" - }, - { - "label": "error_invalid_input", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L383", - "id": "locales_fr_blocker_error_invalid_input", - "community": 687, - "norm_label": "error_invalid_input" - }, - { - "label": "error_public_domain", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L384", - "id": "locales_fr_blocker_error_public_domain", - "community": 3, - "norm_label": "error_public_domain" - }, - { - "label": "error_duplicate", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L385", - "id": "locales_fr_blocker_error_duplicate", - "community": 3, - "norm_label": "error_duplicate" - }, - { - "label": "kind_override_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L386", - "id": "locales_fr_blocker_kind_override_label", - "community": 3, - "norm_label": "kind_override_label" - }, - { - "label": "empty_web", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L387", - "id": "locales_fr_blocker_empty_web", - "community": 3, - "norm_label": "empty_web" - }, - { - "label": "empty_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L388", - "id": "locales_fr_blocker_empty_mail", - "community": 3, - "norm_label": "empty_mail" - }, - { - "label": "protection_subtitle_mdm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L389", - "id": "locales_fr_blocker_protection_subtitle_mdm", - "community": 3, - "norm_label": "protection_subtitle_mdm" - }, - { - "label": "protection_stat_method_nefilter", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L390", - "id": "locales_fr_blocker_protection_stat_method_nefilter", - "community": 3, - "norm_label": "protection_stat_method_nefilter" - }, - { - "label": "protection_stat_method_mdm", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L391", - "id": "locales_fr_blocker_protection_stat_method_mdm", - "community": 3, - "norm_label": "protection_stat_method_mdm" - }, - { - "label": "mdm_info_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L392", - "id": "locales_fr_blocker_mdm_info_hint", - "community": 3, - "norm_label": "mdm_info_hint" - }, - { - "label": "mdm_deactivate_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L393", - "id": "locales_fr_blocker_mdm_deactivate_title", - "community": 3, - "norm_label": "mdm_deactivate_title" - }, - { - "label": "mdm_deactivate_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L394", - "id": "locales_fr_blocker_mdm_deactivate_body", - "community": 3, - "norm_label": "mdm_deactivate_body" - }, - { - "label": "onboarding", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L396", - "id": "locales_fr_onboarding", - "community": 40, - "norm_label": "onboarding" - }, - { - "label": "lyra", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L397", - "id": "locales_fr_onboarding_lyra", - "community": 40, - "norm_label": "lyra" - }, - { - "label": "welcome", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L398", - "id": "locales_fr_lyra_welcome", - "community": 40, - "norm_label": "welcome" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L399", - "id": "locales_fr_welcome_body", - "community": 40, - "norm_label": "body" - }, - { - "label": "privacy", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L401", - "id": "locales_fr_lyra_privacy", - "community": 40, - "norm_label": "privacy" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L402", - "id": "locales_fr_privacy_body", - "community": 40, - "norm_label": "body" - }, - { - "label": "nickname", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L404", - "id": "locales_fr_lyra_nickname", - "community": 40, - "norm_label": "nickname" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L405", - "id": "locales_fr_nickname_body", - "community": 40, - "norm_label": "body" - }, - { - "label": "diga_choice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L407", - "id": "locales_fr_lyra_diga_choice", - "community": 40, - "norm_label": "diga_choice" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L408", - "id": "locales_fr_diga_choice_body", - "community": 40, - "norm_label": "body" - }, - { - "label": "diga_code", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L410", - "id": "locales_fr_lyra_diga_code", - "community": 687, - "norm_label": "diga_code" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L411", - "id": "locales_fr_diga_code_body", - "community": 687, - "norm_label": "body" - }, - { - "label": "plan", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L413", - "id": "locales_fr_lyra_plan", - "community": 83, - "norm_label": "plan" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L414", - "id": "locales_fr_plan_body", - "community": 40, - "norm_label": "body" - }, - { - "label": "payment", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L416", - "id": "locales_fr_lyra_payment", - "community": 40, - "norm_label": "payment" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L417", - "id": "locales_fr_payment_body", - "community": 40, - "norm_label": "body" - }, - { - "label": "protection", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L419", - "id": "locales_fr_lyra_protection", - "community": 71, - "norm_label": "protection" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L420", - "id": "locales_fr_protection_body", - "community": 71, - "norm_label": "body" - }, - { - "label": "protection_url", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L422", - "id": "locales_fr_lyra_protection_url", - "community": 40, - "norm_label": "protection_url" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L423", - "id": "locales_fr_protection_url_body", - "community": 40, - "norm_label": "body" - }, - { - "label": "protection_lock", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L425", - "id": "locales_fr_lyra_protection_lock", - "community": 40, - "norm_label": "protection_lock" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L426", - "id": "locales_fr_protection_lock_body", - "community": 40, - "norm_label": "body" - }, - { - "label": "protection_url_android", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L428", - "id": "locales_fr_lyra_protection_url_android", - "community": 40, - "norm_label": "protection_url_android" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L429", - "id": "locales_fr_protection_url_android_body", - "community": 40, - "norm_label": "body" - }, - { - "label": "protection_lock_android", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L431", - "id": "locales_fr_lyra_protection_lock_android", - "community": 40, - "norm_label": "protection_lock_android" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L432", - "id": "locales_fr_protection_lock_android_body", - "community": 40, - "norm_label": "body" - }, - { - "label": "done", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L434", - "id": "locales_fr_lyra_done", - "community": 40, - "norm_label": "done" - }, - { - "label": "body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L435", - "id": "locales_fr_done_body", - "community": 40, - "norm_label": "body" - }, - { - "label": "audio_play", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L437", - "id": "locales_fr_lyra_audio_play", - "community": 40, - "norm_label": "audio_play" - }, - { - "label": "audio_loading", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L438", - "id": "locales_fr_lyra_audio_loading", - "community": 40, - "norm_label": "audio_loading" - }, - { - "label": "audio_stop", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L439", - "id": "locales_fr_lyra_audio_stop", - "community": 40, - "norm_label": "audio_stop" - }, - { - "label": "audio_disable", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L440", - "id": "locales_fr_lyra_audio_disable", - "community": 40, - "norm_label": "audio_disable" - }, - { - "label": "welcome", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L442", - "id": "locales_fr_onboarding_welcome", - "community": 40, - "norm_label": "welcome" - }, - { - "label": "cta_primary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L443", - "id": "locales_fr_welcome_cta_primary", - "community": 40, - "norm_label": "cta_primary" - }, - { - "label": "bullet_anon", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L444", - "id": "locales_fr_welcome_bullet_anon", - "community": 40, - "norm_label": "bullet_anon" - }, - { - "label": "bullet_protect", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L445", - "id": "locales_fr_welcome_bullet_protect", - "community": 40, - "norm_label": "bullet_protect" - }, - { - "label": "bullet_community", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L446", - "id": "locales_fr_welcome_bullet_community", - "community": 40, - "norm_label": "bullet_community" - }, - { - "label": "privacy", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L448", - "id": "locales_fr_onboarding_privacy", - "community": 40, - "norm_label": "privacy" - }, - { - "label": "cta_primary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L449", - "id": "locales_fr_privacy_cta_primary", - "community": 40, - "norm_label": "cta_primary" - }, - { - "label": "promise_alias", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L450", - "id": "locales_fr_privacy_promise_alias", - "community": 40, - "norm_label": "promise_alias" - }, - { - "label": "promise_minimal", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L451", - "id": "locales_fr_privacy_promise_minimal", - "community": 40, - "norm_label": "promise_minimal" - }, - { - "label": "promise_no_ads", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L452", - "id": "locales_fr_privacy_promise_no_ads", - "community": 40, - "norm_label": "promise_no_ads" - }, - { - "label": "promise_germany", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L453", - "id": "locales_fr_privacy_promise_germany", - "community": 40, - "norm_label": "promise_germany" - }, - { - "label": "nickname", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L455", - "id": "locales_fr_onboarding_nickname", - "community": 687, - "norm_label": "nickname" - }, - { - "label": "cta_primary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L456", - "id": "locales_fr_nickname_cta_primary", - "community": 687, - "norm_label": "cta_primary" - }, - { - "label": "label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L457", - "id": "locales_fr_nickname_label", - "community": 687, - "norm_label": "label" - }, - { - "label": "placeholder", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L458", - "id": "locales_fr_nickname_placeholder", - "community": 687, - "norm_label": "placeholder" - }, - { - "label": "hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L459", - "id": "locales_fr_nickname_hint", - "community": 687, - "norm_label": "hint" - }, - { - "label": "error_too_short", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L460", - "id": "locales_fr_nickname_error_too_short", - "community": 687, - "norm_label": "error_too_short" - }, - { - "label": "error_too_long", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L461", - "id": "locales_fr_nickname_error_too_long", - "community": 687, - "norm_label": "error_too_long" - }, - { - "label": "error_profanity", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L462", - "id": "locales_fr_nickname_error_profanity", - "community": 687, - "norm_label": "error_profanity" - }, - { - "label": "error_taken", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L463", - "id": "locales_fr_nickname_error_taken", - "community": 687, - "norm_label": "error_taken" - }, - { - "label": "diga_choice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L465", - "id": "locales_fr_onboarding_diga_choice", - "community": 40, - "norm_label": "diga_choice" - }, - { - "label": "cta_yes", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L466", - "id": "locales_fr_diga_choice_cta_yes", - "community": 40, - "norm_label": "cta_yes" - }, - { - "label": "cta_no", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L467", - "id": "locales_fr_diga_choice_cta_no", - "community": 40, - "norm_label": "cta_no" - }, - { - "label": "hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L468", - "id": "locales_fr_diga_choice_hint", - "community": 40, - "norm_label": "hint" - }, - { - "label": "diga_code", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L470", - "id": "locales_fr_onboarding_diga_code", - "community": 687, - "norm_label": "diga_code" - }, - { - "label": "cta_primary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L471", - "id": "locales_fr_diga_code_cta_primary", - "community": 687, - "norm_label": "cta_primary" - }, - { - "label": "cta_secondary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L472", - "id": "locales_fr_diga_code_cta_secondary", - "community": 687, - "norm_label": "cta_secondary" - }, - { - "label": "label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L473", - "id": "locales_fr_diga_code_label", - "community": 687, - "norm_label": "label" - }, - { - "label": "hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L474", - "id": "locales_fr_diga_code_hint", - "community": 687, - "norm_label": "hint" - }, - { - "label": "error_not_found", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L475", - "id": "locales_fr_diga_code_error_not_found", - "community": 687, - "norm_label": "error_not_found" - }, - { - "label": "error_already_used", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L476", - "id": "locales_fr_diga_code_error_already_used", - "community": 687, - "norm_label": "error_already_used" - }, - { - "label": "error_expired", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L477", - "id": "locales_fr_diga_code_error_expired", - "community": 687, - "norm_label": "error_expired" - }, - { - "label": "error_invalid_input", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L478", - "id": "locales_fr_diga_code_error_invalid_input", - "community": 687, - "norm_label": "error_invalid_input" - }, - { - "label": "plan", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L480", - "id": "locales_fr_onboarding_plan", - "community": 83, - "norm_label": "plan" - }, - { - "label": "cta_trial", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L481", - "id": "locales_fr_plan_cta_trial", - "community": 83, - "norm_label": "cta_trial" - }, - { - "label": "cta_legend", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L482", - "id": "locales_fr_plan_cta_legend", - "community": 83, - "norm_label": "cta_legend" - }, - { - "label": "billing_monthly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L483", - "id": "locales_fr_plan_billing_monthly", - "community": 83, - "norm_label": "billing_monthly" - }, - { - "label": "billing_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L484", - "id": "locales_fr_plan_billing_yearly", - "community": 83, - "norm_label": "billing_yearly" - }, - { - "label": "billing_savings", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L485", - "id": "locales_fr_plan_billing_savings", - "community": 83, - "norm_label": "billing_savings" - }, - { - "label": "tier_pro_badge", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L486", - "id": "locales_fr_plan_tier_pro_badge", - "community": 83, - "norm_label": "tier_pro_badge" - }, - { - "label": "tier_pro_price_monthly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L487", - "id": "locales_fr_plan_tier_pro_price_monthly", - "community": 83, - "norm_label": "tier_pro_price_monthly" - }, - { - "label": "tier_pro_price_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L488", - "id": "locales_fr_plan_tier_pro_price_yearly", - "community": 83, - "norm_label": "tier_pro_price_yearly" - }, - { - "label": "tier_pro_anchor_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L489", - "id": "locales_fr_plan_tier_pro_anchor_yearly", - "community": 83, - "norm_label": "tier_pro_anchor_yearly" - }, - { - "label": "tier_pro_total_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L490", - "id": "locales_fr_plan_tier_pro_total_yearly", - "community": 83, - "norm_label": "tier_pro_total_yearly" - }, - { - "label": "tier_pro_subline_monthly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L491", - "id": "locales_fr_plan_tier_pro_subline_monthly", - "community": 83, - "norm_label": "tier_pro_subline_monthly" - }, - { - "label": "tier_pro_subline_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L492", - "id": "locales_fr_plan_tier_pro_subline_yearly", - "community": 83, - "norm_label": "tier_pro_subline_yearly" - }, - { - "label": "tier_legend_price_monthly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L493", - "id": "locales_fr_plan_tier_legend_price_monthly", - "community": 83, - "norm_label": "tier_legend_price_monthly" - }, - { - "label": "tier_legend_price_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L494", - "id": "locales_fr_plan_tier_legend_price_yearly", - "community": 83, - "norm_label": "tier_legend_price_yearly" - }, - { - "label": "tier_legend_anchor_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L495", - "id": "locales_fr_plan_tier_legend_anchor_yearly", - "community": 83, - "norm_label": "tier_legend_anchor_yearly" - }, - { - "label": "tier_legend_total_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L496", - "id": "locales_fr_plan_tier_legend_total_yearly", - "community": 83, - "norm_label": "tier_legend_total_yearly" - }, - { - "label": "tier_legend_subline_monthly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L497", - "id": "locales_fr_plan_tier_legend_subline_monthly", - "community": 83, - "norm_label": "tier_legend_subline_monthly" - }, - { - "label": "tier_legend_subline_yearly", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L498", - "id": "locales_fr_plan_tier_legend_subline_yearly", - "community": 83, - "norm_label": "tier_legend_subline_yearly" - }, - { - "label": "feat_blocklist", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L499", - "id": "locales_fr_plan_feat_blocklist", - "community": 83, - "norm_label": "feat_blocklist" - }, - { - "label": "feat_lyra", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L500", - "id": "locales_fr_plan_feat_lyra", - "community": 83, - "norm_label": "feat_lyra" - }, - { - "label": "feat_mail", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L501", - "id": "locales_fr_plan_feat_mail", - "community": 83, - "norm_label": "feat_mail" - }, - { - "label": "feat_community", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L502", - "id": "locales_fr_plan_feat_community", - "community": 83, - "norm_label": "feat_community" - }, - { - "label": "feat_legend_all_pro", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L503", - "id": "locales_fr_plan_feat_legend_all_pro", - "community": 83, - "norm_label": "feat_legend_all_pro" - }, - { - "label": "feat_legend_multi_device", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L504", - "id": "locales_fr_plan_feat_legend_multi_device", - "community": 83, - "norm_label": "feat_legend_multi_device" - }, - { - "label": "feat_legend_voice", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L505", - "id": "locales_fr_plan_feat_legend_voice", - "community": 83, - "norm_label": "feat_legend_voice" - }, - { - "label": "disclaimer", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L506", - "id": "locales_fr_plan_disclaimer", - "community": 83, - "norm_label": "disclaimer" - }, - { - "label": "hardship_link", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L507", - "id": "locales_fr_plan_hardship_link", - "community": 83, - "norm_label": "hardship_link" - }, - { - "label": "payment", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L509", - "id": "locales_fr_onboarding_payment", - "community": 40, - "norm_label": "payment" - }, - { - "label": "cta_dev_skip", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L510", - "id": "locales_fr_payment_cta_dev_skip", - "community": 40, - "norm_label": "cta_dev_skip" - }, - { - "label": "dev_label", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L511", - "id": "locales_fr_payment_dev_label", - "community": 40, - "norm_label": "dev_label" - }, - { - "label": "dev_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L512", - "id": "locales_fr_payment_dev_body", - "community": 40, - "norm_label": "dev_body" - }, - { - "label": "protection", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L514", - "id": "locales_fr_onboarding_protection", - "community": 71, - "norm_label": "protection" - }, - { - "label": "cta_primary", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L515", - "id": "locales_fr_protection_cta_primary", - "community": 71, - "norm_label": "cta_primary" - }, - { - "label": "cta_open_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L516", - "id": "locales_fr_protection_cta_open_a11y", - "community": 71, - "norm_label": "cta_open_a11y" - }, - { - "label": "cta_check_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L517", - "id": "locales_fr_protection_cta_check_a11y", - "community": 71, - "norm_label": "cta_check_a11y" - }, - { - "label": "url_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L518", - "id": "locales_fr_protection_url_title", - "community": 71, - "norm_label": "url_title" - }, - { - "label": "lock_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L519", - "id": "locales_fr_protection_lock_title", - "community": 71, - "norm_label": "lock_title" - }, - { - "label": "url_title_android", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L520", - "id": "locales_fr_protection_url_title_android", - "community": 71, - "norm_label": "url_title_android" - }, - { - "label": "lock_title_android", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L521", - "id": "locales_fr_protection_lock_title_android", - "community": 71, - "norm_label": "lock_title_android" - }, - { - "label": "tap_marker_hint", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L522", - "id": "locales_fr_protection_tap_marker_hint", - "community": 71, - "norm_label": "tap_marker_hint" - }, - { - "label": "tap_marker_hint_android_vpn", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L523", - "id": "locales_fr_protection_tap_marker_hint_android_vpn", - "community": 71, - "norm_label": "tap_marker_hint_android_vpn" - }, - { - "label": "tap_marker_hint_android_a11y", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L524", - "id": "locales_fr_protection_tap_marker_hint_android_a11y", - "community": 71, - "norm_label": "tap_marker_hint_android_a11y" - }, - { - "label": "android_a11y_pending_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L525", - "id": "locales_fr_protection_android_a11y_pending_title", - "community": 71, - "norm_label": "android_a11y_pending_title" - }, - { - "label": "android_a11y_pending_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L526", - "id": "locales_fr_protection_android_a11y_pending_body", - "community": 71, - "norm_label": "android_a11y_pending_body" - }, - { - "label": "dialog_button_allow", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L527", - "id": "locales_fr_protection_dialog_button_allow", - "community": 71, - "norm_label": "dialog_button_allow" - }, - { - "label": "dialog_button_continue", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L528", - "id": "locales_fr_protection_dialog_button_continue", - "community": 71, - "norm_label": "dialog_button_continue" - }, - { - "label": "dialog_button_vpn_ok", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L529", - "id": "locales_fr_protection_dialog_button_vpn_ok", - "community": 71, - "norm_label": "dialog_button_vpn_ok" - }, - { - "label": "dialog_button_a11y_toggle", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L530", - "id": "locales_fr_protection_dialog_button_a11y_toggle", - "community": 71, - "norm_label": "dialog_button_a11y_toggle" - }, - { - "label": "android_restart_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L531", - "id": "locales_fr_protection_android_restart_title", - "community": 71, - "norm_label": "android_restart_title" - }, - { - "label": "android_restart_body", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L532", - "id": "locales_fr_protection_android_restart_body", - "community": 71, - "norm_label": "android_restart_body" - }, - { - "label": "android_restart_now", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L533", - "id": "locales_fr_protection_android_restart_now", - "community": 71, - "norm_label": "android_restart_now" - }, - { - "label": "android_restart_later", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L534", - "id": "locales_fr_protection_android_restart_later", - "community": 71, - "norm_label": "android_restart_later" - }, - { - "label": "applock_failed_title", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L535", - "id": "locales_fr_protection_applock_failed_title", - "community": 71, - "norm_label": "applock_failed_title" - }, - { - "label": "applock_failed_msg", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L536", - "id": "locales_fr_protection_applock_failed_msg", - "community": 71, - "norm_label": "applock_failed_msg" - }, - { - "label": "applock_skip", - "file_type": "code", - "source_file": "apps/rebreak-native/locales/fr.json", - "source_location": "L537", - "id": "locales_fr_protection_applock_skip", - "community": 71, - "norm_label": "applock_skip" - }, - { - "label": "RebreakProtectionModule.kt", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1", - "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt", - "community": 10, - "norm_label": "rebreakprotectionmodule.kt" - }, - { - "label": "RebreakProtectionModule", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L62", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "community": 10, - "norm_label": "rebreakprotectionmodule" - }, - { - "label": "Module", - "file_type": "code", - "source_file": "", - "source_location": "", - "id": "module", - "community": 66, - "norm_label": "module" - }, - { - "label": "Promise", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L64", - "id": "promise", - "community": 10, - "norm_label": "promise" - }, - { - "label": "Runnable", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L71", - "id": "runnable", - "community": 10, - "norm_label": "runnable" - }, - { - "label": "Int", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L72", - "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int", - "community": 10, - "norm_label": "int" - }, - { - "label": "LinearLayout", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L73", - "id": "linearlayout", - "community": 10, - "norm_label": "linearlayout" - }, - { - "label": "TextView", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L74", - "id": "textview", - "community": 10, - "norm_label": "textview" - }, - { - "label": "WindowManager", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L75", - "id": "windowmanager", - "community": 10, - "norm_label": "windowmanager" - }, - { - "label": ".definition()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L78", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "community": 10, - "norm_label": ".definition()" - }, - { - "label": ".requireContext()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L629", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext", - "community": 10, - "norm_label": ".requirecontext()" - }, - { - "label": "Context", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L629", - "id": "context", - "community": 10, - "norm_label": "context" - }, - { - "label": ".startStickyHint()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L659", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint", - "community": 10, - "norm_label": ".startstickyhint()" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L659", - "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string", - "community": 10, - "norm_label": "string" - }, - { - "label": ".hasUsageAccess()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L705", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_hasusageaccess", - "community": 10, - "norm_label": ".hasusageaccess()" - }, - { - "label": "Boolean", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L705", - "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean", - "community": 10, - "norm_label": "boolean" - }, - { - "label": ".currentForegroundActivity()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L723", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentforegroundactivity", - "community": 10, - "norm_label": ".currentforegroundactivity()" - }, - { - "label": ".currentA11yStep()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L756", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenta11ystep", - "community": 10, - "norm_label": ".currenta11ystep()" - }, - { - "label": ".a11yStepForActivity()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L797", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_a11ystepforactivity", - "community": 10, - "norm_label": ".a11ystepforactivity()" - }, - { - "label": ".ensureGuideChannel()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L819", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_ensureguidechannel", - "community": 10, - "norm_label": ".ensureguidechannel()" - }, - { - "label": ".postGuideNotification()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L837", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification", - "community": 10, - "norm_label": ".postguidenotification()" - }, - { - "label": ".cancelGuideNotification()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L869", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_cancelguidenotification", - "community": 10, - "norm_label": ".cancelguidenotification()" - }, - { - "label": ".startA11yGuideWatch()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L879", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_starta11yguidewatch", - "community": 10, - "norm_label": ".starta11yguidewatch()" - }, - { - "label": ".stopA11yGuideWatch()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L918", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopa11yguidewatch", - "community": 10, - "norm_label": ".stopa11yguidewatch()" - }, - { - "label": ".guideStepText()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L925", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext", - "community": 10, - "norm_label": ".guidesteptext()" - }, - { - "label": ".showOverlayStep()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L939", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", - "community": 10, - "norm_label": ".showoverlaystep()" - }, - { - "label": ".showGuideStep()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L998", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showguidestep", - "community": 10, - "norm_label": ".showguidestep()" - }, - { - "label": ".stopGuideDisplay()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1004", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay", - "community": 10, - "norm_label": ".stopguidedisplay()" - }, - { - "label": ".openOverlayPermissionSettings()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1009", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings", - "community": 10, - "norm_label": ".openoverlaypermissionsettings()" - }, - { - "label": ".bringRebreakToFront()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1032", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_bringrebreaktofront", - "community": 10, - "norm_label": ".bringrebreaktofront()" - }, - { - "label": ".resetSettingsToRoot()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1059", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetsettingstoroot", - "community": 10, - "norm_label": ".resetsettingstoroot()" - }, - { - "label": ".currentStickyHintText()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1071", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentstickyhinttext", - "community": 10, - "norm_label": ".currentstickyhinttext()" - }, - { - "label": ".advanceStickyHintStep()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1079", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_advancestickyhintstep", - "community": 10, - "norm_label": ".advancestickyhintstep()" - }, - { - "label": ".resetStickyHintProgress()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1083", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetstickyhintprogress", - "community": 10, - "norm_label": ".resetstickyhintprogress()" - }, - { - "label": ".stopSamsungGuideOverlay()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1087", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopsamsungguideoverlay", - "community": 10, - "norm_label": ".stopsamsungguideoverlay()" - }, - { - "label": ".stopStickyHint()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1103", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopstickyhint", - "community": 10, - "norm_label": ".stopstickyhint()" - }, - { - "label": ".startVpnService()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1108", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startvpnservice", - "community": 10, - "norm_label": ".startvpnservice()" - }, - { - "label": ".buildDeviceState()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1118", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "community": 10, - "norm_label": ".builddevicestate()" - }, - { - "label": "Map", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1118", - "id": "map", - "community": 10, - "norm_label": "map" - }, - { - "label": "Any", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1118", - "id": "any", - "community": 10, - "norm_label": "any" - }, - { - "label": ".isDeviceAdminEnabled()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1142", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled", - "community": 10, - "norm_label": ".isdeviceadminenabled()" - }, - { - "label": ".isIgnoringBatteryOptimizations()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1154", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations", - "community": 10, - "norm_label": ".isignoringbatteryoptimizations()" - }, - { - "label": ".activateSuccessResult()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1163", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult", - "community": 10, - "norm_label": ".activatesuccessresult()" - }, - { - "label": ".sendLayerChange()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1169", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_sendlayerchange", - "community": 10, - "norm_label": ".sendlayerchange()" - }, - { - "label": ".prefs()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1174", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs", - "community": 10, - "norm_label": ".prefs()" - }, - { - "label": ".saveEnabled()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1177", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled", - "community": 10, - "norm_label": ".saveenabled()" - }, - { - "label": ".isEnabledFlag()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1181", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag", - "community": 10, - "norm_label": ".isenabledflag()" - }, - { - "label": ".isTamperLockArmed()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1184", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed", - "community": 10, - "norm_label": ".istamperlockarmed()" - }, - { - "label": ".disarmTamperLock()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1189", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_disarmtamperlock", - "community": 10, - "norm_label": ".disarmtamperlock()" - }, - { - "label": ".currentHashCount()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1194", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenthashcount", - "community": 10, - "norm_label": ".currenthashcount()" - }, - { - "label": ".isVpnEffectivelyOn()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1208", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon", - "community": 10, - "norm_label": ".isvpneffectivelyon()" - }, - { - "label": ".isAccessibilityServiceEnabled()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1242", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled", - "community": 10, - "norm_label": ".isaccessibilityserviceenabled()" - }, - { - "label": ".downloadBlocklist()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1292", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", - "community": 10, - "norm_label": ".downloadblocklist()" - }, - { - "label": ".writeBlocklistAtomic()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1332", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic", - "community": 10, - "norm_label": ".writeblocklistatomic()" - }, - { - "label": "ByteArray", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1332", - "id": "bytearray", - "community": 10, - "norm_label": "bytearray" - }, - { - "label": ".isoTimestamp()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1342", - "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isotimestamp", - "community": 10, - "norm_label": ".isotimestamp()" - }, - { - "label": "RebreakVpnService.kt", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L1", - "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt", - "community": 10, - "norm_label": "rebreakvpnservice.kt" - }, - { - "label": "RebreakVpnService", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L39", - "id": "vpn_rebreakvpnservice_rebreakvpnservice", - "community": 10, - "norm_label": "rebreakvpnservice" - }, - { - "label": "VpnService", - "file_type": "code", - "source_file": "", - "source_location": "", - "id": "vpnservice", - "community": 10, - "norm_label": "vpnservice" - }, - { - "label": "ParcelFileDescriptor", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L41", - "id": "parcelfiledescriptor", - "community": 10, - "norm_label": "parcelfiledescriptor" - }, - { - "label": "Thread", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L42", - "id": "thread", - "community": 10, - "norm_label": "thread" - }, - { - "label": "HashList", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L45", - "id": "hashlist", - "community": 10, - "norm_label": "hashlist" - }, - { - "label": ".onCreate()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L47", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_oncreate", - "community": 10, - "norm_label": ".oncreate()" - }, - { - "label": ".onStartCommand()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L52", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", - "community": 10, - "norm_label": ".onstartcommand()" - }, - { - "label": "Intent", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L52", - "id": "intent", - "community": 10, - "norm_label": "intent" - }, - { - "label": "Int", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L52", - "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_int", - "community": 10, - "norm_label": "int" - }, - { - "label": ".promoteToForegroundOrStop()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L101", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_promotetoforegroundorstop", - "community": 10, - "norm_label": ".promotetoforegroundorstop()" - }, - { - "label": "Boolean", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L101", - "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_boolean", - "community": 10, - "norm_label": "boolean" - }, - { - "label": ".startVpn()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L121", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn", - "community": 10, - "norm_label": ".startvpn()" - }, - { - "label": ".stopVpn()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L158", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn", - "community": 10, - "norm_label": ".stopvpn()" - }, - { - "label": ".runFilterLoop()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L168", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop", - "community": 10, - "norm_label": ".runfilterloop()" - }, - { - "label": ".scheduleBlocklistSelfHeal()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L207", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_scheduleblocklistselfheal", - "community": 10, - "norm_label": ".scheduleblocklistselfheal()" - }, - { - "label": ".onRevoke()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L236", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_onrevoke", - "community": 10, - "norm_label": ".onrevoke()" - }, - { - "label": ".tryAutoRecoverAfterRevoke()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L258", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_tryautorecoverafterrevoke", - "community": 10, - "norm_label": ".tryautorecoverafterrevoke()" - }, - { - "label": ".onDestroy()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L284", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_ondestroy", - "community": 10, - "norm_label": ".ondestroy()" - }, - { - "label": ".clearEnabledFlag()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L297", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_clearenabledflag", - "community": 10, - "norm_label": ".clearenabledflag()" - }, - { - "label": ".setEnabledFlag()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L310", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_setenabledflag", - "community": 10, - "norm_label": ".setenabledflag()" - }, - { - "label": ".buildNotification()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L322", - "id": "vpn_rebreakvpnservice_rebreakvpnservice_buildnotification", - "community": 10, - "norm_label": ".buildnotification()" - }, - { - "label": "Notification", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L322", - "id": "notification", - "community": 47, - "norm_label": "notification" - }, - { - "label": "RebreakProtection.types.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L1", - "id": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "community": 93, - "norm_label": "rebreakprotection.types.ts" - }, - { - "label": "DeviceLayers", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L7", - "id": "src_rebreakprotection_types_devicelayers", - "community": 93, - "norm_label": "devicelayers" - }, - { - "label": "WebContentFilterResult", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L62", - "id": "src_rebreakprotection_types_webcontentfilterresult", - "community": 93, - "norm_label": "webcontentfilterresult" - }, - { - "label": "ActivateResult", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L69", - "id": "src_rebreakprotection_types_activateresult", - "community": 93, - "norm_label": "activateresult" - }, - { - "label": "DisableResult", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L84", - "id": "src_rebreakprotection_types_disableresult", - "community": 93, - "norm_label": "disableresult" - }, - { - "label": "ProtectionLayerKey", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L88", - "id": "src_rebreakprotection_types_protectionlayerkey", - "community": 93, - "norm_label": "protectionlayerkey" - }, - { - "label": "SyncBlocklistOpts", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L96", - "id": "src_rebreakprotection_types_syncblocklistopts", - "community": 93, - "norm_label": "syncblocklistopts" - }, - { - "label": "SyncBlocklistResult", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L101", - "id": "src_rebreakprotection_types_syncblocklistresult", - "community": 93, - "norm_label": "syncblocklistresult" - }, - { - "label": "SyncWebContentDomainsOpts", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L111", - "id": "src_rebreakprotection_types_syncwebcontentdomainsopts", - "community": 93, - "norm_label": "syncwebcontentdomainsopts" - }, - { - "label": "SyncWebContentDomainsResult", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L124", - "id": "src_rebreakprotection_types_syncwebcontentdomainsresult", - "community": 93, - "norm_label": "syncwebcontentdomainsresult" - }, - { - "label": "HealthProbeOutcome", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L131", - "id": "src_rebreakprotection_types_healthprobeoutcome", - "community": 93, - "norm_label": "healthprobeoutcome" - }, - { - "label": "HealthProbeOpts", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L133", - "id": "src_rebreakprotection_types_healthprobeopts", - "community": 93, - "norm_label": "healthprobeopts" - }, - { - "label": "HealthProbeResult", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L140", - "id": "src_rebreakprotection_types_healthproberesult", - "community": 93, - "norm_label": "healthproberesult" - }, - { - "label": "SystemSettingsTarget", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L147", - "id": "src_rebreakprotection_types_systemsettingstarget", - "community": 93, - "norm_label": "systemsettingstarget" - }, - { - "label": "RebreakProtectionEvents", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L162", - "id": "src_rebreakprotection_types_rebreakprotectionevents", - "community": 93, - "norm_label": "rebreakprotectionevents" - }, - { - "label": "RebreakProtectionModule.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L1", - "id": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "community": 93, - "norm_label": "rebreakprotectionmodule.ts" - }, - { - "label": "RebreakProtectionModule", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L18", - "id": "src_rebreakprotectionmodule_rebreakprotectionmodule", - "community": 66, - "norm_label": "rebreakprotectionmodule" + "metadata": { + "language": "bash", + "kind": "code" + }, + "community": 628, + "norm_label": "port", + "id": "backend_start_staging_port" }, { "label": "package.json", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L1", - "id": "apps_rebreak_native_package_json", - "community": 433, - "norm_label": "package.json" + "community": 51, + "norm_label": "package.json", + "id": "backend_package_json" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L2", - "id": "rebreak_native_package_name", - "community": 433, - "norm_label": "name" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L3", - "id": "rebreak_native_package_version", - "community": 433, - "norm_label": "version" + "community": 51, + "norm_label": "name", + "id": "backend_package_name" }, { "label": "private", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L4", - "id": "rebreak_native_package_private", - "community": 433, - "norm_label": "private" + "source_file": "backend/package.json", + "source_location": "L3", + "community": 51, + "norm_label": "private", + "id": "backend_package_private" }, { - "label": "main", + "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", + "source_location": "L4", + "community": 51, + "norm_label": "type", + "id": "backend_package_type" + }, + { + "label": "version", + "file_type": "code", + "source_file": "backend/package.json", "source_location": "L5", - "id": "rebreak_native_package_main", - "community": 433, - "norm_label": "main" + "community": 51, + "norm_label": "version", + "id": "backend_package_version" }, { "label": "scripts", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L6", - "id": "rebreak_native_package_scripts", - "community": 433, - "norm_label": "scripts" + "community": 51, + "norm_label": "scripts", + "id": "backend_package_scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L7", + "community": 51, + "norm_label": "build", + "id": "backend_package_scripts_build" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L8", + "community": 51, + "norm_label": "dev", + "id": "backend_package_scripts_dev" + }, + { + "label": "preview", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L9", + "community": 51, + "norm_label": "preview", + "id": "backend_package_scripts_preview" }, { "label": "start", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L7", - "id": "rebreak_native_package_scripts_start", - "community": 433, - "norm_label": "start" - }, - { - "label": "ios", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L8", - "id": "rebreak_native_package_scripts_ios", - "community": 433, - "norm_label": "ios" - }, - { - "label": "android", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L9", - "id": "rebreak_native_package_scripts_android", - "community": 433, - "norm_label": "android" - }, - { - "label": "prebuild", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L10", - "id": "rebreak_native_package_scripts_prebuild", - "community": 433, - "norm_label": "prebuild" + "community": 51, + "norm_label": "start", + "id": "backend_package_scripts_start" }, { - "label": "lint", + "label": "prisma:generate", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L11", - "id": "rebreak_native_package_scripts_lint", - "community": 433, - "norm_label": "lint" + "community": 51, + "norm_label": "prisma:generate", + "id": "backend_package_scripts_prisma_generate" + }, + { + "label": "test", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L12", + "community": 51, + "norm_label": "test", + "id": "backend_package_scripts_test" + }, + { + "label": "test:watch", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L13", + "community": 51, + "norm_label": "test:watch", + "id": "backend_package_scripts_test_watch" }, { "label": "typecheck", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L12", - "id": "rebreak_native_package_scripts_typecheck", - "community": 433, - "norm_label": "typecheck" + "source_file": "backend/package.json", + "source_location": "L14", + "community": 51, + "norm_label": "typecheck", + "id": "backend_package_scripts_typecheck" }, { "label": "dependencies", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L14", - "id": "rebreak_native_package_dependencies", - "community": 26, - "norm_label": "dependencies" - }, - { - "label": "@config-plugins/react-native-callkeep", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L15", - "id": "rebreak_native_package_dependencies_config_plugins_react_native_callkeep", - "community": 26, - "norm_label": "@config-plugins/react-native-callkeep" - }, - { - "label": "@config-plugins/react-native-webrtc", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L16", - "id": "rebreak_native_package_dependencies_config_plugins_react_native_webrtc", - "community": 26, - "norm_label": "@config-plugins/react-native-webrtc" + "community": 51, + "norm_label": "dependencies", + "id": "backend_package_dependencies" }, { - "label": "@expo-google-fonts/nunito", + "label": "@parse/node-apn", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L17", - "id": "rebreak_native_package_dependencies_expo_google_fonts_nunito", - "community": 26, - "norm_label": "@expo-google-fonts/nunito" + "community": 51, + "norm_label": "@parse/node-apn", + "id": "backend_package_dependencies_parse_node_apn" }, { - "label": "@expo/metro-runtime", + "label": "@prisma/adapter-pg", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L18", - "id": "rebreak_native_package_dependencies_expo_metro_runtime", - "community": 26, - "norm_label": "@expo/metro-runtime" + "community": 51, + "norm_label": "@prisma/adapter-pg", + "id": "backend_package_dependencies_prisma_adapter_pg" }, { - "label": "@expo/react-native-action-sheet", + "label": "@prisma/client", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L19", - "id": "rebreak_native_package_dependencies_expo_react_native_action_sheet", - "community": 26, - "norm_label": "@expo/react-native-action-sheet" - }, - { - "label": "@expo/vector-icons", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L20", - "id": "rebreak_native_package_dependencies_expo_vector_icons", - "community": 26, - "norm_label": "@expo/vector-icons" - }, - { - "label": "@lodev09/react-native-true-sheet", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L21", - "id": "rebreak_native_package_dependencies_lodev09_react_native_true_sheet", - "community": 26, - "norm_label": "@lodev09/react-native-true-sheet" - }, - { - "label": "@react-native-async-storage/async-storage", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L22", - "id": "rebreak_native_package_dependencies_react_native_async_storage_async_storage", - "community": 26, - "norm_label": "@react-native-async-storage/async-storage" - }, - { - "label": "@react-native-community/slider", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L23", - "id": "rebreak_native_package_dependencies_react_native_community_slider", - "community": 26, - "norm_label": "@react-native-community/slider" - }, - { - "label": "@react-native-menu/menu", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L24", - "id": "rebreak_native_package_dependencies_react_native_menu_menu", - "community": 26, - "norm_label": "@react-native-menu/menu" - }, - { - "label": "@react-native-picker/picker", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L25", - "id": "rebreak_native_package_dependencies_react_native_picker_picker", - "community": 26, - "norm_label": "@react-native-picker/picker" - }, - { - "label": "@react-navigation/native", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L26", - "id": "rebreak_native_package_dependencies_react_navigation_native", - "community": 26, - "norm_label": "@react-navigation/native" + "community": 51, + "norm_label": "@prisma/client", + "id": "backend_package_dependencies_prisma_client" }, { "label": "@supabase/supabase-js", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", + "source_location": "L20", + "community": 51, + "norm_label": "@supabase/supabase-js", + "id": "backend_package_dependencies_supabase_supabase_js" + }, + { + "label": "expo-server-sdk", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L21", + "community": 51, + "norm_label": "expo-server-sdk", + "id": "backend_package_dependencies_expo_server_sdk" + }, + { + "label": "franc", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L22", + "community": 51, + "norm_label": "franc", + "id": "backend_package_dependencies_franc" + }, + { + "label": "groq-sdk", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L23", + "community": 51, + "norm_label": "groq-sdk", + "id": "backend_package_dependencies_groq_sdk" + }, + { + "label": "imapflow", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L24", + "community": 51, + "norm_label": "imapflow", + "id": "backend_package_dependencies_imapflow" + }, + { + "label": "jose", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L25", + "community": 51, + "norm_label": "jose", + "id": "backend_package_dependencies_jose" + }, + { + "label": "openai", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L26", + "community": 51, + "norm_label": "openai", + "id": "backend_package_dependencies_openai" + }, + { + "label": "pg", + "file_type": "code", + "source_file": "backend/package.json", "source_location": "L27", - "id": "rebreak_native_package_dependencies_supabase_supabase_js", - "community": 26, - "norm_label": "@supabase/supabase-js" + "community": 51, + "norm_label": "pg", + "id": "backend_package_dependencies_pg" }, { - "label": "@tanstack/react-query", + "label": "resend", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L28", - "id": "rebreak_native_package_dependencies_tanstack_react_query", - "community": 26, - "norm_label": "@tanstack/react-query" + "community": 51, + "norm_label": "resend", + "id": "backend_package_dependencies_resend" }, { - "label": "expo", + "label": "stripe", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L29", - "id": "rebreak_native_package_dependencies_expo", - "community": 26, - "norm_label": "expo" + "community": 51, + "norm_label": "stripe", + "id": "backend_package_dependencies_stripe" }, { - "label": "expo-apple-authentication", + "label": "zod", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", + "source_file": "backend/package.json", "source_location": "L30", - "id": "rebreak_native_package_dependencies_expo_apple_authentication", - "community": 26, - "norm_label": "expo-apple-authentication" - }, - { - "label": "expo-application", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L31", - "id": "rebreak_native_package_dependencies_expo_application", - "community": 26, - "norm_label": "expo-application" - }, - { - "label": "expo-av", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L32", - "id": "rebreak_native_package_dependencies_expo_av", - "community": 26, - "norm_label": "expo-av" - }, - { - "label": "expo-blur", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L33", - "id": "rebreak_native_package_dependencies_expo_blur", - "community": 26, - "norm_label": "expo-blur" - }, - { - "label": "expo-build-properties", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L34", - "id": "rebreak_native_package_dependencies_expo_build_properties", - "community": 26, - "norm_label": "expo-build-properties" - }, - { - "label": "expo-clipboard", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L35", - "id": "rebreak_native_package_dependencies_expo_clipboard", - "community": 26, - "norm_label": "expo-clipboard" - }, - { - "label": "expo-constants", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L36", - "id": "rebreak_native_package_dependencies_expo_constants", - "community": 26, - "norm_label": "expo-constants" - }, - { - "label": "expo-dev-client", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L37", - "id": "rebreak_native_package_dependencies_expo_dev_client", - "community": 26, - "norm_label": "expo-dev-client" - }, - { - "label": "expo-device", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L38", - "id": "rebreak_native_package_dependencies_expo_device", - "community": 26, - "norm_label": "expo-device" - }, - { - "label": "expo-file-system", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L39", - "id": "rebreak_native_package_dependencies_expo_file_system", - "community": 26, - "norm_label": "expo-file-system" - }, - { - "label": "expo-font", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L40", - "id": "rebreak_native_package_dependencies_expo_font", - "community": 26, - "norm_label": "expo-font" - }, - { - "label": "expo-haptics", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L41", - "id": "rebreak_native_package_dependencies_expo_haptics", - "community": 26, - "norm_label": "expo-haptics" - }, - { - "label": "expo-image", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L42", - "id": "rebreak_native_package_dependencies_expo_image", - "community": 26, - "norm_label": "expo-image" - }, - { - "label": "expo-image-manipulator", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L43", - "id": "rebreak_native_package_dependencies_expo_image_manipulator", - "community": 26, - "norm_label": "expo-image-manipulator" - }, - { - "label": "expo-image-picker", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L44", - "id": "rebreak_native_package_dependencies_expo_image_picker", - "community": 26, - "norm_label": "expo-image-picker" - }, - { - "label": "expo-linear-gradient", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L45", - "id": "rebreak_native_package_dependencies_expo_linear_gradient", - "community": 26, - "norm_label": "expo-linear-gradient" - }, - { - "label": "expo-linking", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L46", - "id": "rebreak_native_package_dependencies_expo_linking", - "community": 26, - "norm_label": "expo-linking" - }, - { - "label": "expo-local-authentication", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L47", - "id": "rebreak_native_package_dependencies_expo_local_authentication", - "community": 26, - "norm_label": "expo-local-authentication" - }, - { - "label": "expo-localization", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L48", - "id": "rebreak_native_package_dependencies_expo_localization", - "community": 26, - "norm_label": "expo-localization" - }, - { - "label": "expo-media-library", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L49", - "id": "rebreak_native_package_dependencies_expo_media_library", - "community": 26, - "norm_label": "expo-media-library" - }, - { - "label": "expo-modules-core", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L50", - "id": "rebreak_native_package_dependencies_expo_modules_core", - "community": 26, - "norm_label": "expo-modules-core" - }, - { - "label": "expo-notifications", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L51", - "id": "rebreak_native_package_dependencies_expo_notifications", - "community": 26, - "norm_label": "expo-notifications" - }, - { - "label": "expo-router", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L52", - "id": "rebreak_native_package_dependencies_expo_router", - "community": 26, - "norm_label": "expo-router" - }, - { - "label": "expo-speech", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L53", - "id": "rebreak_native_package_dependencies_expo_speech", - "community": 26, - "norm_label": "expo-speech" - }, - { - "label": "expo-splash-screen", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L54", - "id": "rebreak_native_package_dependencies_expo_splash_screen", - "community": 26, - "norm_label": "expo-splash-screen" - }, - { - "label": "expo-status-bar", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L55", - "id": "rebreak_native_package_dependencies_expo_status_bar", - "community": 26, - "norm_label": "expo-status-bar" - }, - { - "label": "expo-web-browser", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L56", - "id": "rebreak_native_package_dependencies_expo_web_browser", - "community": 26, - "norm_label": "expo-web-browser" - }, - { - "label": "i18next", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L57", - "id": "rebreak_native_package_dependencies_i18next", - "community": 26, - "norm_label": "i18next" - }, - { - "label": "lottie-react-native", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L58", - "id": "rebreak_native_package_dependencies_lottie_react_native", - "community": 26, - "norm_label": "lottie-react-native" - }, - { - "label": "nativewind", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L59", - "id": "rebreak_native_package_dependencies_nativewind", - "community": 26, - "norm_label": "nativewind" - }, - { - "label": "react", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L60", - "id": "rebreak_native_package_dependencies_react", - "community": 26, - "norm_label": "react" - }, - { - "label": "react-dom", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L61", - "id": "rebreak_native_package_dependencies_react_dom", - "community": 26, - "norm_label": "react-dom" - }, - { - "label": "react-hook-form", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L62", - "id": "rebreak_native_package_dependencies_react_hook_form", - "community": 26, - "norm_label": "react-hook-form" - }, - { - "label": "react-i18next", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L63", - "id": "rebreak_native_package_dependencies_react_i18next", - "community": 26, - "norm_label": "react-i18next" - }, - { - "label": "react-native", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L64", - "id": "rebreak_native_package_dependencies_react_native", - "community": 26, - "norm_label": "react-native" - }, - { - "label": "react-native-bottom-tabs", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L65", - "id": "rebreak_native_package_dependencies_react_native_bottom_tabs", - "community": 26, - "norm_label": "react-native-bottom-tabs" - }, - { - "label": "react-native-callkeep", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L66", - "id": "rebreak_native_package_dependencies_react_native_callkeep", - "community": 26, - "norm_label": "react-native-callkeep" - }, - { - "label": "react-native-gesture-handler", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L67", - "id": "rebreak_native_package_dependencies_react_native_gesture_handler", - "community": 26, - "norm_label": "react-native-gesture-handler" - }, - { - "label": "react-native-incall-manager", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L68", - "id": "rebreak_native_package_dependencies_react_native_incall_manager", - "community": 26, - "norm_label": "react-native-incall-manager" - }, - { - "label": "react-native-keyboard-controller", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L69", - "id": "rebreak_native_package_dependencies_react_native_keyboard_controller", - "community": 26, - "norm_label": "react-native-keyboard-controller" - }, - { - "label": "react-native-mmkv", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L70", - "id": "rebreak_native_package_dependencies_react_native_mmkv", - "community": 26, - "norm_label": "react-native-mmkv" - }, - { - "label": "react-native-reanimated", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L71", - "id": "rebreak_native_package_dependencies_react_native_reanimated", - "community": 26, - "norm_label": "react-native-reanimated" - }, - { - "label": "react-native-safe-area-context", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L72", - "id": "rebreak_native_package_dependencies_react_native_safe_area_context", - "community": 26, - "norm_label": "react-native-safe-area-context" - }, - { - "label": "react-native-screens", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L73", - "id": "rebreak_native_package_dependencies_react_native_screens", - "community": 26, - "norm_label": "react-native-screens" - }, - { - "label": "react-native-sse", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L74", - "id": "rebreak_native_package_dependencies_react_native_sse", - "community": 26, - "norm_label": "react-native-sse" - }, - { - "label": "react-native-svg", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L75", - "id": "rebreak_native_package_dependencies_react_native_svg", - "community": 26, - "norm_label": "react-native-svg" - }, - { - "label": "react-native-url-polyfill", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L76", - "id": "rebreak_native_package_dependencies_react_native_url_polyfill", - "community": 26, - "norm_label": "react-native-url-polyfill" - }, - { - "label": "react-native-voip-push-notification", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L77", - "id": "rebreak_native_package_dependencies_react_native_voip_push_notification", - "community": 26, - "norm_label": "react-native-voip-push-notification" - }, - { - "label": "react-native-webrtc", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L78", - "id": "rebreak_native_package_dependencies_react_native_webrtc", - "community": 26, - "norm_label": "react-native-webrtc" - }, - { - "label": "react-native-worklets", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L79", - "id": "rebreak_native_package_dependencies_react_native_worklets", - "community": 26, - "norm_label": "react-native-worklets" - }, - { - "label": "rive-react-native", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L80", - "id": "rebreak_native_package_dependencies_rive_react_native", - "community": 26, - "norm_label": "rive-react-native" - }, - { - "label": "tailwindcss", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L81", - "id": "rebreak_native_package_dependencies_tailwindcss", - "community": 26, - "norm_label": "tailwindcss" - }, - { - "label": "valibot", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L82", - "id": "rebreak_native_package_dependencies_valibot", - "community": 26, - "norm_label": "valibot" - }, - { - "label": "zustand", - "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L83", - "id": "rebreak_native_package_dependencies_zustand", - "community": 26, - "norm_label": "zustand" + "community": 51, + "norm_label": "zod", + "id": "backend_package_dependencies_zod" }, { "label": "devDependencies", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L85", - "id": "rebreak_native_package_devdependencies", - "community": 451, - "norm_label": "devdependencies" + "source_file": "backend/package.json", + "source_location": "L32", + "community": 51, + "norm_label": "devdependencies", + "id": "backend_package_devdependencies" }, { - "label": "@babel/core", + "label": "@types/node", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L86", - "id": "rebreak_native_package_devdependencies_babel_core", - "community": 451, - "norm_label": "@babel/core" + "source_file": "backend/package.json", + "source_location": "L33", + "community": 51, + "norm_label": "@types/node", + "id": "backend_package_devdependencies_types_node" }, { - "label": "@types/react", + "label": "@types/pg", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L87", - "id": "rebreak_native_package_devdependencies_types_react", - "community": 451, - "norm_label": "@types/react" + "source_file": "backend/package.json", + "source_location": "L34", + "community": 51, + "norm_label": "@types/pg", + "id": "backend_package_devdependencies_types_pg" + }, + { + "label": "@vitest/coverage-v8", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L35", + "community": 51, + "norm_label": "@vitest/coverage-v8", + "id": "backend_package_devdependencies_vitest_coverage_v8" + }, + { + "label": "h3", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L36", + "community": 51, + "norm_label": "h3", + "id": "backend_package_devdependencies_h3" + }, + { + "label": "nitropack", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L37", + "community": 51, + "norm_label": "nitropack", + "id": "backend_package_devdependencies_nitropack" + }, + { + "label": "prisma", + "file_type": "code", + "source_file": "backend/package.json", + "source_location": "L38", + "community": 51, + "norm_label": "prisma", + "id": "backend_package_devdependencies_prisma" }, { "label": "typescript", "file_type": "code", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L88", - "id": "rebreak_native_package_devdependencies_typescript", - "community": 451, - "norm_label": "typescript" + "source_file": "backend/package.json", + "source_location": "L39", + "community": 51, + "norm_label": "typescript", + "id": "backend_package_devdependencies_typescript" }, { - "label": "with-rebreak-protection-android.js", + "label": "vitest", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_file": "backend/package.json", + "source_location": "L40", + "community": 51, + "norm_label": "vitest", + "id": "backend_package_devdependencies_vitest" + }, + { + "label": "tsconfig.json", + "file_type": "code", + "source_file": "backend/tsconfig.json", "source_location": "L1", - "id": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "community": 428, - "norm_label": "with-rebreak-protection-android.js" + "community": 285, + "norm_label": "tsconfig.json", + "id": "backend_tsconfig_json" }, { - "label": "{\n withAndroidManifest,\n withStringsXml,\n withDangerousMod,\n AndroidConfig,\n}", + "label": "extends", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L30", - "id": "plugins_with_rebreak_protection_android_withandroidmanifest_withstringsxml_withdangerousmod_androidconfig", - "community": 428, - "norm_label": "{\n withandroidmanifest,\n withstringsxml,\n withdangerousmod,\n androidconfig,\n}" + "source_file": "backend/tsconfig.json", + "source_location": "L2", + "community": 285, + "norm_label": "extends", + "id": "backend_tsconfig_extends" }, { - "label": "fs", + "label": "compilerOptions", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L36", - "id": "plugins_with_rebreak_protection_android_fs", - "community": 428, - "norm_label": "fs" + "source_file": "backend/tsconfig.json", + "source_location": "L3", + "community": 285, + "norm_label": "compileroptions", + "id": "backend_tsconfig_compileroptions" }, { - "label": "path", + "label": "target", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_file": "backend/tsconfig.json", + "source_location": "L4", + "community": 285, + "norm_label": "target", + "id": "backend_tsconfig_compileroptions_target" + }, + { + "label": "module", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L5", + "community": 285, + "norm_label": "module", + "id": "backend_tsconfig_compileroptions_module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L6", + "community": 285, + "norm_label": "moduleresolution", + "id": "backend_tsconfig_compileroptions_moduleresolution" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L7", + "community": 285, + "norm_label": "strict", + "id": "backend_tsconfig_compileroptions_strict" + }, + { + "label": "noEmit", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L8", + "community": 285, + "norm_label": "noemit", + "id": "backend_tsconfig_compileroptions_noemit" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L9", + "community": 285, + "norm_label": "skiplibcheck", + "id": "backend_tsconfig_compileroptions_skiplibcheck" + }, + { + "label": "resolveJsonModule", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L10", + "community": 285, + "norm_label": "resolvejsonmodule", + "id": "backend_tsconfig_compileroptions_resolvejsonmodule" + }, + { + "label": "allowSyntheticDefaultImports", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L11", + "community": 285, + "norm_label": "allowsyntheticdefaultimports", + "id": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports" + }, + { + "label": "forceConsistentCasingInFileNames", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L12", + "community": 285, + "norm_label": "forceconsistentcasinginfilenames", + "id": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames" + }, + { + "label": "noImplicitReturns", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L13", + "community": 285, + "norm_label": "noimplicitreturns", + "id": "backend_tsconfig_compileroptions_noimplicitreturns" + }, + { + "label": "noFallthroughCasesInSwitch", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L14", + "community": 285, + "norm_label": "nofallthroughcasesinswitch", + "id": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch" + }, + { + "label": "useUnknownInCatchVariables", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L15", + "community": 285, + "norm_label": "useunknownincatchvariables", + "id": "backend_tsconfig_compileroptions_useunknownincatchvariables" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L16", + "community": 285, + "norm_label": "lib", + "id": "backend_tsconfig_compileroptions_lib" + }, + { + "label": "baseUrl", + "file_type": "code", + "source_file": "backend/tsconfig.json", + "source_location": "L17", + "community": 285, + "norm_label": "baseurl", + "id": "backend_tsconfig_compileroptions_baseurl" + }, + { + "label": "vitest.config.ts", + "file_type": "code", + "source_file": "backend/vitest.config.ts", + "source_location": "L1", + "community": 770, + "norm_label": "vitest.config.ts", + "id": "backend_vitest_config_ts" + }, + { + "label": "setup.ts", + "file_type": "code", + "source_file": "backend/tests/setup.ts", + "source_location": "L1", + "community": 761, + "norm_label": "setup.ts", + "id": "backend_tests_setup_ts" + }, + { + "label": "g", + "file_type": "code", + "source_file": "backend/tests/setup.ts", + "source_location": "L21", + "community": 761, + "norm_label": "g", + "id": "tests_setup_g" + }, + { + "label": "plan-limits.test.ts", + "file_type": "code", + "source_file": "backend/tests/custom-domains/plan-limits.test.ts", + "source_location": "L1", + "community": 6, + "norm_label": "plan-limits.test.ts", + "id": "backend_tests_custom_domains_plan_limits_test_ts" + }, + { + "label": "TestResolveResult", + "file_type": "code", + "source_file": "backend/tests/custom-domains/plan-limits.test.ts", + "source_location": "L179", + "community": 6, + "norm_label": "testresolveresult", + "id": "custom_domains_plan_limits_test_testresolveresult" + }, + { + "label": "resolveTypeAndValueForTest()", + "file_type": "code", + "source_file": "backend/tests/custom-domains/plan-limits.test.ts", + "source_location": "L183", + "community": 6, + "norm_label": "resolvetypeandvaluefortest()", + "id": "custom_domains_plan_limits_test_resolvetypeandvaluefortest" + }, + { + "label": "scan-trigger.test.ts", + "file_type": "code", + "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", + "source_location": "L1", + "community": 39, + "norm_label": "scan-trigger.test.ts", + "id": "backend_tests_custom_domains_scan_trigger_test_ts" + }, + { + "label": "setupFetchMock()", + "file_type": "code", + "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", + "source_location": "L24", + "community": 39, + "norm_label": "setupfetchmock()", + "id": "custom_domains_scan_trigger_test_setupfetchmock" + }, + { + "label": "teardownFetchMock()", + "file_type": "code", + "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", + "source_location": "L29", + "community": 39, + "norm_label": "teardownfetchmock()", + "id": "custom_domains_scan_trigger_test_teardownfetchmock" + }, + { + "label": "CustomDomainType", + "file_type": "code", + "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", "source_location": "L37", - "id": "plugins_with_rebreak_protection_android_path", - "community": 428, - "norm_label": "path" + "community": 39, + "norm_label": "customdomaintype", + "id": "custom_domains_scan_trigger_test_customdomaintype" }, { - "label": "ensureToolsNamespace()", + "label": "triggerScanIfMailDomain()", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L50", - "id": "plugins_with_rebreak_protection_android_ensuretoolsnamespace", - "community": 428, - "norm_label": "ensuretoolsnamespace()" + "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", + "source_location": "L39", + "community": 39, + "norm_label": "triggerscanifmaildomain()", + "id": "custom_domains_scan_trigger_test_triggerscanifmaildomain" }, { - "label": "ensureVpnService()", + "label": "gmail-delete-strategy.test.ts", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L59", - "id": "plugins_with_rebreak_protection_android_ensurevpnservice", - "community": 428, - "norm_label": "ensurevpnservice()" + "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", + "source_location": "L1", + "community": 657, + "norm_label": "gmail-delete-strategy.test.ts", + "id": "backend_tests_mail_gmail_delete_strategy_test_ts" }, { - "label": "ensureAccessibilityService()", + "label": "makeImapMock()", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L100", - "id": "plugins_with_rebreak_protection_android_ensureaccessibilityservice", - "community": 428, - "norm_label": "ensureaccessibilityservice()" + "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", + "source_location": "L17", + "community": 657, + "norm_label": "makeimapmock()", + "id": "mail_gmail_delete_strategy_test_makeimapmock" }, { - "label": "ensureBootPermission()", + "label": "MailboxEntry", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L145", - "id": "plugins_with_rebreak_protection_android_ensurebootpermission", - "community": 428, - "norm_label": "ensurebootpermission()" + "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", + "source_location": "L53", + "community": 657, + "norm_label": "mailboxentry", + "id": "mail_gmail_delete_strategy_test_mailboxentry" }, { - "label": "ensureReceivers()", + "label": "resolveTrashFolder()", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L165", - "id": "plugins_with_rebreak_protection_android_ensurereceivers", - "community": 428, - "norm_label": "ensurereceivers()" + "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", + "source_location": "L55", + "community": 657, + "norm_label": "resolvetrashfolder()", + "id": "mail_gmail_delete_strategy_test_resolvetrashfolder" }, { - "label": "withA11yStringResource()", + "label": "performDelete()", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", + "source_location": "L60", + "community": 657, + "norm_label": "performdelete()", + "id": "mail_gmail_delete_strategy_test_performdelete" + }, + { + "label": "mail-classifier.test.ts", + "file_type": "code", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L1", + "community": 157, + "norm_label": "mail-classifier.test.ts", + "id": "backend_tests_mail_mail_classifier_test_ts" + }, + { + "label": "MockMailbox", + "file_type": "code", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L697", + "community": 157, + "norm_label": "mockmailbox", + "id": "mail_mail_classifier_test_mockmailbox" + }, + { + "label": "filterScannable()", + "file_type": "code", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L699", + "community": 157, + "norm_label": "filterscannable()", + "id": "mail_mail_classifier_test_filterscannable" + }, + { + "label": "display-name-match.test.ts", + "file_type": "code", + "source_file": "backend/tests/mail/display-name-match.test.ts", + "source_location": "L1", + "community": 157, + "norm_label": "display-name-match.test.ts", + "id": "backend_tests_mail_display_name_match_test_ts" + }, + { + "label": "mail-training-utils.test.ts", + "file_type": "code", + "source_file": "backend/tests/mail/mail-training-utils.test.ts", + "source_location": "L1", + "community": 6, + "norm_label": "mail-training-utils.test.ts", + "id": "backend_tests_mail_mail_training_utils_test_ts" + }, + { + "label": "users.test.ts", + "file_type": "code", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L1", + "community": 384, + "norm_label": "users.test.ts", + "id": "backend_tests_admin_users_test_ts" + }, + { + "label": "g", + "file_type": "code", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L17", + "community": 384, + "norm_label": "g", + "id": "admin_users_test_g" + }, + { + "label": "originalStubs", + "file_type": "code", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L18", + "community": 384, + "norm_label": "originalstubs", + "id": "admin_users_test_originalstubs" + }, + { + "label": "prismaMock", + "file_type": "code", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L28", + "community": 384, + "norm_label": "prismamock", + "id": "admin_users_test_prismamock" + }, + { + "label": "makeRow()", + "file_type": "code", + "source_file": "backend/tests/admin/users.test.ts", "source_location": "L233", - "id": "plugins_with_rebreak_protection_android_witha11ystringresource", - "community": 428, - "norm_label": "witha11ystringresource()" + "community": 384, + "norm_label": "makerow()", + "id": "admin_users_test_makerow" }, { - "label": "MODULE_A11Y_XML", + "label": "domains.test.ts", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L261", - "id": "plugins_with_rebreak_protection_android_module_a11y_xml", - "community": 428, - "norm_label": "module_a11y_xml" + "source_file": "backend/tests/admin/domains.test.ts", + "source_location": "L1", + "community": 39, + "norm_label": "domains.test.ts", + "id": "backend_tests_admin_domains_test_ts" }, { - "label": "withA11yConfigXml()", + "label": "prismaMock", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L266", - "id": "plugins_with_rebreak_protection_android_witha11yconfigxml", - "community": 428, - "norm_label": "witha11yconfigxml()" + "source_file": "backend/tests/admin/domains.test.ts", + "source_location": "L11", + "community": 39, + "norm_label": "prismamock", + "id": "admin_domains_test_prismamock" }, { - "label": "MODULE_DEVICE_ADMIN_XML", + "label": "makeRow()", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L286", - "id": "plugins_with_rebreak_protection_android_module_device_admin_xml", - "community": 428, - "norm_label": "module_device_admin_xml" + "source_file": "backend/tests/admin/domains.test.ts", + "source_location": "L30", + "community": 39, + "norm_label": "makerow()", + "id": "admin_domains_test_makerow" }, { - "label": "withDeviceAdminXml()", + "label": "moderation.test.ts", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L291", - "id": "plugins_with_rebreak_protection_android_withdeviceadminxml", - "community": 428, - "norm_label": "withdeviceadminxml()" + "source_file": "backend/tests/admin/moderation.test.ts", + "source_location": "L1", + "community": 385, + "norm_label": "moderation.test.ts", + "id": "backend_tests_admin_moderation_test_ts" }, { - "label": "withRebreakProtectionAndroid()", + "label": "prismaMock", "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L311", - "id": "plugins_with_rebreak_protection_android_withrebreakprotectionandroid", - "community": 428, - "norm_label": "withrebreakprotectionandroid()" + "source_file": "backend/tests/admin/moderation.test.ts", + "source_location": "L14", + "community": 385, + "norm_label": "prismamock", + "id": "admin_moderation_test_prismamock" + }, + { + "label": "verify-admin.test.ts", + "file_type": "code", + "source_file": "backend/tests/admin/verify-admin.test.ts", + "source_location": "L1", + "community": 33, + "norm_label": "verify-admin.test.ts", + "id": "backend_tests_admin_verify_admin_test_ts" + }, + { + "label": "prismaMock", + "file_type": "code", + "source_file": "backend/tests/admin/verify-admin.test.ts", + "source_location": "L18", + "community": 33, + "norm_label": "prismamock", + "id": "admin_verify_admin_test_prismamock" + }, + { + "label": "requireUserMock", + "file_type": "code", + "source_file": "backend/tests/admin/verify-admin.test.ts", + "source_location": "L30", + "community": 33, + "norm_label": "requireusermock", + "id": "admin_verify_admin_test_requireusermock" + }, + { + "label": "crisis-filter.test.ts", + "file_type": "code", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L1", + "community": 79, + "norm_label": "crisis-filter.test.ts", + "id": "backend_tests_crisis_crisis_filter_test_ts" + }, + { + "label": "PROMPTS_DIR", + "file_type": "code", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L23", + "community": 79, + "norm_label": "prompts_dir", + "id": "crisis_crisis_filter_test_prompts_dir" + }, + { + "label": "EvalPrompt", + "file_type": "code", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L25", + "community": 79, + "norm_label": "evalprompt", + "id": "crisis_crisis_filter_test_evalprompt" + }, + { + "label": "loadPrompts()", + "file_type": "code", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L35", + "community": 79, + "norm_label": "loadprompts()", + "id": "crisis_crisis_filter_test_loadprompts" + }, + { + "label": "crisisPrompts", + "file_type": "code", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L39", + "community": 79, + "norm_label": "crisisprompts", + "id": "crisis_crisis_filter_test_crisisprompts" + }, + { + "label": "harmlessPrompts", + "file_type": "code", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L40", + "community": 79, + "norm_label": "harmlessprompts", + "id": "crisis_crisis_filter_test_harmlessprompts" + }, + { + "label": "EXPECTED_CRISIS_MATCHES", + "file_type": "code", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L49", + "community": 79, + "norm_label": "expected_crisis_matches", + "id": "crisis_crisis_filter_test_expected_crisis_matches" + }, + { + "label": "profile-counts.test.ts", + "file_type": "code", + "source_file": "backend/tests/social/profile-counts.test.ts", + "source_location": "L1", + "community": 1256, + "norm_label": "profile-counts.test.ts", + "id": "backend_tests_social_profile_counts_test_ts" + }, + { + "label": "mocks", + "file_type": "code", + "source_file": "backend/tests/social/profile-counts.test.ts", + "source_location": "L11", + "community": 1256, + "norm_label": "mocks", + "id": "social_profile_counts_test_mocks" + }, + { + "label": "g", + "file_type": "code", + "source_file": "backend/tests/social/profile-counts.test.ts", + "source_location": "L67", + "community": 1256, + "norm_label": "g", + "id": "social_profile_counts_test_g" + }, + { + "label": "callHandler()", + "file_type": "code", + "source_file": "backend/tests/social/profile-counts.test.ts", + "source_location": "L81", + "community": 1256, + "norm_label": "callhandler()", + "id": "social_profile_counts_test_callhandler" + }, + { + "label": "demographics.patch.test.ts", + "file_type": "code", + "source_file": "backend/tests/profile/demographics.patch.test.ts", + "source_location": "L1", + "community": 33, + "norm_label": "demographics.patch.test.ts", + "id": "backend_tests_profile_demographics_patch_test_ts" + }, + { + "label": "mocks", + "file_type": "code", + "source_file": "backend/tests/profile/demographics.patch.test.ts", + "source_location": "L17", + "community": 33, + "norm_label": "mocks", + "id": "profile_demographics_patch_test_mocks" + }, + { + "label": "FULL_DEMOGRAPHICS", + "file_type": "code", + "source_file": "backend/tests/profile/demographics.patch.test.ts", + "source_location": "L40", + "community": 33, + "norm_label": "full_demographics", + "id": "profile_demographics_patch_test_full_demographics" + }, + { + "label": "install-and-banner.test.ts", + "file_type": "code", + "source_file": "backend/tests/profile/install-and-banner.test.ts", + "source_location": "L1", + "community": 33, + "norm_label": "install-and-banner.test.ts", + "id": "backend_tests_profile_install_and_banner_test_ts" + }, + { + "label": "mocks", + "file_type": "code", + "source_file": "backend/tests/profile/install-and-banner.test.ts", + "source_location": "L8", + "community": 33, + "norm_label": "mocks", + "id": "profile_install_and_banner_test_mocks" + }, + { + "label": "sos-insights.get.test.ts", + "file_type": "code", + "source_file": "backend/tests/profile/sos-insights.get.test.ts", + "source_location": "L1", + "community": 33, + "norm_label": "sos-insights.get.test.ts", + "id": "backend_tests_profile_sos_insights_get_test_ts" + }, + { + "label": "Session", + "file_type": "code", + "source_file": "backend/tests/profile/sos-insights.get.test.ts", + "source_location": "L6", + "community": 33, + "norm_label": "session", + "id": "profile_sos_insights_get_test_session" + }, + { + "label": "aggregate()", + "file_type": "code", + "source_file": "backend/tests/profile/sos-insights.get.test.ts", + "source_location": "L14", + "community": 33, + "norm_label": "aggregate()", + "id": "profile_sos_insights_get_test_aggregate" + }, + { + "label": "approved-domains.get.test.ts", + "file_type": "code", + "source_file": "backend/tests/profile/approved-domains.get.test.ts", + "source_location": "L1", + "community": 33, + "norm_label": "approved-domains.get.test.ts", + "id": "backend_tests_profile_approved_domains_get_test_ts" + }, + { + "label": "mocks", + "file_type": "code", + "source_file": "backend/tests/profile/approved-domains.get.test.ts", + "source_location": "L10", + "community": 33, + "norm_label": "mocks", + "id": "profile_approved_domains_get_test_mocks" + }, + { + "label": "demographics.get.test.ts", + "file_type": "code", + "source_file": "backend/tests/profile/demographics.get.test.ts", + "source_location": "L1", + "community": 33, + "norm_label": "demographics.get.test.ts", + "id": "backend_tests_profile_demographics_get_test_ts" + }, + { + "label": "mocks", + "file_type": "code", + "source_file": "backend/tests/profile/demographics.get.test.ts", + "source_location": "L12", + "community": 33, + "norm_label": "mocks", + "id": "profile_demographics_get_test_mocks" + }, + { + "label": "demographics.zod.test.ts", + "file_type": "code", + "source_file": "backend/tests/profile/demographics.zod.test.ts", + "source_location": "L1", + "community": 629, + "norm_label": "demographics.zod.test.ts", + "id": "backend_tests_profile_demographics_zod_test_ts" + }, + { + "label": "GENDER_VALUES", + "file_type": "code", + "source_file": "backend/tests/profile/demographics.zod.test.ts", + "source_location": "L13", + "community": 629, + "norm_label": "gender_values", + "id": "profile_demographics_zod_test_gender_values" + }, + { + "label": "MARITAL_VALUES", + "file_type": "code", + "source_file": "backend/tests/profile/demographics.zod.test.ts", + "source_location": "L14", + "community": 629, + "norm_label": "marital_values", + "id": "profile_demographics_zod_test_marital_values" + }, + { + "label": "EMPLOYMENT_STATUS_VALUES", + "file_type": "code", + "source_file": "backend/tests/profile/demographics.zod.test.ts", + "source_location": "L22", + "community": 629, + "norm_label": "employment_status_values", + "id": "profile_demographics_zod_test_employment_status_values" + }, + { + "label": "JOB_TENURE_VALUES", + "file_type": "code", + "source_file": "backend/tests/profile/demographics.zod.test.ts", + "source_location": "L31", + "community": 629, + "norm_label": "job_tenure_values", + "id": "profile_demographics_zod_test_job_tenure_values" + }, + { + "label": "Schema", + "file_type": "code", + "source_file": "backend/tests/profile/demographics.zod.test.ts", + "source_location": "L39", + "community": 629, + "norm_label": "schema", + "id": "profile_demographics_zod_test_schema" + }, + { + "label": "cooldown-history.get.test.ts", + "file_type": "code", + "source_file": "backend/tests/profile/cooldown-history.get.test.ts", + "source_location": "L1", + "community": 33, + "norm_label": "cooldown-history.get.test.ts", + "id": "backend_tests_profile_cooldown_history_get_test_ts" + }, + { + "label": "CooldownRow", + "file_type": "code", + "source_file": "backend/tests/profile/cooldown-history.get.test.ts", + "source_location": "L6", + "community": 33, + "norm_label": "cooldownrow", + "id": "profile_cooldown_history_get_test_cooldownrow" + }, + { + "label": "deriveStatus()", + "file_type": "code", + "source_file": "backend/tests/profile/cooldown-history.get.test.ts", + "source_location": "L17", + "community": 33, + "norm_label": "derivestatus()", + "id": "profile_cooldown_history_get_test_derivestatus" + }, + { + "label": "quota.test.ts", + "file_type": "code", + "source_file": "backend/tests/voice/quota.test.ts", + "source_location": "L1", + "community": 937, + "norm_label": "quota.test.ts", + "id": "backend_tests_voice_quota_test_ts" + }, + { + "label": "mocks", + "file_type": "code", + "source_file": "backend/tests/voice/quota.test.ts", + "source_location": "L15", + "community": 937, + "norm_label": "mocks", + "id": "voice_quota_test_mocks" + }, + { + "label": "lyra-eval.test.ts", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L1", + "community": 270, + "norm_label": "lyra-eval.test.ts", + "id": "backend_tests_eval_lyra_eval_test_ts" + }, + { + "label": "RuleType", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L45", + "community": 270, + "norm_label": "ruletype", + "id": "eval_lyra_eval_test_ruletype" + }, + { + "label": "EvalRule", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L50", + "community": 270, + "norm_label": "evalrule", + "id": "eval_lyra_eval_test_evalrule" + }, + { + "label": "EvalPrompt", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L57", + "community": 270, + "norm_label": "evalprompt", + "id": "eval_lyra_eval_test_evalprompt" + }, + { + "label": "RuleResult", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L67", + "community": 270, + "norm_label": "ruleresult", + "id": "eval_lyra_eval_test_ruleresult" + }, + { + "label": "EvalResult", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L74", + "community": 270, + "norm_label": "evalresult", + "id": "eval_lyra_eval_test_evalresult" + }, + { + "label": "PROMPTS_DIR", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L86", + "community": 270, + "norm_label": "prompts_dir", + "id": "eval_lyra_eval_test_prompts_dir" + }, + { + "label": "loadPrompts()", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L88", + "community": 270, + "norm_label": "loadprompts()", + "id": "eval_lyra_eval_test_loadprompts" + }, + { + "label": "crisisPrompts", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L93", + "community": 270, + "norm_label": "crisisprompts", + "id": "eval_lyra_eval_test_crisisprompts" + }, + { + "label": "drangPrompts", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L94", + "community": 270, + "norm_label": "drangprompts", + "id": "eval_lyra_eval_test_drangprompts" + }, + { + "label": "harmlessPrompts", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L95", + "community": 270, + "norm_label": "harmlessprompts", + "id": "eval_lyra_eval_test_harmlessprompts" + }, + { + "label": "jailbreakPrompts", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L96", + "community": 270, + "norm_label": "jailbreakprompts", + "id": "eval_lyra_eval_test_jailbreakprompts" + }, + { + "label": "edgeCasePrompts", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L97", + "community": 270, + "norm_label": "edgecaseprompts", + "id": "eval_lyra_eval_test_edgecaseprompts" + }, + { + "label": "allPrompts", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L99", + "community": 270, + "norm_label": "allprompts", + "id": "eval_lyra_eval_test_allprompts" + }, + { + "label": "evaluateRule()", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L109", + "community": 270, + "norm_label": "evaluaterule()", + "id": "eval_lyra_eval_test_evaluaterule" + }, + { + "label": "getMockResponse()", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L176", + "community": 270, + "norm_label": "getmockresponse()", + "id": "eval_lyra_eval_test_getmockresponse" + }, + { + "label": "callLyra()", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L241", + "community": 270, + "norm_label": "calllyra()", + "id": "eval_lyra_eval_test_calllyra" + }, + { + "label": "computeCrisisRecall()", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L326", + "community": 270, + "norm_label": "computecrisisrecall()", + "id": "eval_lyra_eval_test_computecrisisrecall" + }, + { + "label": "evalResults", + "file_type": "code", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L354", + "community": 270, + "norm_label": "evalresults", + "id": "eval_lyra_eval_test_evalresults" + }, + { + "label": "edge-cases.json", + "file_type": "code", + "source_file": "backend/tests/eval/prompts/edge-cases.json", + "source_location": "L1", + "community": 844, + "norm_label": "edge-cases.json", + "id": "backend_tests_eval_prompts_edge_cases_json" + }, + { + "label": "jailbreak.json", + "file_type": "code", + "source_file": "backend/tests/eval/prompts/jailbreak.json", + "source_location": "L1", + "community": 845, + "norm_label": "jailbreak.json", + "id": "backend_tests_eval_prompts_jailbreak_json" + }, + { + "label": "drang.json", + "file_type": "code", + "source_file": "backend/tests/eval/prompts/drang.json", + "source_location": "L1", + "community": 846, + "norm_label": "drang.json", + "id": "backend_tests_eval_prompts_drang_json" + }, + { + "label": "harmless.json", + "file_type": "code", + "source_file": "backend/tests/eval/prompts/harmless.json", + "source_location": "L1", + "community": 847, + "norm_label": "harmless.json", + "id": "backend_tests_eval_prompts_harmless_json" + }, + { + "label": "crisis.json", + "file_type": "code", + "source_file": "backend/tests/eval/prompts/crisis.json", + "source_location": "L1", + "community": 848, + "norm_label": "crisis.json", + "id": "backend_tests_eval_prompts_crisis_json" + }, + { + "label": "device-account-binding.test.ts", + "file_type": "code", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L1", + "community": 32, + "norm_label": "device-account-binding.test.ts", + "id": "backend_tests_devices_device_account_binding_test_ts" + }, + { + "label": "mockPrisma", + "file_type": "code", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L25", + "community": 32, + "norm_label": "mockprisma", + "id": "devices_device_account_binding_test_mockprisma" + }, + { + "label": "makeDevice()", + "file_type": "code", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L44", + "community": 32, + "norm_label": "makedevice()", + "id": "devices_device_account_binding_test_makedevice" + }, + { + "label": "regfile.test.ts", + "file_type": "code", + "source_file": "backend/tests/devices/regfile.test.ts", + "source_location": "L1", + "community": 80, + "norm_label": "regfile.test.ts", + "id": "backend_tests_devices_regfile_test_ts" + }, + { + "label": "cors.ts", + "file_type": "code", + "source_file": "backend/server/middleware/cors.ts", + "source_location": "L1", + "community": 771, + "norm_label": "cors.ts", + "id": "backend_server_middleware_cors_ts" + }, + { + "label": "device-lock-cron.ts", + "file_type": "code", + "source_file": "backend/server/plugins/device-lock-cron.ts", + "source_location": "L1", + "community": 32, + "norm_label": "device-lock-cron.ts", + "id": "backend_server_plugins_device_lock_cron_ts" + }, + { + "label": "runAutoRelease()", + "file_type": "code", + "source_file": "backend/server/plugins/device-lock-cron.ts", + "source_location": "L46", + "community": 32, + "norm_label": "runautorelease()", + "id": "plugins_device_lock_cron_runautorelease" + }, + { + "label": "mail-retention-cron.ts", + "file_type": "code", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L1", + "community": 4, + "norm_label": "mail-retention-cron.ts", + "id": "backend_server_plugins_mail_retention_cron_ts" + }, + { + "label": "runSubjectNullification()", + "file_type": "code", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L76", + "community": 4, + "norm_label": "runsubjectnullification()", + "id": "plugins_mail_retention_cron_runsubjectnullification" + }, + { + "label": "runSamplePurge()", + "file_type": "code", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L95", + "community": 4, + "norm_label": "runsamplepurge()", + "id": "plugins_mail_retention_cron_runsamplepurge" + }, + { + "label": "runRowCap()", + "file_type": "code", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L115", + "community": 4, + "norm_label": "runrowcap()", + "id": "plugins_mail_retention_cron_runrowcap" + }, + { + "label": "pro-trial-expiry-cron.ts", + "file_type": "code", + "source_file": "backend/server/plugins/pro-trial-expiry-cron.ts", + "source_location": "L1", + "community": 4, + "norm_label": "pro-trial-expiry-cron.ts", + "id": "backend_server_plugins_pro_trial_expiry_cron_ts" + }, + { + "label": "runRevoke()", + "file_type": "code", + "source_file": "backend/server/plugins/pro-trial-expiry-cron.ts", + "source_location": "L47", + "community": 4, + "norm_label": "runrevoke()", + "id": "plugins_pro_trial_expiry_cron_runrevoke" + }, + { + "label": "blocklist-cron.ts", + "file_type": "code", + "source_file": "backend/server/plugins/blocklist-cron.ts", + "source_location": "L1", + "community": 752, + "norm_label": "blocklist-cron.ts", + "id": "backend_server_plugins_blocklist_cron_ts" + }, + { + "label": "runSync()", + "file_type": "code", + "source_file": "backend/server/plugins/blocklist-cron.ts", + "source_location": "L30", + "community": 752, + "norm_label": "runsync()", + "id": "plugins_blocklist_cron_runsync" + }, + { + "label": "prisma.ts", + "file_type": "code", + "source_file": "backend/server/utils/prisma.ts", + "source_location": "L1", + "community": 4, + "norm_label": "prisma.ts", + "id": "backend_server_utils_prisma_ts" + }, + { + "label": "usePrisma()", + "file_type": "code", + "source_file": "backend/server/utils/prisma.ts", + "source_location": "L12", + "community": 4, + "norm_label": "useprisma()", + "id": "utils_prisma_useprisma" + }, + { + "label": "sosSessions.ts", + "file_type": "code", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L1", + "community": 79, + "norm_label": "sossessions.ts", + "id": "backend_server_utils_sossessions_ts" + }, + { + "label": "SosSessionData", + "file_type": "code", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L11", + "community": 79, + "norm_label": "sossessiondata", + "id": "utils_sossessions_sossessiondata" + }, + { + "label": "sessions", + "file_type": "code", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L26", + "community": 79, + "norm_label": "sessions", + "id": "utils_sossessions_sessions" + }, + { + "label": "setSosSession()", + "file_type": "code", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L42", + "community": 79, + "norm_label": "setsossession()", + "id": "utils_sossessions_setsossession" + }, + { + "label": "getSosSession()", + "file_type": "code", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L46", + "community": 79, + "norm_label": "getsossession()", + "id": "utils_sossessions_getsossession" + }, + { + "label": "deleteSosSession()", + "file_type": "code", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L57", + "community": 79, + "norm_label": "deletesossession()", + "id": "utils_sossessions_deletesossession" + }, + { + "label": "device-approval-email.ts", + "file_type": "code", + "source_file": "backend/server/utils/device-approval-email.ts", + "source_location": "L1", + "community": 257, + "norm_label": "device-approval-email.ts", + "id": "backend_server_utils_device_approval_email_ts" + }, + { + "label": "DeviceApprovalEmailOpts", + "file_type": "code", + "source_file": "backend/server/utils/device-approval-email.ts", + "source_location": "L14", + "community": 257, + "norm_label": "deviceapprovalemailopts", + "id": "utils_device_approval_email_deviceapprovalemailopts" + }, + { + "label": "sendDeviceApprovalEmail()", + "file_type": "code", + "source_file": "backend/server/utils/device-approval-email.ts", + "source_location": "L25", + "community": 257, + "norm_label": "senddeviceapprovalemail()", + "id": "utils_device_approval_email_senddeviceapprovalemail" + }, + { + "label": "regfile.ts", + "file_type": "code", + "source_file": "backend/server/utils/regfile.ts", + "source_location": "L1", + "community": 80, + "norm_label": "regfile.ts", + "id": "backend_server_utils_regfile_ts" + }, + { + "label": "regEscape()", + "file_type": "code", + "source_file": "backend/server/utils/regfile.ts", + "source_location": "L19", + "community": 80, + "norm_label": "regescape()", + "id": "utils_regfile_regescape" + }, + { + "label": "WindowsDohRegOpts", + "file_type": "code", + "source_file": "backend/server/utils/regfile.ts", + "source_location": "L28", + "community": 80, + "norm_label": "windowsdohregopts", + "id": "utils_regfile_windowsdohregopts" + }, + { + "label": "generateWindowsDohRegFile()", + "file_type": "code", + "source_file": "backend/server/utils/regfile.ts", + "source_location": "L44", + "community": 80, + "norm_label": "generatewindowsdohregfile()", + "id": "utils_regfile_generatewindowsdohregfile" + }, + { + "label": "magic-removal-email.ts", + "file_type": "code", + "source_file": "backend/server/utils/magic-removal-email.ts", + "source_location": "L1", + "community": 47, + "norm_label": "magic-removal-email.ts", + "id": "backend_server_utils_magic_removal_email_ts" + }, + { + "label": "MagicRemovalEmailOpts", + "file_type": "code", + "source_file": "backend/server/utils/magic-removal-email.ts", + "source_location": "L17", + "community": 47, + "norm_label": "magicremovalemailopts", + "id": "utils_magic_removal_email_magicremovalemailopts" + }, + { + "label": "sendMagicRemovalEmail()", + "file_type": "code", + "source_file": "backend/server/utils/magic-removal-email.ts", + "source_location": "L26", + "community": 47, + "norm_label": "sendmagicremovalemail()", + "id": "utils_magic_removal_email_sendmagicremovalemail" + }, + { + "label": "domainHash.ts", + "file_type": "code", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L1", + "community": 112, + "norm_label": "domainhash.ts", + "id": "backend_server_utils_domainhash_ts" + }, + { + "label": "normalizeDomain()", + "file_type": "code", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L14", + "community": 112, + "norm_label": "normalizedomain()", + "id": "utils_domainhash_normalizedomain" + }, + { + "label": "hashDomain()", + "file_type": "code", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L29", + "community": 112, + "norm_label": "hashdomain()", + "id": "utils_domainhash_hashdomain" + }, + { + "label": "buildHashListBinary()", + "file_type": "code", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L46", + "community": 112, + "norm_label": "buildhashlistbinary()", + "id": "utils_domainhash_buildhashlistbinary" + }, + { + "label": "etagFor()", + "file_type": "code", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L67", + "community": 112, + "norm_label": "etagfor()", + "id": "utils_domainhash_etagfor" + }, + { + "label": "consent-texts.ts", + "file_type": "code", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L1", + "community": 6, + "norm_label": "consent-texts.ts", + "id": "backend_server_utils_consent_texts_ts" + }, + { + "label": "ConsentTextEntry", + "file_type": "code", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L18", + "community": 6, + "norm_label": "consenttextentry", + "id": "utils_consent_texts_consenttextentry" + }, + { + "label": "CONSENT_TEXTS", + "file_type": "code", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L23", + "community": 6, + "norm_label": "consent_texts", + "id": "utils_consent_texts_consent_texts" + }, + { + "label": "getConsentText()", + "file_type": "code", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L35", + "community": 6, + "norm_label": "getconsenttext()", + "id": "utils_consent_texts_getconsenttext" + }, + { + "label": "getKnownConsentVersions()", + "file_type": "code", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L48", + "community": 6, + "norm_label": "getknownconsentversions()", + "id": "utils_consent_texts_getknownconsentversions" + }, + { + "label": "mail-training-utils.ts", + "file_type": "code", + "source_file": "backend/server/utils/mail-training-utils.ts", + "source_location": "L1", + "community": 6, + "norm_label": "mail-training-utils.ts", + "id": "backend_server_utils_mail_training_utils_ts" + }, + { + "label": "SubjectSanitizationResult", + "file_type": "code", + "source_file": "backend/server/utils/mail-training-utils.ts", + "source_location": "L35", + "community": 6, + "norm_label": "subjectsanitizationresult", + "id": "utils_mail_training_utils_subjectsanitizationresult" + }, + { + "label": "sanitizeSubjectForTraining()", + "file_type": "code", + "source_file": "backend/server/utils/mail-training-utils.ts", + "source_location": "L106", + "community": 6, + "norm_label": "sanitizesubjectfortraining()", + "id": "utils_mail_training_utils_sanitizesubjectfortraining" + }, + { + "label": "detectSubjectLanguage()", + "file_type": "code", + "source_file": "backend/server/utils/mail-training-utils.ts", + "source_location": "L145", + "community": 6, + "norm_label": "detectsubjectlanguage()", + "id": "utils_mail_training_utils_detectsubjectlanguage" + }, + { + "label": "mail-auth.ts", + "file_type": "code", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L1", + "community": 6, + "norm_label": "mail-auth.ts", + "id": "backend_server_utils_mail_auth_ts" + }, + { + "label": "MailConnectionAuthFields", + "file_type": "code", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L9", + "community": 6, + "norm_label": "mailconnectionauthfields", + "id": "utils_mail_auth_mailconnectionauthfields" + }, + { + "label": "ImapAuth", + "file_type": "code", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L18", + "community": 6, + "norm_label": "imapauth", + "id": "utils_mail_auth_imapauth" + }, + { + "label": "OauthClientIds", + "file_type": "code", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L22", + "community": 6, + "norm_label": "oauthclientids", + "id": "utils_mail_auth_oauthclientids" + }, + { + "label": "resolveImapAuth()", + "file_type": "code", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L46", + "community": 6, + "norm_label": "resolveimapauth()", + "id": "utils_mail_auth_resolveimapauth" + }, + { + "label": "gambling-keywords.mjs", + "file_type": "code", + "source_file": "backend/server/utils/gambling-keywords.mjs", + "source_location": "L1", + "community": 157, + "norm_label": "gambling-keywords.mjs", + "id": "backend_server_utils_gambling_keywords_mjs" + }, + { + "label": "GAMBLING_KEYWORDS", + "file_type": "code", + "source_file": "backend/server/utils/gambling-keywords.mjs", + "source_location": "L13", + "community": 157, + "norm_label": "gambling_keywords", + "id": "utils_gambling_keywords_gambling_keywords" + }, + { + "label": "GAMBLING_WHITELIST", + "file_type": "code", + "source_file": "backend/server/utils/gambling-keywords.mjs", + "source_location": "L39", + "community": 157, + "norm_label": "gambling_whitelist", + "id": "utils_gambling_keywords_gambling_whitelist" + }, + { + "label": "isGamblingText()", + "file_type": "code", + "source_file": "backend/server/utils/gambling-keywords.mjs", + "source_location": "L59", + "community": 157, + "norm_label": "isgamblingtext()", + "id": "utils_gambling_keywords_isgamblingtext" + }, + { + "label": "crisis-filter.ts", + "file_type": "code", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L1", + "community": 79, + "norm_label": "crisis-filter.ts", + "id": "backend_server_utils_crisis_filter_ts" + }, + { + "label": "CrisisLevel", + "file_type": "code", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L22", + "community": 79, + "norm_label": "crisislevel", + "id": "utils_crisis_filter_crisislevel" + }, + { + "label": "CrisisDetectionResult", + "file_type": "code", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L27", + "community": 79, + "norm_label": "crisisdetectionresult", + "id": "utils_crisis_filter_crisisdetectionresult" + }, + { + "label": "PatternGroup", + "file_type": "code", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L47", + "community": 79, + "norm_label": "patterngroup", + "id": "utils_crisis_filter_patterngroup" + }, + { + "label": "PATTERN_GROUPS", + "file_type": "code", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L54", + "community": 79, + "norm_label": "pattern_groups", + "id": "utils_crisis_filter_pattern_groups" + }, + { + "label": "normalize()", + "file_type": "code", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L287", + "community": 277, + "norm_label": "normalize()", + "id": "utils_crisis_filter_normalize" + }, + { + "label": "detectCrisis()", + "file_type": "code", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L308", + "community": 79, + "norm_label": "detectcrisis()", + "id": "utils_crisis_filter_detectcrisis" + }, + { + "label": "CrisisChip", + "file_type": "code", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L373", + "community": 79, + "norm_label": "crisischip", + "id": "utils_crisis_filter_crisischip" + }, + { + "label": "getCrisisChips()", + "file_type": "code", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L385", + "community": 69, + "norm_label": "getcrisischips()", + "id": "utils_crisis_filter_getcrisischips" + }, + { + "label": "CrisisFallbackPayload", + "file_type": "code", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L426", + "community": 79, + "norm_label": "crisisfallbackpayload", + "id": "utils_crisis_filter_crisisfallbackpayload" + }, + { + "label": "getCrisisFallback()", + "file_type": "code", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L431", + "community": 69, + "norm_label": "getcrisisfallback()", + "id": "utils_crisis_filter_getcrisisfallback" + }, + { + "label": "magicCron.ts", + "file_type": "code", + "source_file": "backend/server/utils/magicCron.ts", + "source_location": "L1", + "community": 32, + "norm_label": "magiccron.ts", + "id": "backend_server_utils_magiccron_ts" + }, + { + "label": "processMagicReleases()", + "file_type": "code", + "source_file": "backend/server/utils/magicCron.ts", + "source_location": "L13", + "community": 32, + "norm_label": "processmagicreleases()", + "id": "utils_magiccron_processmagicreleases" + }, + { + "label": "useSupabase.ts", + "file_type": "code", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L1", + "community": 47, + "norm_label": "usesupabase.ts", + "id": "backend_server_utils_usesupabase_ts" + }, + { + "label": "getSupabaseUrl()", + "file_type": "code", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L14", + "community": 47, + "norm_label": "getsupabaseurl()", + "id": "utils_usesupabase_getsupabaseurl" + }, + { + "label": "getAnonKey()", + "file_type": "code", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L23", + "community": 47, + "norm_label": "getanonkey()", + "id": "utils_usesupabase_getanonkey" + }, + { + "label": "getServiceRoleKey()", + "file_type": "code", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L33", + "community": 47, + "norm_label": "getservicerolekey()", + "id": "utils_usesupabase_getservicerolekey" + }, + { + "label": "serverSupabaseClient()", + "file_type": "code", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L42", + "community": 47, + "norm_label": "serversupabaseclient()", + "id": "utils_usesupabase_serversupabaseclient" + }, + { + "label": "serverSupabaseServiceRole()", + "file_type": "code", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L65", + "community": 47, + "norm_label": "serversupabaseservicerole()", + "id": "utils_usesupabase_serversupabaseservicerole" + }, + { + "label": "testUser.ts", + "file_type": "code", + "source_file": "backend/server/utils/testUser.ts", + "source_location": "L1", + "community": 700, + "norm_label": "testuser.ts", + "id": "backend_server_utils_testuser_ts" + }, + { + "label": "TEST_USER_EMAILS", + "file_type": "code", + "source_file": "backend/server/utils/testUser.ts", + "source_location": "L14", + "community": 700, + "norm_label": "test_user_emails", + "id": "utils_testuser_test_user_emails" + }, + { + "label": "isTestUser()", + "file_type": "code", + "source_file": "backend/server/utils/testUser.ts", + "source_location": "L18", + "community": 700, + "norm_label": "istestuser()", + "id": "utils_testuser_istestuser" + }, + { + "label": "lyraMemoryExtract.ts", + "file_type": "code", + "source_file": "backend/server/utils/lyraMemoryExtract.ts", + "source_location": "L1", + "community": 69, + "norm_label": "lyramemoryextract.ts", + "id": "backend_server_utils_lyramemoryextract_ts" + }, + { + "label": "VALID_TYPES", + "file_type": "code", + "source_file": "backend/server/utils/lyraMemoryExtract.ts", + "source_location": "L10", + "community": 69, + "norm_label": "valid_types", + "id": "utils_lyramemoryextract_valid_types" + }, + { + "label": "extractAndStoreMemories()", + "file_type": "code", + "source_file": "backend/server/utils/lyraMemoryExtract.ts", + "source_location": "L33", + "community": 69, + "norm_label": "extractandstorememories()", + "id": "utils_lyramemoryextract_extractandstorememories" + }, + { + "label": "crypto.ts", + "file_type": "code", + "source_file": "backend/server/utils/crypto.ts", + "source_location": "L1", + "community": 6, + "norm_label": "crypto.ts", + "id": "backend_server_utils_crypto_ts" + }, + { + "label": "getKey()", + "file_type": "code", + "source_file": "backend/server/utils/crypto.ts", + "source_location": "L6", + "community": 6, + "norm_label": "getkey()", + "id": "utils_crypto_getkey" + }, + { + "label": "encrypt()", + "file_type": "code", + "source_file": "backend/server/utils/crypto.ts", + "source_location": "L19", + "community": 6, + "norm_label": "encrypt()", + "id": "utils_crypto_encrypt" + }, + { + "label": "decrypt()", + "file_type": "code", + "source_file": "backend/server/utils/crypto.ts", + "source_location": "L32", + "community": 6, + "norm_label": "decrypt()", + "id": "utils_crypto_decrypt" + }, + { + "label": "plan-features.ts", + "file_type": "code", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L1", + "community": 6, + "norm_label": "plan-features.ts", + "id": "backend_server_utils_plan_features_ts" + }, + { + "label": "Plan", + "file_type": "code", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L1", + "community": 244, + "norm_label": "plan", + "id": "utils_plan_features_plan" + }, + { + "label": "VoiceProvider", + "file_type": "code", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L3", + "community": 6, + "norm_label": "voiceprovider", + "id": "utils_plan_features_voiceprovider" + }, + { + "label": "VoiceConfig", + "file_type": "code", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L5", + "community": 937, + "norm_label": "voiceconfig", + "id": "utils_plan_features_voiceconfig" + }, + { + "label": "PlanLimits", + "file_type": "code", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L16", + "community": 6, + "norm_label": "planlimits", + "id": "utils_plan_features_planlimits" + }, + { + "label": "PLAN_LIMITS", + "file_type": "code", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L82", + "community": 6, + "norm_label": "plan_limits", + "id": "utils_plan_features_plan_limits" + }, + { + "label": "getPlanLimits()", + "file_type": "code", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L134", + "community": 6, + "norm_label": "getplanlimits()", + "id": "utils_plan_features_getplanlimits" + }, + { + "label": "CURATED_BLOCKLIST_STUB", + "file_type": "code", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L149", + "community": 6, + "norm_label": "curated_blocklist_stub", + "id": "utils_plan_features_curated_blocklist_stub" + }, + { + "label": "strip-markdown.ts", + "file_type": "code", + "source_file": "backend/server/utils/strip-markdown.ts", + "source_location": "L1", + "community": 69, + "norm_label": "strip-markdown.ts", + "id": "backend_server_utils_strip_markdown_ts" + }, + { + "label": "stripMarkdown()", + "file_type": "code", + "source_file": "backend/server/utils/strip-markdown.ts", + "source_location": "L12", + "community": 69, + "norm_label": "stripmarkdown()", + "id": "utils_strip_markdown_stripmarkdown" + }, + { + "label": "cooldownToken.ts", + "file_type": "code", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L1", + "community": 33, + "norm_label": "cooldowntoken.ts", + "id": "backend_server_utils_cooldowntoken_ts" + }, + { + "label": "getSecret()", + "file_type": "code", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L7", + "community": 33, + "norm_label": "getsecret()", + "id": "utils_cooldowntoken_getsecret" + }, + { + "label": "CooldownTokenPayload", + "file_type": "code", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L17", + "community": 33, + "norm_label": "cooldowntokenpayload", + "id": "utils_cooldowntoken_cooldowntokenpayload" + }, + { + "label": "signCooldownToken()", + "file_type": "code", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L30", + "community": 33, + "norm_label": "signcooldowntoken()", + "id": "utils_cooldowntoken_signcooldowntoken" + }, + { + "label": "verifyCooldownToken()", + "file_type": "code", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L53", + "community": 33, + "norm_label": "verifycooldowntoken()", + "id": "utils_cooldowntoken_verifycooldowntoken" + }, + { + "label": "generateJti()", + "file_type": "code", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L81", + "community": 33, + "norm_label": "generatejti()", + "id": "utils_cooldowntoken_generatejti" + }, + { + "label": "downgrade-reconciliation.ts", + "file_type": "code", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L1", + "community": 244, + "norm_label": "downgrade-reconciliation.ts", + "id": "backend_server_utils_downgrade_reconciliation_ts" + }, + { + "label": "runDowngradeReconciliation()", + "file_type": "code", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L21", + "community": 244, + "norm_label": "rundowngradereconciliation()", + "id": "utils_downgrade_reconciliation_rundowngradereconciliation" + }, + { + "label": "reconcileMailAccounts()", + "file_type": "code", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L74", + "community": 244, + "norm_label": "reconcilemailaccounts()", + "id": "utils_downgrade_reconciliation_reconcilemailaccounts" + }, + { + "label": "reconcileProtectedDevices()", + "file_type": "code", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L116", + "community": 244, + "norm_label": "reconcileprotecteddevices()", + "id": "utils_downgrade_reconciliation_reconcileprotecteddevices" + }, + { + "label": "reconcileUpgrade()", + "file_type": "code", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L133", + "community": 244, + "norm_label": "reconcileupgrade()", + "id": "utils_downgrade_reconciliation_reconcileupgrade" + }, + { + "label": "triggerFinalScanForConnection()", + "file_type": "code", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L170", + "community": 244, + "norm_label": "triggerfinalscanforconnection()", + "id": "utils_downgrade_reconciliation_triggerfinalscanforconnection" + }, + { + "label": "device-lock-email.ts", + "file_type": "code", + "source_file": "backend/server/utils/device-lock-email.ts", + "source_location": "L1", + "community": 32, + "norm_label": "device-lock-email.ts", + "id": "backend_server_utils_device_lock_email_ts" + }, + { + "label": "DeviceLockEmailOpts", + "file_type": "code", + "source_file": "backend/server/utils/device-lock-email.ts", + "source_location": "L20", + "community": 32, + "norm_label": "devicelockemailopts", + "id": "utils_device_lock_email_devicelockemailopts" + }, + { + "label": "isLockNotifyRateLimited()", + "file_type": "code", + "source_file": "backend/server/utils/device-lock-email.ts", + "source_location": "L41", + "community": 32, + "norm_label": "islocknotifyratelimited()", + "id": "utils_device_lock_email_islocknotifyratelimited" + }, + { + "label": "sendDeviceLockEmail()", + "file_type": "code", + "source_file": "backend/server/utils/device-lock-email.ts", + "source_location": "L51", + "community": 32, + "norm_label": "senddevicelockemail()", + "id": "utils_device_lock_email_senddevicelockemail" + }, + { + "label": "detect-lang.ts", + "file_type": "code", + "source_file": "backend/server/utils/detect-lang.ts", + "source_location": "L1", + "community": 69, + "norm_label": "detect-lang.ts", + "id": "backend_server_utils_detect_lang_ts" + }, + { + "label": "detectLang()", + "file_type": "code", + "source_file": "backend/server/utils/detect-lang.ts", + "source_location": "L11", + "community": 69, + "norm_label": "detectlang()", + "id": "utils_detect_lang_detectlang" + }, + { + "label": "magic-profile-template.ts", + "file_type": "code", + "source_file": "backend/server/utils/magic-profile-template.ts", + "source_location": "L1", + "community": 32, + "norm_label": "magic-profile-template.ts", + "id": "backend_server_utils_magic_profile_template_ts" + }, + { + "label": "mobileconfig.ts", + "file_type": "code", + "source_file": "backend/server/utils/mobileconfig.ts", + "source_location": "L1", + "community": 80, + "norm_label": "mobileconfig.ts", + "id": "backend_server_utils_mobileconfig_ts" + }, + { + "label": "xmlEscape()", + "file_type": "code", + "source_file": "backend/server/utils/mobileconfig.ts", + "source_location": "L4", + "community": 80, + "norm_label": "xmlescape()", + "id": "utils_mobileconfig_xmlescape" + }, + { + "label": "labelToSlug()", + "file_type": "code", + "source_file": "backend/server/utils/mobileconfig.ts", + "source_location": "L14", + "community": 80, + "norm_label": "labeltoslug()", + "id": "utils_mobileconfig_labeltoslug" + }, + { + "label": "generateMacOSDnsProfile()", + "file_type": "code", + "source_file": "backend/server/utils/mobileconfig.ts", + "source_location": "L30", + "community": 80, + "norm_label": "generatemacosdnsprofile()", + "id": "utils_mobileconfig_generatemacosdnsprofile" + }, + { + "label": "mail-classifier.ts", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L1", + "community": 157, + "norm_label": "mail-classifier.ts", + "id": "backend_server_utils_mail_classifier_ts" + }, + { + "label": "ClassificationAction", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L27", + "community": 157, + "norm_label": "classificationaction", + "id": "utils_mail_classifier_classificationaction" + }, + { + "label": "TriggerSource", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L29", + "community": 157, + "norm_label": "triggersource", + "id": "utils_mail_classifier_triggersource" + }, + { + "label": "MailInput", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L38", + "community": 157, + "norm_label": "mailinput", + "id": "utils_mail_classifier_mailinput" + }, + { + "label": "ClassificationResult", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L47", + "community": 157, + "norm_label": "classificationresult", + "id": "utils_mail_classifier_classificationresult" + }, + { + "label": "ClassificationFeatures", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L57", + "community": 157, + "norm_label": "classificationfeatures", + "id": "utils_mail_classifier_classificationfeatures" + }, + { + "label": "SCORE_WEIGHTS", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L72", + "community": 157, + "norm_label": "score_weights", + "id": "utils_mail_classifier_score_weights" + }, + { + "label": "GAMBLING_BRANDS", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L103", + "community": 157, + "norm_label": "gambling_brands", + "id": "utils_mail_classifier_gambling_brands" + }, + { + "label": "extractRelayedDomain()", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L126", + "community": 157, + "norm_label": "extractrelayeddomain()", + "id": "utils_mail_classifier_extractrelayeddomain" + }, + { + "label": "normalizeBrand()", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L147", + "community": 157, + "norm_label": "normalizebrand()", + "id": "utils_mail_classifier_normalizebrand" + }, + { + "label": "matchesGamblingBrand()", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L155", + "community": 157, + "norm_label": "matchesgamblingbrand()", + "id": "utils_mail_classifier_matchesgamblingbrand" + }, + { + "label": "domainToBrandCandidates()", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L164", + "community": 157, + "norm_label": "domaintobrandcandidates()", + "id": "utils_mail_classifier_domaintobrandcandidates" + }, + { + "label": "hasRandomTokens()", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L180", + "community": 157, + "norm_label": "hasrandomtokens()", + "id": "utils_mail_classifier_hasrandomtokens" + }, + { + "label": "ScoreResult", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L202", + "community": 157, + "norm_label": "scoreresult", + "id": "utils_mail_classifier_scoreresult" + }, + { + "label": "computeScore()", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L211", + "community": 157, + "norm_label": "computescore()", + "id": "utils_mail_classifier_computescore" + }, + { + "label": "ClassifyMailParams", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L352", + "community": 157, + "norm_label": "classifymailparams", + "id": "utils_mail_classifier_classifymailparams" + }, + { + "label": "classifyMail()", + "file_type": "code", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L371", + "community": 157, + "norm_label": "classifymail()", + "id": "utils_mail_classifier_classifymail" + }, + { + "label": "ms-oauth.ts", + "file_type": "code", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L1", + "community": 6, + "norm_label": "ms-oauth.ts", + "id": "backend_server_utils_ms_oauth_ts" + }, + { + "label": "MS_OAUTH_SCOPES", + "file_type": "code", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L32", + "community": 6, + "norm_label": "ms_oauth_scopes", + "id": "utils_ms_oauth_ms_oauth_scopes" + }, + { + "label": "generateCodeVerifier()", + "file_type": "code", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L53", + "community": 6, + "norm_label": "generatecodeverifier()", + "id": "utils_ms_oauth_generatecodeverifier" + }, + { + "label": "computeCodeChallenge()", + "file_type": "code", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L59", + "community": 6, + "norm_label": "computecodechallenge()", + "id": "utils_ms_oauth_computecodechallenge" + }, + { + "label": "generateStateId()", + "file_type": "code", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L64", + "community": 6, + "norm_label": "generatestateid()", + "id": "utils_ms_oauth_generatestateid" + }, + { + "label": "MicrosoftTokenResponse", + "file_type": "code", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L70", + "community": 6, + "norm_label": "microsofttokenresponse", + "id": "utils_ms_oauth_microsofttokenresponse" + }, + { + "label": "exchangeCodeForTokens()", + "file_type": "code", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L86", + "community": 6, + "norm_label": "exchangecodefortokens()", + "id": "utils_ms_oauth_exchangecodefortokens" + }, + { + "label": "refreshMicrosoftTokens()", + "file_type": "code", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L127", + "community": 68, + "norm_label": "refreshmicrosofttokens()", + "id": "utils_ms_oauth_refreshmicrosofttokens" + }, + { + "label": "extractEmailFromIdToken()", + "file_type": "code", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L178", + "community": 6, + "norm_label": "extractemailfromidtoken()", + "id": "utils_ms_oauth_extractemailfromidtoken" + }, + { + "label": "magic-lock.ts", + "file_type": "code", + "source_file": "backend/server/utils/magic-lock.ts", + "source_location": "L1", + "community": 32, + "norm_label": "magic-lock.ts", + "id": "backend_server_utils_magic_lock_ts" + }, + { + "label": "generateRemovalPassword()", + "file_type": "code", + "source_file": "backend/server/utils/magic-lock.ts", + "source_location": "L21", + "community": 32, + "norm_label": "generateremovalpassword()", + "id": "utils_magic_lock_generateremovalpassword" + }, + { + "label": "buildRemovalPasswordPayload()", + "file_type": "code", + "source_file": "backend/server/utils/magic-lock.ts", + "source_location": "L34", + "community": 32, + "norm_label": "buildremovalpasswordpayload()", + "id": "utils_magic_lock_buildremovalpasswordpayload" + }, + { + "label": "signProfileIfConfigured()", + "file_type": "code", + "source_file": "backend/server/utils/magic-lock.ts", + "source_location": "L65", + "community": 32, + "norm_label": "signprofileifconfigured()", + "id": "utils_magic_lock_signprofileifconfigured" + }, + { + "label": "scoring.ts", + "file_type": "code", + "source_file": "backend/server/utils/scoring.ts", + "source_location": "L1", + "community": 4, + "norm_label": "scoring.ts", + "id": "backend_server_utils_scoring_ts" + }, + { + "label": "google-oauth.ts", + "file_type": "code", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L1", + "community": 6, + "norm_label": "google-oauth.ts", + "id": "backend_server_utils_google_oauth_ts" + }, + { + "label": "GOOGLE_OAUTH_SCOPES", + "file_type": "code", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L30", + "community": 6, + "norm_label": "google_oauth_scopes", + "id": "utils_google_oauth_google_oauth_scopes" + }, + { + "label": "generateCodeVerifier()", + "file_type": "code", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L56", + "community": 6, + "norm_label": "generatecodeverifier()", + "id": "utils_google_oauth_generatecodeverifier" + }, + { + "label": "computeCodeChallenge()", + "file_type": "code", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L61", + "community": 6, + "norm_label": "computecodechallenge()", + "id": "utils_google_oauth_computecodechallenge" + }, + { + "label": "generateStateId()", + "file_type": "code", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L66", + "community": 6, + "norm_label": "generatestateid()", + "id": "utils_google_oauth_generatestateid" + }, + { + "label": "GoogleTokenResponse", + "file_type": "code", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L72", + "community": 6, + "norm_label": "googletokenresponse", + "id": "utils_google_oauth_googletokenresponse" + }, + { + "label": "exchangeCodeForTokens()", + "file_type": "code", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L93", + "community": 6, + "norm_label": "exchangecodefortokens()", + "id": "utils_google_oauth_exchangecodefortokens" + }, + { + "label": "refreshGoogleTokens()", + "file_type": "code", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L150", + "community": 68, + "norm_label": "refreshgoogletokens()", + "id": "utils_google_oauth_refreshgoogletokens" + }, + { + "label": "extractEmailFromIdToken()", + "file_type": "code", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L195", + "community": 6, + "norm_label": "extractemailfromidtoken()", + "id": "utils_google_oauth_extractemailfromidtoken" + }, + { + "label": "getUsersMeta.ts", + "file_type": "code", + "source_file": "backend/server/utils/getUsersMeta.ts", + "source_location": "L1", + "community": 62, + "norm_label": "getusersmeta.ts", + "id": "backend_server_utils_getusersmeta_ts" + }, + { + "label": "getUsersMeta()", + "file_type": "code", + "source_file": "backend/server/utils/getUsersMeta.ts", + "source_location": "L7", + "community": 62, + "norm_label": "getusersmeta()", + "id": "utils_getusersmeta_getusersmeta" + }, + { + "label": "imap-providers.ts", + "file_type": "code", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L1", + "community": 6, + "norm_label": "imap-providers.ts", + "id": "backend_server_utils_imap_providers_ts" + }, + { + "label": "ImapConfig", + "file_type": "code", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L7", + "community": 6, + "norm_label": "imapconfig", + "id": "utils_imap_providers_imapconfig" + }, + { + "label": "PROVIDER_MAP", + "file_type": "code", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L13", + "community": 6, + "norm_label": "provider_map", + "id": "utils_imap_providers_provider_map" + }, + { + "label": "MX_IONOS_PATTERNS", + "file_type": "code", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L62", + "community": 6, + "norm_label": "mx_ionos_patterns", + "id": "utils_imap_providers_mx_ionos_patterns" + }, + { + "label": "detectImapProviderByMx()", + "file_type": "code", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L77", + "community": 6, + "norm_label": "detectimapproviderbymx()", + "id": "utils_imap_providers_detectimapproviderbymx" + }, + { + "label": "detectImapProvider()", + "file_type": "code", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L96", + "community": 6, + "norm_label": "detectimapprovider()", + "id": "utils_imap_providers_detectimapprovider" + }, + { + "label": "detectImapProviderAsync()", + "file_type": "code", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L112", + "community": 6, + "norm_label": "detectimapproviderasync()", + "id": "utils_imap_providers_detectimapproviderasync" + }, + { + "label": "SMTP_MAP", + "file_type": "code", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L124", + "community": 6, + "norm_label": "smtp_map", + "id": "utils_imap_providers_smtp_map" + }, + { + "label": "detectSmtpProvider()", + "file_type": "code", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L136", + "community": 6, + "norm_label": "detectsmtpprovider()", + "id": "utils_imap_providers_detectsmtpprovider" + }, + { + "label": "HOST_TO_PROVIDER", + "file_type": "code", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L150", + "community": 6, + "norm_label": "host_to_provider", + "id": "utils_imap_providers_host_to_provider" + }, + { + "label": "resolveProviderMeta()", + "file_type": "code", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L163", + "community": 6, + "norm_label": "resolveprovidermeta()", + "id": "utils_imap_providers_resolveprovidermeta" + }, + { + "label": "adguard.ts", + "file_type": "code", + "source_file": "backend/server/utils/adguard.ts", + "source_location": "L1", + "community": 32, + "norm_label": "adguard.ts", + "id": "backend_server_utils_adguard_ts" + }, + { + "label": "AdGuardClientOptions", + "file_type": "code", + "source_file": "backend/server/utils/adguard.ts", + "source_location": "L6", + "community": 32, + "norm_label": "adguardclientoptions", + "id": "utils_adguard_adguardclientoptions" + }, + { + "label": "AdGuardClientPayload", + "file_type": "code", + "source_file": "backend/server/utils/adguard.ts", + "source_location": "L17", + "community": 32, + "norm_label": "adguardclientpayload", + "id": "utils_adguard_adguardclientpayload" + }, + { + "label": "createAdGuardClient()", + "file_type": "code", + "source_file": "backend/server/utils/adguard.ts", + "source_location": "L38", + "community": 32, + "norm_label": "createadguardclient()", + "id": "utils_adguard_createadguardclient" + }, + { + "label": "deleteAdGuardClient()", + "file_type": "code", + "source_file": "backend/server/utils/adguard.ts", + "source_location": "L113", + "community": 32, + "norm_label": "deleteadguardclient()", + "id": "utils_adguard_deleteadguardclient" + }, + { + "label": "auth.ts", + "file_type": "code", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L1", + "community": 33, + "norm_label": "auth.ts", + "id": "backend_server_utils_auth_ts" + }, + { + "label": "RequireUserOptions", + "file_type": "code", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L10", + "community": 33, + "norm_label": "requireuseroptions", + "id": "utils_auth_requireuseroptions" + }, + { + "label": "requireUser()", + "file_type": "code", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L15", + "community": 33, + "norm_label": "requireuser()", + "id": "utils_auth_requireuser" + }, + { + "label": "requireAdmin()", + "file_type": "code", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L152", + "community": 33, + "norm_label": "requireadmin()", + "id": "utils_auth_requireadmin" + }, + { + "label": "public-email-domains.ts", + "file_type": "code", + "source_file": "backend/server/utils/public-email-domains.ts", + "source_location": "L1", + "community": 39, + "norm_label": "public-email-domains.ts", + "id": "backend_server_utils_public_email_domains_ts" + }, + { + "label": "PUBLIC_EMAIL_DOMAINS", + "file_type": "code", + "source_file": "backend/server/utils/public-email-domains.ts", + "source_location": "L17", + "community": 39, + "norm_label": "public_email_domains", + "id": "utils_public_email_domains_public_email_domains" + }, + { + "label": "isPublicEmailDomain()", + "file_type": "code", + "source_file": "backend/server/utils/public-email-domains.ts", + "source_location": "L51", + "community": 39, + "norm_label": "ispublicemaildomain()", + "id": "utils_public_email_domains_ispublicemaildomain" + }, + { + "label": "brevo.ts", + "file_type": "code", + "source_file": "backend/server/utils/mail/brevo.ts", + "source_location": "L1", + "community": 277, + "norm_label": "brevo.ts", + "id": "backend_server_utils_mail_brevo_ts" + }, + { + "label": "BrevoSendParams", + "file_type": "code", + "source_file": "backend/server/utils/mail/brevo.ts", + "source_location": "L9", + "community": 277, + "norm_label": "brevosendparams", + "id": "mail_brevo_brevosendparams" + }, + { + "label": "sendBrevoMail()", + "file_type": "code", + "source_file": "backend/server/utils/mail/brevo.ts", + "source_location": "L17", + "community": 277, + "norm_label": "sendbrevomail()", + "id": "mail_brevo_sendbrevomail" + }, + { + "label": "templates.ts", + "file_type": "code", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L1", + "community": 277, + "norm_label": "templates.ts", + "id": "backend_server_utils_mail_templates_ts" + }, + { + "label": "EmailActionType", + "file_type": "code", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L8", + "community": 277, + "norm_label": "emailactiontype", + "id": "mail_templates_emailactiontype" + }, + { + "label": "Locale", + "file_type": "code", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L15", + "community": 277, + "norm_label": "locale", + "id": "mail_templates_locale" + }, + { + "label": "SUPPORTED_LOCALES", + "file_type": "code", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L17", + "community": 277, + "norm_label": "supported_locales", + "id": "mail_templates_supported_locales" + }, + { + "label": "normalizeLocale()", + "file_type": "code", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L19", + "community": 277, + "norm_label": "normalizelocale()", + "id": "mail_templates_normalizelocale" + }, + { + "label": "Texts", + "file_type": "code", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L27", + "community": 277, + "norm_label": "texts", + "id": "mail_templates_texts" + }, + { + "label": "htmlEscape()", + "file_type": "code", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L216", + "community": 277, + "norm_label": "htmlescape()", + "id": "mail_templates_htmlescape" + }, + { + "label": "RenderedEmail", + "file_type": "code", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L223", + "community": 277, + "norm_label": "renderedemail", + "id": "mail_templates_renderedemail" + }, + { + "label": "renderEmail()", + "file_type": "code", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L229", + "community": 277, + "norm_label": "renderemail()", + "id": "mail_templates_renderemail" + }, + { + "label": "lyraPostCatalog.ts", + "file_type": "code", + "source_file": "backend/server/lib/lyraPostCatalog.ts", + "source_location": "L1", + "community": 127, + "norm_label": "lyrapostcatalog.ts", + "id": "backend_server_lib_lyrapostcatalog_ts" + }, + { + "label": "LyraPostTopic", + "file_type": "code", + "source_file": "backend/server/lib/lyraPostCatalog.ts", + "source_location": "L16", + "community": 127, + "norm_label": "lyraposttopic", + "id": "lib_lyrapostcatalog_lyraposttopic" + }, + { + "label": "LyraPostTemplate", + "file_type": "code", + "source_file": "backend/server/lib/lyraPostCatalog.ts", + "source_location": "L18", + "community": 127, + "norm_label": "lyraposttemplate", + "id": "lib_lyrapostcatalog_lyraposttemplate" + }, + { + "label": "LYRA_POST_CATALOG", + "file_type": "code", + "source_file": "backend/server/lib/lyraPostCatalog.ts", + "source_location": "L23", + "community": 127, + "norm_label": "lyra_post_catalog", + "id": "lib_lyrapostcatalog_lyra_post_catalog" + }, + { + "label": "pickRandomTemplate()", + "file_type": "code", + "source_file": "backend/server/lib/lyraPostCatalog.ts", + "source_location": "L56", + "community": 127, + "norm_label": "pickrandomtemplate()", + "id": "lib_lyrapostcatalog_pickrandomtemplate" + }, + { + "label": "adminUsers.ts", + "file_type": "code", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L1", + "community": 384, + "norm_label": "adminusers.ts", + "id": "backend_server_db_adminusers_ts" + }, + { + "label": "ListUsersOpts", + "file_type": "code", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L12", + "community": 384, + "norm_label": "listusersopts", + "id": "db_adminusers_listusersopts" + }, + { + "label": "AdminUserRow", + "file_type": "code", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L21", + "community": 384, + "norm_label": "adminuserrow", + "id": "db_adminusers_adminuserrow" + }, + { + "label": "listAdminUsers()", + "file_type": "code", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L44", + "community": 384, + "norm_label": "listadminusers()", + "id": "db_adminusers_listadminusers" + }, + { + "label": "VALID_PLANS", + "file_type": "code", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L93", + "community": 384, + "norm_label": "valid_plans", + "id": "db_adminusers_valid_plans" + }, + { + "label": "UpdateAdminUserPatch", + "file_type": "code", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L95", + "community": 384, + "norm_label": "updateadminuserpatch", + "id": "db_adminusers_updateadminuserpatch" + }, + { + "label": "updateAdminUser()", + "file_type": "code", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L107", + "community": 384, + "norm_label": "updateadminuser()", + "id": "db_adminusers_updateadminuser" + }, + { + "label": "softDeleteAdminUser()", + "file_type": "code", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L177", + "community": 384, + "norm_label": "softdeleteadminuser()", + "id": "db_adminusers_softdeleteadminuser" + }, + { + "label": "devices.ts", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L1", + "community": 32, + "norm_label": "devices.ts", + "id": "backend_server_db_devices_ts" + }, + { + "label": "DeviceRecord", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L8", + "community": 32, + "norm_label": "devicerecord", + "id": "db_devices_devicerecord" + }, + { + "label": "LOCKING_PLANS", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L25", + "community": 32, + "norm_label": "locking_plans", + "id": "db_devices_locking_plans" + }, + { + "label": "isLockingPlan()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L28", + "community": 32, + "norm_label": "islockingplan()", + "id": "db_devices_islockingplan" + }, + { + "label": "findActiveDeviceLock()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L40", + "community": 32, + "norm_label": "findactivedevicelock()", + "id": "db_devices_findactivedevicelock" + }, + { + "label": "bindDeviceToUser()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L82", + "community": 32, + "norm_label": "binddevicetouser()", + "id": "db_devices_binddevicetouser" + }, + { + "label": "requestDeviceRelease()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L107", + "community": 32, + "norm_label": "requestdevicerelease()", + "id": "db_devices_requestdevicerelease" + }, + { + "label": "cancelDeviceRelease()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L129", + "community": 32, + "norm_label": "canceldevicerelease()", + "id": "db_devices_canceldevicerelease" + }, + { + "label": "markDeviceLockNotified()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L150", + "community": 32, + "norm_label": "markdevicelocknotified()", + "id": "db_devices_markdevicelocknotified" + }, + { + "label": "autoReleaseInactiveDevices()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L167", + "community": 32, + "norm_label": "autoreleaseinactivedevices()", + "id": "db_devices_autoreleaseinactivedevices" + }, + { + "label": "DEVICE_SELECT", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L186", + "community": 32, + "norm_label": "device_select", + "id": "db_devices_device_select" + }, + { + "label": "listUserDevices()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L207", + "community": 32, + "norm_label": "listuserdevices()", + "id": "db_devices_listuserdevices" + }, + { + "label": "cleanupStaleDevices()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L224", + "community": 32, + "norm_label": "cleanupstaledevices()", + "id": "db_devices_cleanupstaledevices" + }, + { + "label": "findUserDevice()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L238", + "community": 33, + "norm_label": "finduserdevice()", + "id": "db_devices_finduserdevice" + }, + { + "label": "findMergeCandidate()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L258", + "community": 32, + "norm_label": "findmergecandidate()", + "id": "db_devices_findmergecandidate" + }, + { + "label": "registerDevice()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L287", + "community": 33, + "norm_label": "registerdevice()", + "id": "db_devices_registerdevice" + }, + { + "label": "touchDevice()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L372", + "community": 33, + "norm_label": "touchdevice()", + "id": "db_devices_touchdevice" + }, + { + "label": "deleteUserDevice()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L404", + "community": 32, + "norm_label": "deleteuserdevice()", + "id": "db_devices_deleteuserdevice" + }, + { + "label": "MagicDeviceRecord", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L419", + "community": 32, + "norm_label": "magicdevicerecord", + "id": "db_devices_magicdevicerecord" + }, + { + "label": "listMagicDevices()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L436", + "community": 32, + "norm_label": "listmagicdevices()", + "id": "db_devices_listmagicdevices" + }, + { + "label": "countActiveMagicBindings()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L478", + "community": 32, + "norm_label": "countactivemagicbindings()", + "id": "db_devices_countactivemagicbindings" + }, + { + "label": "findMagicDeviceByToken()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L494", + "community": 32, + "norm_label": "findmagicdevicebytoken()", + "id": "db_devices_findmagicdevicebytoken" + }, + { + "label": "ensureMagicRemovalPassword()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L535", + "community": 32, + "norm_label": "ensuremagicremovalpassword()", + "id": "db_devices_ensuremagicremovalpassword" + }, + { + "label": "MagicRemovalCredential", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L546", + "community": 47, + "norm_label": "magicremovalcredential", + "id": "db_devices_magicremovalcredential" + }, + { + "label": "listMagicRemovalCredentials()", + "file_type": "code", + "source_file": "backend/server/db/devices.ts", + "source_location": "L557", + "community": 47, + "norm_label": "listmagicremovalcredentials()", + "id": "db_devices_listmagicremovalcredentials" + }, + { + "label": "device-approvals.ts", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L1", + "community": 257, + "norm_label": "device-approvals.ts", + "id": "backend_server_db_device_approvals_ts" + }, + { + "label": "DeviceApprovalRecord", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L20", + "community": 257, + "norm_label": "deviceapprovalrecord", + "id": "db_device_approvals_deviceapprovalrecord" + }, + { + "label": "APPROVAL_SELECT", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L39", + "community": 257, + "norm_label": "approval_select", + "id": "db_device_approvals_approval_select" + }, + { + "label": "generateCode()", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L59", + "community": 257, + "norm_label": "generatecode()", + "id": "db_device_approvals_generatecode" + }, + { + "label": "generateEmailToken()", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L65", + "community": 257, + "norm_label": "generateemailtoken()", + "id": "db_device_approvals_generateemailtoken" + }, + { + "label": "hasOtherActiveDevices()", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L70", + "community": 257, + "norm_label": "hasotheractivedevices()", + "id": "db_device_approvals_hasotheractivedevices" + }, + { + "label": "createApprovalRequest()", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L90", + "community": 257, + "norm_label": "createapprovalrequest()", + "id": "db_device_approvals_createapprovalrequest" + }, + { + "label": "getApprovalRequest()", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L129", + "community": 257, + "norm_label": "getapprovalrequest()", + "id": "db_device_approvals_getapprovalrequest" + }, + { + "label": "getApprovalByEmailToken()", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L143", + "community": 257, + "norm_label": "getapprovalbyemailtoken()", + "id": "db_device_approvals_getapprovalbyemailtoken" + }, + { + "label": "listPendingApprovals()", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L156", + "community": 257, + "norm_label": "listpendingapprovals()", + "id": "db_device_approvals_listpendingapprovals" + }, + { + "label": "approveRequest()", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L181", + "community": 257, + "norm_label": "approverequest()", + "id": "db_device_approvals_approverequest" + }, + { + "label": "rejectRequest()", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L214", + "community": 257, + "norm_label": "rejectrequest()", + "id": "db_device_approvals_rejectrequest" + }, + { + "label": "markEmailSent()", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L235", + "community": 257, + "norm_label": "markemailsent()", + "id": "db_device_approvals_markemailsent" + }, + { + "label": "maybeExpire()", + "file_type": "code", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L254", + "community": 257, + "norm_label": "maybeexpire()", + "id": "db_device_approvals_maybeexpire" + }, + { + "label": "consent.ts", + "file_type": "code", + "source_file": "backend/server/db/consent.ts", + "source_location": "L1", + "community": 6, + "norm_label": "consent.ts", + "id": "backend_server_db_consent_ts" + }, + { + "label": "writeConsentGrant()", + "file_type": "code", + "source_file": "backend/server/db/consent.ts", + "source_location": "L4", + "community": 6, + "norm_label": "writeconsentgrant()", + "id": "db_consent_writeconsentgrant" + }, + { + "label": "writeConsentRevoke()", + "file_type": "code", + "source_file": "backend/server/db/consent.ts", + "source_location": "L32", + "community": 6, + "norm_label": "writeconsentrevoke()", + "id": "db_consent_writeconsentrevoke" + }, + { + "label": "getConsentLogsByUser()", + "file_type": "code", + "source_file": "backend/server/db/consent.ts", + "source_location": "L60", + "community": 6, + "norm_label": "getconsentlogsbyuser()", + "id": "db_consent_getconsentlogsbyuser" + }, + { + "label": "setMailConnectionConsent()", + "file_type": "code", + "source_file": "backend/server/db/consent.ts", + "source_location": "L74", + "community": 6, + "norm_label": "setmailconnectionconsent()", + "id": "db_consent_setmailconnectionconsent" + }, + { + "label": "getMailConnectionWithConsent()", + "file_type": "code", + "source_file": "backend/server/db/consent.ts", + "source_location": "L97", + "community": 6, + "norm_label": "getmailconnectionwithconsent()", + "id": "db_consent_getmailconnectionwithconsent" + }, + { + "label": "chat-rooms.ts", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L1", + "community": 62, + "norm_label": "chat-rooms.ts", + "id": "backend_server_db_chat_rooms_ts" + }, + { + "label": "listRooms()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L6", + "community": 62, + "norm_label": "listrooms()", + "id": "db_chat_rooms_listrooms" + }, + { + "label": "getRoom()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L32", + "community": 62, + "norm_label": "getroom()", + "id": "db_chat_rooms_getroom" + }, + { + "label": "createRoom()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L45", + "community": 62, + "norm_label": "createroom()", + "id": "db_chat_rooms_createroom" + }, + { + "label": "updateRoom()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L72", + "community": 62, + "norm_label": "updateroom()", + "id": "db_chat_rooms_updateroom" + }, + { + "label": "deleteRoom()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L85", + "community": 62, + "norm_label": "deleteroom()", + "id": "db_chat_rooms_deleteroom" + }, + { + "label": "getMember()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L92", + "community": 62, + "norm_label": "getmember()", + "id": "db_chat_rooms_getmember" + }, + { + "label": "getRoomMembers()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L99", + "community": 62, + "norm_label": "getroommembers()", + "id": "db_chat_rooms_getroommembers" + }, + { + "label": "joinRoom()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L108", + "community": 62, + "norm_label": "joinroom()", + "id": "db_chat_rooms_joinroom" + }, + { + "label": "leaveRoom()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L128", + "community": 62, + "norm_label": "leaveroom()", + "id": "db_chat_rooms_leaveroom" + }, + { + "label": "approveRequest()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L139", + "community": 62, + "norm_label": "approverequest()", + "id": "db_chat_rooms_approverequest" + }, + { + "label": "rejectRequest()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L151", + "community": 62, + "norm_label": "rejectrequest()", + "id": "db_chat_rooms_rejectrequest" + }, + { + "label": "getPendingRequests()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L158", + "community": 62, + "norm_label": "getpendingrequests()", + "id": "db_chat_rooms_getpendingrequests" + }, + { + "label": "findRoomByInviteCode()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L167", + "community": 62, + "norm_label": "findroombyinvitecode()", + "id": "db_chat_rooms_findroombyinvitecode" + }, + { + "label": "banMember()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L172", + "community": 62, + "norm_label": "banmember()", + "id": "db_chat_rooms_banmember" + }, + { + "label": "setMemberRole()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L190", + "community": 62, + "norm_label": "setmemberrole()", + "id": "db_chat_rooms_setmemberrole" + }, + { + "label": "getRoomMessages()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L204", + "community": 62, + "norm_label": "getroommessages()", + "id": "db_chat_rooms_getroommessages" + }, + { + "label": "createRoomMessage()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L232", + "community": 62, + "norm_label": "createroommessage()", + "id": "db_chat_rooms_createroommessage" + }, + { + "label": "toggleChatMessageLike()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L309", + "community": 62, + "norm_label": "togglechatmessagelike()", + "id": "db_chat_rooms_togglechatmessagelike" + }, + { + "label": "toggleDmLike()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L332", + "community": 62, + "norm_label": "toggledmlike()", + "id": "db_chat_rooms_toggledmlike" + }, + { + "label": "DEFAULT_ROOMS", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L359", + "community": 62, + "norm_label": "default_rooms", + "id": "db_chat_rooms_default_rooms" + }, + { + "label": "seedDefaultRooms()", + "file_type": "code", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L372", + "community": 62, + "norm_label": "seeddefaultrooms()", + "id": "db_chat_rooms_seeddefaultrooms" + }, + { + "label": "scores.ts", + "file_type": "code", + "source_file": "backend/server/db/scores.ts", + "source_location": "L1", + "community": 4, + "norm_label": "scores.ts", + "id": "backend_server_db_scores_ts" + }, + { + "label": "ScoreEventType", + "file_type": "code", + "source_file": "backend/server/db/scores.ts", + "source_location": "L3", + "community": 4, + "norm_label": "scoreeventtype", + "id": "db_scores_scoreeventtype" + }, + { + "label": "POINTS", + "file_type": "code", + "source_file": "backend/server/db/scores.ts", + "source_location": "L12", + "community": 4, + "norm_label": "points", + "id": "db_scores_points" + }, + { + "label": "awardPoints()", + "file_type": "code", + "source_file": "backend/server/db/scores.ts", + "source_location": "L22", + "community": 4, + "norm_label": "awardpoints()", + "id": "db_scores_awardpoints" + }, + { + "label": "getUserScore()", + "file_type": "code", + "source_file": "backend/server/db/scores.ts", + "source_location": "L36", + "community": 4, + "norm_label": "getuserscore()", + "id": "db_scores_getuserscore" + }, + { + "label": "getRecentScoreEvents()", + "file_type": "code", + "source_file": "backend/server/db/scores.ts", + "source_location": "L44", + "community": 4, + "norm_label": "getrecentscoreevents()", + "id": "db_scores_getrecentscoreevents" + }, + { + "label": "getLeaderboard()", + "file_type": "code", + "source_file": "backend/server/db/scores.ts", + "source_location": "L54", + "community": 4, + "norm_label": "getleaderboard()", + "id": "db_scores_getleaderboard" + }, + { + "label": "streak.ts", + "file_type": "code", + "source_file": "backend/server/db/streak.ts", + "source_location": "L1", + "community": 47, + "norm_label": "streak.ts", + "id": "backend_server_db_streak_ts" + }, + { + "label": "getActiveStreak()", + "file_type": "code", + "source_file": "backend/server/db/streak.ts", + "source_location": "L3", + "community": 47, + "norm_label": "getactivestreak()", + "id": "db_streak_getactivestreak" + }, + { + "label": "upsertStreak()", + "file_type": "code", + "source_file": "backend/server/db/streak.ts", + "source_location": "L10", + "community": 47, + "norm_label": "upsertstreak()", + "id": "db_streak_upsertstreak" + }, + { + "label": "resetStreak()", + "file_type": "code", + "source_file": "backend/server/db/streak.ts", + "source_location": "L54", + "community": 47, + "norm_label": "resetstreak()", + "id": "db_streak_resetstreak" + }, + { + "label": "updateStreakSavings()", + "file_type": "code", + "source_file": "backend/server/db/streak.ts", + "source_location": "L71", + "community": 47, + "norm_label": "updatestreaksavings()", + "id": "db_streak_updatestreaksavings" + }, + { + "label": "deleteUserStreaks()", + "file_type": "code", + "source_file": "backend/server/db/streak.ts", + "source_location": "L79", + "community": 47, + "norm_label": "deleteuserstreaks()", + "id": "db_streak_deleteuserstreaks" + }, + { + "label": "addStreakEvent()", + "file_type": "code", + "source_file": "backend/server/db/streak.ts", + "source_location": "L86", + "community": 47, + "norm_label": "addstreakevent()", + "id": "db_streak_addstreakevent" + }, + { + "label": "getStreakEvents()", + "file_type": "code", + "source_file": "backend/server/db/streak.ts", + "source_location": "L97", + "community": 47, + "norm_label": "getstreakevents()", + "id": "db_streak_getstreakevents" + }, + { + "label": "sosSession.ts", + "file_type": "code", + "source_file": "backend/server/db/sosSession.ts", + "source_location": "L1", + "community": 47, + "norm_label": "sossession.ts", + "id": "backend_server_db_sossession_ts" + }, + { + "label": "SosSessionInput", + "file_type": "code", + "source_file": "backend/server/db/sosSession.ts", + "source_location": "L3", + "community": 47, + "norm_label": "sossessioninput", + "id": "db_sossession_sossessioninput" + }, + { + "label": "createSosSession()", + "file_type": "code", + "source_file": "backend/server/db/sosSession.ts", + "source_location": "L17", + "community": 47, + "norm_label": "createsossession()", + "id": "db_sossession_createsossession" + }, + { + "label": "deleteUserSosSessions()", + "file_type": "code", + "source_file": "backend/server/db/sosSession.ts", + "source_location": "L38", + "community": 47, + "norm_label": "deleteusersossessions()", + "id": "db_sossession_deleteusersossessions" }, { "label": "notifications.ts", "file_type": "code", - "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_file": "backend/server/db/notifications.ts", "source_location": "L1", - "id": "apps_rebreak_native_stores_notifications_ts", - "community": 17, - "norm_label": "notifications.ts" + "community": 4, + "norm_label": "notifications.ts", + "id": "backend_server_db_notifications_ts" }, { - "label": "AppNotification", + "label": "createNotification()", "file_type": "code", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L7", - "id": "stores_notifications_appnotification", - "community": 17, - "norm_label": "appnotification" + "source_file": "backend/server/db/notifications.ts", + "source_location": "L3", + "community": 4, + "norm_label": "createnotification()", + "id": "db_notifications_createnotification" }, { - "label": "NotificationState", + "label": "getNotifications()", "file_type": "code", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L18", - "id": "stores_notifications_notificationstate", - "community": 17, - "norm_label": "notificationstate" - }, - { - "label": "useNotificationStore", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L33", - "id": "stores_notifications_usenotificationstore", - "community": 27, - "norm_label": "usenotificationstore" - }, - { - "label": "SESSION_2026-06-07_handoff.md", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L1", - "id": "docs_internal_session_2026_06_07_handoff_md", - "community": 884, - "norm_label": "session_2026-06-07_handoff.md" - }, - { - "label": "Session-Handoff 2026-06-07 (Windows-Schutz + Mac-DNS + Marketing-Nav)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L1", - "id": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", - "community": 884, - "norm_label": "session-handoff 2026-06-07 (windows-schutz + mac-dns + marketing-nav)" - }, - { - "label": "\ud83d\udd34 SOFORT-N\u00c4CHSTER SCHRITT (offen, blockt Mac-Entscheidung)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L8", - "id": "internal_session_2026_06_07_handoff_sofort_n\u00e4chster_schritt_offen_blockt_mac_entscheidung", - "community": 884, - "norm_label": "\ud83d\udd34 sofort-nachster schritt (offen, blockt mac-entscheidung)" - }, - { - "label": "\u2705 Was heute fertig wurde (verifiziert)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L19", - "id": "internal_session_2026_06_07_handoff_was_heute_fertig_wurde_verifiziert", - "community": 884, - "norm_label": "\u2705 was heute fertig wurde (verifiziert)" - }, - { - "label": "\ud83d\udfe1 Offene Threads / Entscheidungen", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L31", - "id": "internal_session_2026_06_07_handoff_offene_threads_entscheidungen", - "community": 884, - "norm_label": "\ud83d\udfe1 offene threads / entscheidungen" - }, - { - "label": "\ud83d\udce6 Working-Tree (uncommitted \u2014 NICHT deployed)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L47", - "id": "internal_session_2026_06_07_handoff_working_tree_uncommitted_nicht_deployed", - "community": 884, - "norm_label": "\ud83d\udce6 working-tree (uncommitted \u2014 nicht deployed)" - }, - { - "label": "\ud83d\ude80 Committed + deployed heute", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L65", - "id": "internal_session_2026_06_07_handoff_committed_deployed_heute", - "community": 884, - "norm_label": "\ud83d\ude80 committed + deployed heute" - }, - { - "label": "\ud83e\uddea Artefakte (lokal)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L73", - "id": "internal_session_2026_06_07_handoff_artefakte_lokal", - "community": 884, - "norm_label": "\ud83e\uddea artefakte (lokal)" - }, - { - "label": "\ud83e\udde0 Key-Findings (auch in Memory)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L82", - "id": "internal_session_2026_06_07_handoff_key_findings_auch_in_memory", - "community": 884, - "norm_label": "\ud83e\udde0 key-findings (auch in memory)" - }, - { - "label": "\u26a0\ufe0f Mac-Speicher: kritisch", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L89", - "id": "internal_session_2026_06_07_handoff_mac_speicher_kritisch", - "community": 884, - "norm_label": "\u26a0\ufe0f mac-speicher: kritisch" - }, - { - "label": "SESSION_2026-06-08_handoff.md", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L1", - "id": "docs_internal_session_2026_06_08_handoff_md", - "community": 881, - "norm_label": "session_2026-06-08_handoff.md" - }, - { - "label": "Session-Handoff 2026-06-07/08 \u2014 Magic-Windows E2E + Ger\u00e4te-UI + Marketing-Prod", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L1", - "id": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", - "community": 881, - "norm_label": "session-handoff 2026-06-07/08 \u2014 magic-windows e2e + gerate-ui + marketing-prod" - }, - { - "label": "\ud83c\udfc6 Das gro\u00dfe Ding: ReBreak-Magic f\u00fcr Windows l\u00e4uft E2E", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L9", - "id": "internal_session_2026_06_08_handoff_das_grosse_ding_rebreak_magic_f\u00fcr_windows_l\u00e4uft_e2e", - "community": 881, - "norm_label": "\ud83c\udfc6 das gro\u00dfe ding: rebreak-magic fur windows lauft e2e" - }, - { - "label": "Zwei harte Backend-Bugs heute gefunden + gefixt (waren der Blocker)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L12", - "id": "internal_session_2026_06_08_handoff_zwei_harte_backend_bugs_heute_gefunden_gefixt_waren_der_blocker", - "community": 881, - "norm_label": "zwei harte backend-bugs heute gefunden + gefixt (waren der blocker)" - }, - { - "label": "\u26a0\ufe0f Wichtige Lektion (kostete ~Stunde): falsche Box", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L16", - "id": "internal_session_2026_06_08_handoff_wichtige_lektion_kostete_stunde_falsche_box", - "community": 881, - "norm_label": "\u26a0\ufe0f wichtige lektion (kostete ~stunde): falsche box" - }, - { - "label": "\u2705 Phase A (Backend) \u2014 live auf Staging (Commit `a95e665`)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L23", - "id": "internal_session_2026_06_08_handoff_phase_a_backend_live_auf_staging_commit_a95e665", - "community": 881, - "norm_label": "\u2705 phase a (backend) \u2014 live auf staging (commit `a95e665`)" - }, - { - "label": "\u2705 Marketing \u2014 live auf **PROD** (rebreak.org)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L33", - "id": "internal_session_2026_06_08_handoff_marketing_live_auf_prod_rebreak_org", - "community": 881, - "norm_label": "\u2705 marketing \u2014 live auf **prod** (rebreak.org)" - }, - { - "label": "\u2705 Native UI-Polish (committet LOKAL, 6 Commits ahead von origin = db6db54)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L42", - "id": "internal_session_2026_06_08_handoff_native_ui_polish_committet_lokal_6_commits_ahead_von_origin_db6db54", - "community": 881, - "norm_label": "\u2705 native ui-polish (committet lokal, 6 commits ahead von origin = db6db54)" - }, - { - "label": "\ud83d\ude80 N\u00c4CHSTE SESSION \u2014 der eigentliche Gamechanger (User-Priorit\u00e4t)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L52", - "id": "internal_session_2026_06_08_handoff_n\u00e4chste_session_der_eigentliche_gamechanger_user_priorit\u00e4t", - "community": 881, - "norm_label": "\ud83d\ude80 nachste session \u2014 der eigentliche gamechanger (user-prioritat)" - }, - { - "label": "Weitere offene Threads (Prio absteigend)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L59", - "id": "internal_session_2026_06_08_handoff_weitere_offene_threads_prio_absteigend", - "community": 881, - "norm_label": "weitere offene threads (prio absteigend)" - }, - { - "label": "\ud83e\udde0 FAGS (Fachverband Gl\u00fccksspielsucht) \u2014 strategisch", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L68", - "id": "internal_session_2026_06_08_handoff_fags_fachverband_gl\u00fccksspielsucht_strategisch", - "community": 881, - "norm_label": "\ud83e\udde0 fags (fachverband glucksspielsucht) \u2014 strategisch" - }, - { - "label": "SESSION_2026-06-08_preview_screenshots_handoff.md", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L1", - "id": "docs_internal_session_2026_06_08_preview_screenshots_handoff_md", - "community": 886, - "norm_label": "session_2026-06-08_preview_screenshots_handoff.md" - }, - { - "label": "Session-Handoff 2026-06-08 \u2014 Preview-Page, Screenshots, Bug-Hunt", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L1", - "id": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", - "community": 886, - "norm_label": "session-handoff 2026-06-08 \u2014 preview-page, screenshots, bug-hunt" - }, - { - "label": "\u2705 ERLEDIGT in Fortsetzung 2026-06-09", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L6", - "id": "internal_session_2026_06_08_preview_screenshots_handoff_erledigt_in_fortsetzung_2026_06_09", - "community": 886, - "norm_label": "\u2705 erledigt in fortsetzung 2026-06-09" - }, - { - "label": "Laufender Zustand der Umgebung (WICHTIG)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L13", - "id": "internal_session_2026_06_08_preview_screenshots_handoff_laufender_zustand_der_umgebung_wichtig", - "community": 886, - "norm_label": "laufender zustand der umgebung (wichtig)" - }, - { - "label": "\u2705 DONE diese Session", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L18", - "id": "internal_session_2026_06_08_preview_screenshots_handoff_done_diese_session", - "community": 886, - "norm_label": "\u2705 done diese session" - }, - { - "label": "\ud83d\udcf8 Screenshot-Status", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L30", - "id": "internal_session_2026_06_08_preview_screenshots_handoff_screenshot_status", - "community": 886, - "norm_label": "\ud83d\udcf8 screenshot-status" - }, - { - "label": "\ud83d\udc1e OFFENE BUGS (vom Founder beim Testen gefunden)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L38", - "id": "internal_session_2026_06_08_preview_screenshots_handoff_offene_bugs_vom_founder_beim_testen_gefunden", - "community": 886, - "norm_label": "\ud83d\udc1e offene bugs (vom founder beim testen gefunden)" - }, - { - "label": "\u23ed\ufe0f N\u00c4CHSTE SCHRITTE (Bypass-Session)", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L53", - "id": "internal_session_2026_06_08_preview_screenshots_handoff_n\u00e4chste_schritte_bypass_session", - "community": 886, - "norm_label": "\u23ed\ufe0f nachste schritte (bypass-session)" - }, - { - "label": "Agenten-Lernpunkt", - "file_type": "document", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L60", - "id": "internal_session_2026_06_08_preview_screenshots_handoff_agenten_lernpunkt", - "community": 886, - "norm_label": "agenten-lernpunkt" - }, - { - "label": "ilona-vorstand-mail.md", - "file_type": "document", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L1", - "id": "docs_marketing_ilona_vorstand_mail_md", - "community": 893, - "norm_label": "ilona-vorstand-mail.md" - }, - { - "label": "Ilona / FAGS \u2014 Mail an Ilona (Antwort auf ihre 2. PN)", - "file_type": "document", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L1", - "id": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", - "community": 893, - "norm_label": "ilona / fags \u2014 mail an ilona (antwort auf ihre 2. pn)" - }, - { - "label": "Stil-Hinweis", - "file_type": "document", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L9", - "id": "marketing_ilona_vorstand_mail_stil_hinweis", - "community": 893, - "norm_label": "stil-hinweis" - }, - { - "label": "\u26a0\ufe0f Vor dem Senden ausf\u00fcllen / best\u00e4tigen", - "file_type": "document", - "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_file": "backend/server/db/notifications.ts", "source_location": "L15", - "id": "marketing_ilona_vorstand_mail_vor_dem_senden_ausf\u00fcllen_best\u00e4tigen", - "community": 893, - "norm_label": "\u26a0\ufe0f vor dem senden ausfullen / bestatigen" + "community": 4, + "norm_label": "getnotifications()", + "id": "db_notifications_getnotifications" }, { - "label": "Mail-Entwurf (kompakt, mit Tabelle)", - "file_type": "document", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L27", - "id": "marketing_ilona_vorstand_mail_mail_entwurf_kompakt_mit_tabelle", - "community": 893, - "norm_label": "mail-entwurf (kompakt, mit tabelle)" + "label": "countUnread()", + "file_type": "code", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L24", + "community": 4, + "norm_label": "countunread()", + "id": "db_notifications_countunread" }, { - "label": "Forums-Antwort (1 Zeile, Faden warm halten)", - "file_type": "document", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L87", - "id": "marketing_ilona_vorstand_mail_forums_antwort_1_zeile_faden_warm_halten", - "community": 893, - "norm_label": "forums-antwort (1 zeile, faden warm halten)" + "label": "markAllRead()", + "file_type": "code", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L31", + "community": 4, + "norm_label": "markallread()", + "id": "db_notifications_markallread" }, { - "label": "Lange Fassung (Backup)", - "file_type": "document", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L94", - "id": "marketing_ilona_vorstand_mail_lange_fassung_backup", - "community": 893, - "norm_label": "lange fassung (backup)" + "label": "deleteNotification()", + "file_type": "code", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L39", + "community": 4, + "norm_label": "deletenotification()", + "id": "db_notifications_deletenotification" }, { - "label": "BUSINESS_PLAN_NBANK.md", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "label": "deleteOldNotifications()", + "file_type": "code", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L46", + "community": 4, + "norm_label": "deleteoldnotifications()", + "id": "db_notifications_deleteoldnotifications" + }, + { + "label": "protectedDevices.ts", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", "source_location": "L1", - "id": "ops_business_plan_nbank_md", - "community": 873, - "norm_label": "business_plan_nbank.md" + "community": 80, + "norm_label": "protecteddevices.ts", + "id": "backend_server_db_protecteddevices_ts" }, { - "label": "Businessplan Rebreak", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "label": "ProtectedDeviceRecord", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L3", + "community": 80, + "norm_label": "protecteddevicerecord", + "id": "db_protecteddevices_protecteddevicerecord" + }, + { + "label": "ProtectedDeviceWithToken", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L13", + "community": 80, + "norm_label": "protecteddevicewithtoken", + "id": "db_protecteddevices_protecteddevicewithtoken" + }, + { + "label": "DEVICE_SELECT", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L18", + "community": 80, + "norm_label": "device_select", + "id": "db_protecteddevices_device_select" + }, + { + "label": "DEVICE_SELECT_WITH_TOKEN", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L28", + "community": 80, + "norm_label": "device_select_with_token", + "id": "db_protecteddevices_device_select_with_token" + }, + { + "label": "listProtectedDevices()", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L35", + "community": 80, + "norm_label": "listprotecteddevices()", + "id": "db_protecteddevices_listprotecteddevices" + }, + { + "label": "countActiveProtectedDevices()", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L47", + "community": 80, + "norm_label": "countactiveprotecteddevices()", + "id": "db_protecteddevices_countactiveprotecteddevices" + }, + { + "label": "getProtectedDevice()", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L57", + "community": 80, + "norm_label": "getprotecteddevice()", + "id": "db_protecteddevices_getprotecteddevice" + }, + { + "label": "getProtectedDeviceByToken()", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L68", + "community": 80, + "norm_label": "getprotecteddevicebytoken()", + "id": "db_protecteddevices_getprotecteddevicebytoken" + }, + { + "label": "createProtectedDevice()", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L79", + "community": 80, + "norm_label": "createprotecteddevice()", + "id": "db_protecteddevices_createprotecteddevice" + }, + { + "label": "confirmProtectedDeviceInstalled()", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L99", + "community": 80, + "norm_label": "confirmprotecteddeviceinstalled()", + "id": "db_protecteddevices_confirmprotecteddeviceinstalled" + }, + { + "label": "revokeProtectedDevice()", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L120", + "community": 80, + "norm_label": "revokeprotecteddevice()", + "id": "db_protecteddevices_revokeprotecteddevice" + }, + { + "label": "handshakeProtectedDevice()", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L146", + "community": 80, + "norm_label": "handshakeprotecteddevice()", + "id": "db_protecteddevices_handshakeprotecteddevice" + }, + { + "label": "getDeviceBlocklistMode()", + "file_type": "code", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L178", + "community": 80, + "norm_label": "getdeviceblocklistmode()", + "id": "db_protecteddevices_getdeviceblocklistmode" + }, + { + "label": "protectionStateLog.ts", + "file_type": "code", + "source_file": "backend/server/db/protectionStateLog.ts", "source_location": "L1", - "id": "ops_business_plan_nbank_businessplan_rebreak", - "community": 909, - "norm_label": "businessplan rebreak" + "community": 9, + "norm_label": "protectionstatelog.ts", + "id": "backend_server_db_protectionstatelog_ts" }, { - "label": "Antrag NBank Niedersachsen \u2014 Gr\u00fcndungskredit (Zielvolumen: 75.000 \u20ac)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L2", - "id": "ops_business_plan_nbank_antrag_nbank_niedersachsen_gr\u00fcndungskredit_zielvolumen_75_000", - "community": 909, - "norm_label": "antrag nbank niedersachsen \u2014 grundungskredit (zielvolumen: 75.000 \u20ac)" + "label": "ProtectionSource", + "file_type": "code", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L5", + "community": 9, + "norm_label": "protectionsource", + "id": "db_protectionstatelog_protectionsource" }, { - "label": "Inhaltsverzeichnis", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L12", - "id": "ops_business_plan_nbank_inhaltsverzeichnis", - "community": 909, - "norm_label": "inhaltsverzeichnis" + "label": "getLastProtectionEvent()", + "file_type": "code", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L18", + "community": 9, + "norm_label": "getlastprotectionevent()", + "id": "db_protectionstatelog_getlastprotectionevent" }, { - "label": "1. Executive Summary", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L32", - "id": "ops_business_plan_nbank_1_executive_summary", - "community": 873, - "norm_label": "1. executive summary" + "label": "appendProtectionEvent()", + "file_type": "code", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L30", + "community": 9, + "norm_label": "appendprotectionevent()", + "id": "db_protectionstatelog_appendprotectionevent" }, { - "label": "2. Unternehmen", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L54", - "id": "ops_business_plan_nbank_2_unternehmen", - "community": 894, - "norm_label": "2. unternehmen" + "label": "appendProtectionEventDeduped()", + "file_type": "code", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L51", + "community": 9, + "norm_label": "appendprotectioneventdeduped()", + "id": "db_protectionstatelog_appendprotectioneventdeduped" }, { - "label": "2.1 Gr\u00fcnder", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L56", - "id": "ops_business_plan_nbank_2_1_gr\u00fcnder", - "community": 894, - "norm_label": "2.1 grunder" + "label": "ProtectionCoverage", + "file_type": "code", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L67", + "community": 9, + "norm_label": "protectioncoverage", + "id": "db_protectionstatelog_protectioncoverage" }, { - "label": "2.2 Sitz & Rechtsform", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L66", - "id": "ops_business_plan_nbank_2_2_sitz_rechtsform", - "community": 894, - "norm_label": "2.2 sitz & rechtsform" + "label": "computeProtectionCoverage()", + "file_type": "code", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L90", + "community": 9, + "norm_label": "computeprotectioncoverage()", + "id": "db_protectionstatelog_computeprotectioncoverage" }, { - "label": "2.3 Vision", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L78", - "id": "ops_business_plan_nbank_2_3_vision", - "community": 894, - "norm_label": "2.3 vision" + "label": "utcDayStart()", + "file_type": "code", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L213", + "community": 9, + "norm_label": "utcdaystart()", + "id": "db_protectionstatelog_utcdaystart" }, { - "label": "2.4 Mission", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L82", - "id": "ops_business_plan_nbank_2_4_mission", - "community": 894, - "norm_label": "2.4 mission" + "label": "community.ts", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L1", + "community": 4, + "norm_label": "community.ts", + "id": "backend_server_db_community_ts" }, { - "label": "2.5 Werte / Leitplanken", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L89", - "id": "ops_business_plan_nbank_2_5_werte_leitplanken", - "community": 894, - "norm_label": "2.5 werte / leitplanken" + "label": "getPosts()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L5", + "community": 4, + "norm_label": "getposts()", + "id": "db_community_getposts" }, { - "label": "3. Produkt & Technologie", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L98", - "id": "ops_business_plan_nbank_3_produkt_technologie", - "community": 875, - "norm_label": "3. produkt & technologie" - }, - { - "label": "3.1 Produkt-\u00dcberblick", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L100", - "id": "ops_business_plan_nbank_3_1_produkt_\u00fcberblick", - "community": 875, - "norm_label": "3.1 produkt-uberblick" - }, - { - "label": "3.2 Ger\u00e4teschutz (Layer 1)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L111", - "id": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1", - "community": 875, - "norm_label": "3.2 gerateschutz (layer 1)" - }, - { - "label": "iOS", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L113", - "id": "ops_business_plan_nbank_ios", - "community": 875, - "norm_label": "ios" - }, - { - "label": "Android", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L119", - "id": "ops_business_plan_nbank_android", - "community": 875, - "norm_label": "android" - }, - { - "label": "macOS", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L124", - "id": "ops_business_plan_nbank_macos", - "community": 875, - "norm_label": "macos" - }, - { - "label": "Custom-Domains (User-pflegbar)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L128", - "id": "ops_business_plan_nbank_custom_domains_user_pflegbar", - "community": 875, - "norm_label": "custom-domains (user-pflegbar)" - }, - { - "label": "3.3 Mail-Schutz (Layer 2)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L134", - "id": "ops_business_plan_nbank_3_3_mail_schutz_layer_2", - "community": 875, - "norm_label": "3.3 mail-schutz (layer 2)" - }, - { - "label": "3.4 Lyra \u2014 KI-Coach (Layer 3)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L142", - "id": "ops_business_plan_nbank_3_4_lyra_ki_coach_layer_3", - "community": 875, - "norm_label": "3.4 lyra \u2014 ki-coach (layer 3)" - }, - { - "label": "3.5 Streak, Community, Onboarding", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L150", - "id": "ops_business_plan_nbank_3_5_streak_community_onboarding", - "community": 875, - "norm_label": "3.5 streak, community, onboarding" - }, - { - "label": "3.6 Rebreak Magic \u2014 Selbstbindungs-Modus (optional)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L156", - "id": "ops_business_plan_nbank_3_6_rebreak_magic_selbstbindungs_modus_optional", - "community": 875, - "norm_label": "3.6 rebreak magic \u2014 selbstbindungs-modus (optional)" - }, - { - "label": "3.7 Multi-Device", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L166", - "id": "ops_business_plan_nbank_3_7_multi_device", - "community": 875, - "norm_label": "3.7 multi-device" - }, - { - "label": "3.8 Tech-Stack (Kurzfassung)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L171", - "id": "ops_business_plan_nbank_3_8_tech_stack_kurzfassung", - "community": 875, - "norm_label": "3.8 tech-stack (kurzfassung)" - }, - { - "label": "3.9 Plattform-Coverage-Strategie", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L185", - "id": "ops_business_plan_nbank_3_9_plattform_coverage_strategie", - "community": 875, - "norm_label": "3.9 plattform-coverage-strategie" - }, - { - "label": "4. Problem & Markt", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L191", - "id": "ops_business_plan_nbank_4_problem_markt", - "community": 882, - "norm_label": "4. problem & markt" - }, - { - "label": "4.1 Pr\u00e4valenz Gl\u00fccksspielsucht in Deutschland", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L193", - "id": "ops_business_plan_nbank_4_1_pr\u00e4valenz_gl\u00fccksspielsucht_in_deutschland", - "community": 882, - "norm_label": "4.1 pravalenz glucksspielsucht in deutschland" - }, - { - "label": "4.2 Strukturelle Versorgungsl\u00fccken", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L206", - "id": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken", - "community": 882, - "norm_label": "4.2 strukturelle versorgungslucken" - }, - { - "label": "L\u00fccke 1 \u2014 Offshore-Schwarzmarkt nach OASIS-Sperrung", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L208", - "id": "ops_business_plan_nbank_l\u00fccke_1_offshore_schwarzmarkt_nach_oasis_sperrung", - "community": 882, - "norm_label": "lucke 1 \u2014 offshore-schwarzmarkt nach oasis-sperrung" - }, - { - "label": "L\u00fccke 2 \u2014 Werbe-Druck via E-Mail", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L215", - "id": "ops_business_plan_nbank_l\u00fccke_2_werbe_druck_via_e_mail", - "community": 882, - "norm_label": "lucke 2 \u2014 werbe-druck via e-mail" - }, - { - "label": "L\u00fccke 3 \u2014 Zeit zwischen Beratungsterminen", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L222", - "id": "ops_business_plan_nbank_l\u00fccke_3_zeit_zwischen_beratungsterminen", - "community": 882, - "norm_label": "lucke 3 \u2014 zeit zwischen beratungsterminen" - }, - { - "label": "L\u00fccke 4 \u2014 Ger\u00e4te-Bypass", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L229", - "id": "ops_business_plan_nbank_l\u00fccke_4_ger\u00e4te_bypass", - "community": 882, - "norm_label": "lucke 4 \u2014 gerate-bypass" - }, - { - "label": "4.3 Marktgr\u00f6\u00dfe (Top-Down + Bottom-Up)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L234", - "id": "ops_business_plan_nbank_4_3_marktgr\u00f6sse_top_down_bottom_up", - "community": 882, - "norm_label": "4.3 marktgro\u00dfe (top-down + bottom-up)" - }, - { - "label": "Top-Down (Deutschland)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "label": "getPostById()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", "source_location": "L236", - "id": "ops_business_plan_nbank_top_down_deutschland", - "community": 882, - "norm_label": "top-down (deutschland)" + "community": 4, + "norm_label": "getpostbyid()", + "id": "db_community_getpostbyid" }, { - "label": "Bottom-Up \u2014 Conversion-Annahmen", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L244", - "id": "ops_business_plan_nbank_bottom_up_conversion_annahmen", - "community": 882, - "norm_label": "bottom-up \u2014 conversion-annahmen" - }, - { - "label": "4.4 Regulatorisches Fenster", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "label": "createPost()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", "source_location": "L254", - "id": "ops_business_plan_nbank_4_4_regulatorisches_fenster", - "community": 882, - "norm_label": "4.4 regulatorisches fenster" + "community": 127, + "norm_label": "createpost()", + "id": "db_community_createpost" }, { - "label": "5. Zielgruppe", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L261", - "id": "ops_business_plan_nbank_5_zielgruppe", - "community": 901, - "norm_label": "5. zielgruppe" + "label": "deleteUserPosts()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L288", + "community": 47, + "norm_label": "deleteuserposts()", + "id": "db_community_deleteuserposts" }, { - "label": "5.1 Kernpersona \u2014 \u201eMarcus, 38\"", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L263", - "id": "ops_business_plan_nbank_5_1_kernpersona_marcus_38", - "community": 901, - "norm_label": "5.1 kernpersona \u2014 \u201emarcus, 38\"" + "label": "getPostLike()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L295", + "community": 4, + "norm_label": "getpostlike()", + "id": "db_community_getpostlike" }, { - "label": "5.2 Sekund\u00e4rpersona \u2014 Angeh\u00f6rige \u201eSandra, 41\"", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L277", - "id": "ops_business_plan_nbank_5_2_sekund\u00e4rpersona_angeh\u00f6rige_sandra_41", - "community": 901, - "norm_label": "5.2 sekundarpersona \u2014 angehorige \u201esandra, 41\"" + "label": "setPostLike()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L303", + "community": 4, + "norm_label": "setpostlike()", + "id": "db_community_setpostlike" }, { - "label": "5.3 Terti\u00e4re Persona \u2014 B2B-Multiplikator \u201eFachstellenleiter Dr. K.\" (Phase 2)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L285", - "id": "ops_business_plan_nbank_5_3_terti\u00e4re_persona_b2b_multiplikator_fachstellenleiter_dr_k_phase_2", - "community": 901, - "norm_label": "5.3 tertiare persona \u2014 b2b-multiplikator \u201efachstellenleiter dr. k.\" (phase 2)" + "label": "deletePostLike()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L316", + "community": 4, + "norm_label": "deletepostlike()", + "id": "db_community_deletepostlike" }, { - "label": "6. Wettbewerb", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L296", - "id": "ops_business_plan_nbank_6_wettbewerb", - "community": 873, - "norm_label": "6. wettbewerb" + "label": "countPostLikes()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L323", + "community": 4, + "norm_label": "countpostlikes()", + "id": "db_community_countpostlikes" }, { - "label": "6.1 Wettbewerbs-Matrix (verifiziert Stand 2026)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L298", - "id": "ops_business_plan_nbank_6_1_wettbewerbs_matrix_verifiziert_stand_2026", - "community": 873, - "norm_label": "6.1 wettbewerbs-matrix (verifiziert stand 2026)" + "label": "syncPostLikeCounts()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L335", + "community": 4, + "norm_label": "syncpostlikecounts()", + "id": "db_community_syncpostlikecounts" }, { - "label": "6.2 USP-Analyse Rebreak", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L310", - "id": "ops_business_plan_nbank_6_2_usp_analyse_rebreak", - "community": 873, - "norm_label": "6.2 usp-analyse rebreak" + "label": "getCommentsByPost()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L349", + "community": 4, + "norm_label": "getcommentsbypost()", + "id": "db_community_getcommentsbypost" }, { - "label": "6.3 Was Rebreak bewusst NICHT macht", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L322", - "id": "ops_business_plan_nbank_6_3_was_rebreak_bewusst_nicht_macht", - "community": 873, - "norm_label": "6.3 was rebreak bewusst nicht macht" + "label": "createComment()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L380", + "community": 4, + "norm_label": "createcomment()", + "id": "db_community_createcomment" }, { - "label": "7. Gesch\u00e4ftsmodell", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L330", - "id": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell", - "community": 899, - "norm_label": "7. geschaftsmodell" + "label": "getCommentLike()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L408", + "community": 4, + "norm_label": "getcommentlike()", + "id": "db_community_getcommentlike" }, { - "label": "7.1 Erl\u00f6smodell (Stand 2026-05-29)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L332", - "id": "ops_business_plan_nbank_7_1_erl\u00f6smodell_stand_2026_05_29", - "community": 899, - "norm_label": "7.1 erlosmodell (stand 2026-05-29)" - }, - { - "label": "7.2 Erl\u00f6squellen mittel- bis langfristig", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L344", - "id": "ops_business_plan_nbank_7_2_erl\u00f6squellen_mittel_bis_langfristig", - "community": 899, - "norm_label": "7.2 erlosquellen mittel- bis langfristig" - }, - { - "label": "7.3 Unit-Economics (Sch\u00e4tzung)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L351", - "id": "ops_business_plan_nbank_7_3_unit_economics_sch\u00e4tzung", - "community": 899, - "norm_label": "7.3 unit-economics (schatzung)" - }, - { - "label": "7.4 Pricing-Disziplin", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L366", - "id": "ops_business_plan_nbank_7_4_pricing_disziplin", - "community": 899, - "norm_label": "7.4 pricing-disziplin" - }, - { - "label": "8. Marketing & Vertrieb", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L374", - "id": "ops_business_plan_nbank_8_marketing_vertrieb", - "community": 895, - "norm_label": "8. marketing & vertrieb" - }, - { - "label": "8.1 Vertriebs-Strategie auf einen Blick", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L376", - "id": "ops_business_plan_nbank_8_1_vertriebs_strategie_auf_einen_blick", - "community": 895, - "norm_label": "8.1 vertriebs-strategie auf einen blick" - }, - { - "label": "8.2 B2B-Outreach (Hauptkanal Jahr 1)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L387", - "id": "ops_business_plan_nbank_8_2_b2b_outreach_hauptkanal_jahr_1", - "community": 895, - "norm_label": "8.2 b2b-outreach (hauptkanal jahr 1)" - }, - { - "label": "8.3 Content-Strategie (B2C)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L404", - "id": "ops_business_plan_nbank_8_3_content_strategie_b2c", - "community": 895, - "norm_label": "8.3 content-strategie (b2c)" - }, - { - "label": "8.4 Brand-Position", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "label": "createCommentLike()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", "source_location": "L415", - "id": "ops_business_plan_nbank_8_4_brand_position", - "community": 895, - "norm_label": "8.4 brand-position" + "community": 4, + "norm_label": "createcommentlike()", + "id": "db_community_createcommentlike" }, { - "label": "8.5 PR-Anker 2026/27", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L423", - "id": "ops_business_plan_nbank_8_5_pr_anker_2026_27", - "community": 895, - "norm_label": "8.5 pr-anker 2026/27" + "label": "deleteCommentLike()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L420", + "community": 4, + "norm_label": "deletecommentlike()", + "id": "db_community_deletecommentlike" }, { - "label": "9. Organisation & Team", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "label": "getCommentLikeCount()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L427", + "community": 4, + "norm_label": "getcommentlikecount()", + "id": "db_community_getcommentlikecount" + }, + { + "label": "syncCommentLikeCount()", + "file_type": "code", + "source_file": "backend/server/db/community.ts", + "source_location": "L432", + "community": 4, + "norm_label": "synccommentlikecount()", + "id": "db_community_synccommentlikecount" + }, + { + "label": "admin.ts", + "file_type": "code", + "source_file": "backend/server/db/admin.ts", + "source_location": "L1", + "community": 33, + "norm_label": "admin.ts", + "id": "backend_server_db_admin_ts" + }, + { + "label": "isAdminUser()", + "file_type": "code", + "source_file": "backend/server/db/admin.ts", + "source_location": "L7", + "community": 33, + "norm_label": "isadminuser()", + "id": "db_admin_isadminuser" + }, + { + "label": "curatedDomains.ts", + "file_type": "code", + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L1", + "community": 39, + "norm_label": "curateddomains.ts", + "id": "backend_server_db_curateddomains_ts" + }, + { + "label": "CuratedDomainStatus", + "file_type": "code", + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L3", + "community": 39, + "norm_label": "curateddomainstatus", + "id": "db_curateddomains_curateddomainstatus" + }, + { + "label": "suggestCuratedDomain()", + "file_type": "code", + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L9", + "community": 39, + "norm_label": "suggestcurateddomain()", + "id": "db_curateddomains_suggestcurateddomain" + }, + { + "label": "getCuratedDomains()", + "file_type": "code", + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L48", + "community": 39, + "norm_label": "getcurateddomains()", + "id": "db_curateddomains_getcurateddomains" + }, + { + "label": "decideCuratedDomain()", + "file_type": "code", + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L74", + "community": 39, + "norm_label": "decidecurateddomain()", + "id": "db_curateddomains_decidecurateddomain" + }, + { + "label": "chat.ts", + "file_type": "code", + "source_file": "backend/server/db/chat.ts", + "source_location": "L1", + "community": 181, + "norm_label": "chat.ts", + "id": "backend_server_db_chat_ts" + }, + { + "label": "getChatMessages()", + "file_type": "code", + "source_file": "backend/server/db/chat.ts", + "source_location": "L5", + "community": 181, + "norm_label": "getchatmessages()", + "id": "db_chat_getchatmessages" + }, + { + "label": "createChatMessage()", + "file_type": "code", + "source_file": "backend/server/db/chat.ts", + "source_location": "L15", + "community": 4, + "norm_label": "createchatmessage()", + "id": "db_chat_createchatmessage" + }, + { + "label": "sendDirectMessage()", + "file_type": "code", + "source_file": "backend/server/db/chat.ts", + "source_location": "L25", + "community": 181, + "norm_label": "senddirectmessage()", + "id": "db_chat_senddirectmessage" + }, + { + "label": "getDmHistory()", + "file_type": "code", + "source_file": "backend/server/db/chat.ts", + "source_location": "L108", + "community": 181, + "norm_label": "getdmhistory()", + "id": "db_chat_getdmhistory" + }, + { + "label": "toggleDmReaction()", + "file_type": "code", + "source_file": "backend/server/db/chat.ts", + "source_location": "L156", + "community": 181, + "norm_label": "toggledmreaction()", + "id": "db_chat_toggledmreaction" + }, + { + "label": "softDeleteDmMessage()", + "file_type": "code", + "source_file": "backend/server/db/chat.ts", + "source_location": "L188", + "community": 181, + "norm_label": "softdeletedmmessage()", + "id": "db_chat_softdeletedmmessage" + }, + { + "label": "markDmsAsRead()", + "file_type": "code", + "source_file": "backend/server/db/chat.ts", + "source_location": "L197", + "community": 181, + "norm_label": "markdmsasread()", + "id": "db_chat_markdmsasread" + }, + { + "label": "DmConversationRow", + "file_type": "code", + "source_file": "backend/server/db/chat.ts", + "source_location": "L205", + "community": 181, + "norm_label": "dmconversationrow", + "id": "db_chat_dmconversationrow" + }, + { + "label": "getDmConversations()", + "file_type": "code", + "source_file": "backend/server/db/chat.ts", + "source_location": "L215", + "community": 181, + "norm_label": "getdmconversations()", + "id": "db_chat_getdmconversations" + }, + { + "label": "countUnreadDms()", + "file_type": "code", + "source_file": "backend/server/db/chat.ts", + "source_location": "L241", + "community": 181, + "norm_label": "countunreaddms()", + "id": "db_chat_countunreaddms" + }, + { + "label": "device-protection.ts", + "file_type": "code", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L1", + "community": 33, + "norm_label": "device-protection.ts", + "id": "backend_server_db_device_protection_ts" + }, + { + "label": "ProtectionType", + "file_type": "code", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L5", + "community": 33, + "norm_label": "protectiontype", + "id": "db_device_protection_protectiontype" + }, + { + "label": "PROTECTION_TYPES", + "file_type": "code", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L7", + "community": 33, + "norm_label": "protection_types", + "id": "db_device_protection_protection_types" + }, + { + "label": "DeviceProtectionStateRecord", + "file_type": "code", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L13", + "community": 33, + "norm_label": "deviceprotectionstaterecord", + "id": "db_device_protection_deviceprotectionstaterecord" + }, + { + "label": "upsertDeviceProtectionState()", + "file_type": "code", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L33", + "community": 33, + "norm_label": "upsertdeviceprotectionstate()", + "id": "db_device_protection_upsertdeviceprotectionstate" + }, + { + "label": "getDeviceProtectionState()", + "file_type": "code", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L97", + "community": 33, + "norm_label": "getdeviceprotectionstate()", + "id": "db_device_protection_getdeviceprotectionstate" + }, + { + "label": "listDeviceProtectionStates()", + "file_type": "code", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L111", + "community": 33, + "norm_label": "listdeviceprotectionstates()", + "id": "db_device_protection_listdeviceprotectionstates" + }, + { + "label": "cooldown.ts", + "file_type": "code", + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L1", + "community": 33, + "norm_label": "cooldown.ts", + "id": "backend_server_db_cooldown_ts" + }, + { + "label": "getActiveCooldown()", + "file_type": "code", + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L8", + "community": 33, + "norm_label": "getactivecooldown()", + "id": "db_cooldown_getactivecooldown" + }, + { + "label": "createCooldown()", + "file_type": "code", + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L20", + "community": 33, + "norm_label": "createcooldown()", + "id": "db_cooldown_createcooldown" + }, + { + "label": "resolveCooldown()", + "file_type": "code", + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L37", + "community": 33, + "norm_label": "resolvecooldown()", + "id": "db_cooldown_resolvecooldown" + }, + { + "label": "cancelCooldown()", + "file_type": "code", + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L45", + "community": 33, + "norm_label": "cancelcooldown()", + "id": "db_cooldown_cancelcooldown" + }, + { + "label": "domains.ts", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L1", + "community": 39, + "norm_label": "domains.ts", + "id": "backend_server_db_domains_ts" + }, + { + "label": "CustomDomainType", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L14", + "community": 39, + "norm_label": "customdomaintype", + "id": "db_domains_customdomaintype" + }, + { + "label": "CUSTOM_DOMAIN_TYPES", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L16", + "community": 39, + "norm_label": "custom_domain_types", + "id": "db_domains_custom_domain_types" + }, + { + "label": "getUserCustomDomains()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L24", + "community": 39, + "norm_label": "getusercustomdomains()", + "id": "db_domains_getusercustomdomains" + }, + { + "label": "countActiveCustomDomains()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L52", + "community": 39, + "norm_label": "countactivecustomdomains()", + "id": "db_domains_countactivecustomdomains" + }, + { + "label": "countActiveCustomDomainsSplit()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L66", + "community": 39, + "norm_label": "countactivecustomdomainssplit()", + "id": "db_domains_countactivecustomdomainssplit" + }, + { + "label": "addUserCustomDomain()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L85", + "community": 39, + "norm_label": "addusercustomdomain()", + "id": "db_domains_addusercustomdomain" + }, + { + "label": "getCustomMailDisplayNames()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L107", + "community": 39, + "norm_label": "getcustommaildisplaynames()", + "id": "db_domains_getcustommaildisplaynames" + }, + { + "label": "getMailDisplayNamePatterns()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L131", + "community": 39, + "norm_label": "getmaildisplaynamepatterns()", + "id": "db_domains_getmaildisplaynamepatterns" + }, + { + "label": "deleteUserCustomDomain()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L169", + "community": 39, + "norm_label": "deleteusercustomdomain()", + "id": "db_domains_deleteusercustomdomain" + }, + { + "label": "deleteAllUserCustomDomains()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L188", + "community": 47, + "norm_label": "deleteallusercustomdomains()", + "id": "db_domains_deleteallusercustomdomains" + }, + { + "label": "SubmissionPlan", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L204", + "community": 39, + "norm_label": "submissionplan", + "id": "db_domains_submissionplan" + }, + { + "label": "submitDomainForReview()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L206", + "community": 4, + "norm_label": "submitdomainforreview()", + "id": "db_domains_submitdomainforreview" + }, + { + "label": "castDomainVote()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L241", + "community": 4, + "norm_label": "castdomainvote()", + "id": "db_domains_castdomainvote" + }, + { + "label": "approveDomainSubmissionTx()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L287", + "community": 39, + "norm_label": "approvedomainsubmissiontx()", + "id": "db_domains_approvedomainsubmissiontx" + }, + { + "label": "adminApproveSubmission()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L309", + "community": 4, + "norm_label": "adminapprovesubmission()", + "id": "db_domains_adminapprovesubmission" + }, + { + "label": "adminRejectSubmission()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L381", + "community": 39, + "norm_label": "adminrejectsubmission()", + "id": "db_domains_adminrejectsubmission" + }, + { + "label": "PendingSubmissionRow", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", "source_location": "L431", - "id": "ops_business_plan_nbank_9_organisation_team", - "community": 902, - "norm_label": "9. organisation & team" + "community": 39, + "norm_label": "pendingsubmissionrow", + "id": "db_domains_pendingsubmissionrow" }, { - "label": "9.1 Status Quo (29.05.2026)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L433", - "id": "ops_business_plan_nbank_9_1_status_quo_29_05_2026", - "community": 902, - "norm_label": "9.1 status quo (29.05.2026)" + "label": "getPendingSubmissions()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L465", + "community": 39, + "norm_label": "getpendingsubmissions()", + "id": "db_domains_getpendingsubmissions" }, { - "label": "9.2 Geplante Hires (Jahr 2, nach F\u00f6rderzusage)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L446", - "id": "ops_business_plan_nbank_9_2_geplante_hires_jahr_2_nach_f\u00f6rderzusage", - "community": 902, - "norm_label": "9.2 geplante hires (jahr 2, nach forderzusage)" + "label": "getActiveBlocklistCount()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L511", + "community": 39, + "norm_label": "getactiveblocklistcount()", + "id": "db_domains_getactiveblocklistcount" }, { - "label": "9.3 Externe Partner", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L457", - "id": "ops_business_plan_nbank_9_3_externe_partner", - "community": 902, - "norm_label": "9.3 externe partner" + "label": "getActiveBlocklistDomains()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L516", + "community": 39, + "norm_label": "getactiveblocklistdomains()", + "id": "db_domains_getactiveblocklistdomains" }, { - "label": "10. SWOT-Analyse", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L470", - "id": "ops_business_plan_nbank_10_swot_analyse", - "community": 873, - "norm_label": "10. swot-analyse" + "label": "isBlocklistedDomain()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L524", + "community": 39, + "norm_label": "isblocklisteddomain()", + "id": "db_domains_isblocklisteddomain" }, { - "label": "Strengths", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L472", - "id": "ops_business_plan_nbank_strengths", - "community": 873, - "norm_label": "strengths" + "label": "getBlocklistedDomainsSet()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L542", + "community": 6, + "norm_label": "getblocklisteddomainsset()", + "id": "db_domains_getblocklisteddomainsset" }, { - "label": "Weaknesses", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L480", - "id": "ops_business_plan_nbank_weaknesses", - "community": 873, - "norm_label": "weaknesses" + "label": "upsertBlocklistDomains()", + "file_type": "code", + "source_file": "backend/server/db/domains.ts", + "source_location": "L596", + "community": 39, + "norm_label": "upsertblocklistdomains()", + "id": "db_domains_upsertblocklistdomains" }, { - "label": "Opportunities", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L488", - "id": "ops_business_plan_nbank_opportunities", - "community": 873, - "norm_label": "opportunities" + "label": "urge.ts", + "file_type": "code", + "source_file": "backend/server/db/urge.ts", + "source_location": "L1", + "community": 47, + "norm_label": "urge.ts", + "id": "backend_server_db_urge_ts" }, { - "label": "Threats", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L495", - "id": "ops_business_plan_nbank_threats", - "community": 873, - "norm_label": "threats" + "label": "Emotion", + "file_type": "code", + "source_file": "backend/server/db/urge.ts", + "source_location": "L3", + "community": 47, + "norm_label": "emotion", + "id": "db_urge_emotion" }, { - "label": "11. Roadmap 24 Monate", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L505", - "id": "ops_business_plan_nbank_11_roadmap_24_monate", - "community": 885, - "norm_label": "11. roadmap 24 monate" + "label": "getRecentUrgeLogs()", + "file_type": "code", + "source_file": "backend/server/db/urge.ts", + "source_location": "L5", + "community": 47, + "norm_label": "getrecenturgelogs()", + "id": "db_urge_getrecenturgelogs" }, { - "label": "11.1 Visuelle Roadmap", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L507", - "id": "ops_business_plan_nbank_11_1_visuelle_roadmap", - "community": 885, - "norm_label": "11.1 visuelle roadmap" + "label": "createUrgeLog()", + "file_type": "code", + "source_file": "backend/server/db/urge.ts", + "source_location": "L21", + "community": 47, + "norm_label": "createurgelog()", + "id": "db_urge_createurgelog" }, { - "label": "11.2 Quartals-Detail", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L515", - "id": "ops_business_plan_nbank_11_2_quartals_detail", - "community": 885, - "norm_label": "11.2 quartals-detail" + "label": "deleteUserUrgeLogs()", + "file_type": "code", + "source_file": "backend/server/db/urge.ts", + "source_location": "L40", + "community": 47, + "norm_label": "deleteuserurgelogs()", + "id": "db_urge_deleteuserurgelogs" }, { - "label": "Q2/2026 (jetzt, vor F\u00f6rderung)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L517", - "id": "ops_business_plan_nbank_q2_2026_jetzt_vor_f\u00f6rderung", - "community": 885, - "norm_label": "q2/2026 (jetzt, vor forderung)" + "label": "moderation.ts", + "file_type": "code", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L1", + "community": 385, + "norm_label": "moderation.ts", + "id": "backend_server_db_moderation_ts" }, { - "label": "Q3/2026 (F\u00f6rderzusage angenommen)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L523", - "id": "ops_business_plan_nbank_q3_2026_f\u00f6rderzusage_angenommen", - "community": 885, - "norm_label": "q3/2026 (forderzusage angenommen)" + "label": "ModerationItemType", + "file_type": "code", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L18", + "community": 385, + "norm_label": "moderationitemtype", + "id": "db_moderation_moderationitemtype" }, { - "label": "Q4/2026", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L530", - "id": "ops_business_plan_nbank_q4_2026", - "community": 885, - "norm_label": "q4/2026" + "label": "ModerationQueueItem", + "file_type": "code", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L20", + "community": 385, + "norm_label": "moderationqueueitem", + "id": "db_moderation_moderationqueueitem" }, { - "label": "Q1/2027", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L536", - "id": "ops_business_plan_nbank_q1_2027", - "community": 885, - "norm_label": "q1/2027" + "label": "ListQueueOpts", + "file_type": "code", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L37", + "community": 385, + "norm_label": "listqueueopts", + "id": "db_moderation_listqueueopts" }, { - "label": "Q2/2027", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L541", - "id": "ops_business_plan_nbank_q2_2027", - "community": 885, - "norm_label": "q2/2027" + "label": "listModerationQueue()", + "file_type": "code", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L50", + "community": 385, + "norm_label": "listmoderationqueue()", + "id": "db_moderation_listmoderationqueue" }, { - "label": "Q3/2027", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L546", - "id": "ops_business_plan_nbank_q3_2027", - "community": 885, - "norm_label": "q3/2027" + "label": "dismissModerationItem()", + "file_type": "code", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L168", + "community": 385, + "norm_label": "dismissmoderationitem()", + "id": "db_moderation_dismissmoderationitem" }, { - "label": "Q4/2027", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L550", - "id": "ops_business_plan_nbank_q4_2027", - "community": 885, - "norm_label": "q4/2027" + "label": "deleteModerationItem()", + "file_type": "code", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L223", + "community": 385, + "norm_label": "deletemoderationitem()", + "id": "db_moderation_deletemoderationitem" }, { - "label": "12. 3-Jahres-Finanzplan", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L557", - "id": "ops_business_plan_nbank_12_3_jahres_finanzplan", - "community": 897, - "norm_label": "12. 3-jahres-finanzplan" + "label": "banUserFromModerationItem()", + "file_type": "code", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L294", + "community": 385, + "norm_label": "banuserfrommoderationitem()", + "id": "db_moderation_banuserfrommoderationitem" }, { - "label": "12.1 Annahmen-Block", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L562", - "id": "ops_business_plan_nbank_12_1_annahmen_block", - "community": 897, - "norm_label": "12.1 annahmen-block" + "label": "profile.ts", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L1", + "community": 33, + "norm_label": "profile.ts", + "id": "backend_server_db_profile_ts" }, { - "label": "12.2 GuV-\u00dcbersicht (Plan)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L573", - "id": "ops_business_plan_nbank_12_2_guv_\u00fcbersicht_plan", - "community": 897, - "norm_label": "12.2 guv-ubersicht (plan)" + "label": "getProfile()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L3", + "community": 6, + "norm_label": "getprofile()", + "id": "db_profile_getprofile" }, { - "label": "12.3 Liquidit\u00e4ts-Rohbild", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L600", - "id": "ops_business_plan_nbank_12_3_liquidit\u00e4ts_rohbild", - "community": 897, - "norm_label": "12.3 liquiditats-rohbild" + "label": "updateProfile()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L8", + "community": 33, + "norm_label": "updateprofile()", + "id": "db_profile_updateprofile" }, { - "label": "12.4 Break-Even-Logik", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L612", - "id": "ops_business_plan_nbank_12_4_break_even_logik", - "community": 897, - "norm_label": "12.4 break-even-logik" + "label": "deleteProfile()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L20", + "community": 47, + "norm_label": "deleteprofile()", + "id": "db_profile_deleteprofile" }, { - "label": "13. Finanzierungsbedarf 75.000 \u20ac", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L619", - "id": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000", - "community": 898, - "norm_label": "13. finanzierungsbedarf 75.000 \u20ac" + "label": "ONBOARDING_STEPS", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L37", + "community": 33, + "norm_label": "onboarding_steps", + "id": "db_profile_onboarding_steps" }, { - "label": "13.1 Verwendungsplan", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L621", - "id": "ops_business_plan_nbank_13_1_verwendungsplan", - "community": 898, - "norm_label": "13.1 verwendungsplan" + "label": "OnboardingStep", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L47", + "community": 33, + "norm_label": "onboardingstep", + "id": "db_profile_onboardingstep" }, { - "label": "13.2 Eigenkapital-Anteil", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L634", - "id": "ops_business_plan_nbank_13_2_eigenkapital_anteil", - "community": 898, - "norm_label": "13.2 eigenkapital-anteil" + "label": "isOnboardingStep()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L49", + "community": 33, + "norm_label": "isonboardingstep()", + "id": "db_profile_isonboardingstep" }, { - "label": "13.3 Warum kein Beteiligungskapital in Phase 1", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L643", - "id": "ops_business_plan_nbank_13_3_warum_kein_beteiligungskapital_in_phase_1", - "community": 898, - "norm_label": "13.3 warum kein beteiligungskapital in phase 1" + "label": "setOnboardingStep()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L53", + "community": 33, + "norm_label": "setonboardingstep()", + "id": "db_profile_setonboardingstep" }, { - "label": "13.4 Tilgungsf\u00e4higkeit", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L649", - "id": "ops_business_plan_nbank_13_4_tilgungsf\u00e4higkeit", - "community": 898, - "norm_label": "13.4 tilgungsfahigkeit" + "label": "DemographicsFields", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L64", + "community": 33, + "norm_label": "demographicsfields", + "id": "db_profile_demographicsfields" }, { - "label": "14. Risiken & Mitigation", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L659", - "id": "ops_business_plan_nbank_14_risiken_mitigation", - "community": 873, - "norm_label": "14. risiken & mitigation" + "label": "DemographicsPatch", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L78", + "community": 33, + "norm_label": "demographicspatch", + "id": "db_profile_demographicspatch" }, { - "label": "14.1 Risiko-Matrix", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "label": "updateDemographics()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L84", + "community": 33, + "norm_label": "updatedemographics()", + "id": "db_profile_updatedemographics" + }, + { + "label": "withdrawDemographics()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L120", + "community": 33, + "norm_label": "withdrawdemographics()", + "id": "db_profile_withdrawdemographics" + }, + { + "label": "getDemographics()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L142", + "community": 33, + "norm_label": "getdemographics()", + "id": "db_profile_getdemographics" + }, + { + "label": "tryAwardProTrial()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L186", + "community": 33, + "norm_label": "tryawardprotrial()", + "id": "db_profile_tryawardprotrial" + }, + { + "label": "ALLOWED_LYRA_VOICE_IDS", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L246", + "community": 33, + "norm_label": "allowed_lyra_voice_ids", + "id": "db_profile_allowed_lyra_voice_ids" + }, + { + "label": "LyraVoiceId", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L252", + "community": 33, + "norm_label": "lyravoiceid", + "id": "db_profile_lyravoiceid" + }, + { + "label": "isAllowedLyraVoiceId()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L254", + "community": 33, + "norm_label": "isallowedlyravoiceid()", + "id": "db_profile_isallowedlyravoiceid" + }, + { + "label": "setLyraVoiceId()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L258", + "community": 33, + "norm_label": "setlyravoiceid()", + "id": "db_profile_setlyravoiceid" + }, + { + "label": "dismissDigaBanner()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L269", + "community": 33, + "norm_label": "dismissdigabanner()", + "id": "db_profile_dismissdigabanner" + }, + { + "label": "recordInstallEvent()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L277", + "community": 33, + "norm_label": "recordinstallevent()", + "id": "db_profile_recordinstallevent" + }, + { + "label": "getFollowingIds()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L288", + "community": 33, + "norm_label": "getfollowingids()", + "id": "db_profile_getfollowingids" + }, + { + "label": "touchLastSeen()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L308", + "community": 33, + "norm_label": "touchlastseen()", + "id": "db_profile_touchlastseen" + }, + { + "label": "getLastSeenBatch()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L329", + "community": 33, + "norm_label": "getlastseenbatch()", + "id": "db_profile_getlastseenbatch" + }, + { + "label": "setMdmManaged()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L362", + "community": 33, + "norm_label": "setmdmmanaged()", + "id": "db_profile_setmdmmanaged" + }, + { + "label": "setCallsEnabled()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L394", + "community": 33, + "norm_label": "setcallsenabled()", + "id": "db_profile_setcallsenabled" + }, + { + "label": "setPresenceVisible()", + "file_type": "code", + "source_file": "backend/server/db/profile.ts", + "source_location": "L407", + "community": 33, + "norm_label": "setpresencevisible()", + "id": "db_profile_setpresencevisible" + }, + { + "label": "diga.ts", + "file_type": "code", + "source_file": "backend/server/db/diga.ts", + "source_location": "L1", + "community": 4, + "norm_label": "diga.ts", + "id": "backend_server_db_diga_ts" + }, + { + "label": "RedeemResult", + "file_type": "code", + "source_file": "backend/server/db/diga.ts", + "source_location": "L18", + "community": 4, + "norm_label": "redeemresult", + "id": "db_diga_redeemresult" + }, + { + "label": "redeemDigaCode()", + "file_type": "code", + "source_file": "backend/server/db/diga.ts", + "source_location": "L22", + "community": 4, + "norm_label": "redeemdigacode()", + "id": "db_diga_redeemdigacode" + }, + { + "label": "voiceQuota.ts", + "file_type": "code", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L1", + "community": 937, + "norm_label": "voicequota.ts", + "id": "backend_server_db_voicequota_ts" + }, + { + "label": "todayUtcMidnight()", + "file_type": "code", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L15", + "community": 937, + "norm_label": "todayutcmidnight()", + "id": "db_voicequota_todayutcmidnight" + }, + { + "label": "getRemainingVoiceQuota()", + "file_type": "code", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L26", + "community": 937, + "norm_label": "getremainingvoicequota()", + "id": "db_voicequota_getremainingvoicequota" + }, + { + "label": "consumeVoiceQuota()", + "file_type": "code", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L76", + "community": 937, + "norm_label": "consumevoicequota()", + "id": "db_voicequota_consumevoicequota" + }, + { + "label": "estimateAudioSeconds()", + "file_type": "code", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L102", + "community": 937, + "norm_label": "estimateaudioseconds()", + "id": "db_voicequota_estimateaudioseconds" + }, + { + "label": "social.ts", + "file_type": "code", + "source_file": "backend/server/db/social.ts", + "source_location": "L1", + "community": 4, + "norm_label": "social.ts", + "id": "backend_server_db_social_ts" + }, + { + "label": "getFollowRelation()", + "file_type": "code", + "source_file": "backend/server/db/social.ts", + "source_location": "L3", + "community": 4, + "norm_label": "getfollowrelation()", + "id": "db_social_getfollowrelation" + }, + { + "label": "createFollow()", + "file_type": "code", + "source_file": "backend/server/db/social.ts", + "source_location": "L13", + "community": 4, + "norm_label": "createfollow()", + "id": "db_social_createfollow" + }, + { + "label": "deleteFollow()", + "file_type": "code", + "source_file": "backend/server/db/social.ts", + "source_location": "L26", + "community": 4, + "norm_label": "deletefollow()", + "id": "db_social_deletefollow" + }, + { + "label": "getFollowingSet()", + "file_type": "code", + "source_file": "backend/server/db/social.ts", + "source_location": "L49", + "community": 4, + "norm_label": "getfollowingset()", + "id": "db_social_getfollowingset" + }, + { + "label": "getProfileWithFollowers()", + "file_type": "code", + "source_file": "backend/server/db/social.ts", + "source_location": "L62", + "community": 4, + "norm_label": "getprofilewithfollowers()", + "id": "db_social_getprofilewithfollowers" + }, + { + "label": "canCall()", + "file_type": "code", + "source_file": "backend/server/db/social.ts", + "source_location": "L81", + "community": 4, + "norm_label": "cancall()", + "id": "db_social_cancall" + }, + { + "label": "user.ts", + "file_type": "code", + "source_file": "backend/server/db/user.ts", + "source_location": "L1", + "community": 47, + "norm_label": "user.ts", + "id": "backend_server_db_user_ts" + }, + { + "label": "deleteUserTrustedContacts()", + "file_type": "code", + "source_file": "backend/server/db/user.ts", + "source_location": "L3", + "community": 47, + "norm_label": "deleteusertrustedcontacts()", + "id": "db_user_deleteusertrustedcontacts" + }, + { + "label": "deleteUserCoachSessions()", + "file_type": "code", + "source_file": "backend/server/db/user.ts", + "source_location": "L8", + "community": 47, + "norm_label": "deleteusercoachsessions()", + "id": "db_user_deleteusercoachsessions" + }, + { + "label": "lyraMemory.ts", + "file_type": "code", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L1", + "community": 69, + "norm_label": "lyramemory.ts", + "id": "backend_server_db_lyramemory_ts" + }, + { + "label": "LyraMemoryRow", + "file_type": "code", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L16", + "community": 69, + "norm_label": "lyramemoryrow", + "id": "db_lyramemory_lyramemoryrow" + }, + { + "label": "getMemoriesForUser()", + "file_type": "code", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L34", + "community": 69, + "norm_label": "getmemoriesforuser()", + "id": "db_lyramemory_getmemoriesforuser" + }, + { + "label": "upsertMemory()", + "file_type": "code", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L53", + "community": 69, + "norm_label": "upsertmemory()", + "id": "db_lyramemory_upsertmemory" + }, + { + "label": "markReferenced()", + "file_type": "code", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L125", + "community": 69, + "norm_label": "markreferenced()", + "id": "db_lyramemory_markreferenced" + }, + { + "label": "deleteMemoryById()", + "file_type": "code", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L142", + "community": 69, + "norm_label": "deletememorybyid()", + "id": "db_lyramemory_deletememorybyid" + }, + { + "label": "enforceMaxMemories()", + "file_type": "code", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L155", + "community": 69, + "norm_label": "enforcemaxmemories()", + "id": "db_lyramemory_enforcemaxmemories" + }, + { + "label": "levenshteinSimilarity()", + "file_type": "code", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L177", + "community": 69, + "norm_label": "levenshteinsimilarity()", + "id": "db_lyramemory_levenshteinsimilarity" + }, + { + "label": "mail.ts", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L1", + "community": 6, + "norm_label": "mail.ts", + "id": "backend_server_db_mail_ts" + }, + { + "label": "getMailConnections()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L7", + "community": 6, + "norm_label": "getmailconnections()", + "id": "db_mail_getmailconnections" + }, + { + "label": "getAllMailConnections()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L17", + "community": 6, + "norm_label": "getallmailconnections()", + "id": "db_mail_getallmailconnections" + }, + { + "label": "countMailConnections()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L48", + "community": 6, + "norm_label": "countmailconnections()", + "id": "db_mail_countmailconnections" + }, + { + "label": "upsertMailConnection()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L54", + "community": 6, + "norm_label": "upsertmailconnection()", + "id": "db_mail_upsertmailconnection" + }, + { + "label": "deleteMailConnection()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L90", + "community": 6, + "norm_label": "deletemailconnection()", + "id": "db_mail_deletemailconnection" + }, + { + "label": "deleteAllMailConnections()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L100", + "community": 6, + "norm_label": "deleteallmailconnections()", + "id": "db_mail_deleteallmailconnections" + }, + { + "label": "updateMailConnectionInterval()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L105", + "community": 6, + "norm_label": "updatemailconnectioninterval()", + "id": "db_mail_updatemailconnectioninterval" + }, + { + "label": "updateMailConnectionScanStats()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L117", + "community": 6, + "norm_label": "updatemailconnectionscanstats()", + "id": "db_mail_updatemailconnectionscanstats" + }, + { + "label": "patchFolderScanState()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L151", + "community": 6, + "norm_label": "patchfolderscanstate()", + "id": "db_mail_patchfolderscanstate" + }, + { + "label": "markFullSweepDone()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L169", + "community": 6, + "norm_label": "markfullsweepdone()", + "id": "db_mail_markfullsweepdone" + }, + { + "label": "getMailBlockedStats()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L177", + "community": 6, + "norm_label": "getmailblockedstats()", + "id": "db_mail_getmailblockedstats" + }, + { + "label": "isMailAlreadyBlocked()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L186", + "community": 6, + "norm_label": "ismailalreadyblocked()", + "id": "db_mail_ismailalreadyblocked" + }, + { + "label": "getAlreadyBlockedUidSet()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L198", + "community": 6, + "norm_label": "getalreadyblockeduidset()", + "id": "db_mail_getalreadyblockeduidset" + }, + { + "label": "insertMailBlocked()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L211", + "community": 6, + "norm_label": "insertmailblocked()", + "id": "db_mail_insertmailblocked" + }, + { + "label": "deleteUserMailClassificationSamples()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L245", + "community": 47, + "norm_label": "deleteusermailclassificationsamples()", + "id": "db_mail_deleteusermailclassificationsamples" + }, + { + "label": "insertMailClassificationSample()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L266", + "community": 6, + "norm_label": "insertmailclassificationsample()", + "id": "db_mail_insertmailclassificationsample" + }, + { + "label": "getPendingConsentConnections()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L312", + "community": 6, + "norm_label": "getpendingconsentconnections()", + "id": "db_mail_getpendingconsentconnections" + }, + { + "label": "getImapProxyAccounts()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L323", + "community": 6, + "norm_label": "getimapproxyaccounts()", + "id": "db_mail_getimapproxyaccounts" + }, + { + "label": "upsertImapProxyAccount()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L328", + "community": 6, + "norm_label": "upsertimapproxyaccount()", + "id": "db_mail_upsertimapproxyaccount" + }, + { + "label": "deleteOldMailBlocked()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L342", + "community": 6, + "norm_label": "deleteoldmailblocked()", + "id": "db_mail_deleteoldmailblocked" + }, + { + "label": "upsertMailBlockedStat()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L356", + "community": 6, + "norm_label": "upsertmailblockedstat()", + "id": "db_mail_upsertmailblockedstat" + }, + { + "label": "getMailBlockedPaginated()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L392", + "community": 6, + "norm_label": "getmailblockedpaginated()", + "id": "db_mail_getmailblockedpaginated" + }, + { + "label": "updateMailConnectionTitle()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L424", + "community": 6, + "norm_label": "updatemailconnectiontitle()", + "id": "db_mail_updatemailconnectiontitle" + }, + { + "label": "getBlockedMailsByDay()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L450", + "community": 6, + "norm_label": "getblockedmailsbyday()", + "id": "db_mail_getblockedmailsbyday" + }, + { + "label": "getBlockedMailsByConnection()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L498", + "community": 6, + "norm_label": "getblockedmailsbyconnection()", + "id": "db_mail_getblockedmailsbyconnection" + }, + { + "label": "createOauthPendingState()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L540", + "community": 6, + "norm_label": "createoauthpendingstate()", + "id": "db_mail_createoauthpendingstate" + }, + { + "label": "consumeOauthPendingState()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L569", + "community": 6, + "norm_label": "consumeoauthpendingstate()", + "id": "db_mail_consumeoauthpendingstate" + }, + { + "label": "upsertOauthMicrosoftConnection()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L609", + "community": 6, + "norm_label": "upsertoauthmicrosoftconnection()", + "id": "db_mail_upsertoauthmicrosoftconnection" + }, + { + "label": "upsertOauthGoogleConnection()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", "source_location": "L661", - "id": "ops_business_plan_nbank_14_1_risiko_matrix", - "community": 873, - "norm_label": "14.1 risiko-matrix" + "community": 6, + "norm_label": "upsertoauthgoogleconnection()", + "id": "db_mail_upsertoauthgoogleconnection" }, { - "label": "14.2 Realistischer Worst-Case 24 Monate", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L676", - "id": "ops_business_plan_nbank_14_2_realistischer_worst_case_24_monate", - "community": 873, - "norm_label": "14.2 realistischer worst-case 24 monate" + "label": "refreshAndSaveTokens()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L731", + "community": 68, + "norm_label": "refreshandsavetokens()", + "id": "db_mail_refreshandsavetokens" }, { - "label": "15. Anhang", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L690", - "id": "ops_business_plan_nbank_15_anhang", - "community": 890, - "norm_label": "15. anhang" + "label": "getDecryptedRefreshToken()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L818", + "community": 6, + "norm_label": "getdecryptedrefreshtoken()", + "id": "db_mail_getdecryptedrefreshtoken" }, { - "label": "A. CV Chahine Brini", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L692", - "id": "ops_business_plan_nbank_a_cv_chahine_brini", - "community": 890, - "norm_label": "a. cv chahine brini" + "label": "ring.post.ts", + "file_type": "code", + "source_file": "backend/server/api/calls/ring.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "ring.post.ts", + "id": "backend_server_api_calls_ring_post_ts" }, { - "label": "B. Vorl\u00e4ufige LOI-Liste", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L696", - "id": "ops_business_plan_nbank_b_vorl\u00e4ufige_loi_liste", - "community": 890, - "norm_label": "b. vorlaufige loi-liste" + "label": "ice-servers.get.ts", + "file_type": "code", + "source_file": "backend/server/api/calls/ice-servers.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "ice-servers.get.ts", + "id": "backend_server_api_calls_ice_servers_get_ts" }, { - "label": "C. Quellen & Belege", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L710", - "id": "ops_business_plan_nbank_c_quellen_belege", - "community": 890, - "norm_label": "c. quellen & belege" + "label": "suggest.post.ts", + "file_type": "code", + "source_file": "backend/server/api/curated-domains/suggest.post.ts", + "source_location": "L1", + "community": 39, + "norm_label": "suggest.post.ts", + "id": "backend_server_api_curated_domains_suggest_post_ts" }, { - "label": "D. App-Demo", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L720", - "id": "ops_business_plan_nbank_d_app_demo", - "community": 890, - "norm_label": "d. app-demo" + "label": "VALID_COUNTRIES", + "file_type": "code", + "source_file": "backend/server/api/curated-domains/suggest.post.ts", + "source_location": "L7", + "community": 39, + "norm_label": "valid_countries", + "id": "curated_domains_suggest_post_valid_countries" }, { - "label": "E. Screenshots der App", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L725", - "id": "ops_business_plan_nbank_e_screenshots_der_app", - "community": 890, - "norm_label": "e. screenshots der app" + "label": "blocklist.bin.get.ts", + "file_type": "code", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L1", + "community": 112, + "norm_label": "blocklist.bin.get.ts", + "id": "backend_server_api_url_filter_blocklist_bin_get_ts" }, { - "label": "F. Lyra-Persona / Produkt-Spezifikation (Auszug)", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L729", - "id": "ops_business_plan_nbank_f_lyra_persona_produkt_spezifikation_auszug", - "community": 890, - "norm_label": "f. lyra-persona / produkt-spezifikation (auszug)" + "label": "mergeSortedHashBuffers()", + "file_type": "code", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L86", + "community": 112, + "norm_label": "mergesortedhashbuffers()", + "id": "url_filter_blocklist_bin_get_mergesortedhashbuffers" }, { - "label": "G. Kontakt", - "file_type": "document", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L733", - "id": "ops_business_plan_nbank_g_kontakt", - "community": 890, - "norm_label": "g. kontakt" + "label": "blocklist.txt.get.ts", + "file_type": "code", + "source_file": "backend/server/api/url-filter/blocklist.txt.get.ts", + "source_location": "L1", + "community": 39, + "norm_label": "blocklist.txt.get.ts", + "id": "backend_server_api_url_filter_blocklist_txt_get_ts" + }, + { + "label": "delete-message.post.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/delete-message.post.ts", + "source_location": "L1", + "community": 181, + "norm_label": "delete-message.post.ts", + "id": "backend_server_api_chat_delete_message_post_ts" + }, + { + "label": "message.post.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/message.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "message.post.ts", + "id": "backend_server_api_chat_message_post_ts" + }, + { + "label": "like.post.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/like.post.ts", + "source_location": "L1", + "community": 62, + "norm_label": "like.post.ts", + "id": "backend_server_api_chat_like_post_ts" + }, + { + "label": "join.post.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/join.post.ts", + "source_location": "L1", + "community": 62, + "norm_label": "join.post.ts", + "id": "backend_server_api_chat_join_post_ts" + }, + { + "label": "dm-conversations.get.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/dm-conversations.get.ts", + "source_location": "L1", + "community": 181, + "norm_label": "dm-conversations.get.ts", + "id": "backend_server_api_chat_dm_conversations_get_ts" + }, + { + "label": "messages.get.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/messages.get.ts", + "source_location": "L1", + "community": 181, + "norm_label": "messages.get.ts", + "id": "backend_server_api_chat_messages_get_ts" + }, + { + "label": "dm.post.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/dm.post.ts", + "source_location": "L1", + "community": 181, + "norm_label": "dm.post.ts", + "id": "backend_server_api_chat_dm_post_ts" + }, + { + "label": "reaction.post.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/reaction.post.ts", + "source_location": "L1", + "community": 181, + "norm_label": "reaction.post.ts", + "id": "backend_server_api_chat_reaction_post_ts" + }, + { + "label": "ALLOWED_EMOJIS", + "file_type": "code", + "source_file": "backend/server/api/chat/reaction.post.ts", + "source_location": "L5", + "community": 181, + "norm_label": "allowed_emojis", + "id": "chat_reaction_post_allowed_emojis" + }, + { + "label": "[userId].get.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/dm/[userId].get.ts", + "source_location": "L1", + "community": 181, + "norm_label": "[userid].get.ts", + "id": "backend_server_api_chat_dm_userid_get_ts" + }, + { + "label": "aggregateReactions()", + "file_type": "code", + "source_file": "backend/server/api/chat/dm/[userId].get.ts", + "source_location": "L5", + "community": 181, + "norm_label": "aggregatereactions()", + "id": "dm_userid_get_aggregatereactions" + }, + { + "label": "[userId].get.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/can-call/[userId].get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "[userid].get.ts", + "id": "backend_server_api_chat_can_call_userid_get_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/rooms/index.get.ts", + "source_location": "L1", + "community": 62, + "norm_label": "index.get.ts", + "id": "backend_server_api_chat_rooms_index_get_ts" + }, + { + "label": "index.post.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/rooms/index.post.ts", + "source_location": "L1", + "community": 62, + "norm_label": "index.post.ts", + "id": "backend_server_api_chat_rooms_index_post_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", + "source_location": "L1", + "community": 62, + "norm_label": "index.get.ts", + "id": "backend_server_api_chat_rooms_roomid_index_get_ts" + }, + { + "label": "join.post.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/rooms/[roomId]/join.post.ts", + "source_location": "L1", + "community": 62, + "norm_label": "join.post.ts", + "id": "backend_server_api_chat_rooms_roomid_join_post_ts" + }, + { + "label": "leave.post.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/rooms/[roomId]/leave.post.ts", + "source_location": "L1", + "community": 62, + "norm_label": "leave.post.ts", + "id": "backend_server_api_chat_rooms_roomid_leave_post_ts" + }, + { + "label": "messages.post.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/rooms/[roomId]/messages.post.ts", + "source_location": "L1", + "community": 62, + "norm_label": "messages.post.ts", + "id": "backend_server_api_chat_rooms_roomid_messages_post_ts" + }, + { + "label": "index.patch.ts", + "file_type": "code", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L1", + "community": 62, + "norm_label": "index.patch.ts", + "id": "backend_server_api_chat_rooms_roomid_index_patch_ts" + }, + { + "label": "request.post.ts", + "file_type": "code", + "source_file": "backend/server/api/cooldown/request.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "request.post.ts", + "id": "backend_server_api_cooldown_request_post_ts" + }, + { + "label": "status.get.ts", + "file_type": "code", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "status.get.ts", + "id": "backend_server_api_cooldown_status_get_ts" + }, + { + "label": "cancel.post.ts", + "file_type": "code", + "source_file": "backend/server/api/cooldown/cancel.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "cancel.post.ts", + "id": "backend_server_api_cooldown_cancel_post_ts" + }, + { + "label": "register.post.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L1", + "community": 32, + "norm_label": "register.post.ts", + "id": "backend_server_api_magic_register_post_ts" + }, + { + "label": "status.get.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/status.get.ts", + "source_location": "L1", + "community": 32, + "norm_label": "status.get.ts", + "id": "backend_server_api_magic_status_get_ts" + }, + { + "label": "profile.mobileconfig.get.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", + "source_location": "L1", + "community": 32, + "norm_label": "profile.mobileconfig.get.ts", + "id": "backend_server_api_magic_profile_mobileconfig_get_ts" + }, + { + "label": "me.get.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/me.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "me.get.ts", + "id": "backend_server_api_magic_me_get_ts" + }, + { + "label": "devices.get.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L1", + "community": 80, + "norm_label": "devices.get.ts", + "id": "backend_server_api_magic_devices_get_ts" + }, + { + "label": "prettyPlatform()", + "file_type": "code", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L155", + "community": 80, + "norm_label": "prettyplatform()", + "id": "magic_devices_get_prettyplatform" + }, + { + "label": "info.get.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/info.get.ts", + "source_location": "L1", + "community": 849, + "norm_label": "info.get.ts", + "id": "backend_server_api_magic_info_get_ts" + }, + { + "label": "by-udid.get.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/mdm/by-udid.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "by-udid.get.ts", + "id": "backend_server_api_magic_mdm_by_udid_get_ts" + }, + { + "label": "cooldown.post.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/devices/[deviceId]/cooldown.post.ts", + "source_location": "L1", + "community": 1336, + "norm_label": "cooldown.post.ts", + "id": "backend_server_api_magic_devices_deviceid_cooldown_post_ts" + }, + { + "label": "cancel-release.post.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/devices/[deviceId]/cancel-release.post.ts", + "source_location": "L1", + "community": 850, + "norm_label": "cancel-release.post.ts", + "id": "backend_server_api_magic_devices_deviceid_cancel_release_post_ts" + }, + { + "label": "request-release.post.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/devices/[deviceId]/request-release.post.ts", + "source_location": "L1", + "community": 60, + "norm_label": "request-release.post.ts", + "id": "backend_server_api_magic_devices_deviceid_request_release_post_ts" + }, + { + "label": "cancel-cooldown.post.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/devices/[deviceId]/cancel-cooldown.post.ts", + "source_location": "L1", + "community": 1335, + "norm_label": "cancel-cooldown.post.ts", + "id": "backend_server_api_magic_devices_deviceid_cancel_cooldown_post_ts" + }, + { + "label": "mdm-link.post.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm-link.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "mdm-link.post.ts", + "id": "backend_server_api_magic_devices_deviceid_mdm_link_post_ts" + }, + { + "label": "create.post.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/pair/create.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "create.post.ts", + "id": "backend_server_api_magic_pair_create_post_ts" + }, + { + "label": "redeem.post.ts", + "file_type": "code", + "source_file": "backend/server/api/magic/pair/redeem.post.ts", + "source_location": "L1", + "community": 682, + "norm_label": "redeem.post.ts", + "id": "backend_server_api_magic_pair_redeem_post_ts" + }, + { + "label": "RateEntry", + "file_type": "code", + "source_file": "backend/server/api/magic/pair/redeem.post.ts", + "source_location": "L21", + "community": 682, + "norm_label": "rateentry", + "id": "pair_redeem_post_rateentry" + }, + { + "label": "rateLimitStore", + "file_type": "code", + "source_file": "backend/server/api/magic/pair/redeem.post.ts", + "source_location": "L26", + "community": 682, + "norm_label": "ratelimitstore", + "id": "pair_redeem_post_ratelimitstore" + }, + { + "label": "checkRateLimit()", + "file_type": "code", + "source_file": "backend/server/api/magic/pair/redeem.post.ts", + "source_location": "L28", + "community": 682, + "norm_label": "checkratelimit()", + "id": "pair_redeem_post_checkratelimit" + }, + { + "label": "login.post.ts", + "file_type": "code", + "source_file": "backend/server/api/auth/login.post.ts", + "source_location": "L1", + "community": 32, + "norm_label": "login.post.ts", + "id": "backend_server_api_auth_login_post_ts" + }, + { + "label": "me.get.ts", + "file_type": "code", + "source_file": "backend/server/api/auth/me.get.ts", + "source_location": "L1", + "community": 6, + "norm_label": "me.get.ts", + "id": "backend_server_api_auth_me_get_ts" + }, + { + "label": "me.patch.ts", + "file_type": "code", + "source_file": "backend/server/api/auth/me.patch.ts", + "source_location": "L1", + "community": 33, + "norm_label": "me.patch.ts", + "id": "backend_server_api_auth_me_patch_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/streak/index.get.ts", + "source_location": "L1", + "community": 47, + "norm_label": "index.get.ts", + "id": "backend_server_api_streak_index_get_ts" + }, + { + "label": "index.post.ts", + "file_type": "code", + "source_file": "backend/server/api/streak/index.post.ts", + "source_location": "L1", + "community": 47, + "norm_label": "index.post.ts", + "id": "backend_server_api_streak_index_post_ts" + }, + { + "label": "events.get.ts", + "file_type": "code", + "source_file": "backend/server/api/streak/events.get.ts", + "source_location": "L1", + "community": 47, + "norm_label": "events.get.ts", + "id": "backend_server_api_streak_events_get_ts" + }, + { + "label": "index.patch.ts", + "file_type": "code", + "source_file": "backend/server/api/streak/index.patch.ts", + "source_location": "L1", + "community": 47, + "norm_label": "index.patch.ts", + "id": "backend_server_api_streak_index_patch_ts" + }, + { + "label": "[id].delete.ts", + "file_type": "code", + "source_file": "backend/server/api/custom-domains/[id].delete.ts", + "source_location": "L1", + "community": 39, + "norm_label": "[id].delete.ts", + "id": "backend_server_api_custom_domains_id_delete_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/custom-domains/index.get.ts", + "source_location": "L1", + "community": 39, + "norm_label": "index.get.ts", + "id": "backend_server_api_custom_domains_index_get_ts" + }, + { + "label": "index.post.ts", + "file_type": "code", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L1", + "community": 39, + "norm_label": "index.post.ts", + "id": "backend_server_api_custom_domains_index_post_ts" + }, + { + "label": "ResolveResult", + "file_type": "code", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L39", + "community": 39, + "norm_label": "resolveresult", + "id": "custom_domains_index_post_resolveresult" + }, + { + "label": "resolveTypeAndValue()", + "file_type": "code", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L43", + "community": 6, + "norm_label": "resolvetypeandvalue()", + "id": "custom_domains_index_post_resolvetypeandvalue" + }, + { + "label": "suggest.post.ts", + "file_type": "code", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L1", + "community": 39, + "norm_label": "suggest.post.ts", + "id": "backend_server_api_custom_domains_suggest_post_ts" + }, + { + "label": "SUPPORTED_COUNTRIES", + "file_type": "code", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L6", + "community": 39, + "norm_label": "supported_countries", + "id": "custom_domains_suggest_post_supported_countries" + }, + { + "label": "SupportedCountry", + "file_type": "code", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L7", + "community": 39, + "norm_label": "supportedcountry", + "id": "custom_domains_suggest_post_supportedcountry" + }, + { + "label": "submit.post.ts", + "file_type": "code", + "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "submit.post.ts", + "id": "backend_server_api_custom_domains_id_submit_post_ts" + }, + { + "label": "scan-internal.post.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L1", + "community": 6, + "norm_label": "scan-internal.post.ts", + "id": "backend_server_api_mail_scan_internal_post_ts" + }, + { + "label": "proxy-config.get.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L1", + "community": 6, + "norm_label": "proxy-config.get.ts", + "id": "backend_server_api_mail_proxy_config_get_ts" + }, + { + "label": "escapeXml()", + "file_type": "code", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L8", + "community": 6, + "norm_label": "escapexml()", + "id": "mail_proxy_config_get_escapexml" + }, + { + "label": "proxy-account.post.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L1", + "community": 6, + "norm_label": "proxy-account.post.ts", + "id": "backend_server_api_mail_proxy_account_post_ts" + }, + { + "label": "status.get.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/status.get.ts", + "source_location": "L1", + "community": 6, + "norm_label": "status.get.ts", + "id": "backend_server_api_mail_status_get_ts" + }, + { + "label": "disconnect.delete.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/disconnect.delete.ts", + "source_location": "L1", + "community": 6, + "norm_label": "disconnect.delete.ts", + "id": "backend_server_api_mail_disconnect_delete_ts" + }, + { + "label": "connect.post.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/connect.post.ts", + "source_location": "L1", + "community": 6, + "norm_label": "connect.post.ts", + "id": "backend_server_api_mail_connect_post_ts" + }, + { + "label": "scan.post.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L1", + "community": 6, + "norm_label": "scan.post.ts", + "id": "backend_server_api_mail_scan_post_ts" + }, + { + "label": "results.get.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/results.get.ts", + "source_location": "L1", + "community": 6, + "norm_label": "results.get.ts", + "id": "backend_server_api_mail_results_get_ts" + }, + { + "label": "PROVIDER_SLUG_TO_HOST", + "file_type": "code", + "source_file": "backend/server/api/mail/results.get.ts", + "source_location": "L21", + "community": 6, + "norm_label": "provider_slug_to_host", + "id": "mail_results_get_provider_slug_to_host" + }, + { + "label": "interval.patch.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/interval.patch.ts", + "source_location": "L1", + "community": 6, + "norm_label": "interval.patch.ts", + "id": "backend_server_api_mail_interval_patch_ts" + }, + { + "label": "proxy-account.get.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/proxy-account.get.ts", + "source_location": "L1", + "community": 6, + "norm_label": "proxy-account.get.ts", + "id": "backend_server_api_mail_proxy_account_get_ts" + }, + { + "label": "callback.post.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L1", + "community": 6, + "norm_label": "callback.post.ts", + "id": "backend_server_api_mail_oauth_google_callback_post_ts" + }, + { + "label": "init.post.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/oauth/google/init.post.ts", + "source_location": "L1", + "community": 6, + "norm_label": "init.post.ts", + "id": "backend_server_api_mail_oauth_google_init_post_ts" + }, + { + "label": "callback.post.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L1", + "community": 6, + "norm_label": "callback.post.ts", + "id": "backend_server_api_mail_oauth_microsoft_callback_post_ts" + }, + { + "label": "init.post.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", + "source_location": "L1", + "community": 6, + "norm_label": "init.post.ts", + "id": "backend_server_api_mail_oauth_microsoft_init_post_ts" + }, + { + "label": "blocked-by-day.get.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/stats/blocked-by-day.get.ts", + "source_location": "L1", + "community": 6, + "norm_label": "blocked-by-day.get.ts", + "id": "backend_server_api_mail_stats_blocked_by_day_get_ts" + }, + { + "label": "blocked-by-connection.get.ts", + "file_type": "code", + "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", + "source_location": "L1", + "community": 6, + "norm_label": "blocked-by-connection.get.ts", + "id": "backend_server_api_mail_stats_blocked_by_connection_get_ts" + }, + { + "label": "change-preview.get.ts", + "file_type": "code", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L1", + "community": 244, + "norm_label": "change-preview.get.ts", + "id": "backend_server_api_plan_change_preview_get_ts" + }, + { + "label": "ResourceKey", + "file_type": "code", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L14", + "community": 244, + "norm_label": "resourcekey", + "id": "plan_change_preview_get_resourcekey" + }, + { + "label": "ChangeEntry", + "file_type": "code", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L24", + "community": 244, + "norm_label": "changeentry", + "id": "plan_change_preview_get_changeentry" + }, + { + "label": "ChangePreviewResponse", + "file_type": "code", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L34", + "community": 244, + "norm_label": "changepreviewresponse", + "id": "plan_change_preview_get_changepreviewresponse" + }, + { + "label": "VALID_PLANS", + "file_type": "code", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L43", + "community": 244, + "norm_label": "valid_plans", + "id": "plan_change_preview_get_valid_plans" + }, + { + "label": "PLAN_ORDER", + "file_type": "code", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L44", + "community": 244, + "norm_label": "plan_order", + "id": "plan_change_preview_get_plan_order" + }, + { + "label": "friendlyModelName()", + "file_type": "code", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L350", + "community": 244, + "norm_label": "friendlymodelname()", + "id": "plan_change_preview_get_friendlymodelname" + }, + { + "label": "friendlyProviderName()", + "file_type": "code", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L357", + "community": 244, + "norm_label": "friendlyprovidername()", + "id": "plan_change_preview_get_friendlyprovidername" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/providers/index.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "index.get.ts", + "id": "backend_server_api_providers_index_get_ts" + }, + { + "label": "GGL_PROVIDERS", + "file_type": "code", + "source_file": "backend/server/api/providers/index.get.ts", + "source_location": "L12", + "community": 4, + "norm_label": "ggl_providers", + "id": "providers_index_get_ggl_providers" + }, + { + "label": "set-lyra-avatar.post.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/set-lyra-avatar.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "set-lyra-avatar.post.ts", + "id": "backend_server_api_admin_set_lyra_avatar_post_ts" + }, + { + "label": "lyra-post.post.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L1", + "community": 127, + "norm_label": "lyra-post.post.ts", + "id": "backend_server_api_admin_lyra_post_post_ts" + }, + { + "label": "LYRA_TOPICS", + "file_type": "code", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L3", + "community": 127, + "norm_label": "lyra_topics", + "id": "admin_lyra_post_post_lyra_topics" + }, + { + "label": "LyraTopic", + "file_type": "code", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L13", + "community": 127, + "norm_label": "lyratopic", + "id": "admin_lyra_post_post_lyratopic" + }, + { + "label": "TOPIC_HINTS", + "file_type": "code", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L15", + "community": 127, + "norm_label": "topic_hints", + "id": "admin_lyra_post_post_topic_hints" + }, + { + "label": "Lang", + "file_type": "code", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L30", + "community": 127, + "norm_label": "lang", + "id": "admin_lyra_post_post_lang" + }, + { + "label": "LANGS", + "file_type": "code", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L31", + "community": 127, + "norm_label": "langs", + "id": "admin_lyra_post_post_langs" + }, + { + "label": "LANG_NAME", + "file_type": "code", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L32", + "community": 127, + "norm_label": "lang_name", + "id": "admin_lyra_post_post_lang_name" + }, + { + "label": "lyraSystemPrompt()", + "file_type": "code", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L39", + "community": 127, + "norm_label": "lyrasystemprompt()", + "id": "admin_lyra_post_post_lyrasystemprompt" + }, + { + "label": "rebreakSystemPrompt()", + "file_type": "code", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L53", + "community": 127, + "norm_label": "rebreaksystemprompt()", + "id": "admin_lyra_post_post_rebreaksystemprompt" + }, + { + "label": "lyra-generate.post.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/lyra-generate.post.ts", + "source_location": "L1", + "community": 127, + "norm_label": "lyra-generate.post.ts", + "id": "backend_server_api_admin_lyra_generate_post_ts" + }, + { + "label": "lyra-profile.get.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/lyra-profile.get.ts", + "source_location": "L1", + "community": 6, + "norm_label": "lyra-profile.get.ts", + "id": "backend_server_api_admin_lyra_profile_get_ts" + }, + { + "label": "verify-admin.get.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/verify-admin.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "verify-admin.get.ts", + "id": "backend_server_api_admin_verify_admin_get_ts" + }, + { + "label": "stats.get.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/stats.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "stats.get.ts", + "id": "backend_server_api_admin_stats_get_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/curated-domains/index.get.ts", + "source_location": "L1", + "community": 39, + "norm_label": "index.get.ts", + "id": "backend_server_api_admin_curated_domains_index_get_ts" + }, + { + "label": "[id].patch.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/curated-domains/[id].patch.ts", + "source_location": "L1", + "community": 39, + "norm_label": "[id].patch.ts", + "id": "backend_server_api_admin_curated_domains_id_patch_ts" + }, + { + "label": "[id].delete.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/users/[id].delete.ts", + "source_location": "L1", + "community": 384, + "norm_label": "[id].delete.ts", + "id": "backend_server_api_admin_users_id_delete_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/users/index.get.ts", + "source_location": "L1", + "community": 384, + "norm_label": "index.get.ts", + "id": "backend_server_api_admin_users_index_get_ts" + }, + { + "label": "[id].patch.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/users/[id].patch.ts", + "source_location": "L1", + "community": 384, + "norm_label": "[id].patch.ts", + "id": "backend_server_api_admin_users_id_patch_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/domain-submissions/index.get.ts", + "source_location": "L1", + "community": 39, + "norm_label": "index.get.ts", + "id": "backend_server_api_admin_domain_submissions_index_get_ts" + }, + { + "label": "approve.post.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/domain-submissions/[id]/approve.post.ts", + "source_location": "L1", + "community": 39, + "norm_label": "approve.post.ts", + "id": "backend_server_api_admin_domain_submissions_id_approve_post_ts" + }, + { + "label": "Lang", + "file_type": "code", + "source_file": "backend/server/api/admin/domain-submissions/[id]/approve.post.ts", + "source_location": "L60", + "community": 39, + "norm_label": "lang", + "id": "id_approve_post_lang" + }, + { + "label": "reject.post.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/domain-submissions/[id]/reject.post.ts", + "source_location": "L1", + "community": 39, + "norm_label": "reject.post.ts", + "id": "backend_server_api_admin_domain_submissions_id_reject_post_ts" + }, + { + "label": "queue.get.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/moderation/queue.get.ts", + "source_location": "L1", + "community": 385, + "norm_label": "queue.get.ts", + "id": "backend_server_api_admin_moderation_queue_get_ts" + }, + { + "label": "dismiss.post.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/moderation/[id]/dismiss.post.ts", + "source_location": "L1", + "community": 385, + "norm_label": "dismiss.post.ts", + "id": "backend_server_api_admin_moderation_id_dismiss_post_ts" + }, + { + "label": "delete.post.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/moderation/[id]/delete.post.ts", + "source_location": "L1", + "community": 385, + "norm_label": "delete.post.ts", + "id": "backend_server_api_admin_moderation_id_delete_post_ts" + }, + { + "label": "ban-user.post.ts", + "file_type": "code", + "source_file": "backend/server/api/admin/moderation/[id]/ban-user.post.ts", + "source_location": "L1", + "community": 385, + "norm_label": "ban-user.post.ts", + "id": "backend_server_api_admin_moderation_id_ban_user_post_ts" + }, + { + "label": "leaderboard.get.ts", + "file_type": "code", + "source_file": "backend/server/api/scores/leaderboard.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "leaderboard.get.ts", + "id": "backend_server_api_scores_leaderboard_get_ts" + }, + { + "label": "me.get.ts", + "file_type": "code", + "source_file": "backend/server/api/scores/me.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "me.get.ts", + "id": "backend_server_api_scores_me_get_ts" + }, + { + "label": "delete.delete.ts", + "file_type": "code", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L1", + "community": 47, + "norm_label": "delete.delete.ts", + "id": "backend_server_api_user_delete_delete_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/feedback/index.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "index.get.ts", + "id": "backend_server_api_feedback_index_get_ts" + }, + { + "label": "[id].patch.ts", + "file_type": "code", + "source_file": "backend/server/api/feedback/[id].patch.ts", + "source_location": "L1", + "community": 4, + "norm_label": "[id].patch.ts", + "id": "backend_server_api_feedback_id_patch_ts" + }, + { + "label": "personal.get.ts", + "file_type": "code", + "source_file": "backend/server/api/blocklist/personal.get.ts", + "source_location": "L1", + "community": 39, + "norm_label": "personal.get.ts", + "id": "backend_server_api_blocklist_personal_get_ts" + }, + { + "label": "check.get.ts", + "file_type": "code", + "source_file": "backend/server/api/blocklist/check.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "check.get.ts", + "id": "backend_server_api_blocklist_check_get_ts" + }, + { + "label": "sync.post.ts", + "file_type": "code", + "source_file": "backend/server/api/blocklist/sync.post.ts", + "source_location": "L1", + "community": 39, + "norm_label": "sync.post.ts", + "id": "backend_server_api_blocklist_sync_post_ts" + }, + { + "label": "count.get.ts", + "file_type": "code", + "source_file": "backend/server/api/blocklist/count.get.ts", + "source_location": "L1", + "community": 39, + "norm_label": "count.get.ts", + "id": "backend_server_api_blocklist_count_get_ts" + }, + { + "label": "stats.get.ts", + "file_type": "code", + "source_file": "backend/server/api/blocklist/stats.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "stats.get.ts", + "id": "backend_server_api_blocklist_stats_get_ts" + }, + { + "label": "download.get.ts", + "file_type": "code", + "source_file": "backend/server/api/blocklist/download.get.ts", + "source_location": "L1", + "community": 39, + "norm_label": "download.get.ts", + "id": "backend_server_api_blocklist_download_get_ts" + }, + { + "label": "speak-elevenlabs.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/speak-elevenlabs.post.ts", + "source_location": "L1", + "community": 69, + "norm_label": "speak-elevenlabs.post.ts", + "id": "backend_server_api_coach_speak_elevenlabs_post_ts" + }, + { + "label": "message.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L1", + "community": 69, + "norm_label": "message.post.ts", + "id": "backend_server_api_coach_message_post_ts" + }, + { + "label": "generatePlanDetails()", + "file_type": "code", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L323", + "community": 69, + "norm_label": "generateplandetails()", + "id": "coach_message_post_generateplandetails" + }, + { + "label": "PROVIDER_CONFIG", + "file_type": "code", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L358", + "community": 69, + "norm_label": "provider_config", + "id": "coach_message_post_provider_config" + }, + { + "label": "detectAndSaveFeedback()", + "file_type": "code", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L387", + "community": 69, + "norm_label": "detectandsavefeedback()", + "id": "coach_message_post_detectandsavefeedback" + }, + { + "label": "Candidate", + "file_type": "code", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L666", + "community": 69, + "norm_label": "candidate", + "id": "coach_message_post_candidate" + }, + { + "label": "tryModel()", + "file_type": "code", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L677", + "community": 69, + "norm_label": "trymodel()", + "id": "coach_message_post_trymodel" + }, + { + "label": "speak.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L1", + "community": 937, + "norm_label": "speak.post.ts", + "id": "backend_server_api_coach_speak_post_ts" + }, + { + "label": "speakGoogle()", + "file_type": "code", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L100", + "community": 937, + "norm_label": "speakgoogle()", + "id": "coach_speak_post_speakgoogle" + }, + { + "label": "speakCartesia()", + "file_type": "code", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L171", + "community": 937, + "norm_label": "speakcartesia()", + "id": "coach_speak_post_speakcartesia" + }, + { + "label": "speakElevenLabs()", + "file_type": "code", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L229", + "community": 937, + "norm_label": "speakelevenlabs()", + "id": "coach_speak_post_speakelevenlabs" + }, + { + "label": "history.delete.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/history.delete.ts", + "source_location": "L1", + "community": 4, + "norm_label": "history.delete.ts", + "id": "backend_server_api_coach_history_delete_ts" + }, + { + "label": "history.get.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/history.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "history.get.ts", + "id": "backend_server_api_coach_history_get_ts" + }, + { + "label": "speak-google.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/speak-google.post.ts", + "source_location": "L1", + "community": 772, + "norm_label": "speak-google.post.ts", + "id": "backend_server_api_coach_speak_google_post_ts" + }, + { + "label": "sos-session.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/sos-session.post.ts", + "source_location": "L1", + "community": 79, + "norm_label": "sos-session.post.ts", + "id": "backend_server_api_coach_sos_session_post_ts" + }, + { + "label": "transcribe.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/transcribe.post.ts", + "source_location": "L1", + "community": 773, + "norm_label": "transcribe.post.ts", + "id": "backend_server_api_coach_transcribe_post_ts" + }, + { + "label": "sos-stream.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/sos-stream.post.ts", + "source_location": "L1", + "community": 69, + "norm_label": "sos-stream.post.ts", + "id": "backend_server_api_coach_sos_stream_post_ts" + }, + { + "label": "start()", + "file_type": "code", + "source_file": "backend/server/api/coach/sos-stream.post.ts", + "source_location": "L156", + "community": 69, + "norm_label": "start()", + "id": "coach_sos_stream_post_start" + }, + { + "label": "pull()", + "file_type": "code", + "source_file": "backend/server/api/coach/sos-stream.post.ts", + "source_location": "L160", + "community": 69, + "norm_label": "pull()", + "id": "coach_sos_stream_post_pull" + }, + { + "label": "cancel()", + "file_type": "code", + "source_file": "backend/server/api/coach/sos-stream.post.ts", + "source_location": "L232", + "community": 69, + "norm_label": "cancel()", + "id": "coach_sos_stream_post_cancel" + }, + { + "label": "speak-deepgram.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/speak-deepgram.post.ts", + "source_location": "L1", + "community": 774, + "norm_label": "speak-deepgram.post.ts", + "id": "backend_server_api_coach_speak_deepgram_post_ts" + }, + { + "label": "sos-stream.get.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L1", + "community": 69, + "norm_label": "sos-stream.get.ts", + "id": "backend_server_api_coach_sos_stream_get_ts" + }, + { + "label": "SosCandidate", + "file_type": "code", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L240", + "community": 69, + "norm_label": "soscandidate", + "id": "coach_sos_stream_get_soscandidate" + }, + { + "label": "speak-openai.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/speak-openai.post.ts", + "source_location": "L1", + "community": 775, + "norm_label": "speak-openai.post.ts", + "id": "backend_server_api_coach_speak_openai_post_ts" + }, + { + "label": "speak-cartesia.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/speak-cartesia.post.ts", + "source_location": "L1", + "community": 69, + "norm_label": "speak-cartesia.post.ts", + "id": "backend_server_api_coach_speak_cartesia_post_ts" + }, + { + "label": "speak-gemini.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/speak-gemini.post.ts", + "source_location": "L1", + "community": 751, + "norm_label": "speak-gemini.post.ts", + "id": "backend_server_api_coach_speak_gemini_post_ts" + }, + { + "label": "pcmToWav()", + "file_type": "code", + "source_file": "backend/server/api/coach/speak-gemini.post.ts", + "source_location": "L15", + "community": 751, + "norm_label": "pcmtowav()", + "id": "coach_speak_gemini_post_pcmtowav" + }, + { + "label": "speak-azure.post.ts", + "file_type": "code", + "source_file": "backend/server/api/coach/speak-azure.post.ts", + "source_location": "L1", + "community": 776, + "norm_label": "speak-azure.post.ts", + "id": "backend_server_api_coach_speak_azure_post_ts" + }, + { + "label": "follow.post.ts", + "file_type": "code", + "source_file": "backend/server/api/social/follow.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "follow.post.ts", + "id": "backend_server_api_social_follow_post_ts" + }, + { + "label": "[userId].get.ts", + "file_type": "code", + "source_file": "backend/server/api/social/profile/[userId].get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "[userid].get.ts", + "id": "backend_server_api_social_profile_userid_get_ts" + }, + { + "label": "last-seen.get.ts", + "file_type": "code", + "source_file": "backend/server/api/presence/last-seen.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "last-seen.get.ts", + "id": "backend_server_api_presence_last_seen_get_ts" + }, + { + "label": "event.post.ts", + "file_type": "code", + "source_file": "backend/server/api/protection/event.post.ts", + "source_location": "L1", + "community": 9, + "norm_label": "event.post.ts", + "id": "backend_server_api_protection_event_post_ts" + }, + { + "label": "VALID_SOURCES", + "file_type": "code", + "source_file": "backend/server/api/protection/event.post.ts", + "source_location": "L7", + "community": 9, + "norm_label": "valid_sources", + "id": "protection_event_post_valid_sources" + }, + { + "label": "mark-active.post.ts", + "file_type": "code", + "source_file": "backend/server/api/protection/mark-active.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "mark-active.post.ts", + "id": "backend_server_api_protection_mark_active_post_ts" + }, + { + "label": "coverage.get.ts", + "file_type": "code", + "source_file": "backend/server/api/protection/coverage.get.ts", + "source_location": "L1", + "community": 9, + "norm_label": "coverage.get.ts", + "id": "backend_server_api_protection_coverage_get_ts" + }, + { + "label": "webcontent-domains.get.ts", + "file_type": "code", + "source_file": "backend/server/api/protection/webcontent-domains.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "webcontent-domains.get.ts", + "id": "backend_server_api_protection_webcontent_domains_get_ts" + }, + { + "label": "COUNTRY_KEYS", + "file_type": "code", + "source_file": "backend/server/api/protection/webcontent-domains.get.ts", + "source_location": "L4", + "community": 4, + "norm_label": "country_keys", + "id": "protection_webcontent_domains_get_country_keys" + }, + { + "label": "CountryKey", + "file_type": "code", + "source_file": "backend/server/api/protection/webcontent-domains.get.ts", + "source_location": "L5", + "community": 4, + "norm_label": "countrykey", + "id": "protection_webcontent_domains_get_countrykey" + }, + { + "label": "GLOBAL_LISTS", + "file_type": "code", + "source_file": "backend/server/api/protection/webcontent-domains.get.ts", + "source_location": "L7", + "community": 4, + "norm_label": "global_lists", + "id": "protection_webcontent_domains_get_global_lists" + }, + { + "label": "dev-force-disabled.post.ts", + "file_type": "code", + "source_file": "backend/server/api/protection/dev-force-disabled.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "dev-force-disabled.post.ts", + "id": "backend_server_api_protection_dev_force_disabled_post_ts" + }, + { + "label": "screentime-passcode.get.ts", + "file_type": "code", + "source_file": "backend/server/api/protection/screentime-passcode.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "screentime-passcode.get.ts", + "id": "backend_server_api_protection_screentime_passcode_get_ts" + }, + { + "label": "screentime-passcode.post.ts", + "file_type": "code", + "source_file": "backend/server/api/protection/screentime-passcode.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "screentime-passcode.post.ts", + "id": "backend_server_api_protection_screentime_passcode_post_ts" + }, + { + "label": "state.get.ts", + "file_type": "code", + "source_file": "backend/server/api/protection/state.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "state.get.ts", + "id": "backend_server_api_protection_state_get_ts" + }, + { + "label": "check-nickname.get.ts", + "file_type": "code", + "source_file": "backend/server/api/profile/check-nickname.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "check-nickname.get.ts", + "id": "backend_server_api_profile_check_nickname_get_ts" + }, + { + "label": "PROFANITY_BLOCKLIST", + "file_type": "code", + "source_file": "backend/server/api/profile/check-nickname.get.ts", + "source_location": "L17", + "community": 4, + "norm_label": "profanity_blocklist", + "id": "profile_check_nickname_get_profanity_blocklist" + }, + { + "label": "isProfanity()", + "file_type": "code", + "source_file": "backend/server/api/profile/check-nickname.get.ts", + "source_location": "L43", + "community": 4, + "norm_label": "isprofanity()", + "id": "profile_check_nickname_get_isprofanity" + }, + { + "label": "lyra-voice.patch.ts", + "file_type": "code", + "source_file": "backend/server/api/profile/me/lyra-voice.patch.ts", + "source_location": "L1", + "community": 33, + "norm_label": "lyra-voice.patch.ts", + "id": "backend_server_api_profile_me_lyra_voice_patch_ts" + }, + { + "label": "sos-insights.get.ts", + "file_type": "code", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "sos-insights.get.ts", + "id": "backend_server_api_profile_me_sos_insights_get_ts" + }, + { + "label": "Helper", + "file_type": "code", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L30", + "community": 33, + "norm_label": "helper", + "id": "me_sos_insights_get_helper" + }, + { + "label": "cooldown-history.get.ts", + "file_type": "code", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "cooldown-history.get.ts", + "id": "backend_server_api_profile_me_cooldown_history_get_ts" + }, + { + "label": "CooldownEntry", + "file_type": "code", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L27", + "community": 33, + "norm_label": "cooldownentry", + "id": "me_cooldown_history_get_cooldownentry" + }, + { + "label": "onboarding-step.patch.ts", + "file_type": "code", + "source_file": "backend/server/api/profile/me/onboarding-step.patch.ts", + "source_location": "L1", + "community": 33, + "norm_label": "onboarding-step.patch.ts", + "id": "backend_server_api_profile_me_onboarding_step_patch_ts" + }, + { + "label": "install-event.post.ts", + "file_type": "code", + "source_file": "backend/server/api/profile/me/install-event.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "install-event.post.ts", + "id": "backend_server_api_profile_me_install_event_post_ts" + }, + { + "label": "approved-domains.get.ts", + "file_type": "code", + "source_file": "backend/server/api/profile/me/approved-domains.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "approved-domains.get.ts", + "id": "backend_server_api_profile_me_approved_domains_get_ts" + }, + { + "label": "demographics.get.ts", + "file_type": "code", + "source_file": "backend/server/api/profile/me/demographics.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "demographics.get.ts", + "id": "backend_server_api_profile_me_demographics_get_ts" + }, + { + "label": "diga-banner-dismiss.post.ts", + "file_type": "code", + "source_file": "backend/server/api/profile/me/diga-banner-dismiss.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "diga-banner-dismiss.post.ts", + "id": "backend_server_api_profile_me_diga_banner_dismiss_post_ts" + }, + { + "label": "demographics.patch.ts", + "file_type": "code", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L1", + "community": 33, + "norm_label": "demographics.patch.ts", + "id": "backend_server_api_profile_me_demographics_patch_ts" + }, + { + "label": "GENDER_VALUES", + "file_type": "code", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L29", + "community": 33, + "norm_label": "gender_values", + "id": "me_demographics_patch_gender_values" + }, + { + "label": "MARITAL_VALUES", + "file_type": "code", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L30", + "community": 33, + "norm_label": "marital_values", + "id": "me_demographics_patch_marital_values" + }, + { + "label": "EMPLOYMENT_STATUS_VALUES", + "file_type": "code", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L40", + "community": 33, + "norm_label": "employment_status_values", + "id": "me_demographics_patch_employment_status_values" + }, + { + "label": "JOB_TENURE_VALUES", + "file_type": "code", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L49", + "community": 33, + "norm_label": "job_tenure_values", + "id": "me_demographics_patch_job_tenure_values" + }, + { + "label": "Schema", + "file_type": "code", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L57", + "community": 33, + "norm_label": "schema", + "id": "me_demographics_patch_schema" + }, + { + "label": "demographics.delete.ts", + "file_type": "code", + "source_file": "backend/server/api/profile/me/demographics.delete.ts", + "source_location": "L1", + "community": 33, + "norm_label": "demographics.delete.ts", + "id": "backend_server_api_profile_me_demographics_delete_ts" + }, + { + "label": "calls-enabled.post.ts", + "file_type": "code", + "source_file": "backend/server/api/me/calls-enabled.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "calls-enabled.post.ts", + "id": "backend_server_api_me_calls_enabled_post_ts" + }, + { + "label": "presence-visibility.post.ts", + "file_type": "code", + "source_file": "backend/server/api/me/presence-visibility.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "presence-visibility.post.ts", + "id": "backend_server_api_me_presence_visibility_post_ts" + }, + { + "label": "following.get.ts", + "file_type": "code", + "source_file": "backend/server/api/me/following.get.ts", + "source_location": "L1", + "community": 33, + "norm_label": "following.get.ts", + "id": "backend_server_api_me_following_get_ts" + }, + { + "label": "last-seen.post.ts", + "file_type": "code", + "source_file": "backend/server/api/me/last-seen.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "last-seen.post.ts", + "id": "backend_server_api_me_last_seen_post_ts" + }, + { + "label": "search.get.ts", + "file_type": "code", + "source_file": "backend/server/api/users/search.get.ts", + "source_location": "L1", + "community": 851, + "norm_label": "search.get.ts", + "id": "backend_server_api_users_search_get_ts" + }, + { + "label": "mdm-status.post.ts", + "file_type": "code", + "source_file": "backend/server/api/users/me/mdm-status.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "mdm-status.post.ts", + "id": "backend_server_api_users_me_mdm_status_post_ts" + }, + { + "label": "Body", + "file_type": "code", + "source_file": "backend/server/api/users/me/mdm-status.post.ts", + "source_location": "L5", + "community": 33, + "norm_label": "body", + "id": "me_mdm_status_post_body" + }, + { + "label": "send-email.post.ts", + "file_type": "code", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L1", + "community": 277, + "norm_label": "send-email.post.ts", + "id": "backend_server_api_auth_hooks_send_email_post_ts" + }, + { + "label": "HookBody", + "file_type": "code", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L23", + "community": 277, + "norm_label": "hookbody", + "id": "auth_hooks_send_email_post_hookbody" + }, + { + "label": "verifySignature()", + "file_type": "code", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L38", + "community": 277, + "norm_label": "verifysignature()", + "id": "auth_hooks_send_email_post_verifysignature" + }, + { + "label": "upload.post.ts", + "file_type": "code", + "source_file": "backend/server/api/avatar/upload.post.ts", + "source_location": "L1", + "community": 47, + "norm_label": "upload.post.ts", + "id": "backend_server_api_avatar_upload_post_ts" + }, + { + "label": "[id].delete.ts", + "file_type": "code", + "source_file": "backend/server/api/mail-connections/[id].delete.ts", + "source_location": "L1", + "community": 6, + "norm_label": "[id].delete.ts", + "id": "backend_server_api_mail_connections_id_delete_ts" + }, + { + "label": "consent.post.ts", + "file_type": "code", + "source_file": "backend/server/api/mail-connections/consent.post.ts", + "source_location": "L1", + "community": 6, + "norm_label": "consent.post.ts", + "id": "backend_server_api_mail_connections_consent_post_ts" + }, + { + "label": "[id].post.ts", + "file_type": "code", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L1", + "community": 6, + "norm_label": "[id].post.ts", + "id": "backend_server_api_mail_connections_id_post_ts" + }, + { + "label": "pending-consent.get.ts", + "file_type": "code", + "source_file": "backend/server/api/mail-connections/pending-consent.get.ts", + "source_location": "L1", + "community": 6, + "norm_label": "pending-consent.get.ts", + "id": "backend_server_api_mail_connections_pending_consent_get_ts" + }, + { + "label": "[id].patch.ts", + "file_type": "code", + "source_file": "backend/server/api/mail-connections/[id].patch.ts", + "source_location": "L1", + "community": 6, + "norm_label": "[id].patch.ts", + "id": "backend_server_api_mail_connections_id_patch_ts" + }, + { + "label": "set-plan.post.ts", + "file_type": "code", + "source_file": "backend/server/api/dev/set-plan.post.ts", + "source_location": "L1", + "community": 244, + "norm_label": "set-plan.post.ts", + "id": "backend_server_api_dev_set_plan_post_ts" + }, + { + "label": "VALID_PLANS", + "file_type": "code", + "source_file": "backend/server/api/dev/set-plan.post.ts", + "source_location": "L5", + "community": 244, + "norm_label": "valid_plans", + "id": "dev_set_plan_post_valid_plans" + }, + { + "label": "AppPlan", + "file_type": "code", + "source_file": "backend/server/api/dev/set-plan.post.ts", + "source_location": "L6", + "community": 244, + "norm_label": "appplan", + "id": "dev_set_plan_post_appplan" + }, + { + "label": "like.post.ts", + "file_type": "code", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "like.post.ts", + "id": "backend_server_api_community_like_post_ts" + }, + { + "label": "domain-stats.get.ts", + "file_type": "code", + "source_file": "backend/server/api/community/domain-stats.get.ts", + "source_location": "L1", + "community": 39, + "norm_label": "domain-stats.get.ts", + "id": "backend_server_api_community_domain_stats_get_ts" + }, + { + "label": "upload-image.post.ts", + "file_type": "code", + "source_file": "backend/server/api/community/upload-image.post.ts", + "source_location": "L1", + "community": 47, + "norm_label": "upload-image.post.ts", + "id": "backend_server_api_community_upload_image_post_ts" + }, + { + "label": "comment.post.ts", + "file_type": "code", + "source_file": "backend/server/api/community/comment.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "comment.post.ts", + "id": "backend_server_api_community_comment_post_ts" + }, + { + "label": "posts.get.ts", + "file_type": "code", + "source_file": "backend/server/api/community/posts.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "posts.get.ts", + "id": "backend_server_api_community_posts_get_ts" + }, + { + "label": "repost.post.ts", + "file_type": "code", + "source_file": "backend/server/api/community/repost.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "repost.post.ts", + "id": "backend_server_api_community_repost_post_ts" + }, + { + "label": "comment-like.post.ts", + "file_type": "code", + "source_file": "backend/server/api/community/comment-like.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "comment-like.post.ts", + "id": "backend_server_api_community_comment_like_post_ts" + }, + { + "label": "post.post.ts", + "file_type": "code", + "source_file": "backend/server/api/community/post.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "post.post.ts", + "id": "backend_server_api_community_post_post_ts" + }, + { + "label": "comments.get.ts", + "file_type": "code", + "source_file": "backend/server/api/community/[postId]/comments.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "comments.get.ts", + "id": "backend_server_api_community_postid_comments_get_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/community/[postId]/index.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "index.get.ts", + "id": "backend_server_api_community_postid_index_get_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/urge/index.get.ts", + "source_location": "L1", + "community": 47, + "norm_label": "index.get.ts", + "id": "backend_server_api_urge_index_get_ts" + }, + { + "label": "index.post.ts", + "file_type": "code", + "source_file": "backend/server/api/urge/index.post.ts", + "source_location": "L1", + "community": 47, + "norm_label": "index.post.ts", + "id": "backend_server_api_urge_index_post_ts" + }, + { + "label": "Emotion", + "file_type": "code", + "source_file": "backend/server/api/urge/index.post.ts", + "source_location": "L4", + "community": 47, + "norm_label": "emotion", + "id": "urge_index_post_emotion" + }, + { + "label": "VALID_EMOTIONS", + "file_type": "code", + "source_file": "backend/server/api/urge/index.post.ts", + "source_location": "L5", + "community": 47, + "norm_label": "valid_emotions", + "id": "urge_index_post_valid_emotions" + }, + { + "label": "profile.get.ts", + "file_type": "code", + "source_file": "backend/server/api/dns/profile.get.ts", + "source_location": "L1", + "community": 6, + "norm_label": "profile.get.ts", + "id": "backend_server_api_dns_profile_get_ts" + }, + { + "label": "session.post.ts", + "file_type": "code", + "source_file": "backend/server/api/sos/session.post.ts", + "source_location": "L1", + "community": 47, + "norm_label": "session.post.ts", + "id": "backend_server_api_sos_session_post_ts" + }, + { + "label": "vote.post.ts", + "file_type": "code", + "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "vote.post.ts", + "id": "backend_server_api_domain_submissions_id_vote_post_ts" + }, + { + "label": "challenge.post.ts", + "file_type": "code", + "source_file": "backend/server/api/games/challenge.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "challenge.post.ts", + "id": "backend_server_api_games_challenge_post_ts" + }, + { + "label": "challenge-memory.post.ts", + "file_type": "code", + "source_file": "backend/server/api/games/challenge-memory.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "challenge-memory.post.ts", + "id": "backend_server_api_games_challenge_memory_post_ts" + }, + { + "label": "MEMORY_EMOJIS", + "file_type": "code", + "source_file": "backend/server/api/games/challenge-memory.post.ts", + "source_location": "L4", + "community": 4, + "norm_label": "memory_emojis", + "id": "games_challenge_memory_post_memory_emojis" + }, + { + "label": "shuffle()", + "file_type": "code", + "source_file": "backend/server/api/games/challenge-memory.post.ts", + "source_location": "L6", + "community": 4, + "norm_label": "shuffle()", + "id": "games_challenge_memory_post_shuffle" + }, + { + "label": "highscore.get.ts", + "file_type": "code", + "source_file": "backend/server/api/games/highscore.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "highscore.get.ts", + "id": "backend_server_api_games_highscore_get_ts" + }, + { + "label": "share-text.post.ts", + "file_type": "code", + "source_file": "backend/server/api/games/share-text.post.ts", + "source_location": "L1", + "community": 683, + "norm_label": "share-text.post.ts", + "id": "backend_server_api_games_share_text_post_ts" + }, + { + "label": "GAME_VIBES", + "file_type": "code", + "source_file": "backend/server/api/games/share-text.post.ts", + "source_location": "L2", + "community": 683, + "norm_label": "game_vibes", + "id": "games_share_text_post_game_vibes" + }, + { + "label": "getGameVibe()", + "file_type": "code", + "source_file": "backend/server/api/games/share-text.post.ts", + "source_location": "L9", + "community": 683, + "norm_label": "getgamevibe()", + "id": "games_share_text_post_getgamevibe" + }, + { + "label": "buildFallback()", + "file_type": "code", + "source_file": "backend/server/api/games/share-text.post.ts", + "source_location": "L17", + "community": 683, + "norm_label": "buildfallback()", + "id": "games_share_text_post_buildfallback" + }, + { + "label": "leaderboard.get.ts", + "file_type": "code", + "source_file": "backend/server/api/games/leaderboard.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "leaderboard.get.ts", + "id": "backend_server_api_games_leaderboard_get_ts" + }, + { + "label": "history.get.ts", + "file_type": "code", + "source_file": "backend/server/api/games/history.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "history.get.ts", + "id": "backend_server_api_games_history_get_ts" + }, + { + "label": "rating.post.ts", + "file_type": "code", + "source_file": "backend/server/api/games/rating.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "rating.post.ts", + "id": "backend_server_api_games_rating_post_ts" + }, + { + "label": "ranking.get.ts", + "file_type": "code", + "source_file": "backend/server/api/games/ranking.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "ranking.get.ts", + "id": "backend_server_api_games_ranking_get_ts" + }, + { + "label": "ratings.get.ts", + "file_type": "code", + "source_file": "backend/server/api/games/ratings.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "ratings.get.ts", + "id": "backend_server_api_games_ratings_get_ts" + }, + { + "label": "score.post.ts", + "file_type": "code", + "source_file": "backend/server/api/games/score.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "score.post.ts", + "id": "backend_server_api_games_score_post_ts" + }, + { + "label": "[id].get.ts", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id].get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "[id].get.ts", + "id": "backend_server_api_games_challenge_id_get_ts" + }, + { + "label": "move.post.ts", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", + "source_location": "L1", + "community": 5, + "norm_label": "move.post.ts", + "id": "backend_server_api_games_challenge_id_move_post_ts" + }, + { + "label": "WIN_LINES", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", + "source_location": "L3", + "community": 5, + "norm_label": "win_lines", + "id": "id_move_post_win_lines" + }, + { + "label": "checkWinner()", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", + "source_location": "L9", + "community": 5, + "norm_label": "checkwinner()", + "id": "id_move_post_checkwinner" + }, + { + "label": "accept.post.ts", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id]/accept.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "accept.post.ts", + "id": "backend_server_api_games_challenge_id_accept_post_ts" + }, + { + "label": "live-toggle.post.ts", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id]/live-toggle.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "live-toggle.post.ts", + "id": "backend_server_api_games_challenge_id_live_toggle_post_ts" + }, + { + "label": "rematch.post.ts", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "rematch.post.ts", + "id": "backend_server_api_games_challenge_id_rematch_post_ts" + }, + { + "label": "MEMORY_EMOJIS", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", + "source_location": "L4", + "community": 4, + "norm_label": "memory_emojis", + "id": "id_rematch_post_memory_emojis" + }, + { + "label": "shuffle()", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", + "source_location": "L5", + "community": 4, + "norm_label": "shuffle()", + "id": "id_rematch_post_shuffle" + }, + { + "label": "memory-move.post.ts", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "memory-move.post.ts", + "id": "backend_server_api_games_challenge_id_memory_move_post_ts" + }, + { + "label": "MemoryCard", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", + "source_location": "L3", + "community": 4, + "norm_label": "memorycard", + "id": "id_memory_move_post_memorycard" + }, + { + "label": "MemoryState", + "file_type": "code", + "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", + "source_location": "L9", + "community": 4, + "norm_label": "memorystate", + "id": "id_memory_move_post_memorystate" + }, + { + "label": "[id].delete.ts", + "file_type": "code", + "source_file": "backend/server/api/notifications/[id].delete.ts", + "source_location": "L1", + "community": 4, + "norm_label": "[id].delete.ts", + "id": "backend_server_api_notifications_id_delete_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/notifications/index.get.ts", + "source_location": "L1", + "community": 4, + "norm_label": "index.get.ts", + "id": "backend_server_api_notifications_index_get_ts" + }, + { + "label": "read.post.ts", + "file_type": "code", + "source_file": "backend/server/api/notifications/read.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "read.post.ts", + "id": "backend_server_api_notifications_read_post_ts" + }, + { + "label": "welcome-back.get.ts", + "file_type": "code", + "source_file": "backend/server/api/lyra/welcome-back.get.ts", + "source_location": "L1", + "community": 413, + "norm_label": "welcome-back.get.ts", + "id": "backend_server_api_lyra_welcome_back_get_ts" + }, + { + "label": "FALLBACK_MESSAGES", + "file_type": "code", + "source_file": "backend/server/api/lyra/welcome-back.get.ts", + "source_location": "L27", + "community": 413, + "norm_label": "fallback_messages", + "id": "lyra_welcome_back_get_fallback_messages" + }, + { + "label": "pickRandom()", + "file_type": "code", + "source_file": "backend/server/api/lyra/welcome-back.get.ts", + "source_location": "L96", + "community": 413, + "norm_label": "pickrandom()", + "id": "lyra_welcome_back_get_pickrandom" + }, + { + "label": "extract.post.ts", + "file_type": "code", + "source_file": "backend/server/api/lyra/memories/extract.post.ts", + "source_location": "L1", + "community": 69, + "norm_label": "extract.post.ts", + "id": "backend_server_api_lyra_memories_extract_post_ts" + }, + { + "label": "VALID_TYPES", + "file_type": "code", + "source_file": "backend/server/api/lyra/memories/extract.post.ts", + "source_location": "L15", + "community": 69, + "norm_label": "valid_types", + "id": "memories_extract_post_valid_types" + }, + { + "label": "redeem-diga-code.post.ts", + "file_type": "code", + "source_file": "backend/server/api/onboarding/redeem-diga-code.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "redeem-diga-code.post.ts", + "id": "backend_server_api_onboarding_redeem_diga_code_post_ts" + }, + { + "label": "errorMessage()", + "file_type": "code", + "source_file": "backend/server/api/onboarding/redeem-diga-code.post.ts", + "source_location": "L39", + "community": 4, + "norm_label": "errormessage()", + "id": "onboarding_redeem_diga_code_post_errormessage" + }, + { + "label": "notifications-cleanup.ts", + "file_type": "code", + "source_file": "backend/server/api/cron/notifications-cleanup.ts", + "source_location": "L1", + "community": 4, + "norm_label": "notifications-cleanup.ts", + "id": "backend_server_api_cron_notifications_cleanup_ts" + }, + { + "label": "lyra-post.ts", + "file_type": "code", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L1", + "community": 127, + "norm_label": "lyra-post.ts", + "id": "backend_server_api_cron_lyra_post_ts" + }, + { + "label": "TOPICS", + "file_type": "code", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L32", + "community": 127, + "norm_label": "topics", + "id": "cron_lyra_post_topics" + }, + { + "label": "postFromCatalog()", + "file_type": "code", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L106", + "community": 127, + "norm_label": "postfromcatalog()", + "id": "cron_lyra_post_postfromcatalog" + }, + { + "label": "postFromLLM()", + "file_type": "code", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L134", + "community": 127, + "norm_label": "postfromllm()", + "id": "cron_lyra_post_postfromllm" + }, + { + "label": "[id].delete.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/[id].delete.ts", + "source_location": "L1", + "community": 32, + "norm_label": "[id].delete.ts", + "id": "backend_server_api_devices_id_delete_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/index.get.ts", + "source_location": "L1", + "community": 32, + "norm_label": "index.get.ts", + "id": "backend_server_api_devices_index_get_ts" + }, + { + "label": "protected.get.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/protected.get.ts", + "source_location": "L1", + "community": 80, + "norm_label": "protected.get.ts", + "id": "backend_server_api_devices_protected_get_ts" + }, + { + "label": "register.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/register.post.ts", + "source_location": "L1", + "community": 32, + "norm_label": "register.post.ts", + "id": "backend_server_api_devices_register_post_ts" + }, + { + "label": "enroll.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/enroll.post.ts", + "source_location": "L1", + "community": 80, + "norm_label": "enroll.post.ts", + "id": "backend_server_api_devices_enroll_post_ts" + }, + { + "label": "protection-state.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/protection-state.post.ts", + "source_location": "L1", + "community": 33, + "norm_label": "protection-state.post.ts", + "id": "backend_server_api_devices_protection_state_post_ts" + }, + { + "label": "check-lock.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/check-lock.post.ts", + "source_location": "L1", + "community": 32, + "norm_label": "check-lock.post.ts", + "id": "backend_server_api_devices_check_lock_post_ts" + }, + { + "label": "handshake.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/protected/handshake.post.ts", + "source_location": "L1", + "community": 777, + "norm_label": "handshake.post.ts", + "id": "backend_server_api_devices_protected_handshake_post_ts" + }, + { + "label": "index.get.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/approvals/index.get.ts", + "source_location": "L1", + "community": 257, + "norm_label": "index.get.ts", + "id": "backend_server_api_devices_approvals_index_get_ts" + }, + { + "label": "index.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/approvals/index.post.ts", + "source_location": "L1", + "community": 257, + "norm_label": "index.post.ts", + "id": "backend_server_api_devices_approvals_index_post_ts" + }, + { + "label": "[id].get.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/approvals/[id].get.ts", + "source_location": "L1", + "community": 257, + "norm_label": "[id].get.ts", + "id": "backend_server_api_devices_approvals_id_get_ts" + }, + { + "label": "approve.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/approvals/[id]/approve.post.ts", + "source_location": "L1", + "community": 257, + "norm_label": "approve.post.ts", + "id": "backend_server_api_devices_approvals_id_approve_post_ts" + }, + { + "label": "email.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", + "source_location": "L1", + "community": 257, + "norm_label": "email.post.ts", + "id": "backend_server_api_devices_approvals_id_email_post_ts" + }, + { + "label": "reject.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/approvals/[id]/reject.post.ts", + "source_location": "L1", + "community": 257, + "norm_label": "reject.post.ts", + "id": "backend_server_api_devices_approvals_id_reject_post_ts" + }, + { + "label": "profile.reg.get.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", + "source_location": "L1", + "community": 80, + "norm_label": "profile.reg.get.ts", + "id": "backend_server_api_devices_id_profile_reg_get_ts" + }, + { + "label": "cancel-release.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/[id]/cancel-release.post.ts", + "source_location": "L1", + "community": 32, + "norm_label": "cancel-release.post.ts", + "id": "backend_server_api_devices_id_cancel_release_post_ts" + }, + { + "label": "profile.mobileconfig.get.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", + "source_location": "L1", + "community": 80, + "norm_label": "profile.mobileconfig.get.ts", + "id": "backend_server_api_devices_id_profile_mobileconfig_get_ts" + }, + { + "label": "confirm-installed.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/[id]/confirm-installed.post.ts", + "source_location": "L1", + "community": 80, + "norm_label": "confirm-installed.post.ts", + "id": "backend_server_api_devices_id_confirm_installed_post_ts" + }, + { + "label": "request-release.post.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/[id]/request-release.post.ts", + "source_location": "L1", + "community": 32, + "norm_label": "request-release.post.ts", + "id": "backend_server_api_devices_id_request_release_post_ts" + }, + { + "label": "revoke.delete.ts", + "file_type": "code", + "source_file": "backend/server/api/devices/[id]/revoke.delete.ts", + "source_location": "L1", + "community": 80, + "norm_label": "revoke.delete.ts", + "id": "backend_server_api_devices_id_revoke_delete_ts" + }, + { + "label": "portal.post.ts", + "file_type": "code", + "source_file": "backend/server/api/stripe/portal.post.ts", + "source_location": "L1", + "community": 4, + "norm_label": "portal.post.ts", + "id": "backend_server_api_stripe_portal_post_ts" + }, + { + "label": "checkout.post.ts", + "file_type": "code", + "source_file": "backend/server/api/stripe/checkout.post.ts", + "source_location": "L1", + "community": 778, + "norm_label": "checkout.post.ts", + "id": "backend_server_api_stripe_checkout_post_ts" + }, + { + "label": "webhook.post.ts", + "file_type": "code", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L1", + "community": 47, + "norm_label": "webhook.post.ts", + "id": "backend_server_api_stripe_webhook_post_ts" + }, + { + "label": "gambling-domains.json", + "file_type": "code", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L1", + "community": 448, + "norm_label": "gambling-domains.json", + "id": "backend_server_data_gambling_domains_json" + }, + { + "label": "_meta", + "file_type": "code", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L2", + "community": 448, + "norm_label": "_meta", + "id": "data_gambling_domains_meta" + }, + { + "label": "version", + "file_type": "code", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L3", + "community": 448, + "norm_label": "version", + "id": "data_gambling_domains_meta_version" + }, + { + "label": "updatedAt", + "file_type": "code", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L4", + "community": 448, + "norm_label": "updatedat", + "id": "data_gambling_domains_meta_updatedat" + }, + { + "label": "maxDomainsPerCountry", + "file_type": "code", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L5", + "community": 448, + "norm_label": "maxdomainspercountry", + "id": "data_gambling_domains_meta_maxdomainspercountry" + }, + { + "label": "status", + "file_type": "code", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L6", + "community": 448, + "norm_label": "status", + "id": "data_gambling_domains_meta_status" + }, + { + "label": "DE", + "file_type": "code", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L8", + "community": 448, + "norm_label": "de", + "id": "data_gambling_domains_de" + }, + { + "label": "GB", + "file_type": "code", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L46", + "community": 448, + "norm_label": "gb", + "id": "data_gambling_domains_gb" + }, + { + "label": "FR", + "file_type": "code", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L78", + "community": 448, + "norm_label": "fr", + "id": "data_gambling_domains_fr" + }, + { + "label": "TN", + "file_type": "code", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L100", + "community": 448, + "norm_label": "tn", + "id": "data_gambling_domains_tn" + }, + { + "label": "push.ts", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L1", + "community": 566, + "norm_label": "push.ts", + "id": "backend_server_services_push_ts" + }, + { + "label": "ExpoModule", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L25", + "community": 566, + "norm_label": "expomodule", + "id": "services_push_expomodule" + }, + { + "label": "ExpoInstance", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L26", + "community": 566, + "norm_label": "expoinstance", + "id": "services_push_expoinstance" + }, + { + "label": "ExpoPushMessage", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L27", + "community": 566, + "norm_label": "expopushmessage", + "id": "services_push_expopushmessage" + }, + { + "label": "ensureExpo()", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L32", + "community": 566, + "norm_label": "ensureexpo()", + "id": "services_push_ensureexpo" + }, + { + "label": "ChatPushPayload", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L42", + "community": 566, + "norm_label": "chatpushpayload", + "id": "services_push_chatpushpayload" + }, + { + "label": "sendChatPush()", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L58", + "community": 566, + "norm_label": "sendchatpush()", + "id": "services_push_sendchatpush" + }, + { + "label": "getDisplayName()", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L136", + "community": 566, + "norm_label": "getdisplayname()", + "id": "services_push_getdisplayname" + }, + { + "label": "truncatePreview()", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L148", + "community": 566, + "norm_label": "truncatepreview()", + "id": "services_push_truncatepreview" + }, + { + "label": "DeviceAddedPushPayload", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L153", + "community": 566, + "norm_label": "deviceaddedpushpayload", + "id": "services_push_deviceaddedpushpayload" + }, + { + "label": "devicePlatformLabel()", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L162", + "community": 566, + "norm_label": "deviceplatformlabel()", + "id": "services_push_deviceplatformlabel" + }, + { + "label": "sendDeviceAddedPush()", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L181", + "community": 566, + "norm_label": "senddeviceaddedpush()", + "id": "services_push_senddeviceaddedpush" + }, + { + "label": "CallRingPushPayload", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L246", + "community": 566, + "norm_label": "callringpushpayload", + "id": "services_push_callringpushpayload" + }, + { + "label": "sendCallRingPush()", + "file_type": "code", + "source_file": "backend/server/services/push.ts", + "source_location": "L273", + "community": 566, + "norm_label": "sendcallringpush()", + "id": "services_push_sendcallringpush" + }, + { + "label": "voip-push.ts", + "file_type": "code", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L1", + "community": 566, + "norm_label": "voip-push.ts", + "id": "backend_server_services_voip_push_ts" + }, + { + "label": "ApnModule", + "file_type": "code", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L26", + "community": 566, + "norm_label": "apnmodule", + "id": "services_voip_push_apnmodule" + }, + { + "label": "ApnProvider", + "file_type": "code", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L27", + "community": 566, + "norm_label": "apnprovider", + "id": "services_voip_push_apnprovider" + }, + { + "label": "ApnNotification", + "file_type": "code", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L28", + "community": 566, + "norm_label": "apnnotification", + "id": "services_voip_push_apnnotification" + }, + { + "label": "tokenEnvCache", + "file_type": "code", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L36", + "community": 566, + "norm_label": "tokenenvcache", + "id": "services_voip_push_tokenenvcache" + }, + { + "label": "ensureInit()", + "file_type": "code", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L38", + "community": 566, + "norm_label": "ensureinit()", + "id": "services_voip_push_ensureinit" + }, + { + "label": "VoIPCallPayload", + "file_type": "code", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L84", + "community": 566, + "norm_label": "voipcallpayload", + "id": "services_voip_push_voipcallpayload" + }, + { + "label": "sendVoIPPush()", + "file_type": "code", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L108", + "community": 566, + "norm_label": "sendvoippush()", + "id": "services_voip_push_sendvoippush" + }, + { + "label": "shutdownVoIPProvider()", + "file_type": "code", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L171", + "community": 566, + "norm_label": "shutdownvoipprovider()", + "id": "services_voip_push_shutdownvoipprovider" + }, + { + "label": "start-idle-staging.sh", + "file_type": "code", + "source_file": "backend/imap-idle/start-idle-staging.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "community": 779, + "norm_label": "start-idle-staging.sh", + "id": "backend_imap_idle_start_idle_staging_sh" + }, + { + "label": "start-idle-staging.sh script", + "file_type": "code", + "source_file": "backend/imap-idle/start-idle-staging.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 779, + "norm_label": "start-idle-staging.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_backend_imap_idle_start_idle_staging_sh__entry" + }, + { + "label": "package.json", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L1", + "community": 424, + "norm_label": "package.json", + "id": "backend_imap_idle_package_json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L2", + "community": 424, + "norm_label": "name", + "id": "imap_idle_package_name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L3", + "community": 424, + "norm_label": "version", + "id": "imap_idle_package_version" + }, + { + "label": "private", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L4", + "community": 424, + "norm_label": "private", + "id": "imap_idle_package_private" + }, + { + "label": "type", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L5", + "community": 424, + "norm_label": "type", + "id": "imap_idle_package_type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L6", + "community": 424, + "norm_label": "description", + "id": "imap_idle_package_description" + }, + { + "label": "main", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L7", + "community": 424, + "norm_label": "main", + "id": "imap_idle_package_main" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L8", + "community": 424, + "norm_label": "scripts", + "id": "imap_idle_package_scripts" + }, + { + "label": "start", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L9", + "community": 424, + "norm_label": "start", + "id": "imap_idle_package_scripts_start" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L11", + "community": 424, + "norm_label": "dependencies", + "id": "imap_idle_package_dependencies" + }, + { + "label": "imapflow", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L12", + "community": 424, + "norm_label": "imapflow", + "id": "imap_idle_package_dependencies_imapflow" + }, + { + "label": "pg", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L13", + "community": 424, + "norm_label": "pg", + "id": "imap_idle_package_dependencies_pg" + }, + { + "label": "engines", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L15", + "community": 424, + "norm_label": "engines", + "id": "imap_idle_package_engines" + }, + { + "label": "node", + "file_type": "code", + "source_file": "backend/imap-idle/package.json", + "source_location": "L16", + "community": 424, + "norm_label": "node", + "id": "imap_idle_package_engines_node" }, { "label": "index.mjs", @@ -25226,7623 +13363,6 @@ "norm_label": "main()", "id": "imap_idle_index_main" }, - { - "label": "deploy-from-artifact.sh", - "file_type": "code", - "source_file": "scripts/deploy-from-artifact.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "community": 662, - "norm_label": "deploy-from-artifact.sh", - "id": "scripts_deploy_from_artifact_sh" - }, - { - "label": "deploy-from-artifact.sh script", - "file_type": "code", - "source_file": "scripts/deploy-from-artifact.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "bash_entrypoint" - }, - "community": 662, - "norm_label": "deploy-from-artifact.sh script", - "id": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_from_artifact_sh__entry" - }, - { - "label": "log()", - "file_type": "code", - "source_file": "scripts/deploy-from-artifact.sh", - "source_location": "L28", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "community": 662, - "norm_label": "log()", - "id": "scripts_deploy_from_artifact_log" - }, - { - "label": "log_err()", - "file_type": "code", - "source_file": "scripts/deploy-from-artifact.sh", - "source_location": "L29", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "community": 662, - "norm_label": "log_err()", - "id": "scripts_deploy_from_artifact_log_err" - }, - { - "label": "PATH", - "file_type": "code", - "source_file": "scripts/deploy-from-artifact.sh", - "source_location": "L33", - "metadata": { - "language": "bash", - "kind": "code" - }, - "community": 662, - "norm_label": "path", - "id": "scripts_deploy_from_artifact_path" - }, - { - "label": "LockScreen.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/LockScreen.tsx", - "source_location": "L1", - "community": 20, - "norm_label": "lockscreen.tsx", - "id": "apps_rebreak_native_components_lockscreen_tsx" - }, - { - "label": "LockScreen()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/LockScreen.tsx", - "source_location": "L36", - "community": 20, - "norm_label": "lockscreen()", - "id": "components_lockscreen_lockscreen" - }, - { - "label": "appLock.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/appLock.ts", - "source_location": "L1", - "community": 20, - "norm_label": "applock.ts", - "id": "apps_rebreak_native_stores_applock_ts" - }, - { - "label": "LocalAuthModule", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/appLock.ts", - "source_location": "L11", - "community": 20, - "norm_label": "localauthmodule", - "id": "stores_applock_localauthmodule" - }, - { - "label": "AppLockState", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/appLock.ts", - "source_location": "L40", - "community": 20, - "norm_label": "applockstate", - "id": "stores_applock_applockstate" - }, - { - "label": "useAppLockStore", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/appLock.ts", - "source_location": "L58", - "community": 20, - "norm_label": "useapplockstore", - "id": "stores_applock_useapplockstore" - }, - { - "label": "nitro.config.ts", - "file_type": "code", - "source_file": "backend/nitro.config.ts", - "source_location": "L1", - "community": 768, - "norm_label": "nitro.config.ts", - "id": "backend_nitro_config_ts" - }, - { - "label": "scan-internal.post.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L1", - "community": 6, - "norm_label": "scan-internal.post.ts", - "id": "backend_server_api_mail_scan_internal_post_ts" - }, - { - "label": "scan.post.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L1", - "community": 6, - "norm_label": "scan.post.ts", - "id": "backend_server_api_mail_scan_post_ts" - }, - { - "label": "push.ts", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L1", - "community": 566, - "norm_label": "push.ts", - "id": "backend_server_services_push_ts" - }, - { - "label": "ExpoModule", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L25", - "community": 566, - "norm_label": "expomodule", - "id": "services_push_expomodule" - }, - { - "label": "ExpoInstance", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L26", - "community": 566, - "norm_label": "expoinstance", - "id": "services_push_expoinstance" - }, - { - "label": "ExpoPushMessage", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L27", - "community": 566, - "norm_label": "expopushmessage", - "id": "services_push_expopushmessage" - }, - { - "label": "ensureExpo()", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L32", - "community": 566, - "norm_label": "ensureexpo()", - "id": "services_push_ensureexpo" - }, - { - "label": "ChatPushPayload", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L42", - "community": 566, - "norm_label": "chatpushpayload", - "id": "services_push_chatpushpayload" - }, - { - "label": "sendChatPush()", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L58", - "community": 566, - "norm_label": "sendchatpush()", - "id": "services_push_sendchatpush" - }, - { - "label": "getDisplayName()", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L136", - "community": 566, - "norm_label": "getdisplayname()", - "id": "services_push_getdisplayname" - }, - { - "label": "truncatePreview()", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L148", - "community": 566, - "norm_label": "truncatepreview()", - "id": "services_push_truncatepreview" - }, - { - "label": "DeviceAddedPushPayload", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L153", - "community": 566, - "norm_label": "deviceaddedpushpayload", - "id": "services_push_deviceaddedpushpayload" - }, - { - "label": "devicePlatformLabel()", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L162", - "community": 566, - "norm_label": "deviceplatformlabel()", - "id": "services_push_deviceplatformlabel" - }, - { - "label": "sendDeviceAddedPush()", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L181", - "community": 566, - "norm_label": "senddeviceaddedpush()", - "id": "services_push_senddeviceaddedpush" - }, - { - "label": "CallRingPushPayload", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L246", - "community": 566, - "norm_label": "callringpushpayload", - "id": "services_push_callringpushpayload" - }, - { - "label": "sendCallRingPush()", - "file_type": "code", - "source_file": "backend/server/services/push.ts", - "source_location": "L273", - "community": 566, - "norm_label": "sendcallringpush()", - "id": "services_push_sendcallringpush" - }, - { - "label": "CLAUDE.md", - "file_type": "document", - "source_file": "CLAUDE.md", - "source_location": "L1", - "community": 874, - "norm_label": "claude.md", - "id": "claude_md" - }, - { - "label": "CLAUDE.md \u2014 rebreak-monorepo", - "file_type": "document", - "source_file": "CLAUDE.md", - "source_location": "L1", - "community": 874, - "norm_label": "claude.md \u2014 rebreak-monorepo", - "id": "rebreak_monorepo_claude_claude_md_rebreak_monorepo" - }, - { - "label": "graphify (Knowledge-Graph)", - "file_type": "document", - "source_file": "CLAUDE.md", - "source_location": "L5", - "community": 874, - "norm_label": "graphify (knowledge-graph)", - "id": "rebreak_monorepo_claude_graphify_knowledge_graph" - }, - { - "label": "app.json", - "file_type": "code", - "source_file": "app.json", - "source_location": "L1", - "community": 708, - "norm_label": "app.json", - "id": "app_json" - }, - { - "label": "ios", - "file_type": "code", - "source_file": "app.json", - "source_location": "L2", - "community": 708, - "norm_label": "ios", - "id": "rebreak_monorepo_app_ios" - }, - { - "label": "bundleIdentifier", - "file_type": "code", - "source_file": "app.json", - "source_location": "L3", - "community": 708, - "norm_label": "bundleidentifier", - "id": "rebreak_monorepo_app_ios_bundleidentifier" - }, - { - "label": "package.json", - "file_type": "code", - "source_file": "package.json", - "source_location": "L1", - "community": 271, - "norm_label": "package.json", - "id": "package_json" - }, - { - "label": "name", - "file_type": "code", - "source_file": "package.json", - "source_location": "L2", - "community": 271, - "norm_label": "name", - "id": "rebreak_monorepo_package_name" - }, - { - "label": "private", - "file_type": "code", - "source_file": "package.json", - "source_location": "L3", - "community": 271, - "norm_label": "private", - "id": "rebreak_monorepo_package_private" - }, - { - "label": "version", - "file_type": "code", - "source_file": "package.json", - "source_location": "L4", - "community": 271, - "norm_label": "version", - "id": "rebreak_monorepo_package_version" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "package.json", - "source_location": "L5", - "community": 271, - "norm_label": "scripts", - "id": "rebreak_monorepo_package_scripts" - }, - { - "label": "dev:backend", - "file_type": "code", - "source_file": "package.json", - "source_location": "L6", - "community": 271, - "norm_label": "dev:backend", - "id": "rebreak_monorepo_package_scripts_dev_backend" - }, - { - "label": "dev:native", - "file_type": "code", - "source_file": "package.json", - "source_location": "L7", - "community": 271, - "norm_label": "dev:native", - "id": "rebreak_monorepo_package_scripts_dev_native" - }, - { - "label": "dev:admin", - "file_type": "code", - "source_file": "package.json", - "source_location": "L8", - "community": 271, - "norm_label": "dev:admin", - "id": "rebreak_monorepo_package_scripts_dev_admin" - }, - { - "label": "build:backend", - "file_type": "code", - "source_file": "package.json", - "source_location": "L9", - "community": 271, - "norm_label": "build:backend", - "id": "rebreak_monorepo_package_scripts_build_backend" - }, - { - "label": "build:admin", - "file_type": "code", - "source_file": "package.json", - "source_location": "L10", - "community": 271, - "norm_label": "build:admin", - "id": "rebreak_monorepo_package_scripts_build_admin" - }, - { - "label": "android", - "file_type": "code", - "source_file": "package.json", - "source_location": "L11", - "community": 271, - "norm_label": "android", - "id": "rebreak_monorepo_package_scripts_android" - }, - { - "label": "ios", - "file_type": "code", - "source_file": "package.json", - "source_location": "L12", - "community": 271, - "norm_label": "ios", - "id": "rebreak_monorepo_package_scripts_ios" - }, - { - "label": "engines", - "file_type": "code", - "source_file": "package.json", - "source_location": "L14", - "community": 271, - "norm_label": "engines", - "id": "rebreak_monorepo_package_engines" - }, - { - "label": "node", - "file_type": "code", - "source_file": "package.json", - "source_location": "L15", - "community": 271, - "norm_label": "node", - "id": "rebreak_monorepo_package_engines_node" - }, - { - "label": "packageManager", - "file_type": "code", - "source_file": "package.json", - "source_location": "L18", - "community": 271, - "norm_label": "packagemanager", - "id": "rebreak_monorepo_package_packagemanager" - }, - { - "label": "pnpm", - "file_type": "code", - "source_file": "package.json", - "source_location": "L19", - "community": 271, - "norm_label": "pnpm", - "id": "rebreak_monorepo_package_pnpm" - }, - { - "label": "overrides", - "file_type": "code", - "source_file": "package.json", - "source_location": "L20", - "community": 291, - "norm_label": "overrides", - "id": "rebreak_monorepo_package_pnpm_overrides" - }, - { - "label": "metro", - "file_type": "code", - "source_file": "package.json", - "source_location": "L21", - "community": 291, - "norm_label": "metro", - "id": "rebreak_monorepo_package_overrides_metro" - }, - { - "label": "metro-cache", - "file_type": "code", - "source_file": "package.json", - "source_location": "L22", - "community": 291, - "norm_label": "metro-cache", - "id": "rebreak_monorepo_package_overrides_metro_cache" - }, - { - "label": "metro-core", - "file_type": "code", - "source_file": "package.json", - "source_location": "L24", - "community": 291, - "norm_label": "metro-core", - "id": "rebreak_monorepo_package_overrides_metro_core" - }, - { - "label": "metro-file-map", - "file_type": "code", - "source_file": "package.json", - "source_location": "L25", - "community": 291, - "norm_label": "metro-file-map", - "id": "rebreak_monorepo_package_overrides_metro_file_map" - }, - { - "label": "metro-resolver", - "file_type": "code", - "source_file": "package.json", - "source_location": "L26", - "community": 291, - "norm_label": "metro-resolver", - "id": "rebreak_monorepo_package_overrides_metro_resolver" - }, - { - "label": "metro-runtime", - "file_type": "code", - "source_file": "package.json", - "source_location": "L27", - "community": 291, - "norm_label": "metro-runtime", - "id": "rebreak_monorepo_package_overrides_metro_runtime" - }, - { - "label": "metro-source-map", - "file_type": "code", - "source_file": "package.json", - "source_location": "L28", - "community": 291, - "norm_label": "metro-source-map", - "id": "rebreak_monorepo_package_overrides_metro_source_map" - }, - { - "label": "metro-symbolicate", - "file_type": "code", - "source_file": "package.json", - "source_location": "L29", - "community": 291, - "norm_label": "metro-symbolicate", - "id": "rebreak_monorepo_package_overrides_metro_symbolicate" - }, - { - "label": "metro-transform-plugins", - "file_type": "code", - "source_file": "package.json", - "source_location": "L30", - "community": 291, - "norm_label": "metro-transform-plugins", - "id": "rebreak_monorepo_package_overrides_metro_transform_plugins" - }, - { - "label": "metro-transform-worker", - "file_type": "code", - "source_file": "package.json", - "source_location": "L31", - "community": 291, - "norm_label": "metro-transform-worker", - "id": "rebreak_monorepo_package_overrides_metro_transform_worker" - }, - { - "label": "ecosystem.config.js", - "file_type": "code", - "source_file": "ecosystem.config.js", - "source_location": "L1", - "community": 767, - "norm_label": "ecosystem.config.js", - "id": "ecosystem_config_js" - }, - { - "label": "prisma.config.ts", - "file_type": "code", - "source_file": "backend/prisma.config.ts", - "source_location": "L1", - "community": 769, - "norm_label": "prisma.config.ts", - "id": "backend_prisma_config_ts" - }, - { - "label": "start-staging.sh", - "file_type": "code", - "source_file": "backend/start-staging.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "community": 628, - "norm_label": "start-staging.sh", - "id": "backend_start_staging_sh" - }, - { - "label": "start-staging.sh script", - "file_type": "code", - "source_file": "backend/start-staging.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "bash_entrypoint" - }, - "community": 628, - "norm_label": "start-staging.sh script", - "id": "users_chahinebrini_mono_rebreak_monorepo_backend_start_staging_sh__entry" - }, - { - "label": "NODE_ENV", - "file_type": "code", - "source_file": "backend/start-staging.sh", - "source_location": "L25", - "metadata": { - "language": "bash", - "kind": "code" - }, - "community": 628, - "norm_label": "node_env", - "id": "backend_start_staging_node_env" - }, - { - "label": "NITRO_PORT", - "file_type": "code", - "source_file": "backend/start-staging.sh", - "source_location": "L26", - "metadata": { - "language": "bash", - "kind": "code" - }, - "community": 628, - "norm_label": "nitro_port", - "id": "backend_start_staging_nitro_port" - }, - { - "label": "NITRO_HOST", - "file_type": "code", - "source_file": "backend/start-staging.sh", - "source_location": "L27", - "metadata": { - "language": "bash", - "kind": "code" - }, - "community": 628, - "norm_label": "nitro_host", - "id": "backend_start_staging_nitro_host" - }, - { - "label": "PORT", - "file_type": "code", - "source_file": "backend/start-staging.sh", - "source_location": "L28", - "metadata": { - "language": "bash", - "kind": "code" - }, - "community": 628, - "norm_label": "port", - "id": "backend_start_staging_port" - }, - { - "label": "package.json", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L1", - "community": 51, - "norm_label": "package.json", - "id": "backend_package_json" - }, - { - "label": "name", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L2", - "community": 51, - "norm_label": "name", - "id": "backend_package_name" - }, - { - "label": "private", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L3", - "community": 51, - "norm_label": "private", - "id": "backend_package_private" - }, - { - "label": "type", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L4", - "community": 51, - "norm_label": "type", - "id": "backend_package_type" - }, - { - "label": "version", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L5", - "community": 51, - "norm_label": "version", - "id": "backend_package_version" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L6", - "community": 51, - "norm_label": "scripts", - "id": "backend_package_scripts" - }, - { - "label": "build", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L7", - "community": 51, - "norm_label": "build", - "id": "backend_package_scripts_build" - }, - { - "label": "dev", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L8", - "community": 51, - "norm_label": "dev", - "id": "backend_package_scripts_dev" - }, - { - "label": "preview", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L9", - "community": 51, - "norm_label": "preview", - "id": "backend_package_scripts_preview" - }, - { - "label": "start", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L10", - "community": 51, - "norm_label": "start", - "id": "backend_package_scripts_start" - }, - { - "label": "prisma:generate", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L11", - "community": 51, - "norm_label": "prisma:generate", - "id": "backend_package_scripts_prisma_generate" - }, - { - "label": "test", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L12", - "community": 51, - "norm_label": "test", - "id": "backend_package_scripts_test" - }, - { - "label": "test:watch", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L13", - "community": 51, - "norm_label": "test:watch", - "id": "backend_package_scripts_test_watch" - }, - { - "label": "typecheck", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L14", - "community": 51, - "norm_label": "typecheck", - "id": "backend_package_scripts_typecheck" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L16", - "community": 51, - "norm_label": "dependencies", - "id": "backend_package_dependencies" - }, - { - "label": "@prisma/adapter-pg", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L17", - "community": 51, - "norm_label": "@prisma/adapter-pg", - "id": "backend_package_dependencies_prisma_adapter_pg" - }, - { - "label": "@prisma/client", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L18", - "community": 51, - "norm_label": "@prisma/client", - "id": "backend_package_dependencies_prisma_client" - }, - { - "label": "@supabase/supabase-js", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L19", - "community": 51, - "norm_label": "@supabase/supabase-js", - "id": "backend_package_dependencies_supabase_supabase_js" - }, - { - "label": "expo-server-sdk", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L20", - "community": 51, - "norm_label": "expo-server-sdk", - "id": "backend_package_dependencies_expo_server_sdk" - }, - { - "label": "franc", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L21", - "community": 51, - "norm_label": "franc", - "id": "backend_package_dependencies_franc" - }, - { - "label": "groq-sdk", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L22", - "community": 51, - "norm_label": "groq-sdk", - "id": "backend_package_dependencies_groq_sdk" - }, - { - "label": "imapflow", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L23", - "community": 51, - "norm_label": "imapflow", - "id": "backend_package_dependencies_imapflow" - }, - { - "label": "jose", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L24", - "community": 51, - "norm_label": "jose", - "id": "backend_package_dependencies_jose" - }, - { - "label": "openai", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L25", - "community": 51, - "norm_label": "openai", - "id": "backend_package_dependencies_openai" - }, - { - "label": "pg", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L26", - "community": 51, - "norm_label": "pg", - "id": "backend_package_dependencies_pg" - }, - { - "label": "resend", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L27", - "community": 51, - "norm_label": "resend", - "id": "backend_package_dependencies_resend" - }, - { - "label": "stripe", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L28", - "community": 51, - "norm_label": "stripe", - "id": "backend_package_dependencies_stripe" - }, - { - "label": "zod", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L29", - "community": 51, - "norm_label": "zod", - "id": "backend_package_dependencies_zod" - }, - { - "label": "devDependencies", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L31", - "community": 51, - "norm_label": "devdependencies", - "id": "backend_package_devdependencies" - }, - { - "label": "@types/node", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L32", - "community": 51, - "norm_label": "@types/node", - "id": "backend_package_devdependencies_types_node" - }, - { - "label": "@types/pg", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L33", - "community": 51, - "norm_label": "@types/pg", - "id": "backend_package_devdependencies_types_pg" - }, - { - "label": "@vitest/coverage-v8", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L34", - "community": 51, - "norm_label": "@vitest/coverage-v8", - "id": "backend_package_devdependencies_vitest_coverage_v8" - }, - { - "label": "h3", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L35", - "community": 51, - "norm_label": "h3", - "id": "backend_package_devdependencies_h3" - }, - { - "label": "nitropack", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L36", - "community": 51, - "norm_label": "nitropack", - "id": "backend_package_devdependencies_nitropack" - }, - { - "label": "prisma", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L37", - "community": 51, - "norm_label": "prisma", - "id": "backend_package_devdependencies_prisma" - }, - { - "label": "typescript", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L38", - "community": 51, - "norm_label": "typescript", - "id": "backend_package_devdependencies_typescript" - }, - { - "label": "vitest", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L39", - "community": 51, - "norm_label": "vitest", - "id": "backend_package_devdependencies_vitest" - }, - { - "label": "tsconfig.json", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L1", - "community": 865, - "norm_label": "tsconfig.json", - "id": "backend_tsconfig_json" - }, - { - "label": "extends", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L2", - "community": 865, - "norm_label": "extends", - "id": "backend_tsconfig_extends" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L3", - "community": 865, - "norm_label": "compileroptions", - "id": "backend_tsconfig_compileroptions" - }, - { - "label": "target", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L4", - "community": 865, - "norm_label": "target", - "id": "backend_tsconfig_compileroptions_target" - }, - { - "label": "module", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L5", - "community": 865, - "norm_label": "module", - "id": "backend_tsconfig_compileroptions_module" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L6", - "community": 865, - "norm_label": "moduleresolution", - "id": "backend_tsconfig_compileroptions_moduleresolution" - }, - { - "label": "strict", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L7", - "community": 865, - "norm_label": "strict", - "id": "backend_tsconfig_compileroptions_strict" - }, - { - "label": "noEmit", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L8", - "community": 865, - "norm_label": "noemit", - "id": "backend_tsconfig_compileroptions_noemit" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L9", - "community": 865, - "norm_label": "skiplibcheck", - "id": "backend_tsconfig_compileroptions_skiplibcheck" - }, - { - "label": "resolveJsonModule", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L10", - "community": 865, - "norm_label": "resolvejsonmodule", - "id": "backend_tsconfig_compileroptions_resolvejsonmodule" - }, - { - "label": "allowSyntheticDefaultImports", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L11", - "community": 865, - "norm_label": "allowsyntheticdefaultimports", - "id": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports" - }, - { - "label": "forceConsistentCasingInFileNames", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L12", - "community": 865, - "norm_label": "forceconsistentcasinginfilenames", - "id": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames" - }, - { - "label": "noImplicitReturns", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L13", - "community": 865, - "norm_label": "noimplicitreturns", - "id": "backend_tsconfig_compileroptions_noimplicitreturns" - }, - { - "label": "noFallthroughCasesInSwitch", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L14", - "community": 865, - "norm_label": "nofallthroughcasesinswitch", - "id": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch" - }, - { - "label": "useUnknownInCatchVariables", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L15", - "community": 865, - "norm_label": "useunknownincatchvariables", - "id": "backend_tsconfig_compileroptions_useunknownincatchvariables" - }, - { - "label": "lib", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L16", - "community": 865, - "norm_label": "lib", - "id": "backend_tsconfig_compileroptions_lib" - }, - { - "label": "baseUrl", - "file_type": "code", - "source_file": "backend/tsconfig.json", - "source_location": "L17", - "community": 865, - "norm_label": "baseurl", - "id": "backend_tsconfig_compileroptions_baseurl" - }, - { - "label": "vitest.config.ts", - "file_type": "code", - "source_file": "backend/vitest.config.ts", - "source_location": "L1", - "community": 770, - "norm_label": "vitest.config.ts", - "id": "backend_vitest_config_ts" - }, - { - "label": "setup.ts", - "file_type": "code", - "source_file": "backend/tests/setup.ts", - "source_location": "L1", - "community": 761, - "norm_label": "setup.ts", - "id": "backend_tests_setup_ts" - }, - { - "label": "g", - "file_type": "code", - "source_file": "backend/tests/setup.ts", - "source_location": "L21", - "community": 761, - "norm_label": "g", - "id": "tests_setup_g" - }, - { - "label": "plan-limits.test.ts", - "file_type": "code", - "source_file": "backend/tests/custom-domains/plan-limits.test.ts", - "source_location": "L1", - "community": 429, - "norm_label": "plan-limits.test.ts", - "id": "backend_tests_custom_domains_plan_limits_test_ts" - }, - { - "label": "TestResolveResult", - "file_type": "code", - "source_file": "backend/tests/custom-domains/plan-limits.test.ts", - "source_location": "L179", - "community": 429, - "norm_label": "testresolveresult", - "id": "custom_domains_plan_limits_test_testresolveresult" - }, - { - "label": "scan-trigger.test.ts", - "file_type": "code", - "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", - "source_location": "L1", - "community": 4, - "norm_label": "scan-trigger.test.ts", - "id": "backend_tests_custom_domains_scan_trigger_test_ts" - }, - { - "label": "setupFetchMock()", - "file_type": "code", - "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", - "source_location": "L24", - "community": 4, - "norm_label": "setupfetchmock()", - "id": "custom_domains_scan_trigger_test_setupfetchmock" - }, - { - "label": "teardownFetchMock()", - "file_type": "code", - "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", - "source_location": "L29", - "community": 4, - "norm_label": "teardownfetchmock()", - "id": "custom_domains_scan_trigger_test_teardownfetchmock" - }, - { - "label": "triggerScanIfMailDomain()", - "file_type": "code", - "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", - "source_location": "L39", - "community": 4, - "norm_label": "triggerscanifmaildomain()", - "id": "custom_domains_scan_trigger_test_triggerscanifmaildomain" - }, - { - "label": "gmail-delete-strategy.test.ts", - "file_type": "code", - "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", - "source_location": "L1", - "community": 657, - "norm_label": "gmail-delete-strategy.test.ts", - "id": "backend_tests_mail_gmail_delete_strategy_test_ts" - }, - { - "label": "makeImapMock()", - "file_type": "code", - "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", - "source_location": "L17", - "community": 657, - "norm_label": "makeimapmock()", - "id": "mail_gmail_delete_strategy_test_makeimapmock" - }, - { - "label": "MailboxEntry", - "file_type": "code", - "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", - "source_location": "L53", - "community": 657, - "norm_label": "mailboxentry", - "id": "mail_gmail_delete_strategy_test_mailboxentry" - }, - { - "label": "resolveTrashFolder()", - "file_type": "code", - "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", - "source_location": "L55", - "community": 657, - "norm_label": "resolvetrashfolder()", - "id": "mail_gmail_delete_strategy_test_resolvetrashfolder" - }, - { - "label": "performDelete()", - "file_type": "code", - "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", - "source_location": "L60", - "community": 657, - "norm_label": "performdelete()", - "id": "mail_gmail_delete_strategy_test_performdelete" - }, - { - "label": "MockMailbox", - "file_type": "code", - "source_file": "backend/tests/mail/mail-classifier.test.ts", - "source_location": "L697", - "community": 157, - "norm_label": "mockmailbox", - "id": "mail_mail_classifier_test_mockmailbox" - }, - { - "label": "filterScannable()", - "file_type": "code", - "source_file": "backend/tests/mail/mail-classifier.test.ts", - "source_location": "L699", - "community": 157, - "norm_label": "filterscannable()", - "id": "mail_mail_classifier_test_filterscannable" - }, - { - "label": "display-name-match.test.ts", - "file_type": "code", - "source_file": "backend/tests/mail/display-name-match.test.ts", - "source_location": "L1", - "community": 157, - "norm_label": "display-name-match.test.ts", - "id": "backend_tests_mail_display_name_match_test_ts" - }, - { - "label": "users.test.ts", - "file_type": "code", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L1", - "community": 384, - "norm_label": "users.test.ts", - "id": "backend_tests_admin_users_test_ts" - }, - { - "label": "g", - "file_type": "code", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L17", - "community": 384, - "norm_label": "g", - "id": "admin_users_test_g" - }, - { - "label": "originalStubs", - "file_type": "code", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L18", - "community": 384, - "norm_label": "originalstubs", - "id": "admin_users_test_originalstubs" - }, - { - "label": "prismaMock", - "file_type": "code", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L28", - "community": 384, - "norm_label": "prismamock", - "id": "admin_users_test_prismamock" - }, - { - "label": "makeRow()", - "file_type": "code", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L233", - "community": 384, - "norm_label": "makerow()", - "id": "admin_users_test_makerow" - }, - { - "label": "domains.test.ts", - "file_type": "code", - "source_file": "backend/tests/admin/domains.test.ts", - "source_location": "L1", - "community": 4, - "norm_label": "domains.test.ts", - "id": "backend_tests_admin_domains_test_ts" - }, - { - "label": "prismaMock", - "file_type": "code", - "source_file": "backend/tests/admin/domains.test.ts", - "source_location": "L11", - "community": 4, - "norm_label": "prismamock", - "id": "admin_domains_test_prismamock" - }, - { - "label": "makeRow()", - "file_type": "code", - "source_file": "backend/tests/admin/domains.test.ts", - "source_location": "L30", - "community": 4, - "norm_label": "makerow()", - "id": "admin_domains_test_makerow" - }, - { - "label": "moderation.test.ts", - "file_type": "code", - "source_file": "backend/tests/admin/moderation.test.ts", - "source_location": "L1", - "community": 385, - "norm_label": "moderation.test.ts", - "id": "backend_tests_admin_moderation_test_ts" - }, - { - "label": "prismaMock", - "file_type": "code", - "source_file": "backend/tests/admin/moderation.test.ts", - "source_location": "L14", - "community": 385, - "norm_label": "prismamock", - "id": "admin_moderation_test_prismamock" - }, - { - "label": "verify-admin.test.ts", - "file_type": "code", - "source_file": "backend/tests/admin/verify-admin.test.ts", - "source_location": "L1", - "community": 9, - "norm_label": "verify-admin.test.ts", - "id": "backend_tests_admin_verify_admin_test_ts" - }, - { - "label": "prismaMock", - "file_type": "code", - "source_file": "backend/tests/admin/verify-admin.test.ts", - "source_location": "L18", - "community": 9, - "norm_label": "prismamock", - "id": "admin_verify_admin_test_prismamock" - }, - { - "label": "requireUserMock", - "file_type": "code", - "source_file": "backend/tests/admin/verify-admin.test.ts", - "source_location": "L30", - "community": 9, - "norm_label": "requireusermock", - "id": "admin_verify_admin_test_requireusermock" - }, - { - "label": "profile-counts.test.ts", - "file_type": "code", - "source_file": "backend/tests/social/profile-counts.test.ts", - "source_location": "L1", - "community": 39, - "norm_label": "profile-counts.test.ts", - "id": "backend_tests_social_profile_counts_test_ts" - }, - { - "label": "mocks", - "file_type": "code", - "source_file": "backend/tests/social/profile-counts.test.ts", - "source_location": "L11", - "community": 39, - "norm_label": "mocks", - "id": "social_profile_counts_test_mocks" - }, - { - "label": "g", - "file_type": "code", - "source_file": "backend/tests/social/profile-counts.test.ts", - "source_location": "L67", - "community": 39, - "norm_label": "g", - "id": "social_profile_counts_test_g" - }, - { - "label": "callHandler()", - "file_type": "code", - "source_file": "backend/tests/social/profile-counts.test.ts", - "source_location": "L81", - "community": 39, - "norm_label": "callhandler()", - "id": "social_profile_counts_test_callhandler" - }, - { - "label": "demographics.patch.test.ts", - "file_type": "code", - "source_file": "backend/tests/profile/demographics.patch.test.ts", - "source_location": "L1", - "community": 9, - "norm_label": "demographics.patch.test.ts", - "id": "backend_tests_profile_demographics_patch_test_ts" - }, - { - "label": "mocks", - "file_type": "code", - "source_file": "backend/tests/profile/demographics.patch.test.ts", - "source_location": "L17", - "community": 9, - "norm_label": "mocks", - "id": "profile_demographics_patch_test_mocks" - }, - { - "label": "FULL_DEMOGRAPHICS", - "file_type": "code", - "source_file": "backend/tests/profile/demographics.patch.test.ts", - "source_location": "L40", - "community": 9, - "norm_label": "full_demographics", - "id": "profile_demographics_patch_test_full_demographics" - }, - { - "label": "install-and-banner.test.ts", - "file_type": "code", - "source_file": "backend/tests/profile/install-and-banner.test.ts", - "source_location": "L1", - "community": 9, - "norm_label": "install-and-banner.test.ts", - "id": "backend_tests_profile_install_and_banner_test_ts" - }, - { - "label": "mocks", - "file_type": "code", - "source_file": "backend/tests/profile/install-and-banner.test.ts", - "source_location": "L8", - "community": 9, - "norm_label": "mocks", - "id": "profile_install_and_banner_test_mocks" - }, - { - "label": "sos-insights.get.test.ts", - "file_type": "code", - "source_file": "backend/tests/profile/sos-insights.get.test.ts", - "source_location": "L1", - "community": 9, - "norm_label": "sos-insights.get.test.ts", - "id": "backend_tests_profile_sos_insights_get_test_ts" - }, - { - "label": "Session", - "file_type": "code", - "source_file": "backend/tests/profile/sos-insights.get.test.ts", - "source_location": "L6", - "community": 9, - "norm_label": "session", - "id": "profile_sos_insights_get_test_session" - }, - { - "label": "aggregate()", - "file_type": "code", - "source_file": "backend/tests/profile/sos-insights.get.test.ts", - "source_location": "L14", - "community": 9, - "norm_label": "aggregate()", - "id": "profile_sos_insights_get_test_aggregate" - }, - { - "label": "approved-domains.get.test.ts", - "file_type": "code", - "source_file": "backend/tests/profile/approved-domains.get.test.ts", - "source_location": "L1", - "community": 9, - "norm_label": "approved-domains.get.test.ts", - "id": "backend_tests_profile_approved_domains_get_test_ts" - }, - { - "label": "mocks", - "file_type": "code", - "source_file": "backend/tests/profile/approved-domains.get.test.ts", - "source_location": "L10", - "community": 9, - "norm_label": "mocks", - "id": "profile_approved_domains_get_test_mocks" - }, - { - "label": "demographics.get.test.ts", - "file_type": "code", - "source_file": "backend/tests/profile/demographics.get.test.ts", - "source_location": "L1", - "community": 9, - "norm_label": "demographics.get.test.ts", - "id": "backend_tests_profile_demographics_get_test_ts" - }, - { - "label": "mocks", - "file_type": "code", - "source_file": "backend/tests/profile/demographics.get.test.ts", - "source_location": "L12", - "community": 9, - "norm_label": "mocks", - "id": "profile_demographics_get_test_mocks" - }, - { - "label": "demographics.zod.test.ts", - "file_type": "code", - "source_file": "backend/tests/profile/demographics.zod.test.ts", - "source_location": "L1", - "community": 629, - "norm_label": "demographics.zod.test.ts", - "id": "backend_tests_profile_demographics_zod_test_ts" - }, - { - "label": "GENDER_VALUES", - "file_type": "code", - "source_file": "backend/tests/profile/demographics.zod.test.ts", - "source_location": "L13", - "community": 629, - "norm_label": "gender_values", - "id": "profile_demographics_zod_test_gender_values" - }, - { - "label": "MARITAL_VALUES", - "file_type": "code", - "source_file": "backend/tests/profile/demographics.zod.test.ts", - "source_location": "L14", - "community": 629, - "norm_label": "marital_values", - "id": "profile_demographics_zod_test_marital_values" - }, - { - "label": "EMPLOYMENT_STATUS_VALUES", - "file_type": "code", - "source_file": "backend/tests/profile/demographics.zod.test.ts", - "source_location": "L22", - "community": 629, - "norm_label": "employment_status_values", - "id": "profile_demographics_zod_test_employment_status_values" - }, - { - "label": "JOB_TENURE_VALUES", - "file_type": "code", - "source_file": "backend/tests/profile/demographics.zod.test.ts", - "source_location": "L31", - "community": 629, - "norm_label": "job_tenure_values", - "id": "profile_demographics_zod_test_job_tenure_values" - }, - { - "label": "Schema", - "file_type": "code", - "source_file": "backend/tests/profile/demographics.zod.test.ts", - "source_location": "L39", - "community": 629, - "norm_label": "schema", - "id": "profile_demographics_zod_test_schema" - }, - { - "label": "cooldown-history.get.test.ts", - "file_type": "code", - "source_file": "backend/tests/profile/cooldown-history.get.test.ts", - "source_location": "L1", - "community": 9, - "norm_label": "cooldown-history.get.test.ts", - "id": "backend_tests_profile_cooldown_history_get_test_ts" - }, - { - "label": "CooldownRow", - "file_type": "code", - "source_file": "backend/tests/profile/cooldown-history.get.test.ts", - "source_location": "L6", - "community": 9, - "norm_label": "cooldownrow", - "id": "profile_cooldown_history_get_test_cooldownrow" - }, - { - "label": "deriveStatus()", - "file_type": "code", - "source_file": "backend/tests/profile/cooldown-history.get.test.ts", - "source_location": "L17", - "community": 9, - "norm_label": "derivestatus()", - "id": "profile_cooldown_history_get_test_derivestatus" - }, - { - "label": "quota.test.ts", - "file_type": "code", - "source_file": "backend/tests/voice/quota.test.ts", - "source_location": "L1", - "community": 429, - "norm_label": "quota.test.ts", - "id": "backend_tests_voice_quota_test_ts" - }, - { - "label": "mocks", - "file_type": "code", - "source_file": "backend/tests/voice/quota.test.ts", - "source_location": "L15", - "community": 429, - "norm_label": "mocks", - "id": "voice_quota_test_mocks" - }, - { - "label": "device-account-binding.test.ts", - "file_type": "code", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L1", - "community": 32, - "norm_label": "device-account-binding.test.ts", - "id": "backend_tests_devices_device_account_binding_test_ts" - }, - { - "label": "mockPrisma", - "file_type": "code", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L25", - "community": 32, - "norm_label": "mockprisma", - "id": "devices_device_account_binding_test_mockprisma" - }, - { - "label": "makeDevice()", - "file_type": "code", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L44", - "community": 32, - "norm_label": "makedevice()", - "id": "devices_device_account_binding_test_makedevice" - }, - { - "label": "regfile.test.ts", - "file_type": "code", - "source_file": "backend/tests/devices/regfile.test.ts", - "source_location": "L1", - "community": 80, - "norm_label": "regfile.test.ts", - "id": "backend_tests_devices_regfile_test_ts" - }, - { - "label": "cors.ts", - "file_type": "code", - "source_file": "backend/server/middleware/cors.ts", - "source_location": "L1", - "community": 771, - "norm_label": "cors.ts", - "id": "backend_server_middleware_cors_ts" - }, - { - "label": "device-lock-cron.ts", - "file_type": "code", - "source_file": "backend/server/plugins/device-lock-cron.ts", - "source_location": "L1", - "community": 32, - "norm_label": "device-lock-cron.ts", - "id": "backend_server_plugins_device_lock_cron_ts" - }, - { - "label": "runAutoRelease()", - "file_type": "code", - "source_file": "backend/server/plugins/device-lock-cron.ts", - "source_location": "L46", - "community": 32, - "norm_label": "runautorelease()", - "id": "plugins_device_lock_cron_runautorelease" - }, - { - "label": "mail-scan-cron.ts", - "file_type": "code", - "source_file": "backend/server/plugins/mail-scan-cron.ts", - "source_location": "L1", - "community": 6, - "norm_label": "mail-scan-cron.ts", - "id": "backend_server_plugins_mail_scan_cron_ts" - }, - { - "label": "runScan()", - "file_type": "code", - "source_file": "backend/server/plugins/mail-scan-cron.ts", - "source_location": "L15", - "community": 6, - "norm_label": "runscan()", - "id": "plugins_mail_scan_cron_runscan" - }, - { - "label": "mail-retention-cron.ts", - "file_type": "code", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L1", - "community": 4, - "norm_label": "mail-retention-cron.ts", - "id": "backend_server_plugins_mail_retention_cron_ts" - }, - { - "label": "runSubjectNullification()", - "file_type": "code", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L69", - "community": 4, - "norm_label": "runsubjectnullification()", - "id": "plugins_mail_retention_cron_runsubjectnullification" - }, - { - "label": "runSamplePurge()", - "file_type": "code", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L89", - "community": 4, - "norm_label": "runsamplepurge()", - "id": "plugins_mail_retention_cron_runsamplepurge" - }, - { - "label": "pro-trial-expiry-cron.ts", - "file_type": "code", - "source_file": "backend/server/plugins/pro-trial-expiry-cron.ts", - "source_location": "L1", - "community": 4, - "norm_label": "pro-trial-expiry-cron.ts", - "id": "backend_server_plugins_pro_trial_expiry_cron_ts" - }, - { - "label": "runRevoke()", - "file_type": "code", - "source_file": "backend/server/plugins/pro-trial-expiry-cron.ts", - "source_location": "L47", - "community": 4, - "norm_label": "runrevoke()", - "id": "plugins_pro_trial_expiry_cron_runrevoke" - }, - { - "label": "blocklist-cron.ts", - "file_type": "code", - "source_file": "backend/server/plugins/blocklist-cron.ts", - "source_location": "L1", - "community": 752, - "norm_label": "blocklist-cron.ts", - "id": "backend_server_plugins_blocklist_cron_ts" - }, - { - "label": "runSync()", - "file_type": "code", - "source_file": "backend/server/plugins/blocklist-cron.ts", - "source_location": "L30", - "community": 752, - "norm_label": "runsync()", - "id": "plugins_blocklist_cron_runsync" - }, - { - "label": "prisma.ts", - "file_type": "code", - "source_file": "backend/server/utils/prisma.ts", - "source_location": "L1", - "community": 4, - "norm_label": "prisma.ts", - "id": "backend_server_utils_prisma_ts" - }, - { - "label": "usePrisma()", - "file_type": "code", - "source_file": "backend/server/utils/prisma.ts", - "source_location": "L12", - "community": 4, - "norm_label": "useprisma()", - "id": "utils_prisma_useprisma" - }, - { - "label": "sosSessions.ts", - "file_type": "code", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L1", - "community": 79, - "norm_label": "sossessions.ts", - "id": "backend_server_utils_sossessions_ts" - }, - { - "label": "SosSessionData", - "file_type": "code", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L9", - "community": 79, - "norm_label": "sossessiondata", - "id": "utils_sossessions_sossessiondata" - }, - { - "label": "sessions", - "file_type": "code", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L18", - "community": 79, - "norm_label": "sessions", - "id": "utils_sossessions_sessions" - }, - { - "label": "setSosSession()", - "file_type": "code", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L34", - "community": 79, - "norm_label": "setsossession()", - "id": "utils_sossessions_setsossession" - }, - { - "label": "getSosSession()", - "file_type": "code", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L38", - "community": 79, - "norm_label": "getsossession()", - "id": "utils_sossessions_getsossession" - }, - { - "label": "deleteSosSession()", - "file_type": "code", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L49", - "community": 79, - "norm_label": "deletesossession()", - "id": "utils_sossessions_deletesossession" - }, - { - "label": "regfile.ts", - "file_type": "code", - "source_file": "backend/server/utils/regfile.ts", - "source_location": "L1", - "community": 80, - "norm_label": "regfile.ts", - "id": "backend_server_utils_regfile_ts" - }, - { - "label": "regEscape()", - "file_type": "code", - "source_file": "backend/server/utils/regfile.ts", - "source_location": "L19", - "community": 80, - "norm_label": "regescape()", - "id": "utils_regfile_regescape" - }, - { - "label": "WindowsDohRegOpts", - "file_type": "code", - "source_file": "backend/server/utils/regfile.ts", - "source_location": "L28", - "community": 80, - "norm_label": "windowsdohregopts", - "id": "utils_regfile_windowsdohregopts" - }, - { - "label": "generateWindowsDohRegFile()", - "file_type": "code", - "source_file": "backend/server/utils/regfile.ts", - "source_location": "L44", - "community": 80, - "norm_label": "generatewindowsdohregfile()", - "id": "utils_regfile_generatewindowsdohregfile" - }, - { - "label": "normalizeDomain()", - "file_type": "code", - "source_file": "backend/server/utils/domainHash.ts", - "source_location": "L14", - "community": 112, - "norm_label": "normalizedomain()", - "id": "utils_domainhash_normalizedomain" - }, - { - "label": "hashDomain()", - "file_type": "code", - "source_file": "backend/server/utils/domainHash.ts", - "source_location": "L29", - "community": 112, - "norm_label": "hashdomain()", - "id": "utils_domainhash_hashdomain" - }, - { - "label": "buildHashListBinary()", - "file_type": "code", - "source_file": "backend/server/utils/domainHash.ts", - "source_location": "L46", - "community": 112, - "norm_label": "buildhashlistbinary()", - "id": "utils_domainhash_buildhashlistbinary" - }, - { - "label": "etagFor()", - "file_type": "code", - "source_file": "backend/server/utils/domainHash.ts", - "source_location": "L67", - "community": 112, - "norm_label": "etagfor()", - "id": "utils_domainhash_etagfor" - }, - { - "label": "ConsentTextEntry", - "file_type": "code", - "source_file": "backend/server/utils/consent-texts.ts", - "source_location": "L18", - "community": 6, - "norm_label": "consenttextentry", - "id": "utils_consent_texts_consenttextentry" - }, - { - "label": "CONSENT_TEXTS", - "file_type": "code", - "source_file": "backend/server/utils/consent-texts.ts", - "source_location": "L23", - "community": 6, - "norm_label": "consent_texts", - "id": "utils_consent_texts_consent_texts" - }, - { - "label": "getConsentText()", - "file_type": "code", - "source_file": "backend/server/utils/consent-texts.ts", - "source_location": "L35", - "community": 6, - "norm_label": "getconsenttext()", - "id": "utils_consent_texts_getconsenttext" - }, - { - "label": "getKnownConsentVersions()", - "file_type": "code", - "source_file": "backend/server/utils/consent-texts.ts", - "source_location": "L48", - "community": 6, - "norm_label": "getknownconsentversions()", - "id": "utils_consent_texts_getknownconsentversions" - }, - { - "label": "mail-training-utils.ts", - "file_type": "code", - "source_file": "backend/server/utils/mail-training-utils.ts", - "source_location": "L1", - "community": 6, - "norm_label": "mail-training-utils.ts", - "id": "backend_server_utils_mail_training_utils_ts" - }, - { - "label": "SubjectSanitizationResult", - "file_type": "code", - "source_file": "backend/server/utils/mail-training-utils.ts", - "source_location": "L35", - "community": 6, - "norm_label": "subjectsanitizationresult", - "id": "utils_mail_training_utils_subjectsanitizationresult" - }, - { - "label": "sanitizeSubjectForTraining()", - "file_type": "code", - "source_file": "backend/server/utils/mail-training-utils.ts", - "source_location": "L106", - "community": 6, - "norm_label": "sanitizesubjectfortraining()", - "id": "utils_mail_training_utils_sanitizesubjectfortraining" - }, - { - "label": "detectSubjectLanguage()", - "file_type": "code", - "source_file": "backend/server/utils/mail-training-utils.ts", - "source_location": "L145", - "community": 6, - "norm_label": "detectsubjectlanguage()", - "id": "utils_mail_training_utils_detectsubjectlanguage" - }, - { - "label": "mail-auth.ts", - "file_type": "code", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L1", - "community": 6, - "norm_label": "mail-auth.ts", - "id": "backend_server_utils_mail_auth_ts" - }, - { - "label": "MailConnectionAuthFields", - "file_type": "code", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L9", - "community": 6, - "norm_label": "mailconnectionauthfields", - "id": "utils_mail_auth_mailconnectionauthfields" - }, - { - "label": "ImapAuth", - "file_type": "code", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L18", - "community": 6, - "norm_label": "imapauth", - "id": "utils_mail_auth_imapauth" - }, - { - "label": "OauthClientIds", - "file_type": "code", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L22", - "community": 6, - "norm_label": "oauthclientids", - "id": "utils_mail_auth_oauthclientids" - }, - { - "label": "resolveImapAuth()", - "file_type": "code", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L46", - "community": 6, - "norm_label": "resolveimapauth()", - "id": "utils_mail_auth_resolveimapauth" - }, - { - "label": "GAMBLING_KEYWORDS", - "file_type": "code", - "source_file": "backend/server/utils/gambling-keywords.mjs", - "source_location": "L13", - "community": 157, - "norm_label": "gambling_keywords", - "id": "utils_gambling_keywords_gambling_keywords" - }, - { - "label": "GAMBLING_WHITELIST", - "file_type": "code", - "source_file": "backend/server/utils/gambling-keywords.mjs", - "source_location": "L39", - "community": 157, - "norm_label": "gambling_whitelist", - "id": "utils_gambling_keywords_gambling_whitelist" - }, - { - "label": "isGamblingText()", - "file_type": "code", - "source_file": "backend/server/utils/gambling-keywords.mjs", - "source_location": "L59", - "community": 157, - "norm_label": "isgamblingtext()", - "id": "utils_gambling_keywords_isgamblingtext" - }, - { - "label": "useSupabase.ts", - "file_type": "code", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L1", - "community": 34, - "norm_label": "usesupabase.ts", - "id": "backend_server_utils_usesupabase_ts" - }, - { - "label": "getSupabaseUrl()", - "file_type": "code", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L14", - "community": 34, - "norm_label": "getsupabaseurl()", - "id": "utils_usesupabase_getsupabaseurl" - }, - { - "label": "getAnonKey()", - "file_type": "code", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L23", - "community": 34, - "norm_label": "getanonkey()", - "id": "utils_usesupabase_getanonkey" - }, - { - "label": "getServiceRoleKey()", - "file_type": "code", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L33", - "community": 34, - "norm_label": "getservicerolekey()", - "id": "utils_usesupabase_getservicerolekey" - }, - { - "label": "serverSupabaseClient()", - "file_type": "code", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L42", - "community": 34, - "norm_label": "serversupabaseclient()", - "id": "utils_usesupabase_serversupabaseclient" - }, - { - "label": "serverSupabaseServiceRole()", - "file_type": "code", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L65", - "community": 34, - "norm_label": "serversupabaseservicerole()", - "id": "utils_usesupabase_serversupabaseservicerole" - }, - { - "label": "testUser.ts", - "file_type": "code", - "source_file": "backend/server/utils/testUser.ts", - "source_location": "L1", - "community": 700, - "norm_label": "testuser.ts", - "id": "backend_server_utils_testuser_ts" - }, - { - "label": "TEST_USER_EMAILS", - "file_type": "code", - "source_file": "backend/server/utils/testUser.ts", - "source_location": "L14", - "community": 700, - "norm_label": "test_user_emails", - "id": "utils_testuser_test_user_emails" - }, - { - "label": "isTestUser()", - "file_type": "code", - "source_file": "backend/server/utils/testUser.ts", - "source_location": "L18", - "community": 700, - "norm_label": "istestuser()", - "id": "utils_testuser_istestuser" - }, - { - "label": "lyraMemoryExtract.ts", - "file_type": "code", - "source_file": "backend/server/utils/lyraMemoryExtract.ts", - "source_location": "L1", - "community": 48, - "norm_label": "lyramemoryextract.ts", - "id": "backend_server_utils_lyramemoryextract_ts" - }, - { - "label": "VALID_TYPES", - "file_type": "code", - "source_file": "backend/server/utils/lyraMemoryExtract.ts", - "source_location": "L10", - "community": 48, - "norm_label": "valid_types", - "id": "utils_lyramemoryextract_valid_types" - }, - { - "label": "extractAndStoreMemories()", - "file_type": "code", - "source_file": "backend/server/utils/lyraMemoryExtract.ts", - "source_location": "L31", - "community": 48, - "norm_label": "extractandstorememories()", - "id": "utils_lyramemoryextract_extractandstorememories" - }, - { - "label": "crypto.ts", - "file_type": "code", - "source_file": "backend/server/utils/crypto.ts", - "source_location": "L1", - "community": 6, - "norm_label": "crypto.ts", - "id": "backend_server_utils_crypto_ts" - }, - { - "label": "getKey()", - "file_type": "code", - "source_file": "backend/server/utils/crypto.ts", - "source_location": "L6", - "community": 6, - "norm_label": "getkey()", - "id": "utils_crypto_getkey" - }, - { - "label": "encrypt()", - "file_type": "code", - "source_file": "backend/server/utils/crypto.ts", - "source_location": "L19", - "community": 6, - "norm_label": "encrypt()", - "id": "utils_crypto_encrypt" - }, - { - "label": "decrypt()", - "file_type": "code", - "source_file": "backend/server/utils/crypto.ts", - "source_location": "L32", - "community": 6, - "norm_label": "decrypt()", - "id": "utils_crypto_decrypt" - }, - { - "label": "plan-features.ts", - "file_type": "code", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L1", - "community": 429, - "norm_label": "plan-features.ts", - "id": "backend_server_utils_plan_features_ts" - }, - { - "label": "Plan", - "file_type": "code", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L1", - "community": 429, - "norm_label": "plan", - "id": "utils_plan_features_plan" - }, - { - "label": "VoiceProvider", - "file_type": "code", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L3", - "community": 429, - "norm_label": "voiceprovider", - "id": "utils_plan_features_voiceprovider" - }, - { - "label": "VoiceConfig", - "file_type": "code", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L5", - "community": 429, - "norm_label": "voiceconfig", - "id": "utils_plan_features_voiceconfig" - }, - { - "label": "PlanLimits", - "file_type": "code", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L16", - "community": 429, - "norm_label": "planlimits", - "id": "utils_plan_features_planlimits" - }, - { - "label": "PLAN_LIMITS", - "file_type": "code", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L81", - "community": 429, - "norm_label": "plan_limits", - "id": "utils_plan_features_plan_limits" - }, - { - "label": "getPlanLimits()", - "file_type": "code", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L130", - "community": 429, - "norm_label": "getplanlimits()", - "id": "utils_plan_features_getplanlimits" - }, - { - "label": "CURATED_BLOCKLIST_STUB", - "file_type": "code", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L145", - "community": 429, - "norm_label": "curated_blocklist_stub", - "id": "utils_plan_features_curated_blocklist_stub" - }, - { - "label": "stripMarkdown()", - "file_type": "code", - "source_file": "backend/server/utils/strip-markdown.ts", - "source_location": "L12", - "community": 48, - "norm_label": "stripmarkdown()", - "id": "utils_strip_markdown_stripmarkdown" - }, - { - "label": "cooldownToken.ts", - "file_type": "code", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L1", - "community": 9, - "norm_label": "cooldowntoken.ts", - "id": "backend_server_utils_cooldowntoken_ts" - }, - { - "label": "getSecret()", - "file_type": "code", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L7", - "community": 9, - "norm_label": "getsecret()", - "id": "utils_cooldowntoken_getsecret" - }, - { - "label": "CooldownTokenPayload", - "file_type": "code", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L17", - "community": 9, - "norm_label": "cooldowntokenpayload", - "id": "utils_cooldowntoken_cooldowntokenpayload" - }, - { - "label": "signCooldownToken()", - "file_type": "code", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L30", - "community": 9, - "norm_label": "signcooldowntoken()", - "id": "utils_cooldowntoken_signcooldowntoken" - }, - { - "label": "verifyCooldownToken()", - "file_type": "code", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L53", - "community": 9, - "norm_label": "verifycooldowntoken()", - "id": "utils_cooldowntoken_verifycooldowntoken" - }, - { - "label": "generateJti()", - "file_type": "code", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L81", - "community": 9, - "norm_label": "generatejti()", - "id": "utils_cooldowntoken_generatejti" - }, - { - "label": "downgrade-reconciliation.ts", - "file_type": "code", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L1", - "community": 429, - "norm_label": "downgrade-reconciliation.ts", - "id": "backend_server_utils_downgrade_reconciliation_ts" - }, - { - "label": "runDowngradeReconciliation()", - "file_type": "code", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L21", - "community": 429, - "norm_label": "rundowngradereconciliation()", - "id": "utils_downgrade_reconciliation_rundowngradereconciliation" - }, - { - "label": "reconcileMailAccounts()", - "file_type": "code", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L74", - "community": 429, - "norm_label": "reconcilemailaccounts()", - "id": "utils_downgrade_reconciliation_reconcilemailaccounts" - }, - { - "label": "reconcileProtectedDevices()", - "file_type": "code", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L116", - "community": 429, - "norm_label": "reconcileprotecteddevices()", - "id": "utils_downgrade_reconciliation_reconcileprotecteddevices" - }, - { - "label": "reconcileUpgrade()", - "file_type": "code", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L133", - "community": 429, - "norm_label": "reconcileupgrade()", - "id": "utils_downgrade_reconciliation_reconcileupgrade" - }, - { - "label": "triggerFinalScanForConnection()", - "file_type": "code", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L170", - "community": 429, - "norm_label": "triggerfinalscanforconnection()", - "id": "utils_downgrade_reconciliation_triggerfinalscanforconnection" - }, - { - "label": "device-lock-email.ts", - "file_type": "code", - "source_file": "backend/server/utils/device-lock-email.ts", - "source_location": "L1", - "community": 32, - "norm_label": "device-lock-email.ts", - "id": "backend_server_utils_device_lock_email_ts" - }, - { - "label": "isLockNotifyRateLimited()", - "file_type": "code", - "source_file": "backend/server/utils/device-lock-email.ts", - "source_location": "L41", - "community": 32, - "norm_label": "islocknotifyratelimited()", - "id": "utils_device_lock_email_islocknotifyratelimited" - }, - { - "label": "sendDeviceLockEmail()", - "file_type": "code", - "source_file": "backend/server/utils/device-lock-email.ts", - "source_location": "L51", - "community": 32, - "norm_label": "senddevicelockemail()", - "id": "utils_device_lock_email_senddevicelockemail" - }, - { - "label": "detectLang()", - "file_type": "code", - "source_file": "backend/server/utils/detect-lang.ts", - "source_location": "L11", - "community": 48, - "norm_label": "detectlang()", - "id": "utils_detect_lang_detectlang" - }, - { - "label": "mobileconfig.ts", - "file_type": "code", - "source_file": "backend/server/utils/mobileconfig.ts", - "source_location": "L1", - "community": 80, - "norm_label": "mobileconfig.ts", - "id": "backend_server_utils_mobileconfig_ts" - }, - { - "label": "xmlEscape()", - "file_type": "code", - "source_file": "backend/server/utils/mobileconfig.ts", - "source_location": "L4", - "community": 80, - "norm_label": "xmlescape()", - "id": "utils_mobileconfig_xmlescape" - }, - { - "label": "labelToSlug()", - "file_type": "code", - "source_file": "backend/server/utils/mobileconfig.ts", - "source_location": "L14", - "community": 80, - "norm_label": "labeltoslug()", - "id": "utils_mobileconfig_labeltoslug" - }, - { - "label": "generateMacOSDnsProfile()", - "file_type": "code", - "source_file": "backend/server/utils/mobileconfig.ts", - "source_location": "L30", - "community": 80, - "norm_label": "generatemacosdnsprofile()", - "id": "utils_mobileconfig_generatemacosdnsprofile" - }, - { - "label": "mail-classifier.ts", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L1", - "community": 157, - "norm_label": "mail-classifier.ts", - "id": "backend_server_utils_mail_classifier_ts" - }, - { - "label": "ClassificationAction", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L27", - "community": 157, - "norm_label": "classificationaction", - "id": "utils_mail_classifier_classificationaction" - }, - { - "label": "TriggerSource", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L29", - "community": 157, - "norm_label": "triggersource", - "id": "utils_mail_classifier_triggersource" - }, - { - "label": "MailInput", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L38", - "community": 157, - "norm_label": "mailinput", - "id": "utils_mail_classifier_mailinput" - }, - { - "label": "ClassificationResult", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L47", - "community": 157, - "norm_label": "classificationresult", - "id": "utils_mail_classifier_classificationresult" - }, - { - "label": "ClassificationFeatures", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L57", - "community": 157, - "norm_label": "classificationfeatures", - "id": "utils_mail_classifier_classificationfeatures" - }, - { - "label": "SCORE_WEIGHTS", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L72", - "community": 157, - "norm_label": "score_weights", - "id": "utils_mail_classifier_score_weights" - }, - { - "label": "GAMBLING_BRANDS", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L103", - "community": 157, - "norm_label": "gambling_brands", - "id": "utils_mail_classifier_gambling_brands" - }, - { - "label": "extractRelayedDomain()", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L126", - "community": 157, - "norm_label": "extractrelayeddomain()", - "id": "utils_mail_classifier_extractrelayeddomain" - }, - { - "label": "normalizeBrand()", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L147", - "community": 157, - "norm_label": "normalizebrand()", - "id": "utils_mail_classifier_normalizebrand" - }, - { - "label": "matchesGamblingBrand()", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L155", - "community": 157, - "norm_label": "matchesgamblingbrand()", - "id": "utils_mail_classifier_matchesgamblingbrand" - }, - { - "label": "domainToBrandCandidates()", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L164", - "community": 157, - "norm_label": "domaintobrandcandidates()", - "id": "utils_mail_classifier_domaintobrandcandidates" - }, - { - "label": "hasRandomTokens()", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L180", - "community": 157, - "norm_label": "hasrandomtokens()", - "id": "utils_mail_classifier_hasrandomtokens" - }, - { - "label": "ScoreResult", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L202", - "community": 157, - "norm_label": "scoreresult", - "id": "utils_mail_classifier_scoreresult" - }, - { - "label": "computeScore()", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L211", - "community": 157, - "norm_label": "computescore()", - "id": "utils_mail_classifier_computescore" - }, - { - "label": "ClassifyMailParams", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L333", - "community": 157, - "norm_label": "classifymailparams", - "id": "utils_mail_classifier_classifymailparams" - }, - { - "label": "classifyMail()", - "file_type": "code", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L352", - "community": 157, - "norm_label": "classifymail()", - "id": "utils_mail_classifier_classifymail" - }, - { - "label": "ms-oauth.ts", - "file_type": "code", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L1", - "community": 6, - "norm_label": "ms-oauth.ts", - "id": "backend_server_utils_ms_oauth_ts" - }, - { - "label": "MS_OAUTH_SCOPES", - "file_type": "code", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L32", - "community": 6, - "norm_label": "ms_oauth_scopes", - "id": "utils_ms_oauth_ms_oauth_scopes" - }, - { - "label": "generateCodeVerifier()", - "file_type": "code", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L53", - "community": 6, - "norm_label": "generatecodeverifier()", - "id": "utils_ms_oauth_generatecodeverifier" - }, - { - "label": "computeCodeChallenge()", - "file_type": "code", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L59", - "community": 6, - "norm_label": "computecodechallenge()", - "id": "utils_ms_oauth_computecodechallenge" - }, - { - "label": "generateStateId()", - "file_type": "code", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L64", - "community": 6, - "norm_label": "generatestateid()", - "id": "utils_ms_oauth_generatestateid" - }, - { - "label": "MicrosoftTokenResponse", - "file_type": "code", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L70", - "community": 6, - "norm_label": "microsofttokenresponse", - "id": "utils_ms_oauth_microsofttokenresponse" - }, - { - "label": "exchangeCodeForTokens()", - "file_type": "code", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L86", - "community": 6, - "norm_label": "exchangecodefortokens()", - "id": "utils_ms_oauth_exchangecodefortokens" - }, - { - "label": "refreshMicrosoftTokens()", - "file_type": "code", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L127", - "community": 6, - "norm_label": "refreshmicrosofttokens()", - "id": "utils_ms_oauth_refreshmicrosofttokens" - }, - { - "label": "extractEmailFromIdToken()", - "file_type": "code", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L178", - "community": 6, - "norm_label": "extractemailfromidtoken()", - "id": "utils_ms_oauth_extractemailfromidtoken" - }, - { - "label": "scoring.ts", - "file_type": "code", - "source_file": "backend/server/utils/scoring.ts", - "source_location": "L1", - "community": 39, - "norm_label": "scoring.ts", - "id": "backend_server_utils_scoring_ts" - }, - { - "label": "google-oauth.ts", - "file_type": "code", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L1", - "community": 6, - "norm_label": "google-oauth.ts", - "id": "backend_server_utils_google_oauth_ts" - }, - { - "label": "GOOGLE_OAUTH_SCOPES", - "file_type": "code", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L30", - "community": 6, - "norm_label": "google_oauth_scopes", - "id": "utils_google_oauth_google_oauth_scopes" - }, - { - "label": "generateCodeVerifier()", - "file_type": "code", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L56", - "community": 6, - "norm_label": "generatecodeverifier()", - "id": "utils_google_oauth_generatecodeverifier" - }, - { - "label": "computeCodeChallenge()", - "file_type": "code", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L61", - "community": 6, - "norm_label": "computecodechallenge()", - "id": "utils_google_oauth_computecodechallenge" - }, - { - "label": "generateStateId()", - "file_type": "code", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L66", - "community": 6, - "norm_label": "generatestateid()", - "id": "utils_google_oauth_generatestateid" - }, - { - "label": "GoogleTokenResponse", - "file_type": "code", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L72", - "community": 6, - "norm_label": "googletokenresponse", - "id": "utils_google_oauth_googletokenresponse" - }, - { - "label": "exchangeCodeForTokens()", - "file_type": "code", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L93", - "community": 6, - "norm_label": "exchangecodefortokens()", - "id": "utils_google_oauth_exchangecodefortokens" - }, - { - "label": "refreshGoogleTokens()", - "file_type": "code", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L150", - "community": 6, - "norm_label": "refreshgoogletokens()", - "id": "utils_google_oauth_refreshgoogletokens" - }, - { - "label": "extractEmailFromIdToken()", - "file_type": "code", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L195", - "community": 6, - "norm_label": "extractemailfromidtoken()", - "id": "utils_google_oauth_extractemailfromidtoken" - }, - { - "label": "getUsersMeta()", - "file_type": "code", - "source_file": "backend/server/utils/getUsersMeta.ts", - "source_location": "L7", - "community": 62, - "norm_label": "getusersmeta()", - "id": "utils_getusersmeta_getusersmeta" - }, - { - "label": "imap-providers.ts", - "file_type": "code", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L1", - "community": 6, - "norm_label": "imap-providers.ts", - "id": "backend_server_utils_imap_providers_ts" - }, - { - "label": "ImapConfig", - "file_type": "code", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L7", - "community": 6, - "norm_label": "imapconfig", - "id": "utils_imap_providers_imapconfig" - }, - { - "label": "PROVIDER_MAP", - "file_type": "code", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L13", - "community": 6, - "norm_label": "provider_map", - "id": "utils_imap_providers_provider_map" - }, - { - "label": "MX_IONOS_PATTERNS", - "file_type": "code", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L62", - "community": 6, - "norm_label": "mx_ionos_patterns", - "id": "utils_imap_providers_mx_ionos_patterns" - }, - { - "label": "detectImapProvider()", - "file_type": "code", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L96", - "community": 6, - "norm_label": "detectimapprovider()", - "id": "utils_imap_providers_detectimapprovider" - }, - { - "label": "SMTP_MAP", - "file_type": "code", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L124", - "community": 6, - "norm_label": "smtp_map", - "id": "utils_imap_providers_smtp_map" - }, - { - "label": "detectSmtpProvider()", - "file_type": "code", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L136", - "community": 6, - "norm_label": "detectsmtpprovider()", - "id": "utils_imap_providers_detectsmtpprovider" - }, - { - "label": "HOST_TO_PROVIDER", - "file_type": "code", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L150", - "community": 6, - "norm_label": "host_to_provider", - "id": "utils_imap_providers_host_to_provider" - }, - { - "label": "resolveProviderMeta()", - "file_type": "code", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L163", - "community": 6, - "norm_label": "resolveprovidermeta()", - "id": "utils_imap_providers_resolveprovidermeta" - }, - { - "label": "auth.ts", - "file_type": "code", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L1", - "community": 9, - "norm_label": "auth.ts", - "id": "backend_server_utils_auth_ts" - }, - { - "label": "RequireUserOptions", - "file_type": "code", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L10", - "community": 9, - "norm_label": "requireuseroptions", - "id": "utils_auth_requireuseroptions" - }, - { - "label": "requireUser()", - "file_type": "code", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L15", - "community": 9, - "norm_label": "requireuser()", - "id": "utils_auth_requireuser" - }, - { - "label": "requireAdmin()", - "file_type": "code", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L123", - "community": 9, - "norm_label": "requireadmin()", - "id": "utils_auth_requireadmin" - }, - { - "label": "isPublicEmailDomain()", - "file_type": "code", - "source_file": "backend/server/utils/public-email-domains.ts", - "source_location": "L51", - "community": 4, - "norm_label": "ispublicemaildomain()", - "id": "utils_public_email_domains_ispublicemaildomain" - }, - { - "label": "brevo.ts", - "file_type": "code", - "source_file": "backend/server/utils/mail/brevo.ts", - "source_location": "L1", - "community": 277, - "norm_label": "brevo.ts", - "id": "backend_server_utils_mail_brevo_ts" - }, - { - "label": "BrevoSendParams", - "file_type": "code", - "source_file": "backend/server/utils/mail/brevo.ts", - "source_location": "L9", - "community": 277, - "norm_label": "brevosendparams", - "id": "mail_brevo_brevosendparams" - }, - { - "label": "sendBrevoMail()", - "file_type": "code", - "source_file": "backend/server/utils/mail/brevo.ts", - "source_location": "L17", - "community": 277, - "norm_label": "sendbrevomail()", - "id": "mail_brevo_sendbrevomail" - }, - { - "label": "templates.ts", - "file_type": "code", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L1", - "community": 277, - "norm_label": "templates.ts", - "id": "backend_server_utils_mail_templates_ts" - }, - { - "label": "EmailActionType", - "file_type": "code", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L8", - "community": 277, - "norm_label": "emailactiontype", - "id": "mail_templates_emailactiontype" - }, - { - "label": "Locale", - "file_type": "code", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L15", - "community": 277, - "norm_label": "locale", - "id": "mail_templates_locale" - }, - { - "label": "Texts", - "file_type": "code", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L27", - "community": 277, - "norm_label": "texts", - "id": "mail_templates_texts" - }, - { - "label": "htmlEscape()", - "file_type": "code", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L216", - "community": 277, - "norm_label": "htmlescape()", - "id": "mail_templates_htmlescape" - }, - { - "label": "RenderedEmail", - "file_type": "code", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L223", - "community": 277, - "norm_label": "renderedemail", - "id": "mail_templates_renderedemail" - }, - { - "label": "renderEmail()", - "file_type": "code", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L229", - "community": 277, - "norm_label": "renderemail()", - "id": "mail_templates_renderemail" - }, - { - "label": "lyraPostCatalog.ts", - "file_type": "code", - "source_file": "backend/server/lib/lyraPostCatalog.ts", - "source_location": "L1", - "community": 759, - "norm_label": "lyrapostcatalog.ts", - "id": "backend_server_lib_lyrapostcatalog_ts" - }, - { - "label": "LyraPostTopic", - "file_type": "code", - "source_file": "backend/server/lib/lyraPostCatalog.ts", - "source_location": "L16", - "community": 759, - "norm_label": "lyraposttopic", - "id": "lib_lyrapostcatalog_lyraposttopic" - }, - { - "label": "LyraPostTemplate", - "file_type": "code", - "source_file": "backend/server/lib/lyraPostCatalog.ts", - "source_location": "L18", - "community": 759, - "norm_label": "lyraposttemplate", - "id": "lib_lyrapostcatalog_lyraposttemplate" - }, - { - "label": "LYRA_POST_CATALOG", - "file_type": "code", - "source_file": "backend/server/lib/lyraPostCatalog.ts", - "source_location": "L23", - "community": 759, - "norm_label": "lyra_post_catalog", - "id": "lib_lyrapostcatalog_lyra_post_catalog" - }, - { - "label": "pickRandomTemplate()", - "file_type": "code", - "source_file": "backend/server/lib/lyraPostCatalog.ts", - "source_location": "L56", - "community": 759, - "norm_label": "pickrandomtemplate()", - "id": "lib_lyrapostcatalog_pickrandomtemplate" - }, - { - "label": "adminUsers.ts", - "file_type": "code", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L1", - "community": 384, - "norm_label": "adminusers.ts", - "id": "backend_server_db_adminusers_ts" - }, - { - "label": "ListUsersOpts", - "file_type": "code", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L12", - "community": 384, - "norm_label": "listusersopts", - "id": "db_adminusers_listusersopts" - }, - { - "label": "AdminUserRow", - "file_type": "code", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L21", - "community": 384, - "norm_label": "adminuserrow", - "id": "db_adminusers_adminuserrow" - }, - { - "label": "listAdminUsers()", - "file_type": "code", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L44", - "community": 384, - "norm_label": "listadminusers()", - "id": "db_adminusers_listadminusers" - }, - { - "label": "VALID_PLANS", - "file_type": "code", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L93", - "community": 384, - "norm_label": "valid_plans", - "id": "db_adminusers_valid_plans" - }, - { - "label": "UpdateAdminUserPatch", - "file_type": "code", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L95", - "community": 384, - "norm_label": "updateadminuserpatch", - "id": "db_adminusers_updateadminuserpatch" - }, - { - "label": "updateAdminUser()", - "file_type": "code", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L107", - "community": 384, - "norm_label": "updateadminuser()", - "id": "db_adminusers_updateadminuser" - }, - { - "label": "softDeleteAdminUser()", - "file_type": "code", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L177", - "community": 384, - "norm_label": "softdeleteadminuser()", - "id": "db_adminusers_softdeleteadminuser" - }, - { - "label": "devices.ts", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L1", - "community": 32, - "norm_label": "devices.ts", - "id": "backend_server_db_devices_ts" - }, - { - "label": "DeviceRecord", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L8", - "community": 32, - "norm_label": "devicerecord", - "id": "db_devices_devicerecord" - }, - { - "label": "LOCKING_PLANS", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L25", - "community": 32, - "norm_label": "locking_plans", - "id": "db_devices_locking_plans" - }, - { - "label": "isLockingPlan()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L28", - "community": 32, - "norm_label": "islockingplan()", - "id": "db_devices_islockingplan" - }, - { - "label": "findActiveDeviceLock()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L40", - "community": 32, - "norm_label": "findactivedevicelock()", - "id": "db_devices_findactivedevicelock" - }, - { - "label": "bindDeviceToUser()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L80", - "community": 32, - "norm_label": "binddevicetouser()", - "id": "db_devices_binddevicetouser" - }, - { - "label": "requestDeviceRelease()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L105", - "community": 32, - "norm_label": "requestdevicerelease()", - "id": "db_devices_requestdevicerelease" - }, - { - "label": "cancelDeviceRelease()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L127", - "community": 32, - "norm_label": "canceldevicerelease()", - "id": "db_devices_canceldevicerelease" - }, - { - "label": "markDeviceLockNotified()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L148", - "community": 32, - "norm_label": "markdevicelocknotified()", - "id": "db_devices_markdevicelocknotified" - }, - { - "label": "autoReleaseInactiveDevices()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L163", - "community": 32, - "norm_label": "autoreleaseinactivedevices()", - "id": "db_devices_autoreleaseinactivedevices" - }, - { - "label": "DEVICE_SELECT", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L182", - "community": 32, - "norm_label": "device_select", - "id": "db_devices_device_select" - }, - { - "label": "listUserDevices()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L201", - "community": 32, - "norm_label": "listuserdevices()", - "id": "db_devices_listuserdevices" - }, - { - "label": "findUserDevice()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L211", - "community": 9, - "norm_label": "finduserdevice()", - "id": "db_devices_finduserdevice" - }, - { - "label": "findMergeCandidate()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L232", - "community": 32, - "norm_label": "findmergecandidate()", - "id": "db_devices_findmergecandidate" - }, - { - "label": "registerDevice()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L261", - "community": 9, - "norm_label": "registerdevice()", - "id": "db_devices_registerdevice" - }, - { - "label": "touchDevice()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L337", - "community": 9, - "norm_label": "touchdevice()", - "id": "db_devices_touchdevice" - }, - { - "label": "deleteUserDevice()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L360", - "community": 32, - "norm_label": "deleteuserdevice()", - "id": "db_devices_deleteuserdevice" - }, - { - "label": "consent.ts", - "file_type": "code", - "source_file": "backend/server/db/consent.ts", - "source_location": "L1", - "community": 6, - "norm_label": "consent.ts", - "id": "backend_server_db_consent_ts" - }, - { - "label": "writeConsentGrant()", - "file_type": "code", - "source_file": "backend/server/db/consent.ts", - "source_location": "L4", - "community": 6, - "norm_label": "writeconsentgrant()", - "id": "db_consent_writeconsentgrant" - }, - { - "label": "writeConsentRevoke()", - "file_type": "code", - "source_file": "backend/server/db/consent.ts", - "source_location": "L32", - "community": 4, - "norm_label": "writeconsentrevoke()", - "id": "db_consent_writeconsentrevoke" - }, - { - "label": "getConsentLogsByUser()", - "file_type": "code", - "source_file": "backend/server/db/consent.ts", - "source_location": "L60", - "community": 6, - "norm_label": "getconsentlogsbyuser()", - "id": "db_consent_getconsentlogsbyuser" - }, - { - "label": "setMailConnectionConsent()", - "file_type": "code", - "source_file": "backend/server/db/consent.ts", - "source_location": "L74", - "community": 6, - "norm_label": "setmailconnectionconsent()", - "id": "db_consent_setmailconnectionconsent" - }, - { - "label": "chat-rooms.ts", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L1", - "community": 62, - "norm_label": "chat-rooms.ts", - "id": "backend_server_db_chat_rooms_ts" - }, - { - "label": "listRooms()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L6", - "community": 62, - "norm_label": "listrooms()", - "id": "db_chat_rooms_listrooms" - }, - { - "label": "getRoom()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L32", - "community": 62, - "norm_label": "getroom()", - "id": "db_chat_rooms_getroom" - }, - { - "label": "createRoom()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L45", - "community": 62, - "norm_label": "createroom()", - "id": "db_chat_rooms_createroom" - }, - { - "label": "updateRoom()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L72", - "community": 62, - "norm_label": "updateroom()", - "id": "db_chat_rooms_updateroom" - }, - { - "label": "deleteRoom()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L85", - "community": 62, - "norm_label": "deleteroom()", - "id": "db_chat_rooms_deleteroom" - }, - { - "label": "getMember()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L92", - "community": 62, - "norm_label": "getmember()", - "id": "db_chat_rooms_getmember" - }, - { - "label": "getRoomMembers()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L99", - "community": 62, - "norm_label": "getroommembers()", - "id": "db_chat_rooms_getroommembers" - }, - { - "label": "joinRoom()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L108", - "community": 62, - "norm_label": "joinroom()", - "id": "db_chat_rooms_joinroom" - }, - { - "label": "leaveRoom()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L128", - "community": 62, - "norm_label": "leaveroom()", - "id": "db_chat_rooms_leaveroom" - }, - { - "label": "approveRequest()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L139", - "community": 62, - "norm_label": "approverequest()", - "id": "db_chat_rooms_approverequest" - }, - { - "label": "rejectRequest()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L151", - "community": 62, - "norm_label": "rejectrequest()", - "id": "db_chat_rooms_rejectrequest" - }, - { - "label": "getPendingRequests()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L158", - "community": 62, - "norm_label": "getpendingrequests()", - "id": "db_chat_rooms_getpendingrequests" - }, - { - "label": "findRoomByInviteCode()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L167", - "community": 62, - "norm_label": "findroombyinvitecode()", - "id": "db_chat_rooms_findroombyinvitecode" - }, - { - "label": "banMember()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L172", - "community": 62, - "norm_label": "banmember()", - "id": "db_chat_rooms_banmember" - }, - { - "label": "setMemberRole()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L190", - "community": 62, - "norm_label": "setmemberrole()", - "id": "db_chat_rooms_setmemberrole" - }, - { - "label": "getRoomMessages()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L204", - "community": 62, - "norm_label": "getroommessages()", - "id": "db_chat_rooms_getroommessages" - }, - { - "label": "createRoomMessage()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L232", - "community": 62, - "norm_label": "createroommessage()", - "id": "db_chat_rooms_createroommessage" - }, - { - "label": "toggleChatMessageLike()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L309", - "community": 62, - "norm_label": "togglechatmessagelike()", - "id": "db_chat_rooms_togglechatmessagelike" - }, - { - "label": "toggleDmLike()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L332", - "community": 62, - "norm_label": "toggledmlike()", - "id": "db_chat_rooms_toggledmlike" - }, - { - "label": "DEFAULT_ROOMS", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L359", - "community": 62, - "norm_label": "default_rooms", - "id": "db_chat_rooms_default_rooms" - }, - { - "label": "seedDefaultRooms()", - "file_type": "code", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L372", - "community": 62, - "norm_label": "seeddefaultrooms()", - "id": "db_chat_rooms_seeddefaultrooms" - }, - { - "label": "scores.ts", - "file_type": "code", - "source_file": "backend/server/db/scores.ts", - "source_location": "L1", - "community": 39, - "norm_label": "scores.ts", - "id": "backend_server_db_scores_ts" - }, - { - "label": "ScoreEventType", - "file_type": "code", - "source_file": "backend/server/db/scores.ts", - "source_location": "L3", - "community": 39, - "norm_label": "scoreeventtype", - "id": "db_scores_scoreeventtype" - }, - { - "label": "POINTS", - "file_type": "code", - "source_file": "backend/server/db/scores.ts", - "source_location": "L12", - "community": 39, - "norm_label": "points", - "id": "db_scores_points" - }, - { - "label": "awardPoints()", - "file_type": "code", - "source_file": "backend/server/db/scores.ts", - "source_location": "L22", - "community": 39, - "norm_label": "awardpoints()", - "id": "db_scores_awardpoints" - }, - { - "label": "getUserScore()", - "file_type": "code", - "source_file": "backend/server/db/scores.ts", - "source_location": "L36", - "community": 39, - "norm_label": "getuserscore()", - "id": "db_scores_getuserscore" - }, - { - "label": "getRecentScoreEvents()", - "file_type": "code", - "source_file": "backend/server/db/scores.ts", - "source_location": "L44", - "community": 39, - "norm_label": "getrecentscoreevents()", - "id": "db_scores_getrecentscoreevents" - }, - { - "label": "getLeaderboard()", - "file_type": "code", - "source_file": "backend/server/db/scores.ts", - "source_location": "L54", - "community": 39, - "norm_label": "getleaderboard()", - "id": "db_scores_getleaderboard" - }, - { - "label": "streak.ts", - "file_type": "code", - "source_file": "backend/server/db/streak.ts", - "source_location": "L1", - "community": 34, - "norm_label": "streak.ts", - "id": "backend_server_db_streak_ts" - }, - { - "label": "getActiveStreak()", - "file_type": "code", - "source_file": "backend/server/db/streak.ts", - "source_location": "L3", - "community": 34, - "norm_label": "getactivestreak()", - "id": "db_streak_getactivestreak" - }, - { - "label": "upsertStreak()", - "file_type": "code", - "source_file": "backend/server/db/streak.ts", - "source_location": "L10", - "community": 34, - "norm_label": "upsertstreak()", - "id": "db_streak_upsertstreak" - }, - { - "label": "resetStreak()", - "file_type": "code", - "source_file": "backend/server/db/streak.ts", - "source_location": "L54", - "community": 34, - "norm_label": "resetstreak()", - "id": "db_streak_resetstreak" - }, - { - "label": "updateStreakSavings()", - "file_type": "code", - "source_file": "backend/server/db/streak.ts", - "source_location": "L71", - "community": 34, - "norm_label": "updatestreaksavings()", - "id": "db_streak_updatestreaksavings" - }, - { - "label": "deleteUserStreaks()", - "file_type": "code", - "source_file": "backend/server/db/streak.ts", - "source_location": "L79", - "community": 34, - "norm_label": "deleteuserstreaks()", - "id": "db_streak_deleteuserstreaks" - }, - { - "label": "addStreakEvent()", - "file_type": "code", - "source_file": "backend/server/db/streak.ts", - "source_location": "L86", - "community": 34, - "norm_label": "addstreakevent()", - "id": "db_streak_addstreakevent" - }, - { - "label": "getStreakEvents()", - "file_type": "code", - "source_file": "backend/server/db/streak.ts", - "source_location": "L97", - "community": 34, - "norm_label": "getstreakevents()", - "id": "db_streak_getstreakevents" - }, - { - "label": "sosSession.ts", - "file_type": "code", - "source_file": "backend/server/db/sosSession.ts", - "source_location": "L1", - "community": 34, - "norm_label": "sossession.ts", - "id": "backend_server_db_sossession_ts" - }, - { - "label": "SosSessionInput", - "file_type": "code", - "source_file": "backend/server/db/sosSession.ts", - "source_location": "L3", - "community": 34, - "norm_label": "sossessioninput", - "id": "db_sossession_sossessioninput" - }, - { - "label": "createSosSession()", - "file_type": "code", - "source_file": "backend/server/db/sosSession.ts", - "source_location": "L17", - "community": 34, - "norm_label": "createsossession()", - "id": "db_sossession_createsossession" - }, - { - "label": "deleteUserSosSessions()", - "file_type": "code", - "source_file": "backend/server/db/sosSession.ts", - "source_location": "L38", - "community": 34, - "norm_label": "deleteusersossessions()", - "id": "db_sossession_deleteusersossessions" - }, - { - "label": "createNotification()", - "file_type": "code", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L3", - "community": 4, - "norm_label": "createnotification()", - "id": "db_notifications_createnotification" - }, - { - "label": "getNotifications()", - "file_type": "code", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L15", - "community": 181, - "norm_label": "getnotifications()", - "id": "db_notifications_getnotifications" - }, - { - "label": "markAllRead()", - "file_type": "code", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L31", - "community": 47, - "norm_label": "markallread()", - "id": "db_notifications_markallread" - }, - { - "label": "deleteNotification()", - "file_type": "code", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L39", - "community": 47, - "norm_label": "deletenotification()", - "id": "db_notifications_deletenotification" - }, - { - "label": "deleteOldNotifications()", - "file_type": "code", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L46", - "community": 47, - "norm_label": "deleteoldnotifications()", - "id": "db_notifications_deleteoldnotifications" - }, - { - "label": "ProtectedDeviceWithToken", - "file_type": "code", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L13", - "community": 80, - "norm_label": "protecteddevicewithtoken", - "id": "db_protecteddevices_protecteddevicewithtoken" - }, - { - "label": "DEVICE_SELECT", - "file_type": "code", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L18", - "community": 80, - "norm_label": "device_select", - "id": "db_protecteddevices_device_select" - }, - { - "label": "DEVICE_SELECT_WITH_TOKEN", - "file_type": "code", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L28", - "community": 80, - "norm_label": "device_select_with_token", - "id": "db_protecteddevices_device_select_with_token" - }, - { - "label": "listProtectedDevices()", - "file_type": "code", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L35", - "community": 80, - "norm_label": "listprotecteddevices()", - "id": "db_protecteddevices_listprotecteddevices" - }, - { - "label": "countActiveProtectedDevices()", - "file_type": "code", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L47", - "community": 80, - "norm_label": "countactiveprotecteddevices()", - "id": "db_protecteddevices_countactiveprotecteddevices" - }, - { - "label": "getProtectedDevice()", - "file_type": "code", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L57", - "community": 80, - "norm_label": "getprotecteddevice()", - "id": "db_protecteddevices_getprotecteddevice" - }, - { - "label": "createProtectedDevice()", - "file_type": "code", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L79", - "community": 80, - "norm_label": "createprotecteddevice()", - "id": "db_protecteddevices_createprotecteddevice" - }, - { - "label": "confirmProtectedDeviceInstalled()", - "file_type": "code", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L99", - "community": 80, - "norm_label": "confirmprotecteddeviceinstalled()", - "id": "db_protecteddevices_confirmprotecteddeviceinstalled" - }, - { - "label": "revokeProtectedDevice()", - "file_type": "code", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L120", - "community": 80, - "norm_label": "revokeprotecteddevice()", - "id": "db_protecteddevices_revokeprotecteddevice" - }, - { - "label": "handshakeProtectedDevice()", - "file_type": "code", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L146", - "community": 80, - "norm_label": "handshakeprotecteddevice()", - "id": "db_protecteddevices_handshakeprotecteddevice" - }, - { - "label": "getDeviceBlocklistMode()", - "file_type": "code", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L178", - "community": 80, - "norm_label": "getdeviceblocklistmode()", - "id": "db_protecteddevices_getdeviceblocklistmode" - }, - { - "label": "community.ts", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L1", - "community": 39, - "norm_label": "community.ts", - "id": "backend_server_db_community_ts" - }, - { - "label": "getPosts()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L5", - "community": 39, - "norm_label": "getposts()", - "id": "db_community_getposts" - }, - { - "label": "getPostById()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L236", - "community": 39, - "norm_label": "getpostbyid()", - "id": "db_community_getpostbyid" - }, - { - "label": "createPost()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L254", - "community": 759, - "norm_label": "createpost()", - "id": "db_community_createpost" - }, - { - "label": "deleteUserPosts()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L288", - "community": 34, - "norm_label": "deleteuserposts()", - "id": "db_community_deleteuserposts" - }, - { - "label": "getPostLike()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L295", - "community": 39, - "norm_label": "getpostlike()", - "id": "db_community_getpostlike" - }, - { - "label": "setPostLike()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L303", - "community": 39, - "norm_label": "setpostlike()", - "id": "db_community_setpostlike" - }, - { - "label": "deletePostLike()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L316", - "community": 39, - "norm_label": "deletepostlike()", - "id": "db_community_deletepostlike" - }, - { - "label": "countPostLikes()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L323", - "community": 39, - "norm_label": "countpostlikes()", - "id": "db_community_countpostlikes" - }, - { - "label": "syncPostLikeCounts()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L335", - "community": 39, - "norm_label": "syncpostlikecounts()", - "id": "db_community_syncpostlikecounts" - }, - { - "label": "getCommentsByPost()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L349", - "community": 39, - "norm_label": "getcommentsbypost()", - "id": "db_community_getcommentsbypost" - }, - { - "label": "createComment()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L380", - "community": 39, - "norm_label": "createcomment()", - "id": "db_community_createcomment" - }, - { - "label": "getCommentLike()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L408", - "community": 39, - "norm_label": "getcommentlike()", - "id": "db_community_getcommentlike" - }, - { - "label": "createCommentLike()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L415", - "community": 39, - "norm_label": "createcommentlike()", - "id": "db_community_createcommentlike" - }, - { - "label": "deleteCommentLike()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L420", - "community": 39, - "norm_label": "deletecommentlike()", - "id": "db_community_deletecommentlike" - }, - { - "label": "syncCommentLikeCount()", - "file_type": "code", - "source_file": "backend/server/db/community.ts", - "source_location": "L432", - "community": 39, - "norm_label": "synccommentlikecount()", - "id": "db_community_synccommentlikecount" - }, - { - "label": "admin.ts", - "file_type": "code", - "source_file": "backend/server/db/admin.ts", - "source_location": "L1", - "community": 9, - "norm_label": "admin.ts", - "id": "backend_server_db_admin_ts" - }, - { - "label": "isAdminUser()", - "file_type": "code", - "source_file": "backend/server/db/admin.ts", - "source_location": "L7", - "community": 9, - "norm_label": "isadminuser()", - "id": "db_admin_isadminuser" - }, - { - "label": "curatedDomains.ts", - "file_type": "code", - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L1", - "community": 4, - "norm_label": "curateddomains.ts", - "id": "backend_server_db_curateddomains_ts" - }, - { - "label": "suggestCuratedDomain()", - "file_type": "code", - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L9", - "community": 4, - "norm_label": "suggestcurateddomain()", - "id": "db_curateddomains_suggestcurateddomain" - }, - { - "label": "getCuratedDomains()", - "file_type": "code", - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L48", - "community": 4, - "norm_label": "getcurateddomains()", - "id": "db_curateddomains_getcurateddomains" - }, - { - "label": "decideCuratedDomain()", - "file_type": "code", - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L74", - "community": 4, - "norm_label": "decidecurateddomain()", - "id": "db_curateddomains_decidecurateddomain" - }, - { - "label": "chat.ts", - "file_type": "code", - "source_file": "backend/server/db/chat.ts", - "source_location": "L1", - "community": 181, - "norm_label": "chat.ts", - "id": "backend_server_db_chat_ts" - }, - { - "label": "getChatMessages()", - "file_type": "code", - "source_file": "backend/server/db/chat.ts", - "source_location": "L5", - "community": 181, - "norm_label": "getchatmessages()", - "id": "db_chat_getchatmessages" - }, - { - "label": "createChatMessage()", - "file_type": "code", - "source_file": "backend/server/db/chat.ts", - "source_location": "L15", - "community": 181, - "norm_label": "createchatmessage()", - "id": "db_chat_createchatmessage" - }, - { - "label": "sendDirectMessage()", - "file_type": "code", - "source_file": "backend/server/db/chat.ts", - "source_location": "L25", - "community": 181, - "norm_label": "senddirectmessage()", - "id": "db_chat_senddirectmessage" - }, - { - "label": "getDmHistory()", - "file_type": "code", - "source_file": "backend/server/db/chat.ts", - "source_location": "L85", - "community": 181, - "norm_label": "getdmhistory()", - "id": "db_chat_getdmhistory" - }, - { - "label": "toggleDmReaction()", - "file_type": "code", - "source_file": "backend/server/db/chat.ts", - "source_location": "L133", - "community": 181, - "norm_label": "toggledmreaction()", - "id": "db_chat_toggledmreaction" - }, - { - "label": "softDeleteDmMessage()", - "file_type": "code", - "source_file": "backend/server/db/chat.ts", - "source_location": "L165", - "community": 181, - "norm_label": "softdeletedmmessage()", - "id": "db_chat_softdeletedmmessage" - }, - { - "label": "markDmsAsRead()", - "file_type": "code", - "source_file": "backend/server/db/chat.ts", - "source_location": "L174", - "community": 181, - "norm_label": "markdmsasread()", - "id": "db_chat_markdmsasread" - }, - { - "label": "getDmConversations()", - "file_type": "code", - "source_file": "backend/server/db/chat.ts", - "source_location": "L182", - "community": 181, - "norm_label": "getdmconversations()", - "id": "db_chat_getdmconversations" - }, - { - "label": "countUnreadDms()", - "file_type": "code", - "source_file": "backend/server/db/chat.ts", - "source_location": "L202", - "community": 181, - "norm_label": "countunreaddms()", - "id": "db_chat_countunreaddms" - }, - { - "label": "cooldown.ts", - "file_type": "code", - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L1", - "community": 9, - "norm_label": "cooldown.ts", - "id": "backend_server_db_cooldown_ts" - }, - { - "label": "getActiveCooldown()", - "file_type": "code", - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L8", - "community": 9, - "norm_label": "getactivecooldown()", - "id": "db_cooldown_getactivecooldown" - }, - { - "label": "createCooldown()", - "file_type": "code", - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L20", - "community": 9, - "norm_label": "createcooldown()", - "id": "db_cooldown_createcooldown" - }, - { - "label": "resolveCooldown()", - "file_type": "code", - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L37", - "community": 9, - "norm_label": "resolvecooldown()", - "id": "db_cooldown_resolvecooldown" - }, - { - "label": "cancelCooldown()", - "file_type": "code", - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L45", - "community": 9, - "norm_label": "cancelcooldown()", - "id": "db_cooldown_cancelcooldown" - }, - { - "label": "domains.ts", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L1", - "community": 4, - "norm_label": "domains.ts", - "id": "backend_server_db_domains_ts" - }, - { - "label": "CustomDomainType", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L14", - "community": 4, - "norm_label": "customdomaintype", - "id": "db_domains_customdomaintype" - }, - { - "label": "getUserCustomDomains()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L24", - "community": 4, - "norm_label": "getusercustomdomains()", - "id": "db_domains_getusercustomdomains" - }, - { - "label": "countActiveCustomDomains()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L52", - "community": 4, - "norm_label": "countactivecustomdomains()", - "id": "db_domains_countactivecustomdomains" - }, - { - "label": "addUserCustomDomain()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L85", - "community": 4, - "norm_label": "addusercustomdomain()", - "id": "db_domains_addusercustomdomain" - }, - { - "label": "getCustomMailDisplayNames()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L107", - "community": 4, - "norm_label": "getcustommaildisplaynames()", - "id": "db_domains_getcustommaildisplaynames" - }, - { - "label": "getMailDisplayNamePatterns()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L131", - "community": 4, - "norm_label": "getmaildisplaynamepatterns()", - "id": "db_domains_getmaildisplaynamepatterns" - }, - { - "label": "deleteUserCustomDomain()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L169", - "community": 4, - "norm_label": "deleteusercustomdomain()", - "id": "db_domains_deleteusercustomdomain" - }, - { - "label": "deleteAllUserCustomDomains()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L188", - "community": 34, - "norm_label": "deleteallusercustomdomains()", - "id": "db_domains_deleteallusercustomdomains" - }, - { - "label": "SubmissionPlan", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L204", - "community": 4, - "norm_label": "submissionplan", - "id": "db_domains_submissionplan" - }, - { - "label": "submitDomainForReview()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L206", - "community": 4, - "norm_label": "submitdomainforreview()", - "id": "db_domains_submitdomainforreview" - }, - { - "label": "castDomainVote()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L241", - "community": 4, - "norm_label": "castdomainvote()", - "id": "db_domains_castdomainvote" - }, - { - "label": "approveDomainSubmissionTx()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L287", - "community": 4, - "norm_label": "approvedomainsubmissiontx()", - "id": "db_domains_approvedomainsubmissiontx" - }, - { - "label": "adminApproveSubmission()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L309", - "community": 4, - "norm_label": "adminapprovesubmission()", - "id": "db_domains_adminapprovesubmission" - }, - { - "label": "adminRejectSubmission()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L381", - "community": 4, - "norm_label": "adminrejectsubmission()", - "id": "db_domains_adminrejectsubmission" - }, - { - "label": "PendingSubmissionRow", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L431", - "community": 4, - "norm_label": "pendingsubmissionrow", - "id": "db_domains_pendingsubmissionrow" - }, - { - "label": "getPendingSubmissions()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L465", - "community": 4, - "norm_label": "getpendingsubmissions()", - "id": "db_domains_getpendingsubmissions" - }, - { - "label": "getActiveBlocklistCount()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L511", - "community": 4, - "norm_label": "getactiveblocklistcount()", - "id": "db_domains_getactiveblocklistcount" - }, - { - "label": "getActiveBlocklistDomains()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L516", - "community": 4, - "norm_label": "getactiveblocklistdomains()", - "id": "db_domains_getactiveblocklistdomains" - }, - { - "label": "isBlocklistedDomain()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L524", - "community": 4, - "norm_label": "isblocklisteddomain()", - "id": "db_domains_isblocklisteddomain" - }, - { - "label": "getBlocklistedDomainsSet()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L542", - "community": 6, - "norm_label": "getblocklisteddomainsset()", - "id": "db_domains_getblocklisteddomainsset" - }, - { - "label": "upsertBlocklistDomains()", - "file_type": "code", - "source_file": "backend/server/db/domains.ts", - "source_location": "L596", - "community": 4, - "norm_label": "upsertblocklistdomains()", - "id": "db_domains_upsertblocklistdomains" - }, - { - "label": "urge.ts", - "file_type": "code", - "source_file": "backend/server/db/urge.ts", - "source_location": "L1", - "community": 34, - "norm_label": "urge.ts", - "id": "backend_server_db_urge_ts" - }, - { - "label": "Emotion", - "file_type": "code", - "source_file": "backend/server/db/urge.ts", - "source_location": "L3", - "community": 34, - "norm_label": "emotion", - "id": "db_urge_emotion" - }, - { - "label": "getRecentUrgeLogs()", - "file_type": "code", - "source_file": "backend/server/db/urge.ts", - "source_location": "L5", - "community": 34, - "norm_label": "getrecenturgelogs()", - "id": "db_urge_getrecenturgelogs" - }, - { - "label": "createUrgeLog()", - "file_type": "code", - "source_file": "backend/server/db/urge.ts", - "source_location": "L21", - "community": 34, - "norm_label": "createurgelog()", - "id": "db_urge_createurgelog" - }, - { - "label": "deleteUserUrgeLogs()", - "file_type": "code", - "source_file": "backend/server/db/urge.ts", - "source_location": "L40", - "community": 34, - "norm_label": "deleteuserurgelogs()", - "id": "db_urge_deleteuserurgelogs" - }, - { - "label": "moderation.ts", - "file_type": "code", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L1", - "community": 385, - "norm_label": "moderation.ts", - "id": "backend_server_db_moderation_ts" - }, - { - "label": "ModerationItemType", - "file_type": "code", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L18", - "community": 385, - "norm_label": "moderationitemtype", - "id": "db_moderation_moderationitemtype" - }, - { - "label": "ModerationQueueItem", - "file_type": "code", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L20", - "community": 385, - "norm_label": "moderationqueueitem", - "id": "db_moderation_moderationqueueitem" - }, - { - "label": "ListQueueOpts", - "file_type": "code", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L37", - "community": 385, - "norm_label": "listqueueopts", - "id": "db_moderation_listqueueopts" - }, - { - "label": "listModerationQueue()", - "file_type": "code", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L50", - "community": 385, - "norm_label": "listmoderationqueue()", - "id": "db_moderation_listmoderationqueue" - }, - { - "label": "dismissModerationItem()", - "file_type": "code", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L168", - "community": 385, - "norm_label": "dismissmoderationitem()", - "id": "db_moderation_dismissmoderationitem" - }, - { - "label": "deleteModerationItem()", - "file_type": "code", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L223", - "community": 385, - "norm_label": "deletemoderationitem()", - "id": "db_moderation_deletemoderationitem" - }, - { - "label": "banUserFromModerationItem()", - "file_type": "code", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L294", - "community": 385, - "norm_label": "banuserfrommoderationitem()", - "id": "db_moderation_banuserfrommoderationitem" - }, - { - "label": "profile.ts", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L1", - "community": 9, - "norm_label": "profile.ts", - "id": "backend_server_db_profile_ts" - }, - { - "label": "getProfile()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L3", - "community": 6, - "norm_label": "getprofile()", - "id": "db_profile_getprofile" - }, - { - "label": "updateProfile()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L8", - "community": 9, - "norm_label": "updateprofile()", - "id": "db_profile_updateprofile" - }, - { - "label": "deleteProfile()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L20", - "community": 34, - "norm_label": "deleteprofile()", - "id": "db_profile_deleteprofile" - }, - { - "label": "OnboardingStep", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L47", - "community": 9, - "norm_label": "onboardingstep", - "id": "db_profile_onboardingstep" - }, - { - "label": "DemographicsFields", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L64", - "community": 9, - "norm_label": "demographicsfields", - "id": "db_profile_demographicsfields" - }, - { - "label": "DemographicsPatch", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L78", - "community": 9, - "norm_label": "demographicspatch", - "id": "db_profile_demographicspatch" - }, - { - "label": "updateDemographics()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L84", - "community": 9, - "norm_label": "updatedemographics()", - "id": "db_profile_updatedemographics" - }, - { - "label": "withdrawDemographics()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L120", - "community": 9, - "norm_label": "withdrawdemographics()", - "id": "db_profile_withdrawdemographics" - }, - { - "label": "getDemographics()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L142", - "community": 9, - "norm_label": "getdemographics()", - "id": "db_profile_getdemographics" - }, - { - "label": "tryAwardProTrial()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L186", - "community": 9, - "norm_label": "tryawardprotrial()", - "id": "db_profile_tryawardprotrial" - }, - { - "label": "ALLOWED_LYRA_VOICE_IDS", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L246", - "community": 9, - "norm_label": "allowed_lyra_voice_ids", - "id": "db_profile_allowed_lyra_voice_ids" - }, - { - "label": "LyraVoiceId", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L252", - "community": 9, - "norm_label": "lyravoiceid", - "id": "db_profile_lyravoiceid" - }, - { - "label": "isAllowedLyraVoiceId()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L254", - "community": 9, - "norm_label": "isallowedlyravoiceid()", - "id": "db_profile_isallowedlyravoiceid" - }, - { - "label": "dismissDigaBanner()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L269", - "community": 9, - "norm_label": "dismissdigabanner()", - "id": "db_profile_dismissdigabanner" - }, - { - "label": "recordInstallEvent()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L277", - "community": 9, - "norm_label": "recordinstallevent()", - "id": "db_profile_recordinstallevent" - }, - { - "label": "getFollowingIds()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L288", - "community": 9, - "norm_label": "getfollowingids()", - "id": "db_profile_getfollowingids" - }, - { - "label": "touchLastSeen()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L308", - "community": 9, - "norm_label": "touchlastseen()", - "id": "db_profile_touchlastseen" - }, - { - "label": "getLastSeenBatch()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L329", - "community": 9, - "norm_label": "getlastseenbatch()", - "id": "db_profile_getlastseenbatch" - }, - { - "label": "setMdmManaged()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L362", - "community": 9, - "norm_label": "setmdmmanaged()", - "id": "db_profile_setmdmmanaged" - }, - { - "label": "setPresenceVisible()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L394", - "community": 9, - "norm_label": "setpresencevisible()", - "id": "db_profile_setpresencevisible" - }, - { - "label": "diga.ts", - "file_type": "code", - "source_file": "backend/server/db/diga.ts", - "source_location": "L1", - "community": 4, - "norm_label": "diga.ts", - "id": "backend_server_db_diga_ts" - }, - { - "label": "RedeemResult", - "file_type": "code", - "source_file": "backend/server/db/diga.ts", - "source_location": "L18", - "community": 4, - "norm_label": "redeemresult", - "id": "db_diga_redeemresult" - }, - { - "label": "redeemDigaCode()", - "file_type": "code", - "source_file": "backend/server/db/diga.ts", - "source_location": "L22", - "community": 4, - "norm_label": "redeemdigacode()", - "id": "db_diga_redeemdigacode" - }, - { - "label": "voiceQuota.ts", - "file_type": "code", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L1", - "community": 429, - "norm_label": "voicequota.ts", - "id": "backend_server_db_voicequota_ts" - }, - { - "label": "todayUtcMidnight()", - "file_type": "code", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L15", - "community": 429, - "norm_label": "todayutcmidnight()", - "id": "db_voicequota_todayutcmidnight" - }, - { - "label": "getRemainingVoiceQuota()", - "file_type": "code", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L26", - "community": 429, - "norm_label": "getremainingvoicequota()", - "id": "db_voicequota_getremainingvoicequota" - }, - { - "label": "consumeVoiceQuota()", - "file_type": "code", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L76", - "community": 429, - "norm_label": "consumevoicequota()", - "id": "db_voicequota_consumevoicequota" - }, - { - "label": "estimateAudioSeconds()", - "file_type": "code", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L102", - "community": 429, - "norm_label": "estimateaudioseconds()", - "id": "db_voicequota_estimateaudioseconds" - }, - { - "label": "social.ts", - "file_type": "code", - "source_file": "backend/server/db/social.ts", - "source_location": "L1", - "community": 39, - "norm_label": "social.ts", - "id": "backend_server_db_social_ts" - }, - { - "label": "getFollowRelation()", - "file_type": "code", - "source_file": "backend/server/db/social.ts", - "source_location": "L3", - "community": 39, - "norm_label": "getfollowrelation()", - "id": "db_social_getfollowrelation" - }, - { - "label": "createFollow()", - "file_type": "code", - "source_file": "backend/server/db/social.ts", - "source_location": "L13", - "community": 39, - "norm_label": "createfollow()", - "id": "db_social_createfollow" - }, - { - "label": "deleteFollow()", - "file_type": "code", - "source_file": "backend/server/db/social.ts", - "source_location": "L26", - "community": 39, - "norm_label": "deletefollow()", - "id": "db_social_deletefollow" - }, - { - "label": "getFollowingSet()", - "file_type": "code", - "source_file": "backend/server/db/social.ts", - "source_location": "L49", - "community": 39, - "norm_label": "getfollowingset()", - "id": "db_social_getfollowingset" - }, - { - "label": "getProfileWithFollowers()", - "file_type": "code", - "source_file": "backend/server/db/social.ts", - "source_location": "L62", - "community": 39, - "norm_label": "getprofilewithfollowers()", - "id": "db_social_getprofilewithfollowers" - }, - { - "label": "user.ts", - "file_type": "code", - "source_file": "backend/server/db/user.ts", - "source_location": "L1", - "community": 34, - "norm_label": "user.ts", - "id": "backend_server_db_user_ts" - }, - { - "label": "deleteUserTrustedContacts()", - "file_type": "code", - "source_file": "backend/server/db/user.ts", - "source_location": "L3", - "community": 34, - "norm_label": "deleteusertrustedcontacts()", - "id": "db_user_deleteusertrustedcontacts" - }, - { - "label": "deleteUserCoachSessions()", - "file_type": "code", - "source_file": "backend/server/db/user.ts", - "source_location": "L8", - "community": 34, - "norm_label": "deleteusercoachsessions()", - "id": "db_user_deleteusercoachsessions" - }, - { - "label": "lyraMemory.ts", - "file_type": "code", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L1", - "community": 48, - "norm_label": "lyramemory.ts", - "id": "backend_server_db_lyramemory_ts" - }, - { - "label": "LyraMemoryRow", - "file_type": "code", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L16", - "community": 48, - "norm_label": "lyramemoryrow", - "id": "db_lyramemory_lyramemoryrow" - }, - { - "label": "getMemoriesForUser()", - "file_type": "code", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L34", - "community": 48, - "norm_label": "getmemoriesforuser()", - "id": "db_lyramemory_getmemoriesforuser" - }, - { - "label": "upsertMemory()", - "file_type": "code", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L53", - "community": 48, - "norm_label": "upsertmemory()", - "id": "db_lyramemory_upsertmemory" - }, - { - "label": "markReferenced()", - "file_type": "code", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L125", - "community": 48, - "norm_label": "markreferenced()", - "id": "db_lyramemory_markreferenced" - }, - { - "label": "deleteMemoryById()", - "file_type": "code", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L142", - "community": 48, - "norm_label": "deletememorybyid()", - "id": "db_lyramemory_deletememorybyid" - }, - { - "label": "enforceMaxMemories()", - "file_type": "code", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L155", - "community": 48, - "norm_label": "enforcemaxmemories()", - "id": "db_lyramemory_enforcemaxmemories" - }, - { - "label": "levenshteinSimilarity()", - "file_type": "code", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L177", - "community": 48, - "norm_label": "levenshteinsimilarity()", - "id": "db_lyramemory_levenshteinsimilarity" - }, - { - "label": "mail.ts", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L1", - "community": 6, - "norm_label": "mail.ts", - "id": "backend_server_db_mail_ts" - }, - { - "label": "getMailConnections()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L7", - "community": 6, - "norm_label": "getmailconnections()", - "id": "db_mail_getmailconnections" - }, - { - "label": "getAllActiveMailUserIds()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L45", - "community": 6, - "norm_label": "getallactivemailuserids()", - "id": "db_mail_getallactivemailuserids" - }, - { - "label": "countMailConnections()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L55", - "community": 6, - "norm_label": "countmailconnections()", - "id": "db_mail_countmailconnections" - }, - { - "label": "upsertMailConnection()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L61", - "community": 6, - "norm_label": "upsertmailconnection()", - "id": "db_mail_upsertmailconnection" - }, - { - "label": "deleteMailConnection()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L97", - "community": 6, - "norm_label": "deletemailconnection()", - "id": "db_mail_deletemailconnection" - }, - { - "label": "deleteAllMailConnections()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L107", - "community": 6, - "norm_label": "deleteallmailconnections()", - "id": "db_mail_deleteallmailconnections" - }, - { - "label": "getMailBlockedStats()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L144", - "community": 6, - "norm_label": "getmailblockedstats()", - "id": "db_mail_getmailblockedstats" - }, - { - "label": "isMailAlreadyBlocked()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L153", - "community": 6, - "norm_label": "ismailalreadyblocked()", - "id": "db_mail_ismailalreadyblocked" - }, - { - "label": "getAlreadyBlockedUidSet()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L165", - "community": 6, - "norm_label": "getalreadyblockeduidset()", - "id": "db_mail_getalreadyblockeduidset" - }, - { - "label": "insertMailBlocked()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L178", - "community": 6, - "norm_label": "insertmailblocked()", - "id": "db_mail_insertmailblocked" - }, - { - "label": "deleteUserMailClassificationSamples()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L212", - "community": 34, - "norm_label": "deleteusermailclassificationsamples()", - "id": "db_mail_deleteusermailclassificationsamples" - }, - { - "label": "insertMailClassificationSample()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L233", - "community": 6, - "norm_label": "insertmailclassificationsample()", - "id": "db_mail_insertmailclassificationsample" - }, - { - "label": "getPendingConsentConnections()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L279", - "community": 6, - "norm_label": "getpendingconsentconnections()", - "id": "db_mail_getpendingconsentconnections" - }, - { - "label": "getImapProxyAccounts()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L290", - "community": 6, - "norm_label": "getimapproxyaccounts()", - "id": "db_mail_getimapproxyaccounts" - }, - { - "label": "upsertImapProxyAccount()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L295", - "community": 6, - "norm_label": "upsertimapproxyaccount()", - "id": "db_mail_upsertimapproxyaccount" - }, - { - "label": "deleteOldMailBlocked()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L309", - "community": 6, - "norm_label": "deleteoldmailblocked()", - "id": "db_mail_deleteoldmailblocked" - }, - { - "label": "upsertMailBlockedStat()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L323", - "community": 6, - "norm_label": "upsertmailblockedstat()", - "id": "db_mail_upsertmailblockedstat" - }, - { - "label": "getMailBlockedPaginated()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L359", - "community": 6, - "norm_label": "getmailblockedpaginated()", - "id": "db_mail_getmailblockedpaginated" - }, - { - "label": "updateMailConnectionTitle()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L391", - "community": 6, - "norm_label": "updatemailconnectiontitle()", - "id": "db_mail_updatemailconnectiontitle" - }, - { - "label": "getBlockedMailsByDay()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L417", - "community": 6, - "norm_label": "getblockedmailsbyday()", - "id": "db_mail_getblockedmailsbyday" - }, - { - "label": "getBlockedMailsByConnection()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L465", - "community": 6, - "norm_label": "getblockedmailsbyconnection()", - "id": "db_mail_getblockedmailsbyconnection" - }, - { - "label": "createOauthPendingState()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L507", - "community": 6, - "norm_label": "createoauthpendingstate()", - "id": "db_mail_createoauthpendingstate" - }, - { - "label": "consumeOauthPendingState()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L536", - "community": 6, - "norm_label": "consumeoauthpendingstate()", - "id": "db_mail_consumeoauthpendingstate" - }, - { - "label": "upsertOauthMicrosoftConnection()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L576", - "community": 6, - "norm_label": "upsertoauthmicrosoftconnection()", - "id": "db_mail_upsertoauthmicrosoftconnection" - }, - { - "label": "upsertOauthGoogleConnection()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L628", - "community": 6, - "norm_label": "upsertoauthgoogleconnection()", - "id": "db_mail_upsertoauthgoogleconnection" - }, - { - "label": "refreshAndSaveTokens()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L698", - "community": 68, - "norm_label": "refreshandsavetokens()", - "id": "db_mail_refreshandsavetokens" - }, - { - "label": "getDecryptedRefreshToken()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L785", - "community": 4, - "norm_label": "getdecryptedrefreshtoken()", - "id": "db_mail_getdecryptedrefreshtoken" - }, - { - "label": "suggest.post.ts", - "file_type": "code", - "source_file": "backend/server/api/curated-domains/suggest.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "suggest.post.ts", - "id": "backend_server_api_curated_domains_suggest_post_ts" - }, - { - "label": "VALID_COUNTRIES", - "file_type": "code", - "source_file": "backend/server/api/curated-domains/suggest.post.ts", - "source_location": "L7", - "community": 4, - "norm_label": "valid_countries", - "id": "curated_domains_suggest_post_valid_countries" - }, - { - "label": "blocklist.bin.get.ts", - "file_type": "code", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "blocklist.bin.get.ts", - "id": "backend_server_api_url_filter_blocklist_bin_get_ts" - }, - { - "label": "mergeSortedHashBuffers()", - "file_type": "code", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L86", - "community": 4, - "norm_label": "mergesortedhashbuffers()", - "id": "url_filter_blocklist_bin_get_mergesortedhashbuffers" - }, - { - "label": "blocklist.txt.get.ts", - "file_type": "code", - "source_file": "backend/server/api/url-filter/blocklist.txt.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "blocklist.txt.get.ts", - "id": "backend_server_api_url_filter_blocklist_txt_get_ts" - }, - { - "label": "delete-message.post.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/delete-message.post.ts", - "source_location": "L1", - "community": 181, - "norm_label": "delete-message.post.ts", - "id": "backend_server_api_chat_delete_message_post_ts" - }, - { - "label": "message.post.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/message.post.ts", - "source_location": "L1", - "community": 181, - "norm_label": "message.post.ts", - "id": "backend_server_api_chat_message_post_ts" - }, - { - "label": "like.post.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/like.post.ts", - "source_location": "L1", - "community": 62, - "norm_label": "like.post.ts", - "id": "backend_server_api_chat_like_post_ts" - }, - { - "label": "join.post.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/join.post.ts", - "source_location": "L1", - "community": 62, - "norm_label": "join.post.ts", - "id": "backend_server_api_chat_join_post_ts" - }, - { - "label": "dm-conversations.get.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/dm-conversations.get.ts", - "source_location": "L1", - "community": 181, - "norm_label": "dm-conversations.get.ts", - "id": "backend_server_api_chat_dm_conversations_get_ts" - }, - { - "label": "messages.get.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/messages.get.ts", - "source_location": "L1", - "community": 181, - "norm_label": "messages.get.ts", - "id": "backend_server_api_chat_messages_get_ts" - }, - { - "label": "dm.post.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/dm.post.ts", - "source_location": "L1", - "community": 181, - "norm_label": "dm.post.ts", - "id": "backend_server_api_chat_dm_post_ts" - }, - { - "label": "reaction.post.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/reaction.post.ts", - "source_location": "L1", - "community": 181, - "norm_label": "reaction.post.ts", - "id": "backend_server_api_chat_reaction_post_ts" - }, - { - "label": "ALLOWED_EMOJIS", - "file_type": "code", - "source_file": "backend/server/api/chat/reaction.post.ts", - "source_location": "L5", - "community": 181, - "norm_label": "allowed_emojis", - "id": "chat_reaction_post_allowed_emojis" - }, - { - "label": "[userId].get.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/dm/[userId].get.ts", - "source_location": "L1", - "community": 181, - "norm_label": "[userid].get.ts", - "id": "backend_server_api_chat_dm_userid_get_ts" - }, - { - "label": "aggregateReactions()", - "file_type": "code", - "source_file": "backend/server/api/chat/dm/[userId].get.ts", - "source_location": "L5", - "community": 181, - "norm_label": "aggregatereactions()", - "id": "dm_userid_get_aggregatereactions" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/rooms/index.get.ts", - "source_location": "L1", - "community": 62, - "norm_label": "index.get.ts", - "id": "backend_server_api_chat_rooms_index_get_ts" - }, - { - "label": "index.post.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/rooms/index.post.ts", - "source_location": "L1", - "community": 62, - "norm_label": "index.post.ts", - "id": "backend_server_api_chat_rooms_index_post_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", - "source_location": "L1", - "community": 62, - "norm_label": "index.get.ts", - "id": "backend_server_api_chat_rooms_roomid_index_get_ts" - }, - { - "label": "join.post.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/rooms/[roomId]/join.post.ts", - "source_location": "L1", - "community": 62, - "norm_label": "join.post.ts", - "id": "backend_server_api_chat_rooms_roomid_join_post_ts" - }, - { - "label": "leave.post.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/rooms/[roomId]/leave.post.ts", - "source_location": "L1", - "community": 62, - "norm_label": "leave.post.ts", - "id": "backend_server_api_chat_rooms_roomid_leave_post_ts" - }, - { - "label": "messages.post.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/rooms/[roomId]/messages.post.ts", - "source_location": "L1", - "community": 62, - "norm_label": "messages.post.ts", - "id": "backend_server_api_chat_rooms_roomid_messages_post_ts" - }, - { - "label": "index.patch.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", - "source_location": "L1", - "community": 62, - "norm_label": "index.patch.ts", - "id": "backend_server_api_chat_rooms_roomid_index_patch_ts" - }, - { - "label": "request.post.ts", - "file_type": "code", - "source_file": "backend/server/api/cooldown/request.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "request.post.ts", - "id": "backend_server_api_cooldown_request_post_ts" - }, - { - "label": "status.get.ts", - "file_type": "code", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L1", - "community": 9, - "norm_label": "status.get.ts", - "id": "backend_server_api_cooldown_status_get_ts" - }, - { - "label": "cancel.post.ts", - "file_type": "code", - "source_file": "backend/server/api/cooldown/cancel.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "cancel.post.ts", - "id": "backend_server_api_cooldown_cancel_post_ts" - }, - { - "label": "login.post.ts", - "file_type": "code", - "source_file": "backend/server/api/auth/login.post.ts", - "source_location": "L1", - "community": 32, - "norm_label": "login.post.ts", - "id": "backend_server_api_auth_login_post_ts" - }, - { - "label": "me.get.ts", - "file_type": "code", - "source_file": "backend/server/api/auth/me.get.ts", - "source_location": "L1", - "community": 429, - "norm_label": "me.get.ts", - "id": "backend_server_api_auth_me_get_ts" - }, - { - "label": "me.patch.ts", - "file_type": "code", - "source_file": "backend/server/api/auth/me.patch.ts", - "source_location": "L1", - "community": 9, - "norm_label": "me.patch.ts", - "id": "backend_server_api_auth_me_patch_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/streak/index.get.ts", - "source_location": "L1", - "community": 34, - "norm_label": "index.get.ts", - "id": "backend_server_api_streak_index_get_ts" - }, - { - "label": "index.post.ts", - "file_type": "code", - "source_file": "backend/server/api/streak/index.post.ts", - "source_location": "L1", - "community": 34, - "norm_label": "index.post.ts", - "id": "backend_server_api_streak_index_post_ts" - }, - { - "label": "events.get.ts", - "file_type": "code", - "source_file": "backend/server/api/streak/events.get.ts", - "source_location": "L1", - "community": 34, - "norm_label": "events.get.ts", - "id": "backend_server_api_streak_events_get_ts" - }, - { - "label": "index.patch.ts", - "file_type": "code", - "source_file": "backend/server/api/streak/index.patch.ts", - "source_location": "L1", - "community": 34, - "norm_label": "index.patch.ts", - "id": "backend_server_api_streak_index_patch_ts" - }, - { - "label": "[id].delete.ts", - "file_type": "code", - "source_file": "backend/server/api/custom-domains/[id].delete.ts", - "source_location": "L1", - "community": 4, - "norm_label": "[id].delete.ts", - "id": "backend_server_api_custom_domains_id_delete_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/custom-domains/index.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "index.get.ts", - "id": "backend_server_api_custom_domains_index_get_ts" - }, - { - "label": "index.post.ts", - "file_type": "code", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "index.post.ts", - "id": "backend_server_api_custom_domains_index_post_ts" - }, - { - "label": "ResolveResult", - "file_type": "code", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L39", - "community": 4, - "norm_label": "resolveresult", - "id": "custom_domains_index_post_resolveresult" - }, - { - "label": "resolveTypeAndValue()", - "file_type": "code", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L43", - "community": 429, - "norm_label": "resolvetypeandvalue()", - "id": "custom_domains_index_post_resolvetypeandvalue" - }, - { - "label": "suggest.post.ts", - "file_type": "code", - "source_file": "backend/server/api/custom-domains/suggest.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "suggest.post.ts", - "id": "backend_server_api_custom_domains_suggest_post_ts" - }, - { - "label": "SupportedCountry", - "file_type": "code", - "source_file": "backend/server/api/custom-domains/suggest.post.ts", - "source_location": "L7", - "community": 4, - "norm_label": "supportedcountry", - "id": "custom_domains_suggest_post_supportedcountry" - }, - { - "label": "submit.post.ts", - "file_type": "code", - "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "submit.post.ts", - "id": "backend_server_api_custom_domains_id_submit_post_ts" - }, - { - "label": "proxy-config.get.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L1", - "community": 6, - "norm_label": "proxy-config.get.ts", - "id": "backend_server_api_mail_proxy_config_get_ts" - }, - { - "label": "escapeXml()", - "file_type": "code", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L8", - "community": 6, - "norm_label": "escapexml()", - "id": "mail_proxy_config_get_escapexml" - }, - { - "label": "proxy-account.post.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L1", - "community": 6, - "norm_label": "proxy-account.post.ts", - "id": "backend_server_api_mail_proxy_account_post_ts" - }, - { - "label": "status.get.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/status.get.ts", - "source_location": "L1", - "community": 6, - "norm_label": "status.get.ts", - "id": "backend_server_api_mail_status_get_ts" - }, - { - "label": "disconnect.delete.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/disconnect.delete.ts", - "source_location": "L1", - "community": 6, - "norm_label": "disconnect.delete.ts", - "id": "backend_server_api_mail_disconnect_delete_ts" - }, - { - "label": "connect.post.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/connect.post.ts", - "source_location": "L1", - "community": 6, - "norm_label": "connect.post.ts", - "id": "backend_server_api_mail_connect_post_ts" - }, - { - "label": "results.get.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/results.get.ts", - "source_location": "L1", - "community": 6, - "norm_label": "results.get.ts", - "id": "backend_server_api_mail_results_get_ts" - }, - { - "label": "PROVIDER_SLUG_TO_HOST", - "file_type": "code", - "source_file": "backend/server/api/mail/results.get.ts", - "source_location": "L21", - "community": 6, - "norm_label": "provider_slug_to_host", - "id": "mail_results_get_provider_slug_to_host" - }, - { - "label": "interval.patch.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/interval.patch.ts", - "source_location": "L1", - "community": 6, - "norm_label": "interval.patch.ts", - "id": "backend_server_api_mail_interval_patch_ts" - }, - { - "label": "proxy-account.get.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/proxy-account.get.ts", - "source_location": "L1", - "community": 6, - "norm_label": "proxy-account.get.ts", - "id": "backend_server_api_mail_proxy_account_get_ts" - }, - { - "label": "callback.post.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L1", - "community": 6, - "norm_label": "callback.post.ts", - "id": "backend_server_api_mail_oauth_google_callback_post_ts" - }, - { - "label": "init.post.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/oauth/google/init.post.ts", - "source_location": "L1", - "community": 6, - "norm_label": "init.post.ts", - "id": "backend_server_api_mail_oauth_google_init_post_ts" - }, - { - "label": "callback.post.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L1", - "community": 6, - "norm_label": "callback.post.ts", - "id": "backend_server_api_mail_oauth_microsoft_callback_post_ts" - }, - { - "label": "init.post.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", - "source_location": "L1", - "community": 6, - "norm_label": "init.post.ts", - "id": "backend_server_api_mail_oauth_microsoft_init_post_ts" - }, - { - "label": "blocked-by-day.get.ts", - "file_type": "code", - "source_file": "backend/server/api/mail/stats/blocked-by-day.get.ts", - "source_location": "L1", - "community": 6, - "norm_label": "blocked-by-day.get.ts", - "id": "backend_server_api_mail_stats_blocked_by_day_get_ts" - }, - { - "label": "change-preview.get.ts", - "file_type": "code", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L1", - "community": 429, - "norm_label": "change-preview.get.ts", - "id": "backend_server_api_plan_change_preview_get_ts" - }, - { - "label": "ResourceKey", - "file_type": "code", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L14", - "community": 429, - "norm_label": "resourcekey", - "id": "plan_change_preview_get_resourcekey" - }, - { - "label": "ChangeEntry", - "file_type": "code", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L24", - "community": 429, - "norm_label": "changeentry", - "id": "plan_change_preview_get_changeentry" - }, - { - "label": "ChangePreviewResponse", - "file_type": "code", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L34", - "community": 429, - "norm_label": "changepreviewresponse", - "id": "plan_change_preview_get_changepreviewresponse" - }, - { - "label": "VALID_PLANS", - "file_type": "code", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L43", - "community": 429, - "norm_label": "valid_plans", - "id": "plan_change_preview_get_valid_plans" - }, - { - "label": "PLAN_ORDER", - "file_type": "code", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L44", - "community": 429, - "norm_label": "plan_order", - "id": "plan_change_preview_get_plan_order" - }, - { - "label": "friendlyModelName()", - "file_type": "code", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L350", - "community": 429, - "norm_label": "friendlymodelname()", - "id": "plan_change_preview_get_friendlymodelname" - }, - { - "label": "friendlyProviderName()", - "file_type": "code", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L357", - "community": 429, - "norm_label": "friendlyprovidername()", - "id": "plan_change_preview_get_friendlyprovidername" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/providers/index.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "index.get.ts", - "id": "backend_server_api_providers_index_get_ts" - }, - { - "label": "GGL_PROVIDERS", - "file_type": "code", - "source_file": "backend/server/api/providers/index.get.ts", - "source_location": "L12", - "community": 4, - "norm_label": "ggl_providers", - "id": "providers_index_get_ggl_providers" - }, - { - "label": "set-lyra-avatar.post.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/set-lyra-avatar.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "set-lyra-avatar.post.ts", - "id": "backend_server_api_admin_set_lyra_avatar_post_ts" - }, - { - "label": "LYRA_TOPICS", - "file_type": "code", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L3", - "community": 759, - "norm_label": "lyra_topics", - "id": "admin_lyra_post_post_lyra_topics" - }, - { - "label": "LyraTopic", - "file_type": "code", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L12", - "community": 759, - "norm_label": "lyratopic", - "id": "admin_lyra_post_post_lyratopic" - }, - { - "label": "TOPIC_HINTS", - "file_type": "code", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L14", - "community": 759, - "norm_label": "topic_hints", - "id": "admin_lyra_post_post_topic_hints" - }, - { - "label": "Lang", - "file_type": "code", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L27", - "community": 759, - "norm_label": "lang", - "id": "admin_lyra_post_post_lang" - }, - { - "label": "LANGS", - "file_type": "code", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L28", - "community": 759, - "norm_label": "langs", - "id": "admin_lyra_post_post_langs" - }, - { - "label": "LANG_NAME", - "file_type": "code", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L29", - "community": 759, - "norm_label": "lang_name", - "id": "admin_lyra_post_post_lang_name" - }, - { - "label": "lyraSystemPrompt()", - "file_type": "code", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L36", - "community": 759, - "norm_label": "lyrasystemprompt()", - "id": "admin_lyra_post_post_lyrasystemprompt" - }, - { - "label": "rebreakSystemPrompt()", - "file_type": "code", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L50", - "community": 759, - "norm_label": "rebreaksystemprompt()", - "id": "admin_lyra_post_post_rebreaksystemprompt" - }, - { - "label": "lyra-generate.post.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/lyra-generate.post.ts", - "source_location": "L1", - "community": 759, - "norm_label": "lyra-generate.post.ts", - "id": "backend_server_api_admin_lyra_generate_post_ts" - }, - { - "label": "lyra-profile.get.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/lyra-profile.get.ts", - "source_location": "L1", - "community": 6, - "norm_label": "lyra-profile.get.ts", - "id": "backend_server_api_admin_lyra_profile_get_ts" - }, - { - "label": "verify-admin.get.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/verify-admin.get.ts", - "source_location": "L1", - "community": 9, - "norm_label": "verify-admin.get.ts", - "id": "backend_server_api_admin_verify_admin_get_ts" - }, - { - "label": "stats.get.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/stats.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "stats.get.ts", - "id": "backend_server_api_admin_stats_get_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/curated-domains/index.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "index.get.ts", - "id": "backend_server_api_admin_curated_domains_index_get_ts" - }, - { - "label": "[id].patch.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/curated-domains/[id].patch.ts", - "source_location": "L1", - "community": 4, - "norm_label": "[id].patch.ts", - "id": "backend_server_api_admin_curated_domains_id_patch_ts" - }, - { - "label": "[id].delete.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/users/[id].delete.ts", - "source_location": "L1", - "community": 384, - "norm_label": "[id].delete.ts", - "id": "backend_server_api_admin_users_id_delete_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/users/index.get.ts", - "source_location": "L1", - "community": 384, - "norm_label": "index.get.ts", - "id": "backend_server_api_admin_users_index_get_ts" - }, - { - "label": "[id].patch.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/users/[id].patch.ts", - "source_location": "L1", - "community": 384, - "norm_label": "[id].patch.ts", - "id": "backend_server_api_admin_users_id_patch_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/domain-submissions/index.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "index.get.ts", - "id": "backend_server_api_admin_domain_submissions_index_get_ts" - }, - { - "label": "approve.post.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/domain-submissions/[id]/approve.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "approve.post.ts", - "id": "backend_server_api_admin_domain_submissions_id_approve_post_ts" - }, - { - "label": "Lang", - "file_type": "code", - "source_file": "backend/server/api/admin/domain-submissions/[id]/approve.post.ts", - "source_location": "L60", - "community": 4, - "norm_label": "lang", - "id": "id_approve_post_lang" - }, - { - "label": "reject.post.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/domain-submissions/[id]/reject.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "reject.post.ts", - "id": "backend_server_api_admin_domain_submissions_id_reject_post_ts" - }, - { - "label": "queue.get.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/moderation/queue.get.ts", - "source_location": "L1", - "community": 385, - "norm_label": "queue.get.ts", - "id": "backend_server_api_admin_moderation_queue_get_ts" - }, - { - "label": "dismiss.post.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/moderation/[id]/dismiss.post.ts", - "source_location": "L1", - "community": 385, - "norm_label": "dismiss.post.ts", - "id": "backend_server_api_admin_moderation_id_dismiss_post_ts" - }, - { - "label": "delete.post.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/moderation/[id]/delete.post.ts", - "source_location": "L1", - "community": 385, - "norm_label": "delete.post.ts", - "id": "backend_server_api_admin_moderation_id_delete_post_ts" - }, - { - "label": "ban-user.post.ts", - "file_type": "code", - "source_file": "backend/server/api/admin/moderation/[id]/ban-user.post.ts", - "source_location": "L1", - "community": 385, - "norm_label": "ban-user.post.ts", - "id": "backend_server_api_admin_moderation_id_ban_user_post_ts" - }, - { - "label": "leaderboard.get.ts", - "file_type": "code", - "source_file": "backend/server/api/scores/leaderboard.get.ts", - "source_location": "L1", - "community": 39, - "norm_label": "leaderboard.get.ts", - "id": "backend_server_api_scores_leaderboard_get_ts" - }, - { - "label": "me.get.ts", - "file_type": "code", - "source_file": "backend/server/api/scores/me.get.ts", - "source_location": "L1", - "community": 39, - "norm_label": "me.get.ts", - "id": "backend_server_api_scores_me_get_ts" - }, - { - "label": "delete.delete.ts", - "file_type": "code", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L1", - "community": 34, - "norm_label": "delete.delete.ts", - "id": "backend_server_api_user_delete_delete_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/feedback/index.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "index.get.ts", - "id": "backend_server_api_feedback_index_get_ts" - }, - { - "label": "[id].patch.ts", - "file_type": "code", - "source_file": "backend/server/api/feedback/[id].patch.ts", - "source_location": "L1", - "community": 4, - "norm_label": "[id].patch.ts", - "id": "backend_server_api_feedback_id_patch_ts" - }, - { - "label": "personal.get.ts", - "file_type": "code", - "source_file": "backend/server/api/blocklist/personal.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "personal.get.ts", - "id": "backend_server_api_blocklist_personal_get_ts" - }, - { - "label": "check.get.ts", - "file_type": "code", - "source_file": "backend/server/api/blocklist/check.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "check.get.ts", - "id": "backend_server_api_blocklist_check_get_ts" - }, - { - "label": "sync.post.ts", - "file_type": "code", - "source_file": "backend/server/api/blocklist/sync.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "sync.post.ts", - "id": "backend_server_api_blocklist_sync_post_ts" - }, - { - "label": "count.get.ts", - "file_type": "code", - "source_file": "backend/server/api/blocklist/count.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "count.get.ts", - "id": "backend_server_api_blocklist_count_get_ts" - }, - { - "label": "stats.get.ts", - "file_type": "code", - "source_file": "backend/server/api/blocklist/stats.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "stats.get.ts", - "id": "backend_server_api_blocklist_stats_get_ts" - }, - { - "label": "download.get.ts", - "file_type": "code", - "source_file": "backend/server/api/blocklist/download.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "download.get.ts", - "id": "backend_server_api_blocklist_download_get_ts" - }, - { - "label": "message.post.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L1", - "community": 48, - "norm_label": "message.post.ts", - "id": "backend_server_api_coach_message_post_ts" - }, - { - "label": "generatePlanDetails()", - "file_type": "code", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L317", - "community": 48, - "norm_label": "generateplandetails()", - "id": "coach_message_post_generateplandetails" - }, - { - "label": "PROVIDER_CONFIG", - "file_type": "code", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L355", - "community": 21, - "norm_label": "provider_config", - "id": "coach_message_post_provider_config" - }, - { - "label": "detectAndSaveFeedback()", - "file_type": "code", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L384", - "community": 48, - "norm_label": "detectandsavefeedback()", - "id": "coach_message_post_detectandsavefeedback" - }, - { - "label": "Candidate", - "file_type": "code", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L613", - "community": 48, - "norm_label": "candidate", - "id": "coach_message_post_candidate" - }, - { - "label": "tryModel()", - "file_type": "code", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L620", - "community": 48, - "norm_label": "trymodel()", - "id": "coach_message_post_trymodel" - }, - { - "label": "speak.post.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L1", - "community": 429, - "norm_label": "speak.post.ts", - "id": "backend_server_api_coach_speak_post_ts" - }, - { - "label": "speakGoogle()", - "file_type": "code", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L100", - "community": 429, - "norm_label": "speakgoogle()", - "id": "coach_speak_post_speakgoogle" - }, - { - "label": "speakCartesia()", - "file_type": "code", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L171", - "community": 429, - "norm_label": "speakcartesia()", - "id": "coach_speak_post_speakcartesia" - }, - { - "label": "speakElevenLabs()", - "file_type": "code", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L229", - "community": 429, - "norm_label": "speakelevenlabs()", - "id": "coach_speak_post_speakelevenlabs" - }, - { - "label": "history.delete.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/history.delete.ts", - "source_location": "L1", - "community": 4, - "norm_label": "history.delete.ts", - "id": "backend_server_api_coach_history_delete_ts" - }, - { - "label": "history.get.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/history.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "history.get.ts", - "id": "backend_server_api_coach_history_get_ts" - }, - { - "label": "speak-google.post.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/speak-google.post.ts", - "source_location": "L1", - "community": 772, - "norm_label": "speak-google.post.ts", - "id": "backend_server_api_coach_speak_google_post_ts" - }, - { - "label": "sos-session.post.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/sos-session.post.ts", - "source_location": "L1", - "community": 79, - "norm_label": "sos-session.post.ts", - "id": "backend_server_api_coach_sos_session_post_ts" - }, - { - "label": "transcribe.post.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/transcribe.post.ts", - "source_location": "L1", - "community": 773, - "norm_label": "transcribe.post.ts", - "id": "backend_server_api_coach_transcribe_post_ts" - }, - { - "label": "sos-stream.post.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/sos-stream.post.ts", - "source_location": "L1", - "community": 48, - "norm_label": "sos-stream.post.ts", - "id": "backend_server_api_coach_sos_stream_post_ts" - }, - { - "label": "start()", - "file_type": "code", - "source_file": "backend/server/api/coach/sos-stream.post.ts", - "source_location": "L156", - "community": 48, - "norm_label": "start()", - "id": "coach_sos_stream_post_start" - }, - { - "label": "pull()", - "file_type": "code", - "source_file": "backend/server/api/coach/sos-stream.post.ts", - "source_location": "L160", - "community": 48, - "norm_label": "pull()", - "id": "coach_sos_stream_post_pull" - }, - { - "label": "cancel()", - "file_type": "code", - "source_file": "backend/server/api/coach/sos-stream.post.ts", - "source_location": "L232", - "community": 48, - "norm_label": "cancel()", - "id": "coach_sos_stream_post_cancel" - }, - { - "label": "speak-deepgram.post.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/speak-deepgram.post.ts", - "source_location": "L1", - "community": 774, - "norm_label": "speak-deepgram.post.ts", - "id": "backend_server_api_coach_speak_deepgram_post_ts" - }, - { - "label": "sos-stream.get.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L1", - "community": 48, - "norm_label": "sos-stream.get.ts", - "id": "backend_server_api_coach_sos_stream_get_ts" - }, - { - "label": "speak-openai.post.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/speak-openai.post.ts", - "source_location": "L1", - "community": 775, - "norm_label": "speak-openai.post.ts", - "id": "backend_server_api_coach_speak_openai_post_ts" - }, - { - "label": "speak-cartesia.post.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/speak-cartesia.post.ts", - "source_location": "L1", - "community": 48, - "norm_label": "speak-cartesia.post.ts", - "id": "backend_server_api_coach_speak_cartesia_post_ts" - }, - { - "label": "speak-gemini.post.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/speak-gemini.post.ts", - "source_location": "L1", - "community": 751, - "norm_label": "speak-gemini.post.ts", - "id": "backend_server_api_coach_speak_gemini_post_ts" - }, - { - "label": "pcmToWav()", - "file_type": "code", - "source_file": "backend/server/api/coach/speak-gemini.post.ts", - "source_location": "L15", - "community": 751, - "norm_label": "pcmtowav()", - "id": "coach_speak_gemini_post_pcmtowav" - }, - { - "label": "speak-azure.post.ts", - "file_type": "code", - "source_file": "backend/server/api/coach/speak-azure.post.ts", - "source_location": "L1", - "community": 776, - "norm_label": "speak-azure.post.ts", - "id": "backend_server_api_coach_speak_azure_post_ts" - }, - { - "label": "follow.post.ts", - "file_type": "code", - "source_file": "backend/server/api/social/follow.post.ts", - "source_location": "L1", - "community": 39, - "norm_label": "follow.post.ts", - "id": "backend_server_api_social_follow_post_ts" - }, - { - "label": "[userId].get.ts", - "file_type": "code", - "source_file": "backend/server/api/social/profile/[userId].get.ts", - "source_location": "L1", - "community": 39, - "norm_label": "[userid].get.ts", - "id": "backend_server_api_social_profile_userid_get_ts" - }, - { - "label": "last-seen.get.ts", - "file_type": "code", - "source_file": "backend/server/api/presence/last-seen.get.ts", - "source_location": "L1", - "community": 9, - "norm_label": "last-seen.get.ts", - "id": "backend_server_api_presence_last_seen_get_ts" - }, - { - "label": "mark-active.post.ts", - "file_type": "code", - "source_file": "backend/server/api/protection/mark-active.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "mark-active.post.ts", - "id": "backend_server_api_protection_mark_active_post_ts" - }, - { - "label": "webcontent-domains.get.ts", - "file_type": "code", - "source_file": "backend/server/api/protection/webcontent-domains.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "webcontent-domains.get.ts", - "id": "backend_server_api_protection_webcontent_domains_get_ts" - }, - { - "label": "CountryKey", - "file_type": "code", - "source_file": "backend/server/api/protection/webcontent-domains.get.ts", - "source_location": "L5", - "community": 4, - "norm_label": "countrykey", - "id": "protection_webcontent_domains_get_countrykey" - }, - { - "label": "GLOBAL_LISTS", - "file_type": "code", - "source_file": "backend/server/api/protection/webcontent-domains.get.ts", - "source_location": "L7", - "community": 4, - "norm_label": "global_lists", - "id": "protection_webcontent_domains_get_global_lists" - }, - { - "label": "dev-force-disabled.post.ts", - "file_type": "code", - "source_file": "backend/server/api/protection/dev-force-disabled.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "dev-force-disabled.post.ts", - "id": "backend_server_api_protection_dev_force_disabled_post_ts" - }, - { - "label": "state.get.ts", - "file_type": "code", - "source_file": "backend/server/api/protection/state.get.ts", - "source_location": "L1", - "community": 9, - "norm_label": "state.get.ts", - "id": "backend_server_api_protection_state_get_ts" - }, - { - "label": "check-nickname.get.ts", - "file_type": "code", - "source_file": "backend/server/api/profile/check-nickname.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "check-nickname.get.ts", - "id": "backend_server_api_profile_check_nickname_get_ts" - }, - { - "label": "PROFANITY_BLOCKLIST", - "file_type": "code", - "source_file": "backend/server/api/profile/check-nickname.get.ts", - "source_location": "L17", - "community": 4, - "norm_label": "profanity_blocklist", - "id": "profile_check_nickname_get_profanity_blocklist" - }, - { - "label": "isProfanity()", - "file_type": "code", - "source_file": "backend/server/api/profile/check-nickname.get.ts", - "source_location": "L43", - "community": 4, - "norm_label": "isprofanity()", - "id": "profile_check_nickname_get_isprofanity" - }, - { - "label": "lyra-voice.patch.ts", - "file_type": "code", - "source_file": "backend/server/api/profile/me/lyra-voice.patch.ts", - "source_location": "L1", - "community": 9, - "norm_label": "lyra-voice.patch.ts", - "id": "backend_server_api_profile_me_lyra_voice_patch_ts" - }, - { - "label": "Helper", - "file_type": "code", - "source_file": "backend/server/api/profile/me/sos-insights.get.ts", - "source_location": "L30", - "community": 9, - "norm_label": "helper", - "id": "me_sos_insights_get_helper" - }, - { - "label": "CooldownEntry", - "file_type": "code", - "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", - "source_location": "L27", - "community": 9, - "norm_label": "cooldownentry", - "id": "me_cooldown_history_get_cooldownentry" - }, - { - "label": "onboarding-step.patch.ts", - "file_type": "code", - "source_file": "backend/server/api/profile/me/onboarding-step.patch.ts", - "source_location": "L1", - "community": 9, - "norm_label": "onboarding-step.patch.ts", - "id": "backend_server_api_profile_me_onboarding_step_patch_ts" - }, - { - "label": "install-event.post.ts", - "file_type": "code", - "source_file": "backend/server/api/profile/me/install-event.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "install-event.post.ts", - "id": "backend_server_api_profile_me_install_event_post_ts" - }, - { - "label": "diga-banner-dismiss.post.ts", - "file_type": "code", - "source_file": "backend/server/api/profile/me/diga-banner-dismiss.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "diga-banner-dismiss.post.ts", - "id": "backend_server_api_profile_me_diga_banner_dismiss_post_ts" - }, - { - "label": "GENDER_VALUES", - "file_type": "code", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L29", - "community": 9, - "norm_label": "gender_values", - "id": "me_demographics_patch_gender_values" - }, - { - "label": "MARITAL_VALUES", - "file_type": "code", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L30", - "community": 9, - "norm_label": "marital_values", - "id": "me_demographics_patch_marital_values" - }, - { - "label": "EMPLOYMENT_STATUS_VALUES", - "file_type": "code", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L40", - "community": 9, - "norm_label": "employment_status_values", - "id": "me_demographics_patch_employment_status_values" - }, - { - "label": "JOB_TENURE_VALUES", - "file_type": "code", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L49", - "community": 9, - "norm_label": "job_tenure_values", - "id": "me_demographics_patch_job_tenure_values" - }, - { - "label": "Schema", - "file_type": "code", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L57", - "community": 9, - "norm_label": "schema", - "id": "me_demographics_patch_schema" - }, - { - "label": "demographics.delete.ts", - "file_type": "code", - "source_file": "backend/server/api/profile/me/demographics.delete.ts", - "source_location": "L1", - "community": 9, - "norm_label": "demographics.delete.ts", - "id": "backend_server_api_profile_me_demographics_delete_ts" - }, - { - "label": "presence-visibility.post.ts", - "file_type": "code", - "source_file": "backend/server/api/me/presence-visibility.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "presence-visibility.post.ts", - "id": "backend_server_api_me_presence_visibility_post_ts" - }, - { - "label": "following.get.ts", - "file_type": "code", - "source_file": "backend/server/api/me/following.get.ts", - "source_location": "L1", - "community": 9, - "norm_label": "following.get.ts", - "id": "backend_server_api_me_following_get_ts" - }, - { - "label": "last-seen.post.ts", - "file_type": "code", - "source_file": "backend/server/api/me/last-seen.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "last-seen.post.ts", - "id": "backend_server_api_me_last_seen_post_ts" - }, - { - "label": "mdm-status.post.ts", - "file_type": "code", - "source_file": "backend/server/api/users/me/mdm-status.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "mdm-status.post.ts", - "id": "backend_server_api_users_me_mdm_status_post_ts" - }, - { - "label": "Body", - "file_type": "code", - "source_file": "backend/server/api/users/me/mdm-status.post.ts", - "source_location": "L5", - "community": 9, - "norm_label": "body", - "id": "me_mdm_status_post_body" - }, - { - "label": "send-email.post.ts", - "file_type": "code", - "source_file": "backend/server/api/auth-hooks/send-email.post.ts", - "source_location": "L1", - "community": 277, - "norm_label": "send-email.post.ts", - "id": "backend_server_api_auth_hooks_send_email_post_ts" - }, - { - "label": "HookBody", - "file_type": "code", - "source_file": "backend/server/api/auth-hooks/send-email.post.ts", - "source_location": "L23", - "community": 277, - "norm_label": "hookbody", - "id": "auth_hooks_send_email_post_hookbody" - }, - { - "label": "verifySignature()", - "file_type": "code", - "source_file": "backend/server/api/auth-hooks/send-email.post.ts", - "source_location": "L38", - "community": 277, - "norm_label": "verifysignature()", - "id": "auth_hooks_send_email_post_verifysignature" - }, - { - "label": "upload.post.ts", - "file_type": "code", - "source_file": "backend/server/api/avatar/upload.post.ts", - "source_location": "L1", - "community": 34, - "norm_label": "upload.post.ts", - "id": "backend_server_api_avatar_upload_post_ts" - }, - { - "label": "[id].delete.ts", - "file_type": "code", - "source_file": "backend/server/api/mail-connections/[id].delete.ts", - "source_location": "L1", - "community": 4, - "norm_label": "[id].delete.ts", - "id": "backend_server_api_mail_connections_id_delete_ts" - }, - { - "label": "consent.post.ts", - "file_type": "code", - "source_file": "backend/server/api/mail-connections/consent.post.ts", - "source_location": "L1", - "community": 6, - "norm_label": "consent.post.ts", - "id": "backend_server_api_mail_connections_consent_post_ts" - }, - { - "label": "[id].post.ts", - "file_type": "code", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L1", - "community": 6, - "norm_label": "[id].post.ts", - "id": "backend_server_api_mail_connections_id_post_ts" - }, - { - "label": "pending-consent.get.ts", - "file_type": "code", - "source_file": "backend/server/api/mail-connections/pending-consent.get.ts", - "source_location": "L1", - "community": 6, - "norm_label": "pending-consent.get.ts", - "id": "backend_server_api_mail_connections_pending_consent_get_ts" - }, - { - "label": "[id].patch.ts", - "file_type": "code", - "source_file": "backend/server/api/mail-connections/[id].patch.ts", - "source_location": "L1", - "community": 6, - "norm_label": "[id].patch.ts", - "id": "backend_server_api_mail_connections_id_patch_ts" - }, - { - "label": "set-plan.post.ts", - "file_type": "code", - "source_file": "backend/server/api/dev/set-plan.post.ts", - "source_location": "L1", - "community": 429, - "norm_label": "set-plan.post.ts", - "id": "backend_server_api_dev_set_plan_post_ts" - }, - { - "label": "VALID_PLANS", - "file_type": "code", - "source_file": "backend/server/api/dev/set-plan.post.ts", - "source_location": "L5", - "community": 429, - "norm_label": "valid_plans", - "id": "dev_set_plan_post_valid_plans" - }, - { - "label": "AppPlan", - "file_type": "code", - "source_file": "backend/server/api/dev/set-plan.post.ts", - "source_location": "L6", - "community": 429, - "norm_label": "appplan", - "id": "dev_set_plan_post_appplan" - }, - { - "label": "like.post.ts", - "file_type": "code", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L1", - "community": 39, - "norm_label": "like.post.ts", - "id": "backend_server_api_community_like_post_ts" - }, - { - "label": "domain-stats.get.ts", - "file_type": "code", - "source_file": "backend/server/api/community/domain-stats.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "domain-stats.get.ts", - "id": "backend_server_api_community_domain_stats_get_ts" - }, - { - "label": "upload-image.post.ts", - "file_type": "code", - "source_file": "backend/server/api/community/upload-image.post.ts", - "source_location": "L1", - "community": 34, - "norm_label": "upload-image.post.ts", - "id": "backend_server_api_community_upload_image_post_ts" - }, - { - "label": "comment.post.ts", - "file_type": "code", - "source_file": "backend/server/api/community/comment.post.ts", - "source_location": "L1", - "community": 39, - "norm_label": "comment.post.ts", - "id": "backend_server_api_community_comment_post_ts" - }, - { - "label": "posts.get.ts", - "file_type": "code", - "source_file": "backend/server/api/community/posts.get.ts", - "source_location": "L1", - "community": 39, - "norm_label": "posts.get.ts", - "id": "backend_server_api_community_posts_get_ts" - }, - { - "label": "repost.post.ts", - "file_type": "code", - "source_file": "backend/server/api/community/repost.post.ts", - "source_location": "L1", - "community": 39, - "norm_label": "repost.post.ts", - "id": "backend_server_api_community_repost_post_ts" - }, - { - "label": "comment-like.post.ts", - "file_type": "code", - "source_file": "backend/server/api/community/comment-like.post.ts", - "source_location": "L1", - "community": 39, - "norm_label": "comment-like.post.ts", - "id": "backend_server_api_community_comment_like_post_ts" - }, - { - "label": "post.post.ts", - "file_type": "code", - "source_file": "backend/server/api/community/post.post.ts", - "source_location": "L1", - "community": 39, - "norm_label": "post.post.ts", - "id": "backend_server_api_community_post_post_ts" - }, - { - "label": "comments.get.ts", - "file_type": "code", - "source_file": "backend/server/api/community/[postId]/comments.get.ts", - "source_location": "L1", - "community": 39, - "norm_label": "comments.get.ts", - "id": "backend_server_api_community_postid_comments_get_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/community/[postId]/index.get.ts", - "source_location": "L1", - "community": 39, - "norm_label": "index.get.ts", - "id": "backend_server_api_community_postid_index_get_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/urge/index.get.ts", - "source_location": "L1", - "community": 34, - "norm_label": "index.get.ts", - "id": "backend_server_api_urge_index_get_ts" - }, - { - "label": "index.post.ts", - "file_type": "code", - "source_file": "backend/server/api/urge/index.post.ts", - "source_location": "L1", - "community": 34, - "norm_label": "index.post.ts", - "id": "backend_server_api_urge_index_post_ts" - }, - { - "label": "Emotion", - "file_type": "code", - "source_file": "backend/server/api/urge/index.post.ts", - "source_location": "L4", - "community": 34, - "norm_label": "emotion", - "id": "urge_index_post_emotion" - }, - { - "label": "VALID_EMOTIONS", - "file_type": "code", - "source_file": "backend/server/api/urge/index.post.ts", - "source_location": "L5", - "community": 34, - "norm_label": "valid_emotions", - "id": "urge_index_post_valid_emotions" - }, - { - "label": "profile.get.ts", - "file_type": "code", - "source_file": "backend/server/api/dns/profile.get.ts", - "source_location": "L1", - "community": 6, - "norm_label": "profile.get.ts", - "id": "backend_server_api_dns_profile_get_ts" - }, - { - "label": "session.post.ts", - "file_type": "code", - "source_file": "backend/server/api/sos/session.post.ts", - "source_location": "L1", - "community": 34, - "norm_label": "session.post.ts", - "id": "backend_server_api_sos_session_post_ts" - }, - { - "label": "vote.post.ts", - "file_type": "code", - "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "vote.post.ts", - "id": "backend_server_api_domain_submissions_id_vote_post_ts" - }, - { - "label": "challenge.post.ts", - "file_type": "code", - "source_file": "backend/server/api/games/challenge.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "challenge.post.ts", - "id": "backend_server_api_games_challenge_post_ts" - }, - { - "label": "challenge-memory.post.ts", - "file_type": "code", - "source_file": "backend/server/api/games/challenge-memory.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "challenge-memory.post.ts", - "id": "backend_server_api_games_challenge_memory_post_ts" - }, - { - "label": "MEMORY_EMOJIS", - "file_type": "code", - "source_file": "backend/server/api/games/challenge-memory.post.ts", - "source_location": "L4", - "community": 4, - "norm_label": "memory_emojis", - "id": "games_challenge_memory_post_memory_emojis" - }, - { - "label": "shuffle()", - "file_type": "code", - "source_file": "backend/server/api/games/challenge-memory.post.ts", - "source_location": "L6", - "community": 4, - "norm_label": "shuffle()", - "id": "games_challenge_memory_post_shuffle" - }, - { - "label": "highscore.get.ts", - "file_type": "code", - "source_file": "backend/server/api/games/highscore.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "highscore.get.ts", - "id": "backend_server_api_games_highscore_get_ts" - }, - { - "label": "share-text.post.ts", - "file_type": "code", - "source_file": "backend/server/api/games/share-text.post.ts", - "source_location": "L1", - "community": 683, - "norm_label": "share-text.post.ts", - "id": "backend_server_api_games_share_text_post_ts" - }, - { - "label": "GAME_VIBES", - "file_type": "code", - "source_file": "backend/server/api/games/share-text.post.ts", - "source_location": "L2", - "community": 683, - "norm_label": "game_vibes", - "id": "games_share_text_post_game_vibes" - }, - { - "label": "getGameVibe()", - "file_type": "code", - "source_file": "backend/server/api/games/share-text.post.ts", - "source_location": "L9", - "community": 683, - "norm_label": "getgamevibe()", - "id": "games_share_text_post_getgamevibe" - }, - { - "label": "buildFallback()", - "file_type": "code", - "source_file": "backend/server/api/games/share-text.post.ts", - "source_location": "L17", - "community": 683, - "norm_label": "buildfallback()", - "id": "games_share_text_post_buildfallback" - }, - { - "label": "leaderboard.get.ts", - "file_type": "code", - "source_file": "backend/server/api/games/leaderboard.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "leaderboard.get.ts", - "id": "backend_server_api_games_leaderboard_get_ts" - }, - { - "label": "history.get.ts", - "file_type": "code", - "source_file": "backend/server/api/games/history.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "history.get.ts", - "id": "backend_server_api_games_history_get_ts" - }, - { - "label": "rating.post.ts", - "file_type": "code", - "source_file": "backend/server/api/games/rating.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "rating.post.ts", - "id": "backend_server_api_games_rating_post_ts" - }, - { - "label": "ranking.get.ts", - "file_type": "code", - "source_file": "backend/server/api/games/ranking.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "ranking.get.ts", - "id": "backend_server_api_games_ranking_get_ts" - }, - { - "label": "ratings.get.ts", - "file_type": "code", - "source_file": "backend/server/api/games/ratings.get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "ratings.get.ts", - "id": "backend_server_api_games_ratings_get_ts" - }, - { - "label": "score.post.ts", - "file_type": "code", - "source_file": "backend/server/api/games/score.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "score.post.ts", - "id": "backend_server_api_games_score_post_ts" - }, - { - "label": "[id].get.ts", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id].get.ts", - "source_location": "L1", - "community": 4, - "norm_label": "[id].get.ts", - "id": "backend_server_api_games_challenge_id_get_ts" - }, - { - "label": "move.post.ts", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "move.post.ts", - "id": "backend_server_api_games_challenge_id_move_post_ts" - }, - { - "label": "WIN_LINES", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", - "source_location": "L3", - "community": 4, - "norm_label": "win_lines", - "id": "id_move_post_win_lines" - }, - { - "label": "checkWinner()", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", - "source_location": "L9", - "community": 5, - "norm_label": "checkwinner()", - "id": "id_move_post_checkwinner" - }, - { - "label": "accept.post.ts", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id]/accept.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "accept.post.ts", - "id": "backend_server_api_games_challenge_id_accept_post_ts" - }, - { - "label": "live-toggle.post.ts", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id]/live-toggle.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "live-toggle.post.ts", - "id": "backend_server_api_games_challenge_id_live_toggle_post_ts" - }, - { - "label": "rematch.post.ts", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "rematch.post.ts", - "id": "backend_server_api_games_challenge_id_rematch_post_ts" - }, - { - "label": "MEMORY_EMOJIS", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", - "source_location": "L4", - "community": 4, - "norm_label": "memory_emojis", - "id": "id_rematch_post_memory_emojis" - }, - { - "label": "shuffle()", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", - "source_location": "L5", - "community": 4, - "norm_label": "shuffle()", - "id": "id_rematch_post_shuffle" - }, - { - "label": "memory-move.post.ts", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "memory-move.post.ts", - "id": "backend_server_api_games_challenge_id_memory_move_post_ts" - }, - { - "label": "MemoryCard", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", - "source_location": "L3", - "community": 4, - "norm_label": "memorycard", - "id": "id_memory_move_post_memorycard" - }, - { - "label": "MemoryState", - "file_type": "code", - "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", - "source_location": "L9", - "community": 4, - "norm_label": "memorystate", - "id": "id_memory_move_post_memorystate" - }, - { - "label": "[id].delete.ts", - "file_type": "code", - "source_file": "backend/server/api/notifications/[id].delete.ts", - "source_location": "L1", - "community": 47, - "norm_label": "[id].delete.ts", - "id": "backend_server_api_notifications_id_delete_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/notifications/index.get.ts", - "source_location": "L1", - "community": 181, - "norm_label": "index.get.ts", - "id": "backend_server_api_notifications_index_get_ts" - }, - { - "label": "read.post.ts", - "file_type": "code", - "source_file": "backend/server/api/notifications/read.post.ts", - "source_location": "L1", - "community": 47, - "norm_label": "read.post.ts", - "id": "backend_server_api_notifications_read_post_ts" - }, - { - "label": "FALLBACK_MESSAGES", - "file_type": "code", - "source_file": "backend/server/api/lyra/welcome-back.get.ts", - "source_location": "L27", - "community": 413, - "norm_label": "fallback_messages", - "id": "lyra_welcome_back_get_fallback_messages" - }, - { - "label": "pickRandom()", - "file_type": "code", - "source_file": "backend/server/api/lyra/welcome-back.get.ts", - "source_location": "L96", - "community": 413, - "norm_label": "pickrandom()", - "id": "lyra_welcome_back_get_pickrandom" - }, - { - "label": "extract.post.ts", - "file_type": "code", - "source_file": "backend/server/api/lyra/memories/extract.post.ts", - "source_location": "L1", - "community": 48, - "norm_label": "extract.post.ts", - "id": "backend_server_api_lyra_memories_extract_post_ts" - }, - { - "label": "VALID_TYPES", - "file_type": "code", - "source_file": "backend/server/api/lyra/memories/extract.post.ts", - "source_location": "L15", - "community": 48, - "norm_label": "valid_types", - "id": "memories_extract_post_valid_types" - }, - { - "label": "redeem-diga-code.post.ts", - "file_type": "code", - "source_file": "backend/server/api/onboarding/redeem-diga-code.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "redeem-diga-code.post.ts", - "id": "backend_server_api_onboarding_redeem_diga_code_post_ts" - }, - { - "label": "errorMessage()", - "file_type": "code", - "source_file": "backend/server/api/onboarding/redeem-diga-code.post.ts", - "source_location": "L39", - "community": 4, - "norm_label": "errormessage()", - "id": "onboarding_redeem_diga_code_post_errormessage" - }, - { - "label": "notifications-cleanup.ts", - "file_type": "code", - "source_file": "backend/server/api/cron/notifications-cleanup.ts", - "source_location": "L1", - "community": 47, - "norm_label": "notifications-cleanup.ts", - "id": "backend_server_api_cron_notifications_cleanup_ts" - }, - { - "label": "lyra-post.ts", - "file_type": "code", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L1", - "community": 759, - "norm_label": "lyra-post.ts", - "id": "backend_server_api_cron_lyra_post_ts" - }, - { - "label": "TOPICS", - "file_type": "code", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L32", - "community": 759, - "norm_label": "topics", - "id": "cron_lyra_post_topics" - }, - { - "label": "postFromCatalog()", - "file_type": "code", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L106", - "community": 759, - "norm_label": "postfromcatalog()", - "id": "cron_lyra_post_postfromcatalog" - }, - { - "label": "postFromLLM()", - "file_type": "code", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L134", - "community": 759, - "norm_label": "postfromllm()", - "id": "cron_lyra_post_postfromllm" - }, - { - "label": "[id].delete.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/[id].delete.ts", - "source_location": "L1", - "community": 32, - "norm_label": "[id].delete.ts", - "id": "backend_server_api_devices_id_delete_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/index.get.ts", - "source_location": "L1", - "community": 32, - "norm_label": "index.get.ts", - "id": "backend_server_api_devices_index_get_ts" - }, - { - "label": "protected.get.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/protected.get.ts", - "source_location": "L1", - "community": 80, - "norm_label": "protected.get.ts", - "id": "backend_server_api_devices_protected_get_ts" - }, - { - "label": "register.post.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/register.post.ts", - "source_location": "L1", - "community": 32, - "norm_label": "register.post.ts", - "id": "backend_server_api_devices_register_post_ts" - }, - { - "label": "enroll.post.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/enroll.post.ts", - "source_location": "L1", - "community": 80, - "norm_label": "enroll.post.ts", - "id": "backend_server_api_devices_enroll_post_ts" - }, - { - "label": "check-lock.post.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/check-lock.post.ts", - "source_location": "L1", - "community": 32, - "norm_label": "check-lock.post.ts", - "id": "backend_server_api_devices_check_lock_post_ts" - }, - { - "label": "handshake.post.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/protected/handshake.post.ts", - "source_location": "L1", - "community": 777, - "norm_label": "handshake.post.ts", - "id": "backend_server_api_devices_protected_handshake_post_ts" - }, - { - "label": "profile.reg.get.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", - "source_location": "L1", - "community": 80, - "norm_label": "profile.reg.get.ts", - "id": "backend_server_api_devices_id_profile_reg_get_ts" - }, - { - "label": "cancel-release.post.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/[id]/cancel-release.post.ts", - "source_location": "L1", - "community": 32, - "norm_label": "cancel-release.post.ts", - "id": "backend_server_api_devices_id_cancel_release_post_ts" - }, - { - "label": "profile.mobileconfig.get.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", - "source_location": "L1", - "community": 80, - "norm_label": "profile.mobileconfig.get.ts", - "id": "backend_server_api_devices_id_profile_mobileconfig_get_ts" - }, - { - "label": "confirm-installed.post.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/[id]/confirm-installed.post.ts", - "source_location": "L1", - "community": 80, - "norm_label": "confirm-installed.post.ts", - "id": "backend_server_api_devices_id_confirm_installed_post_ts" - }, - { - "label": "request-release.post.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/[id]/request-release.post.ts", - "source_location": "L1", - "community": 32, - "norm_label": "request-release.post.ts", - "id": "backend_server_api_devices_id_request_release_post_ts" - }, - { - "label": "revoke.delete.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/[id]/revoke.delete.ts", - "source_location": "L1", - "community": 80, - "norm_label": "revoke.delete.ts", - "id": "backend_server_api_devices_id_revoke_delete_ts" - }, - { - "label": "portal.post.ts", - "file_type": "code", - "source_file": "backend/server/api/stripe/portal.post.ts", - "source_location": "L1", - "community": 4, - "norm_label": "portal.post.ts", - "id": "backend_server_api_stripe_portal_post_ts" - }, - { - "label": "checkout.post.ts", - "file_type": "code", - "source_file": "backend/server/api/stripe/checkout.post.ts", - "source_location": "L1", - "community": 778, - "norm_label": "checkout.post.ts", - "id": "backend_server_api_stripe_checkout_post_ts" - }, - { - "label": "webhook.post.ts", - "file_type": "code", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L1", - "community": 429, - "norm_label": "webhook.post.ts", - "id": "backend_server_api_stripe_webhook_post_ts" - }, - { - "label": "gambling-domains.json", - "file_type": "code", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L1", - "community": 448, - "norm_label": "gambling-domains.json", - "id": "backend_server_data_gambling_domains_json" - }, - { - "label": "_meta", - "file_type": "code", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L2", - "community": 448, - "norm_label": "_meta", - "id": "data_gambling_domains_meta" - }, - { - "label": "version", - "file_type": "code", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L3", - "community": 448, - "norm_label": "version", - "id": "data_gambling_domains_meta_version" - }, - { - "label": "updatedAt", - "file_type": "code", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L4", - "community": 448, - "norm_label": "updatedat", - "id": "data_gambling_domains_meta_updatedat" - }, - { - "label": "maxDomainsPerCountry", - "file_type": "code", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L5", - "community": 448, - "norm_label": "maxdomainspercountry", - "id": "data_gambling_domains_meta_maxdomainspercountry" - }, - { - "label": "status", - "file_type": "code", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L6", - "community": 448, - "norm_label": "status", - "id": "data_gambling_domains_meta_status" - }, - { - "label": "DE", - "file_type": "code", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L8", - "community": 448, - "norm_label": "de", - "id": "data_gambling_domains_de" - }, - { - "label": "GB", - "file_type": "code", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L46", - "community": 448, - "norm_label": "gb", - "id": "data_gambling_domains_gb" - }, - { - "label": "FR", - "file_type": "code", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L78", - "community": 448, - "norm_label": "fr", - "id": "data_gambling_domains_fr" - }, - { - "label": "TN", - "file_type": "code", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L100", - "community": 448, - "norm_label": "tn", - "id": "data_gambling_domains_tn" - }, - { - "label": "start-idle-staging.sh", - "file_type": "code", - "source_file": "backend/imap-idle/start-idle-staging.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "community": 779, - "norm_label": "start-idle-staging.sh", - "id": "backend_imap_idle_start_idle_staging_sh" - }, - { - "label": "package.json", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L1", - "community": 424, - "norm_label": "package.json", - "id": "backend_imap_idle_package_json" - }, - { - "label": "name", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L2", - "community": 424, - "norm_label": "name", - "id": "imap_idle_package_name" - }, - { - "label": "version", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L3", - "community": 424, - "norm_label": "version", - "id": "imap_idle_package_version" - }, - { - "label": "private", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L4", - "community": 424, - "norm_label": "private", - "id": "imap_idle_package_private" - }, - { - "label": "type", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L5", - "community": 424, - "norm_label": "type", - "id": "imap_idle_package_type" - }, - { - "label": "description", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L6", - "community": 424, - "norm_label": "description", - "id": "imap_idle_package_description" - }, - { - "label": "main", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L7", - "community": 424, - "norm_label": "main", - "id": "imap_idle_package_main" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L8", - "community": 424, - "norm_label": "scripts", - "id": "imap_idle_package_scripts" - }, - { - "label": "start", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L9", - "community": 424, - "norm_label": "start", - "id": "imap_idle_package_scripts_start" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L11", - "community": 424, - "norm_label": "dependencies", - "id": "imap_idle_package_dependencies" - }, - { - "label": "imapflow", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L12", - "community": 424, - "norm_label": "imapflow", - "id": "imap_idle_package_dependencies_imapflow" - }, - { - "label": "pg", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L13", - "community": 424, - "norm_label": "pg", - "id": "imap_idle_package_dependencies_pg" - }, - { - "label": "engines", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L15", - "community": 424, - "norm_label": "engines", - "id": "imap_idle_package_engines" - }, - { - "label": "node", - "file_type": "code", - "source_file": "backend/imap-idle/package.json", - "source_location": "L16", - "community": 424, - "norm_label": "node", - "id": "imap_idle_package_engines_node" - }, { "label": "generate-pir-input.ts", "file_type": "code", @@ -33114,6 +13634,24 @@ "norm_label": "rebreakmonorepo-bridging-header.h", "id": "ios_rebreakmonorepo_rebreakmonorepo_bridging_header_h" }, + { + "label": "AppDelegate.swift", + "file_type": "code", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L1", + "community": 46, + "norm_label": "appdelegate.swift", + "id": "ios_rebreakmonorepo_appdelegate_swift" + }, + { + "label": "AppDelegate", + "file_type": "code", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L5", + "community": 46, + "norm_label": "appdelegate", + "id": "rebreakmonorepo_appdelegate_appdelegate" + }, { "label": "ExpoAppDelegate", "file_type": "code", @@ -33384,6 +13922,84 @@ "norm_label": "version", "id": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info_version" }, + { + "label": "deploy-marketing.sh", + "file_type": "code", + "source_file": "scripts/deploy-marketing.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "community": 710, + "norm_label": "deploy-marketing.sh", + "id": "scripts_deploy_marketing_sh" + }, + { + "label": "deploy-marketing.sh script", + "file_type": "code", + "source_file": "scripts/deploy-marketing.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 710, + "norm_label": "deploy-marketing.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_marketing_sh__entry" + }, + { + "label": "log()", + "file_type": "code", + "source_file": "scripts/deploy-marketing.sh", + "source_location": "L27", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 710, + "norm_label": "log()", + "id": "scripts_deploy_marketing_log" + }, + { + "label": "dev.sh", + "file_type": "code", + "source_file": "scripts/dev.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "community": 1308, + "norm_label": "dev.sh", + "id": "scripts_dev_sh" + }, + { + "label": "dev.sh script", + "file_type": "code", + "source_file": "scripts/dev.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 1308, + "norm_label": "dev.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_scripts_dev_sh__entry" + }, + { + "label": "log()", + "file_type": "code", + "source_file": "scripts/dev.sh", + "source_location": "L19", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 1308, + "norm_label": "log()", + "id": "scripts_dev_log" + }, { "label": "deploy-admin-from-artifact.sh", "file_type": "code", @@ -33397,6 +14013,19 @@ "norm_label": "deploy-admin-from-artifact.sh", "id": "scripts_deploy_admin_from_artifact_sh" }, + { + "label": "deploy-admin-from-artifact.sh script", + "file_type": "code", + "source_file": "scripts/deploy-admin-from-artifact.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 691, + "norm_label": "deploy-admin-from-artifact.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_admin_from_artifact_sh__entry" + }, { "label": "log()", "file_type": "code", @@ -33466,7 +14095,7 @@ "label": "log()", "file_type": "code", "source_file": "scripts/deploy.sh", - "source_location": "L29", + "source_location": "L34", "metadata": { "language": "bash", "kind": "bash_function" @@ -33479,7 +14108,7 @@ "label": "log_err()", "file_type": "code", "source_file": "scripts/deploy.sh", - "source_location": "L30", + "source_location": "L35", "metadata": { "language": "bash", "kind": "bash_function" @@ -33492,7 +14121,7 @@ "label": "PATH", "file_type": "code", "source_file": "scripts/deploy.sh", - "source_location": "L35", + "source_location": "L40", "metadata": { "language": "bash", "kind": "code" @@ -33501,6 +14130,71 @@ "norm_label": "path", "id": "scripts_deploy_path" }, + { + "label": "deploy-from-artifact.sh", + "file_type": "code", + "source_file": "scripts/deploy-from-artifact.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "community": 662, + "norm_label": "deploy-from-artifact.sh", + "id": "scripts_deploy_from_artifact_sh" + }, + { + "label": "deploy-from-artifact.sh script", + "file_type": "code", + "source_file": "scripts/deploy-from-artifact.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 662, + "norm_label": "deploy-from-artifact.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_from_artifact_sh__entry" + }, + { + "label": "log()", + "file_type": "code", + "source_file": "scripts/deploy-from-artifact.sh", + "source_location": "L28", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 662, + "norm_label": "log()", + "id": "scripts_deploy_from_artifact_log" + }, + { + "label": "log_err()", + "file_type": "code", + "source_file": "scripts/deploy-from-artifact.sh", + "source_location": "L29", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 662, + "norm_label": "log_err()", + "id": "scripts_deploy_from_artifact_log_err" + }, + { + "label": "PATH", + "file_type": "code", + "source_file": "scripts/deploy-from-artifact.sh", + "source_location": "L33", + "metadata": { + "language": "bash", + "kind": "code" + }, + "community": 662, + "norm_label": "path", + "id": "scripts_deploy_from_artifact_path" + }, { "label": "server.mjs", "file_type": "code", @@ -33944,7 +14638,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/cmd/dump-artifacts/main.go", "source_location": "L1", - "community": 606, + "community": 1019, "norm_label": "main.go", "id": "ops_mdm_supervise_magic_cmd_dump_artifacts_main_go" }, @@ -33953,7 +14647,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/cmd/dump-artifacts/main.go", "source_location": "L18", - "community": 606, + "community": 1019, "norm_label": "main()", "id": "dump_artifacts_main_main" }, @@ -34146,6 +14840,15 @@ "norm_label": "runcloudconfig()", "id": "supervise_main_runcloudconfig" }, + { + "label": "runSupervise()", + "file_type": "code", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L221", + "community": 266, + "norm_label": "runsupervise()", + "id": "supervise_main_runsupervise" + }, { "label": "defaultBackupPath()", "file_type": "code", @@ -34155,6 +14858,15 @@ "norm_label": "defaultbackuppath()", "id": "supervise_main_defaultbackuppath" }, + { + "label": "runUnsupervise()", + "file_type": "code", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L274", + "community": 266, + "norm_label": "rununsupervise()", + "id": "supervise_main_rununsupervise" + }, { "label": "confirm()", "file_type": "code", @@ -34333,7 +15045,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", "source_location": "L93", - "community": 259, + "community": 264, "norm_label": "time", "id": "time" }, @@ -34603,7 +15315,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", "source_location": "L1", - "community": 606, + "community": 1019, "norm_label": "manifest_db.go", "id": "ops_mdm_supervise_magic_internal_mobilebackup2_manifest_db_go" }, @@ -34612,7 +15324,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", "source_location": "L39", - "community": 606, + "community": 1019, "norm_label": "dbentry", "id": "mobilebackup2_dbentry" }, @@ -34621,7 +15333,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", "source_location": "L50", - "community": 606, + "community": 1019, "norm_label": "buildmanifestdb()", "id": "mobilebackup2_manifest_db_buildmanifestdb" }, @@ -34630,7 +15342,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", "source_location": "L147", - "community": 606, + "community": 1019, "norm_label": "computefileid()", "id": "mobilebackup2_manifest_db_computefileid" }, @@ -34639,7 +15351,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", "source_location": "L173", - "community": 606, + "community": 1019, "norm_label": "encodembfile()", "id": "mobilebackup2_manifest_db_encodembfile" }, @@ -34648,7 +15360,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", "source_location": "L238", - "community": 606, + "community": 1019, "norm_label": "defaultrestoreentries()", "id": "mobilebackup2_manifest_db_defaultrestoreentries" }, @@ -35210,6 +15922,15 @@ "norm_label": ".getcloudconfiguration()", "id": "mcinstall_client_getcloudconfiguration" }, + { + "label": ".SetCloudConfiguration()", + "file_type": "code", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L112", + "community": 415, + "norm_label": ".setcloudconfiguration()", + "id": "mcinstall_client_setcloudconfiguration" + }, { "label": ".Escalate()", "file_type": "code", @@ -35237,12 +15958,39 @@ "norm_label": "escalateunsupervised()", "id": "mcinstall_mcinstall_escalateunsupervised" }, + { + "label": "SuperviseConfig", + "file_type": "code", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L185", + "community": 415, + "norm_label": "superviseconfig", + "id": "mcinstall_superviseconfig" + }, + { + "label": ".Supervise()", + "file_type": "code", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L197", + "community": 415, + "norm_label": ".supervise()", + "id": "mcinstall_client_supervise" + }, + { + "label": ".Unsupervise()", + "file_type": "code", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L236", + "community": 415, + "norm_label": ".unsupervise()", + "id": "mcinstall_client_unsupervise" + }, { "label": "afclock.go", "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", "source_location": "L1", - "community": 616, + "community": 571, "norm_label": "afclock.go", "id": "ops_mdm_supervise_magic_internal_afclock_afclock_go" }, @@ -35251,7 +15999,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", "source_location": "L20", - "community": 616, + "community": 571, "norm_label": "synclock", "id": "afclock_synclock" }, @@ -35260,7 +16008,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", "source_location": "L21", - "community": 616, + "community": 571, "norm_label": "client", "id": "ops_mdm_supervise_magic_internal_afclock_afclock_go_client" }, @@ -35269,7 +16017,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", "source_location": "L22", - "community": 616, + "community": 571, "norm_label": "file", "id": "ops_mdm_supervise_magic_internal_afclock_afclock_go_file" }, @@ -35278,7 +16026,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", "source_location": "L27", - "community": 616, + "community": 571, "norm_label": "acquire()", "id": "afclock_afclock_acquire" }, @@ -35287,7 +16035,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", "source_location": "L27", - "community": 616, + "community": 571, "norm_label": "deviceentry", "id": "ops_mdm_supervise_magic_internal_afclock_afclock_go_deviceentry" }, @@ -35296,7 +16044,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", "source_location": "L55", - "community": 616, + "community": 571, "norm_label": ".release()", "id": "afclock_synclock_release" }, @@ -35349,7 +16097,7 @@ "label": "asString()", "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L345", + "source_location": "L353", "community": 259, "norm_label": "asstring()", "id": "supervise_flow_backup_asstring" @@ -35358,7 +16106,7 @@ "label": "serveFilesWithTimeout()", "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L355", + "source_location": "L363", "community": 259, "norm_label": "servefileswithtimeout()", "id": "supervise_flow_backup_servefileswithtimeout" @@ -35367,7 +16115,7 @@ "label": "Client", "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L355", + "source_location": "L363", "community": 259, "norm_label": "client", "id": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_client" @@ -35376,7 +16124,7 @@ "label": "FileProvider", "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L355", + "source_location": "L363", "community": 259, "norm_label": "fileprovider", "id": "fileprovider" @@ -35385,7 +16133,7 @@ "label": "Duration", "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L355", + "source_location": "L363", "community": 259, "norm_label": "duration", "id": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_duration" @@ -35395,7 +16143,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", "source_location": "L1", - "community": 266, + "community": 1024, "norm_label": "flow.go", "id": "ops_mdm_supervise_magic_internal_supervise_flow_go" }, @@ -35404,7 +16152,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", "source_location": "L26", - "community": 266, + "community": 1024, "norm_label": "options", "id": "supervise_options" }, @@ -35422,7 +16170,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", "source_location": "L69", - "community": 266, + "community": 1024, "norm_label": "superviseescalated()", "id": "supervise_flow_superviseescalated" }, @@ -35431,7 +16179,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", "source_location": "L131", - "community": 266, + "community": 1024, "norm_label": "supervisefresh()", "id": "supervise_flow_supervisefresh" }, @@ -35449,7 +16197,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", "source_location": "L196", - "community": 266, + "community": 1024, "norm_label": "backupcurrentconfig()", "id": "supervise_flow_backupcurrentconfig" }, @@ -35458,7 +16206,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", "source_location": "L196", - "community": 266, + "community": 1024, "norm_label": "conn", "id": "ops_mdm_supervise_magic_internal_supervise_flow_go_conn" }, @@ -35467,7 +16215,7 @@ "file_type": "code", "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", "source_location": "L220", - "community": 266, + "community": 1024, "norm_label": "makelogger()", "id": "supervise_flow_makelogger" }, @@ -35498,6 +16246,15 @@ "norm_label": "deviceinfo", "id": "deviceinfo" }, + { + "label": "DeviceInfo", + "file_type": "code", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L24", + "community": 618, + "norm_label": "deviceinfo", + "id": "preflight_deviceinfo" + }, { "label": "Run()", "file_type": "code", @@ -35916,6 +16673,305 @@ "norm_label": "expo-env.d.ts", "id": "apps_rebreak_native_expo_env_d_ts" }, + { + "label": "dev.sh", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "community": 182, + "norm_label": "dev.sh", + "id": "apps_rebreak_native_dev_sh" + }, + { + "label": "dev.sh script", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 182, + "norm_label": "dev.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry" + }, + { + "label": "log()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L95", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "log()", + "id": "rebreak_native_dev_log" + }, + { + "label": "ok()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L96", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "ok()", + "id": "rebreak_native_dev_ok" + }, + { + "label": "warn()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L97", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "warn()", + "id": "rebreak_native_dev_warn" + }, + { + "label": "error()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L98", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "error()", + "id": "rebreak_native_dev_error" + }, + { + "label": "die()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L99", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "die()", + "id": "rebreak_native_dev_die" + }, + { + "label": "section()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L101", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "section()", + "id": "rebreak_native_dev_section" + }, + { + "label": "REBREAK_ENABLE_FAMILY_CONTROLS", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L111", + "metadata": { + "language": "bash", + "kind": "code" + }, + "community": 182, + "norm_label": "rebreak_enable_family_controls", + "id": "rebreak_native_dev_rebreak_enable_family_controls" + }, + { + "label": "EXPO_PUBLIC_ENABLE_DEBUG", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L112", + "metadata": { + "language": "bash", + "kind": "code" + }, + "community": 182, + "norm_label": "expo_public_enable_debug", + "id": "rebreak_native_dev_expo_public_enable_debug" + }, + { + "label": "REBREAK_DEV", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L113", + "metadata": { + "language": "bash", + "kind": "code" + }, + "community": 182, + "norm_label": "rebreak_dev", + "id": "rebreak_native_dev_rebreak_dev" + }, + { + "label": "cmd_ios()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L119", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "cmd_ios()", + "id": "rebreak_native_dev_cmd_ios" + }, + { + "label": "cmd_android()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L189", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "cmd_android()", + "id": "rebreak_native_dev_cmd_android" + }, + { + "label": "detect_ios_device()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L271", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "detect_ios_device()", + "id": "rebreak_native_dev_detect_ios_device" + }, + { + "label": "detect_ios_device_name()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L282", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "detect_ios_device_name()", + "id": "rebreak_native_dev_detect_ios_device_name" + }, + { + "label": "detect_android_devices()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L292", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "detect_android_devices()", + "id": "rebreak_native_dev_detect_android_devices" + }, + { + "label": "start_shared_metro()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L298", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "start_shared_metro()", + "id": "rebreak_native_dev_start_shared_metro" + }, + { + "label": "cmd_mobile()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L319", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "cmd_mobile()", + "id": "rebreak_native_dev_cmd_mobile" + }, + { + "label": "cmd_metro()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L443", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "cmd_metro()", + "id": "rebreak_native_dev_cmd_metro" + }, + { + "label": "cmd_clean()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L469", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "cmd_clean()", + "id": "rebreak_native_dev_cmd_clean" + }, + { + "label": "cmd_install_ios()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L530", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "cmd_install_ios()", + "id": "rebreak_native_dev_cmd_install_ios" + }, + { + "label": "cmd_install_android()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L568", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "cmd_install_android()", + "id": "rebreak_native_dev_cmd_install_android" + }, + { + "label": "cmd_magic()", + "file_type": "code", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L615", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 182, + "norm_label": "cmd_magic()", + "id": "rebreak_native_dev_cmd_magic" + }, { "label": "eas.json", "file_type": "code", @@ -35979,6 +17035,24 @@ "norm_label": "developmentclient", "id": "rebreak_native_eas_development_developmentclient" }, + { + "label": "distribution", + "file_type": "code", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L9", + "community": 94, + "norm_label": "distribution", + "id": "rebreak_native_eas_development_distribution" + }, + { + "label": "env", + "file_type": "code", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L10", + "community": 94, + "norm_label": "env", + "id": "rebreak_native_eas_development_env" + }, { "label": "EXPO_PUBLIC_API_URL", "file_type": "code", @@ -35997,6 +17071,15 @@ "norm_label": "rebreak_enable_family_controls", "id": "rebreak_native_eas_env_rebreak_enable_family_controls" }, + { + "label": "ios", + "file_type": "code", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L14", + "community": 94, + "norm_label": "ios", + "id": "rebreak_native_eas_development_ios" + }, { "label": "simulator", "file_type": "code", @@ -36006,6 +17089,15 @@ "norm_label": "simulator", "id": "rebreak_native_eas_ios_simulator" }, + { + "label": "android", + "file_type": "code", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L17", + "community": 94, + "norm_label": "android", + "id": "rebreak_native_eas_development_android" + }, { "label": "buildType", "file_type": "code", @@ -36078,6 +17170,15 @@ "norm_label": "android", "id": "rebreak_native_eas_preview_android" }, + { + "label": "autoIncrement", + "file_type": "code", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L33", + "community": 94, + "norm_label": "autoincrement", + "id": "rebreak_native_eas_android_autoincrement" + }, { "label": "production", "file_type": "code", @@ -36087,6 +17188,15 @@ "norm_label": "production", "id": "rebreak_native_eas_build_production" }, + { + "label": "env", + "file_type": "code", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L37", + "community": 94, + "norm_label": "env", + "id": "rebreak_native_eas_production_env" + }, { "label": "EXPO_PUBLIC_ENABLE_DEBUG", "file_type": "code", @@ -36096,6 +17206,24 @@ "norm_label": "expo_public_enable_debug", "id": "rebreak_native_eas_env_expo_public_enable_debug" }, + { + "label": "ios", + "file_type": "code", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L42", + "community": 94, + "norm_label": "ios", + "id": "rebreak_native_eas_production_ios" + }, + { + "label": "android", + "file_type": "code", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L46", + "community": 94, + "norm_label": "android", + "id": "rebreak_native_eas_production_android" + }, { "label": "submit", "file_type": "code", @@ -36105,6 +17233,15 @@ "norm_label": "submit", "id": "rebreak_native_eas_submit" }, + { + "label": "production", + "file_type": "code", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L53", + "community": 94, + "norm_label": "production", + "id": "rebreak_native_eas_submit_production" + }, { "label": "appleId", "file_type": "code", @@ -36213,6 +17350,15 @@ "norm_label": "config", "id": "rebreak_native_metro_config_config" }, + { + "label": "app.config.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/app.config.ts", + "source_location": "L1", + "community": 433, + "norm_label": "app.config.ts", + "id": "apps_rebreak_native_app_config_ts" + }, { "label": "babel.config.js", "file_type": "code", @@ -36222,6 +17368,780 @@ "norm_label": "babel.config.js", "id": "apps_rebreak_native_babel_config_js" }, + { + "label": "package.json", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L1", + "community": 433, + "norm_label": "package.json", + "id": "apps_rebreak_native_package_json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L2", + "community": 433, + "norm_label": "name", + "id": "rebreak_native_package_name" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L3", + "community": 433, + "norm_label": "version", + "id": "rebreak_native_package_version" + }, + { + "label": "private", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L4", + "community": 433, + "norm_label": "private", + "id": "rebreak_native_package_private" + }, + { + "label": "main", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L5", + "community": 433, + "norm_label": "main", + "id": "rebreak_native_package_main" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L6", + "community": 433, + "norm_label": "scripts", + "id": "rebreak_native_package_scripts" + }, + { + "label": "start", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L7", + "community": 433, + "norm_label": "start", + "id": "rebreak_native_package_scripts_start" + }, + { + "label": "ios", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L8", + "community": 433, + "norm_label": "ios", + "id": "rebreak_native_package_scripts_ios" + }, + { + "label": "android", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L9", + "community": 433, + "norm_label": "android", + "id": "rebreak_native_package_scripts_android" + }, + { + "label": "prebuild", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L10", + "community": 433, + "norm_label": "prebuild", + "id": "rebreak_native_package_scripts_prebuild" + }, + { + "label": "lint", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L11", + "community": 433, + "norm_label": "lint", + "id": "rebreak_native_package_scripts_lint" + }, + { + "label": "typecheck", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L12", + "community": 433, + "norm_label": "typecheck", + "id": "rebreak_native_package_scripts_typecheck" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L14", + "community": 26, + "norm_label": "dependencies", + "id": "rebreak_native_package_dependencies" + }, + { + "label": "@config-plugins/react-native-callkeep", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L15", + "community": 26, + "norm_label": "@config-plugins/react-native-callkeep", + "id": "rebreak_native_package_dependencies_config_plugins_react_native_callkeep" + }, + { + "label": "@config-plugins/react-native-webrtc", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L16", + "community": 26, + "norm_label": "@config-plugins/react-native-webrtc", + "id": "rebreak_native_package_dependencies_config_plugins_react_native_webrtc" + }, + { + "label": "@expo-google-fonts/nunito", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L17", + "community": 26, + "norm_label": "@expo-google-fonts/nunito", + "id": "rebreak_native_package_dependencies_expo_google_fonts_nunito" + }, + { + "label": "@expo/metro-runtime", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L18", + "community": 26, + "norm_label": "@expo/metro-runtime", + "id": "rebreak_native_package_dependencies_expo_metro_runtime" + }, + { + "label": "@expo/react-native-action-sheet", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L19", + "community": 26, + "norm_label": "@expo/react-native-action-sheet", + "id": "rebreak_native_package_dependencies_expo_react_native_action_sheet" + }, + { + "label": "@expo/vector-icons", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L20", + "community": 26, + "norm_label": "@expo/vector-icons", + "id": "rebreak_native_package_dependencies_expo_vector_icons" + }, + { + "label": "@lodev09/react-native-true-sheet", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L21", + "community": 26, + "norm_label": "@lodev09/react-native-true-sheet", + "id": "rebreak_native_package_dependencies_lodev09_react_native_true_sheet" + }, + { + "label": "@react-native-async-storage/async-storage", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L22", + "community": 26, + "norm_label": "@react-native-async-storage/async-storage", + "id": "rebreak_native_package_dependencies_react_native_async_storage_async_storage" + }, + { + "label": "@react-native-community/slider", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L23", + "community": 26, + "norm_label": "@react-native-community/slider", + "id": "rebreak_native_package_dependencies_react_native_community_slider" + }, + { + "label": "@react-native-menu/menu", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L24", + "community": 26, + "norm_label": "@react-native-menu/menu", + "id": "rebreak_native_package_dependencies_react_native_menu_menu" + }, + { + "label": "@react-native-picker/picker", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L25", + "community": 26, + "norm_label": "@react-native-picker/picker", + "id": "rebreak_native_package_dependencies_react_native_picker_picker" + }, + { + "label": "@react-navigation/native", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L26", + "community": 26, + "norm_label": "@react-navigation/native", + "id": "rebreak_native_package_dependencies_react_navigation_native" + }, + { + "label": "@supabase/supabase-js", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L27", + "community": 26, + "norm_label": "@supabase/supabase-js", + "id": "rebreak_native_package_dependencies_supabase_supabase_js" + }, + { + "label": "@tanstack/react-query", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L28", + "community": 26, + "norm_label": "@tanstack/react-query", + "id": "rebreak_native_package_dependencies_tanstack_react_query" + }, + { + "label": "expo", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L29", + "community": 26, + "norm_label": "expo", + "id": "rebreak_native_package_dependencies_expo" + }, + { + "label": "expo-apple-authentication", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L30", + "community": 26, + "norm_label": "expo-apple-authentication", + "id": "rebreak_native_package_dependencies_expo_apple_authentication" + }, + { + "label": "expo-application", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L31", + "community": 26, + "norm_label": "expo-application", + "id": "rebreak_native_package_dependencies_expo_application" + }, + { + "label": "expo-av", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L32", + "community": 26, + "norm_label": "expo-av", + "id": "rebreak_native_package_dependencies_expo_av" + }, + { + "label": "expo-blur", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L33", + "community": 26, + "norm_label": "expo-blur", + "id": "rebreak_native_package_dependencies_expo_blur" + }, + { + "label": "expo-build-properties", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L34", + "community": 26, + "norm_label": "expo-build-properties", + "id": "rebreak_native_package_dependencies_expo_build_properties" + }, + { + "label": "expo-clipboard", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L35", + "community": 26, + "norm_label": "expo-clipboard", + "id": "rebreak_native_package_dependencies_expo_clipboard" + }, + { + "label": "expo-constants", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L36", + "community": 26, + "norm_label": "expo-constants", + "id": "rebreak_native_package_dependencies_expo_constants" + }, + { + "label": "expo-dev-client", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L37", + "community": 26, + "norm_label": "expo-dev-client", + "id": "rebreak_native_package_dependencies_expo_dev_client" + }, + { + "label": "expo-device", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L38", + "community": 26, + "norm_label": "expo-device", + "id": "rebreak_native_package_dependencies_expo_device" + }, + { + "label": "expo-file-system", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L39", + "community": 26, + "norm_label": "expo-file-system", + "id": "rebreak_native_package_dependencies_expo_file_system" + }, + { + "label": "expo-font", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L40", + "community": 26, + "norm_label": "expo-font", + "id": "rebreak_native_package_dependencies_expo_font" + }, + { + "label": "expo-haptics", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L41", + "community": 26, + "norm_label": "expo-haptics", + "id": "rebreak_native_package_dependencies_expo_haptics" + }, + { + "label": "expo-image", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L42", + "community": 26, + "norm_label": "expo-image", + "id": "rebreak_native_package_dependencies_expo_image" + }, + { + "label": "expo-image-manipulator", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L43", + "community": 26, + "norm_label": "expo-image-manipulator", + "id": "rebreak_native_package_dependencies_expo_image_manipulator" + }, + { + "label": "expo-image-picker", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L44", + "community": 26, + "norm_label": "expo-image-picker", + "id": "rebreak_native_package_dependencies_expo_image_picker" + }, + { + "label": "expo-linear-gradient", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L45", + "community": 26, + "norm_label": "expo-linear-gradient", + "id": "rebreak_native_package_dependencies_expo_linear_gradient" + }, + { + "label": "expo-linking", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L46", + "community": 26, + "norm_label": "expo-linking", + "id": "rebreak_native_package_dependencies_expo_linking" + }, + { + "label": "expo-local-authentication", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L47", + "community": 26, + "norm_label": "expo-local-authentication", + "id": "rebreak_native_package_dependencies_expo_local_authentication" + }, + { + "label": "expo-localization", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L48", + "community": 26, + "norm_label": "expo-localization", + "id": "rebreak_native_package_dependencies_expo_localization" + }, + { + "label": "expo-media-library", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L49", + "community": 26, + "norm_label": "expo-media-library", + "id": "rebreak_native_package_dependencies_expo_media_library" + }, + { + "label": "expo-modules-core", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L50", + "community": 26, + "norm_label": "expo-modules-core", + "id": "rebreak_native_package_dependencies_expo_modules_core" + }, + { + "label": "expo-notifications", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L51", + "community": 26, + "norm_label": "expo-notifications", + "id": "rebreak_native_package_dependencies_expo_notifications" + }, + { + "label": "expo-router", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L52", + "community": 26, + "norm_label": "expo-router", + "id": "rebreak_native_package_dependencies_expo_router" + }, + { + "label": "expo-speech", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L53", + "community": 26, + "norm_label": "expo-speech", + "id": "rebreak_native_package_dependencies_expo_speech" + }, + { + "label": "expo-splash-screen", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L54", + "community": 26, + "norm_label": "expo-splash-screen", + "id": "rebreak_native_package_dependencies_expo_splash_screen" + }, + { + "label": "expo-status-bar", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L55", + "community": 26, + "norm_label": "expo-status-bar", + "id": "rebreak_native_package_dependencies_expo_status_bar" + }, + { + "label": "expo-web-browser", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L56", + "community": 26, + "norm_label": "expo-web-browser", + "id": "rebreak_native_package_dependencies_expo_web_browser" + }, + { + "label": "i18next", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L57", + "community": 26, + "norm_label": "i18next", + "id": "rebreak_native_package_dependencies_i18next" + }, + { + "label": "lottie-react-native", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L58", + "community": 26, + "norm_label": "lottie-react-native", + "id": "rebreak_native_package_dependencies_lottie_react_native" + }, + { + "label": "nativewind", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L59", + "community": 26, + "norm_label": "nativewind", + "id": "rebreak_native_package_dependencies_nativewind" + }, + { + "label": "react", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L60", + "community": 26, + "norm_label": "react", + "id": "rebreak_native_package_dependencies_react" + }, + { + "label": "react-dom", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L61", + "community": 26, + "norm_label": "react-dom", + "id": "rebreak_native_package_dependencies_react_dom" + }, + { + "label": "react-hook-form", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L62", + "community": 26, + "norm_label": "react-hook-form", + "id": "rebreak_native_package_dependencies_react_hook_form" + }, + { + "label": "react-i18next", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L63", + "community": 26, + "norm_label": "react-i18next", + "id": "rebreak_native_package_dependencies_react_i18next" + }, + { + "label": "react-native", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L64", + "community": 26, + "norm_label": "react-native", + "id": "rebreak_native_package_dependencies_react_native" + }, + { + "label": "react-native-bottom-tabs", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L65", + "community": 26, + "norm_label": "react-native-bottom-tabs", + "id": "rebreak_native_package_dependencies_react_native_bottom_tabs" + }, + { + "label": "react-native-callkeep", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L66", + "community": 26, + "norm_label": "react-native-callkeep", + "id": "rebreak_native_package_dependencies_react_native_callkeep" + }, + { + "label": "react-native-gesture-handler", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L67", + "community": 26, + "norm_label": "react-native-gesture-handler", + "id": "rebreak_native_package_dependencies_react_native_gesture_handler" + }, + { + "label": "react-native-incall-manager", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L68", + "community": 26, + "norm_label": "react-native-incall-manager", + "id": "rebreak_native_package_dependencies_react_native_incall_manager" + }, + { + "label": "react-native-keyboard-controller", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L69", + "community": 26, + "norm_label": "react-native-keyboard-controller", + "id": "rebreak_native_package_dependencies_react_native_keyboard_controller" + }, + { + "label": "react-native-mmkv", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L70", + "community": 26, + "norm_label": "react-native-mmkv", + "id": "rebreak_native_package_dependencies_react_native_mmkv" + }, + { + "label": "react-native-reanimated", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L71", + "community": 26, + "norm_label": "react-native-reanimated", + "id": "rebreak_native_package_dependencies_react_native_reanimated" + }, + { + "label": "react-native-safe-area-context", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L72", + "community": 26, + "norm_label": "react-native-safe-area-context", + "id": "rebreak_native_package_dependencies_react_native_safe_area_context" + }, + { + "label": "react-native-screens", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L73", + "community": 26, + "norm_label": "react-native-screens", + "id": "rebreak_native_package_dependencies_react_native_screens" + }, + { + "label": "react-native-sse", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L74", + "community": 26, + "norm_label": "react-native-sse", + "id": "rebreak_native_package_dependencies_react_native_sse" + }, + { + "label": "react-native-svg", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L75", + "community": 26, + "norm_label": "react-native-svg", + "id": "rebreak_native_package_dependencies_react_native_svg" + }, + { + "label": "react-native-url-polyfill", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L76", + "community": 26, + "norm_label": "react-native-url-polyfill", + "id": "rebreak_native_package_dependencies_react_native_url_polyfill" + }, + { + "label": "react-native-voip-push-notification", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L77", + "community": 26, + "norm_label": "react-native-voip-push-notification", + "id": "rebreak_native_package_dependencies_react_native_voip_push_notification" + }, + { + "label": "react-native-webrtc", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L78", + "community": 26, + "norm_label": "react-native-webrtc", + "id": "rebreak_native_package_dependencies_react_native_webrtc" + }, + { + "label": "react-native-worklets", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L79", + "community": 26, + "norm_label": "react-native-worklets", + "id": "rebreak_native_package_dependencies_react_native_worklets" + }, + { + "label": "rive-react-native", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L80", + "community": 26, + "norm_label": "rive-react-native", + "id": "rebreak_native_package_dependencies_rive_react_native" + }, + { + "label": "tailwindcss", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L81", + "community": 26, + "norm_label": "tailwindcss", + "id": "rebreak_native_package_dependencies_tailwindcss" + }, + { + "label": "valibot", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L82", + "community": 26, + "norm_label": "valibot", + "id": "rebreak_native_package_dependencies_valibot" + }, + { + "label": "zustand", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L83", + "community": 26, + "norm_label": "zustand", + "id": "rebreak_native_package_dependencies_zustand" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L85", + "community": 451, + "norm_label": "devdependencies", + "id": "rebreak_native_package_devdependencies" + }, + { + "label": "@babel/core", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L86", + "community": 451, + "norm_label": "@babel/core", + "id": "rebreak_native_package_devdependencies_babel_core" + }, + { + "label": "@types/react", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L87", + "community": 451, + "norm_label": "@types/react", + "id": "rebreak_native_package_devdependencies_types_react" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L88", + "community": 451, + "norm_label": "typescript", + "id": "rebreak_native_package_devdependencies_typescript" + }, { "label": "tsconfig.json", "file_type": "code", @@ -36348,6 +18268,589 @@ "norm_label": "exclude", "id": "rebreak_native_tsconfig_exclude" }, + { + "label": "clean.sh", + "file_type": "code", + "source_file": "apps/rebreak-native/clean.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "community": 636, + "norm_label": "clean.sh", + "id": "apps_rebreak_native_clean_sh" + }, + { + "label": "clean.sh script", + "file_type": "code", + "source_file": "apps/rebreak-native/clean.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 636, + "norm_label": "clean.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_clean_sh__entry" + }, + { + "label": "free_gb()", + "file_type": "code", + "source_file": "apps/rebreak-native/clean.sh", + "source_location": "L37", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 636, + "norm_label": "free_gb()", + "id": "rebreak_native_clean_free_gb" + }, + { + "label": "human()", + "file_type": "code", + "source_file": "apps/rebreak-native/clean.sh", + "source_location": "L39", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 636, + "norm_label": "human()", + "id": "rebreak_native_clean_human" + }, + { + "label": "report_targets()", + "file_type": "code", + "source_file": "apps/rebreak-native/clean.sh", + "source_location": "L57", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 636, + "norm_label": "report_targets()", + "id": "rebreak_native_clean_report_targets" + }, + { + "label": "rmrf()", + "file_type": "code", + "source_file": "apps/rebreak-native/clean.sh", + "source_location": "L81", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 636, + "norm_label": "rmrf()", + "id": "rebreak_native_clean_rmrf" + }, + { + "label": "deploy.sh", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "community": 63, + "norm_label": "deploy.sh", + "id": "apps_rebreak_native_deploy_sh" + }, + { + "label": "deploy.sh script", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 63, + "norm_label": "deploy.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_deploy_sh__entry" + }, + { + "label": "cleanup_children()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L58", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "cleanup_children()", + "id": "rebreak_native_deploy_cleanup_children" + }, + { + "label": "log()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L95", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "log()", + "id": "rebreak_native_deploy_log" + }, + { + "label": "ok()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L96", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "ok()", + "id": "rebreak_native_deploy_ok" + }, + { + "label": "warn()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L97", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "warn()", + "id": "rebreak_native_deploy_warn" + }, + { + "label": "error()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L98", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "error()", + "id": "rebreak_native_deploy_error" + }, + { + "label": "die()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L99", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "die()", + "id": "rebreak_native_deploy_die" + }, + { + "label": "section()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L101", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "section()", + "id": "rebreak_native_deploy_section" + }, + { + "label": "run()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L108", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "run()", + "id": "rebreak_native_deploy_run" + }, + { + "label": "runtime_lookup()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L120", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "runtime_lookup()", + "id": "rebreak_native_deploy_runtime_lookup" + }, + { + "label": "runtime_save()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L126", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "runtime_save()", + "id": "rebreak_native_deploy_runtime_save" + }, + { + "label": "render_progress()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L139", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "render_progress()", + "id": "rebreak_native_deploy_render_progress" + }, + { + "label": "format_duration()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L172", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "format_duration()", + "id": "rebreak_native_deploy_format_duration" + }, + { + "label": "format_duration_rounded()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L182", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "format_duration_rounded()", + "id": "rebreak_native_deploy_format_duration_rounded" + }, + { + "label": "run_quiet()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L199", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "run_quiet()", + "id": "rebreak_native_deploy_run_quiet" + }, + { + "label": "REBREAK_ENABLE_FAMILY_CONTROLS", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L375", + "metadata": { + "language": "bash", + "kind": "code" + }, + "community": 63, + "norm_label": "rebreak_enable_family_controls", + "id": "rebreak_native_deploy_rebreak_enable_family_controls" + }, + { + "label": "EXPO_PUBLIC_ENABLE_DEBUG", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L376", + "metadata": { + "language": "bash", + "kind": "code" + }, + "community": 63, + "norm_label": "expo_public_enable_debug", + "id": "rebreak_native_deploy_expo_public_enable_debug" + }, + { + "label": "release_android_locks()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L399", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "release_android_locks()", + "id": "rebreak_native_deploy_release_android_locks" + }, + { + "label": "ensure_native_dir()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L411", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "ensure_native_dir()", + "id": "rebreak_native_deploy_ensure_native_dir" + }, + { + "label": "xcodebuild_auth_args()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L450", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "xcodebuild_auth_args()", + "id": "rebreak_native_deploy_xcodebuild_auth_args" + }, + { + "label": "require_asc_api_key()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L457", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "require_asc_api_key()", + "id": "rebreak_native_deploy_require_asc_api_key" + }, + { + "label": "get_current_version()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L481", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "get_current_version()", + "id": "rebreak_native_deploy_get_current_version" + }, + { + "label": "get_current_build_number()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L486", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "get_current_build_number()", + "id": "rebreak_native_deploy_get_current_build_number" + }, + { + "label": "get_current_version_code()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L491", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "get_current_version_code()", + "id": "rebreak_native_deploy_get_current_version_code" + }, + { + "label": "bump_ios_version()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L496", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "bump_ios_version()", + "id": "rebreak_native_deploy_bump_ios_version" + }, + { + "label": "bump_android_version()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L553", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "bump_android_version()", + "id": "rebreak_native_deploy_bump_android_version" + }, + { + "label": "collect_release_notes()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L607", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "collect_release_notes()", + "id": "rebreak_native_deploy_collect_release_notes" + }, + { + "label": "archive_release_notes_to_changelog()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L647", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "archive_release_notes_to_changelog()", + "id": "rebreak_native_deploy_archive_release_notes_to_changelog" + }, + { + "label": "deploy_mdm()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L697", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "deploy_mdm()", + "id": "rebreak_native_deploy_deploy_mdm" + }, + { + "label": "deploy_testflight()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L765", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "deploy_testflight()", + "id": "rebreak_native_deploy_deploy_testflight" + }, + { + "label": "deploy_android()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L835", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "deploy_android()", + "id": "rebreak_native_deploy_deploy_android" + }, + { + "label": "human_size()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L959", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "human_size()", + "id": "rebreak_native_deploy_human_size" + }, + { + "label": "cleanup_build_artifacts()", + "file_type": "code", + "source_file": "apps/rebreak-native/deploy.sh", + "source_location": "L966", + "metadata": { + "language": "bash", + "kind": "bash_function" + }, + "community": 63, + "norm_label": "cleanup_build_artifacts()", + "id": "rebreak_native_deploy_cleanup_build_artifacts" + }, + { + "label": "google-services.json", + "file_type": "code", + "source_file": "apps/rebreak-native/google-services.json", + "source_location": "L1", + "community": 611, + "norm_label": "google-services.json", + "id": "apps_rebreak_native_google_services_json" + }, + { + "label": "project_info", + "file_type": "code", + "source_file": "apps/rebreak-native/google-services.json", + "source_location": "L2", + "community": 611, + "norm_label": "project_info", + "id": "rebreak_native_google_services_project_info" + }, + { + "label": "project_number", + "file_type": "code", + "source_file": "apps/rebreak-native/google-services.json", + "source_location": "L3", + "community": 611, + "norm_label": "project_number", + "id": "rebreak_native_google_services_project_info_project_number" + }, + { + "label": "project_id", + "file_type": "code", + "source_file": "apps/rebreak-native/google-services.json", + "source_location": "L4", + "community": 611, + "norm_label": "project_id", + "id": "rebreak_native_google_services_project_info_project_id" + }, + { + "label": "storage_bucket", + "file_type": "code", + "source_file": "apps/rebreak-native/google-services.json", + "source_location": "L5", + "community": 611, + "norm_label": "storage_bucket", + "id": "rebreak_native_google_services_project_info_storage_bucket" + }, + { + "label": "client", + "file_type": "code", + "source_file": "apps/rebreak-native/google-services.json", + "source_location": "L7", + "community": 611, + "norm_label": "client", + "id": "rebreak_native_google_services_client" + }, + { + "label": "configuration_version", + "file_type": "code", + "source_file": "apps/rebreak-native/google-services.json", + "source_location": "L47", + "community": 611, + "norm_label": "configuration_version", + "id": "rebreak_native_google_services_configuration_version" + }, { "label": "clean-ios.sh", "file_type": "code", @@ -36400,6 +18903,19 @@ "norm_label": "install-android.sh", "id": "apps_rebreak_native_install_android_sh" }, + { + "label": "install-android.sh script", + "file_type": "code", + "source_file": "apps/rebreak-native/install-android.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 786, + "norm_label": "install-android.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_install_android_sh__entry" + }, { "label": "gen-android-launcher.sh", "file_type": "code", @@ -36413,12 +18929,18061 @@ "norm_label": "gen-android-launcher.sh", "id": "apps_rebreak_native_tools_gen_android_launcher_sh" }, + { + "label": "gen-android-launcher.sh script", + "file_type": "code", + "source_file": "apps/rebreak-native/tools/gen-android-launcher.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 787, + "norm_label": "gen-android-launcher.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_tools_gen_android_launcher_sh__entry" + }, + { + "label": "de.json", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L1", + "community": 605, + "norm_label": "de.json", + "id": "apps_rebreak_native_locales_de_json" + }, + { + "label": "common", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L2", + "community": 879, + "norm_label": "common", + "id": "locales_de_common" + }, + { + "label": "loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L3", + "community": 879, + "norm_label": "loading", + "id": "locales_de_common_loading" + }, + { + "label": "cancel", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L4", + "community": 879, + "norm_label": "cancel", + "id": "locales_de_common_cancel" + }, + { + "label": "continue", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L5", + "community": 879, + "norm_label": "continue", + "id": "locales_de_common_continue" + }, + { + "label": "back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L6", + "community": 879, + "norm_label": "back", + "id": "locales_de_common_back" + }, + { + "label": "error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L7", + "community": 879, + "norm_label": "error", + "id": "locales_de_common_error" + }, + { + "label": "success", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L8", + "community": 879, + "norm_label": "success", + "id": "locales_de_common_success" + }, + { + "label": "ok", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L9", + "community": 879, + "norm_label": "ok", + "id": "locales_de_common_ok" + }, + { + "label": "confirm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L10", + "community": 879, + "norm_label": "confirm", + "id": "locales_de_common_confirm" + }, + { + "label": "retry", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L11", + "community": 879, + "norm_label": "retry", + "id": "locales_de_common_retry" + }, + { + "label": "unknown_error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L12", + "community": 879, + "norm_label": "unknown_error", + "id": "locales_de_common_unknown_error" + }, + { + "label": "auth", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L14", + "community": 24, + "norm_label": "auth", + "id": "locales_de_auth" + }, + { + "label": "welcomeBack", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L15", + "community": 413, + "norm_label": "welcomeback", + "id": "locales_de_auth_welcomeback" + }, + { + "label": "signinSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L16", + "community": 24, + "norm_label": "signinsubtitle", + "id": "locales_de_auth_signinsubtitle" + }, + { + "label": "signin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L17", + "community": 24, + "norm_label": "signin", + "id": "locales_de_auth_signin" + }, + { + "label": "signingIn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L18", + "community": 24, + "norm_label": "signingin", + "id": "locales_de_auth_signingin" + }, + { + "label": "signup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L19", + "community": 24, + "norm_label": "signup", + "id": "locales_de_auth_signup" + }, + { + "label": "signupTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L20", + "community": 24, + "norm_label": "signuptitle", + "id": "locales_de_auth_signuptitle" + }, + { + "label": "signupSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L21", + "community": 24, + "norm_label": "signupsubtitle", + "id": "locales_de_auth_signupsubtitle" + }, + { + "label": "signOut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L22", + "community": 24, + "norm_label": "signout", + "id": "locales_de_auth_signout" + }, + { + "label": "email", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L23", + "community": 24, + "norm_label": "email", + "id": "locales_de_auth_email" + }, + { + "label": "emailPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L24", + "community": 24, + "norm_label": "emailplaceholder", + "id": "locales_de_auth_emailplaceholder" + }, + { + "label": "emailRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L25", + "community": 24, + "norm_label": "emailrequired", + "id": "locales_de_auth_emailrequired" + }, + { + "label": "password", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L26", + "community": 24, + "norm_label": "password", + "id": "locales_de_auth_password" + }, + { + "label": "passwordPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L27", + "community": 24, + "norm_label": "passwordplaceholder", + "id": "locales_de_auth_passwordplaceholder" + }, + { + "label": "passwordRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L28", + "community": 24, + "norm_label": "passwordrequired", + "id": "locales_de_auth_passwordrequired" + }, + { + "label": "passwordMin8", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L29", + "community": 24, + "norm_label": "passwordmin8", + "id": "locales_de_auth_passwordmin8" + }, + { + "label": "newPassword", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L30", + "community": 24, + "norm_label": "newpassword", + "id": "locales_de_auth_newpassword" + }, + { + "label": "nickname", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L31", + "community": 413, + "norm_label": "nickname", + "id": "locales_de_auth_nickname" + }, + { + "label": "nicknamePlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L32", + "community": 24, + "norm_label": "nicknameplaceholder", + "id": "locales_de_auth_nicknameplaceholder" + }, + { + "label": "noAccount", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L33", + "community": 24, + "norm_label": "noaccount", + "id": "locales_de_auth_noaccount" + }, + { + "label": "alreadyRegistered", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L34", + "community": 24, + "norm_label": "alreadyregistered", + "id": "locales_de_auth_alreadyregistered" + }, + { + "label": "fillRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L35", + "community": 24, + "norm_label": "fillrequired", + "id": "locales_de_auth_fillrequired" + }, + { + "label": "googleSignin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L36", + "community": 24, + "norm_label": "googlesignin", + "id": "locales_de_auth_googlesignin" + }, + { + "label": "appleSignin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L37", + "community": 24, + "norm_label": "applesignin", + "id": "locales_de_auth_applesignin" + }, + { + "label": "googleSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L38", + "community": 24, + "norm_label": "googlesignup", + "id": "locales_de_auth_googlesignup" + }, + { + "label": "appleSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L39", + "community": 24, + "norm_label": "applesignup", + "id": "locales_de_auth_applesignup" + }, + { + "label": "orWithEmail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L40", + "community": 24, + "norm_label": "orwithemail", + "id": "locales_de_auth_orwithemail" + }, + { + "label": "forgotPassword", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L41", + "community": 24, + "norm_label": "forgotpassword", + "id": "locales_de_auth_forgotpassword" + }, + { + "label": "resetPasswordTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L42", + "community": 24, + "norm_label": "resetpasswordtitle", + "id": "locales_de_auth_resetpasswordtitle" + }, + { + "label": "resetPasswordSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L43", + "community": 24, + "norm_label": "resetpasswordsubtitle", + "id": "locales_de_auth_resetpasswordsubtitle" + }, + { + "label": "resetPasswordSend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L44", + "community": 24, + "norm_label": "resetpasswordsend", + "id": "locales_de_auth_resetpasswordsend" + }, + { + "label": "resetPasswordSent", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L45", + "community": 24, + "norm_label": "resetpasswordsent", + "id": "locales_de_auth_resetpasswordsent" + }, + { + "label": "resetPasswordSentDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L46", + "community": 24, + "norm_label": "resetpasswordsentdesc", + "id": "locales_de_auth_resetpasswordsentdesc" + }, + { + "label": "resetPasswordSentDescPrefix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L47", + "community": 24, + "norm_label": "resetpasswordsentdescprefix", + "id": "locales_de_auth_resetpasswordsentdescprefix" + }, + { + "label": "resetPasswordSentDescSuffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L48", + "community": 24, + "norm_label": "resetpasswordsentdescsuffix", + "id": "locales_de_auth_resetpasswordsentdescsuffix" + }, + { + "label": "backToLogin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L49", + "community": 24, + "norm_label": "backtologin", + "id": "locales_de_auth_backtologin" + }, + { + "label": "backToLoginPlain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L50", + "community": 24, + "norm_label": "backtologinplain", + "id": "locales_de_auth_backtologinplain" + }, + { + "label": "backToSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L51", + "community": 24, + "norm_label": "backtosignup", + "id": "locales_de_auth_backtosignup" + }, + { + "label": "chooseAvatar", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L52", + "community": 24, + "norm_label": "chooseavatar", + "id": "locales_de_auth_chooseavatar" + }, + { + "label": "privacyNotice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L53", + "community": 24, + "norm_label": "privacynotice", + "id": "locales_de_auth_privacynotice" + }, + { + "label": "acceptTerms", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L54", + "community": 24, + "norm_label": "acceptterms", + "id": "locales_de_auth_acceptterms" + }, + { + "label": "acceptTermsSuffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L55", + "community": 24, + "norm_label": "accepttermssuffix", + "id": "locales_de_auth_accepttermssuffix" + }, + { + "label": "termsLink", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L56", + "community": 24, + "norm_label": "termslink", + "id": "locales_de_auth_termslink" + }, + { + "label": "pleaseAcceptTerms", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L57", + "community": 24, + "norm_label": "pleaseacceptterms", + "id": "locales_de_auth_pleaseacceptterms" + }, + { + "label": "confirmEmailTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L58", + "community": 24, + "norm_label": "confirmemailtitle", + "id": "locales_de_auth_confirmemailtitle" + }, + { + "label": "confirmEmailDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L59", + "community": 24, + "norm_label": "confirmemaildesc", + "id": "locales_de_auth_confirmemaildesc" + }, + { + "label": "confirmEmailLine1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L60", + "community": 24, + "norm_label": "confirmemailline1", + "id": "locales_de_auth_confirmemailline1" + }, + { + "label": "confirmEmailLine2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L61", + "community": 24, + "norm_label": "confirmemailline2", + "id": "locales_de_auth_confirmemailline2" + }, + { + "label": "confirmBtn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L62", + "community": 24, + "norm_label": "confirmbtn", + "id": "locales_de_auth_confirmbtn" + }, + { + "label": "confirmed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L63", + "community": 24, + "norm_label": "confirmed", + "id": "locales_de_auth_confirmed" + }, + { + "label": "confirming", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L64", + "community": 24, + "norm_label": "confirming", + "id": "locales_de_auth_confirming" + }, + { + "label": "confirmSuccess", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L65", + "community": 24, + "norm_label": "confirmsuccess", + "id": "locales_de_auth_confirmsuccess" + }, + { + "label": "confirmTimeout", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L66", + "community": 24, + "norm_label": "confirmtimeout", + "id": "locales_de_auth_confirmtimeout" + }, + { + "label": "confirmFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L67", + "community": 24, + "norm_label": "confirmfailed", + "id": "locales_de_auth_confirmfailed" + }, + { + "label": "resend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L68", + "community": 24, + "norm_label": "resend", + "id": "locales_de_auth_resend" + }, + { + "label": "resendCooldown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L69", + "community": 24, + "norm_label": "resendcooldown", + "id": "locales_de_auth_resendcooldown" + }, + { + "label": "noCode", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L70", + "community": 24, + "norm_label": "nocode", + "id": "locales_de_auth_nocode" + }, + { + "label": "deviceLimitTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L71", + "community": 24, + "norm_label": "devicelimittitle", + "id": "locales_de_auth_devicelimittitle" + }, + { + "label": "deviceLimitDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L72", + "community": 20, + "norm_label": "devicelimitdesc", + "id": "locales_de_auth_devicelimitdesc" + }, + { + "label": "deviceLimitUpgrade", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L73", + "community": 24, + "norm_label": "devicelimitupgrade", + "id": "locales_de_auth_devicelimitupgrade" + }, + { + "label": "toLogin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L74", + "community": 24, + "norm_label": "tologin", + "id": "locales_de_auth_tologin" + }, + { + "label": "oauthFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L75", + "community": 24, + "norm_label": "oauthfailed", + "id": "locales_de_auth_oauthfailed" + }, + { + "label": "loginFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L76", + "community": 24, + "norm_label": "loginfailed", + "id": "locales_de_auth_loginfailed" + }, + { + "label": "registerFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L77", + "community": 24, + "norm_label": "registerfailed", + "id": "locales_de_auth_registerfailed" + }, + { + "label": "device_locked_headline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L78", + "community": 24, + "norm_label": "device_locked_headline", + "id": "locales_de_auth_device_locked_headline" + }, + { + "label": "device_locked_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L79", + "community": 24, + "norm_label": "device_locked_body", + "id": "locales_de_auth_device_locked_body" + }, + { + "label": "device_locked_countdown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L80", + "community": 24, + "norm_label": "device_locked_countdown", + "id": "locales_de_auth_device_locked_countdown" + }, + { + "label": "device_locked_email_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L81", + "community": 24, + "norm_label": "device_locked_email_hint", + "id": "locales_de_auth_device_locked_email_hint" + }, + { + "label": "device_locked_use_original", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L82", + "community": 24, + "norm_label": "device_locked_use_original", + "id": "locales_de_auth_device_locked_use_original" + }, + { + "label": "device_locked_back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L83", + "community": 24, + "norm_label": "device_locked_back", + "id": "locales_de_auth_device_locked_back" + }, + { + "label": "resetOtpTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L84", + "community": 24, + "norm_label": "resetotptitle", + "id": "locales_de_auth_resetotptitle" + }, + { + "label": "resetOtpLine1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L85", + "community": 24, + "norm_label": "resetotpline1", + "id": "locales_de_auth_resetotpline1" + }, + { + "label": "resetOtpLine2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L86", + "community": 24, + "norm_label": "resetotpline2", + "id": "locales_de_auth_resetotpline2" + }, + { + "label": "resetOtpConfirmBtn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L87", + "community": 24, + "norm_label": "resetotpconfirmbtn", + "id": "locales_de_auth_resetotpconfirmbtn" + }, + { + "label": "resetOtpResend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L88", + "community": 24, + "norm_label": "resetotpresend", + "id": "locales_de_auth_resetotpresend" + }, + { + "label": "resetOtpBackToForgot", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L89", + "community": 24, + "norm_label": "resetotpbacktoforgot", + "id": "locales_de_auth_resetotpbacktoforgot" + }, + { + "label": "newPasswordTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L90", + "community": 24, + "norm_label": "newpasswordtitle", + "id": "locales_de_auth_newpasswordtitle" + }, + { + "label": "newPasswordSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L91", + "community": 24, + "norm_label": "newpasswordsubtitle", + "id": "locales_de_auth_newpasswordsubtitle" + }, + { + "label": "newPasswordPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L92", + "community": 24, + "norm_label": "newpasswordplaceholder", + "id": "locales_de_auth_newpasswordplaceholder" + }, + { + "label": "newPasswordConfirmPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L93", + "community": 24, + "norm_label": "newpasswordconfirmplaceholder", + "id": "locales_de_auth_newpasswordconfirmplaceholder" + }, + { + "label": "newPasswordSave", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L94", + "community": 24, + "norm_label": "newpasswordsave", + "id": "locales_de_auth_newpasswordsave" + }, + { + "label": "newPasswordSaved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L95", + "community": 24, + "norm_label": "newpasswordsaved", + "id": "locales_de_auth_newpasswordsaved" + }, + { + "label": "newPasswordMismatch", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L96", + "community": 24, + "norm_label": "newpasswordmismatch", + "id": "locales_de_auth_newpasswordmismatch" + }, + { + "label": "newPasswordCancelLink", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L97", + "community": 24, + "norm_label": "newpasswordcancellink", + "id": "locales_de_auth_newpasswordcancellink" + }, + { + "label": "landing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L99", + "community": 605, + "norm_label": "landing", + "id": "apps_rebreak_native_locales_de_json_locales_de_landing" + }, + { + "label": "appName", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L100", + "community": 605, + "norm_label": "appname", + "id": "locales_de_landing_appname" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L101", + "community": 605, + "norm_label": "tagline", + "id": "locales_de_landing_tagline" + }, + { + "label": "start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L102", + "community": 605, + "norm_label": "start", + "id": "locales_de_landing_start" + }, + { + "label": "splash", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L104", + "community": 605, + "norm_label": "splash", + "id": "locales_de_splash" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L105", + "community": 605, + "norm_label": "tagline", + "id": "locales_de_splash_tagline" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L106", + "community": 605, + "norm_label": "subtitle", + "id": "locales_de_splash_subtitle" + }, + { + "label": "madeInGermany", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L107", + "community": 605, + "norm_label": "madeingermany", + "id": "locales_de_splash_madeingermany" + }, + { + "label": "applock", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L109", + "community": 605, + "norm_label": "applock", + "id": "locales_de_applock" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L110", + "community": 605, + "norm_label": "title", + "id": "locales_de_applock_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L111", + "community": 605, + "norm_label": "subtitle", + "id": "locales_de_applock_subtitle" + }, + { + "label": "unlock", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L112", + "community": 605, + "norm_label": "unlock", + "id": "locales_de_applock_unlock" + }, + { + "label": "prompt", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L113", + "community": 605, + "norm_label": "prompt", + "id": "locales_de_applock_prompt" + }, + { + "label": "signOut_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L114", + "community": 605, + "norm_label": "signout_title", + "id": "locales_de_applock_signout_title" + }, + { + "label": "signOut_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L115", + "community": 605, + "norm_label": "signout_body", + "id": "locales_de_applock_signout_body" + }, + { + "label": "appHeader", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L117", + "community": 53, + "norm_label": "appheader", + "id": "locales_de_appheader" + }, + { + "label": "appName", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L118", + "community": 53, + "norm_label": "appname", + "id": "locales_de_appheader_appname" + }, + { + "label": "sosLabel", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L119", + "community": 53, + "norm_label": "soslabel", + "id": "locales_de_appheader_soslabel" + }, + { + "label": "sosTagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L120", + "community": 53, + "norm_label": "sostagline", + "id": "locales_de_appheader_sostagline" + }, + { + "label": "sosSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L121", + "community": 53, + "norm_label": "sossubtitle", + "id": "locales_de_appheader_sossubtitle" + }, + { + "label": "editProfile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L122", + "community": 53, + "norm_label": "editprofile", + "id": "locales_de_appheader_editprofile" + }, + { + "label": "settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L123", + "community": 605, + "norm_label": "settings", + "id": "locales_de_appheader_settings" + }, + { + "label": "signOut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L124", + "community": 53, + "norm_label": "signout", + "id": "locales_de_appheader_signout" + }, + { + "label": "headerMenu", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L126", + "community": 605, + "norm_label": "headermenu", + "id": "locales_de_headermenu" + }, + { + "label": "profile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L127", + "community": 605, + "norm_label": "profile", + "id": "locales_de_headermenu_profile" + }, + { + "label": "settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L128", + "community": 605, + "norm_label": "settings", + "id": "locales_de_headermenu_settings" + }, + { + "label": "games", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L129", + "community": 605, + "norm_label": "games", + "id": "locales_de_headermenu_games" + }, + { + "label": "debug", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L130", + "community": 605, + "norm_label": "debug", + "id": "locales_de_headermenu_debug" + }, + { + "label": "logout", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L131", + "community": 605, + "norm_label": "logout", + "id": "locales_de_headermenu_logout" + }, + { + "label": "tabs", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L133", + "community": 605, + "norm_label": "tabs", + "id": "locales_de_tabs" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L134", + "community": 605, + "norm_label": "home", + "id": "locales_de_tabs_home" + }, + { + "label": "chat", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L135", + "community": 605, + "norm_label": "chat", + "id": "locales_de_tabs_chat" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L136", + "community": 605, + "norm_label": "coach", + "id": "locales_de_tabs_coach" + }, + { + "label": "blocker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L137", + "community": 605, + "norm_label": "blocker", + "id": "locales_de_tabs_blocker" + }, + { + "label": "mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L138", + "community": 605, + "norm_label": "mail", + "id": "locales_de_tabs_mail" + }, + { + "label": "profile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L139", + "community": 605, + "norm_label": "profile", + "id": "locales_de_tabs_profile" + }, + { + "label": "games", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L141", + "community": 605, + "norm_label": "games", + "id": "locales_de_games" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L142", + "community": 605, + "norm_label": "title", + "id": "locales_de_games_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L143", + "community": 605, + "norm_label": "subtitle", + "id": "locales_de_games_subtitle" + }, + { + "label": "back_to_picker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L144", + "community": 605, + "norm_label": "back_to_picker", + "id": "locales_de_games_back_to_picker" + }, + { + "label": "last_score", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L145", + "community": 605, + "norm_label": "last_score", + "id": "locales_de_games_last_score" + }, + { + "label": "skeleton_footer", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L146", + "community": 605, + "norm_label": "skeleton_footer", + "id": "locales_de_games_skeleton_footer" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L148", + "community": 605, + "norm_label": "home", + "id": "locales_de_home" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L149", + "community": 605, + "norm_label": "tagline", + "id": "locales_de_home_tagline" + }, + { + "label": "start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L150", + "community": 605, + "norm_label": "start", + "id": "locales_de_home_start" + }, + { + "label": "greeting_morning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L151", + "community": 605, + "norm_label": "greeting_morning", + "id": "locales_de_home_greeting_morning" + }, + { + "label": "greeting_day", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L152", + "community": 605, + "norm_label": "greeting_day", + "id": "locales_de_home_greeting_day" + }, + { + "label": "greeting_evening", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L153", + "community": 605, + "norm_label": "greeting_evening", + "id": "locales_de_home_greeting_evening" + }, + { + "label": "streak_days_one", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L154", + "community": 605, + "norm_label": "streak_days_one", + "id": "locales_de_home_streak_days_one" + }, + { + "label": "streak_days_other", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L155", + "community": 605, + "norm_label": "streak_days_other", + "id": "locales_de_home_streak_days_other" + }, + { + "label": "streak_start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L156", + "community": 605, + "norm_label": "streak_start", + "id": "locales_de_home_streak_start" + }, + { + "label": "quote_of_day", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L157", + "community": 605, + "norm_label": "quote_of_day", + "id": "locales_de_home_quote_of_day" + }, + { + "label": "quick_access", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L158", + "community": 605, + "norm_label": "quick_access", + "id": "locales_de_home_quick_access" + }, + { + "label": "stats_urges", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L159", + "community": 605, + "norm_label": "stats_urges", + "id": "locales_de_home_stats_urges" + }, + { + "label": "stats_chats", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L160", + "community": 605, + "norm_label": "stats_chats", + "id": "locales_de_home_stats_chats" + }, + { + "label": "stats_mails", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L161", + "community": 605, + "norm_label": "stats_mails", + "id": "locales_de_home_stats_mails" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L163", + "community": 413, + "norm_label": "coach", + "id": "locales_de_coach" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L164", + "community": 413, + "norm_label": "title", + "id": "locales_de_coach_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L165", + "community": 413, + "norm_label": "subtitle", + "id": "locales_de_coach_subtitle" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L166", + "community": 413, + "norm_label": "welcome", + "id": "locales_de_coach_welcome" + }, + { + "label": "input_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L167", + "community": 413, + "norm_label": "input_placeholder", + "id": "locales_de_coach_input_placeholder" + }, + { + "label": "new_chat", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L168", + "community": 413, + "norm_label": "new_chat", + "id": "locales_de_coach_new_chat" + }, + { + "label": "lyra", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L169", + "community": 413, + "norm_label": "lyra", + "id": "locales_de_coach_lyra" + }, + { + "label": "modeBadge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L170", + "community": 413, + "norm_label": "modebadge", + "id": "locales_de_coach_modebadge" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L171", + "community": 413, + "norm_label": "coach", + "id": "locales_de_modebadge_coach" + }, + { + "label": "sos", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L172", + "community": 413, + "norm_label": "sos", + "id": "locales_de_modebadge_sos" + }, + { + "label": "placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L174", + "community": 413, + "norm_label": "placeholder", + "id": "locales_de_coach_placeholder" + }, + { + "label": "speaking", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L175", + "community": 413, + "norm_label": "speaking", + "id": "locales_de_coach_speaking" + }, + { + "label": "recording", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L176", + "community": 413, + "norm_label": "recording", + "id": "locales_de_coach_recording" + }, + { + "label": "transcribing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L177", + "community": 413, + "norm_label": "transcribing", + "id": "locales_de_coach_transcribing" + }, + { + "label": "feedback_saved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L178", + "community": 413, + "norm_label": "feedback_saved", + "id": "locales_de_coach_feedback_saved" + }, + { + "label": "welcome_back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L179", + "community": 413, + "norm_label": "welcome_back", + "id": "locales_de_coach_welcome_back" + }, + { + "label": "online", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L180", + "community": 413, + "norm_label": "online", + "id": "locales_de_coach_online" + }, + { + "label": "thinking", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L181", + "community": 413, + "norm_label": "thinking", + "id": "locales_de_coach_thinking" + }, + { + "label": "error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L182", + "community": 879, + "norm_label": "error", + "id": "locales_de_coach_error" + }, + { + "label": "crisis_bar_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L183", + "community": 413, + "norm_label": "crisis_bar_label", + "id": "locales_de_coach_crisis_bar_label" + }, + { + "label": "blocker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L185", + "community": 1, + "norm_label": "blocker", + "id": "locales_de_blocker" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L186", + "community": 1, + "norm_label": "title", + "id": "locales_de_blocker_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L187", + "community": 1, + "norm_label": "subtitle", + "id": "locales_de_blocker_subtitle" + }, + { + "label": "status_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L188", + "community": 1, + "norm_label": "status_active", + "id": "locales_de_blocker_status_active" + }, + { + "label": "status_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L189", + "community": 1, + "norm_label": "status_inactive", + "id": "locales_de_blocker_status_inactive" + }, + { + "label": "filter_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L190", + "community": 1, + "norm_label": "filter_label", + "id": "locales_de_blocker_filter_label" + }, + { + "label": "filter_active_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L191", + "community": 1, + "norm_label": "filter_active_desc", + "id": "locales_de_blocker_filter_active_desc" + }, + { + "label": "filter_inactive_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L192", + "community": 1, + "norm_label": "filter_inactive_desc", + "id": "locales_de_blocker_filter_inactive_desc" + }, + { + "label": "tamper_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L193", + "community": 1, + "norm_label": "tamper_title", + "id": "locales_de_blocker_tamper_title" + }, + { + "label": "tamper_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L194", + "community": 1, + "norm_label": "tamper_desc", + "id": "locales_de_blocker_tamper_desc" + }, + { + "label": "custom_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L195", + "community": 53, + "norm_label": "custom_domains", + "id": "locales_de_blocker_custom_domains" + }, + { + "label": "add_domain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L196", + "community": 1, + "norm_label": "add_domain", + "id": "locales_de_blocker_add_domain" + }, + { + "label": "help_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L197", + "community": 1, + "norm_label": "help_link", + "id": "locales_de_blocker_help_link" + }, + { + "label": "status_approved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L198", + "community": 1, + "norm_label": "status_approved", + "id": "locales_de_blocker_status_approved" + }, + { + "label": "status_rejected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L199", + "community": 1, + "norm_label": "status_rejected", + "id": "locales_de_blocker_status_rejected" + }, + { + "label": "status_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L200", + "community": 1, + "norm_label": "status_pending", + "id": "locales_de_blocker_status_pending" + }, + { + "label": "add_sheet_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L201", + "community": 1, + "norm_label": "add_sheet_title", + "id": "locales_de_blocker_add_sheet_title" + }, + { + "label": "add_sheet_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L202", + "community": 1, + "norm_label": "add_sheet_label", + "id": "locales_de_blocker_add_sheet_label" + }, + { + "label": "add_sheet_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L203", + "community": 1, + "norm_label": "add_sheet_placeholder", + "id": "locales_de_blocker_add_sheet_placeholder" + }, + { + "label": "add_sheet_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L204", + "community": 1, + "norm_label": "add_sheet_invalid", + "id": "locales_de_blocker_add_sheet_invalid" + }, + { + "label": "add_sheet_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L205", + "community": 1, + "norm_label": "add_sheet_help", + "id": "locales_de_blocker_add_sheet_help" + }, + { + "label": "preview_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L206", + "community": 1, + "norm_label": "preview_web", + "id": "locales_de_blocker_preview_web" + }, + { + "label": "preview_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L207", + "community": 1, + "norm_label": "preview_mail", + "id": "locales_de_blocker_preview_mail" + }, + { + "label": "preview_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L208", + "community": 1, + "norm_label": "preview_invalid", + "id": "locales_de_blocker_preview_invalid" + }, + { + "label": "custom_filter_overview_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L209", + "community": 1, + "norm_label": "custom_filter_overview_title", + "id": "locales_de_blocker_custom_filter_overview_title" + }, + { + "label": "custom_filter_overview_count", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L210", + "community": 1, + "norm_label": "custom_filter_overview_count", + "id": "locales_de_blocker_custom_filter_overview_count" + }, + { + "label": "add_sheet_warning_free", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L211", + "community": 1, + "norm_label": "add_sheet_warning_free", + "id": "locales_de_blocker_add_sheet_warning_free" + }, + { + "label": "add_sheet_warning_pro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L212", + "community": 1, + "norm_label": "add_sheet_warning_pro", + "id": "locales_de_blocker_add_sheet_warning_pro" + }, + { + "label": "add_sheet_confirm_permanent", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L213", + "community": 1, + "norm_label": "add_sheet_confirm_permanent", + "id": "locales_de_blocker_add_sheet_confirm_permanent" + }, + { + "label": "add_sheet_add_failed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L214", + "community": 1, + "norm_label": "add_sheet_add_failed", + "id": "locales_de_blocker_add_sheet_add_failed" + }, + { + "label": "add_sheet_already_global", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L215", + "community": 1, + "norm_label": "add_sheet_already_global", + "id": "locales_de_blocker_add_sheet_already_global" + }, + { + "label": "add_sheet_already_protected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L216", + "community": 1, + "norm_label": "add_sheet_already_protected", + "id": "locales_de_blocker_add_sheet_already_protected" + }, + { + "label": "add_sheet_in_global_not_vip", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L217", + "community": 1, + "norm_label": "add_sheet_in_global_not_vip", + "id": "locales_de_blocker_add_sheet_in_global_not_vip" + }, + { + "label": "add_sheet_add_to_vip_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L218", + "community": 1, + "norm_label": "add_sheet_add_to_vip_cta", + "id": "locales_de_blocker_add_sheet_add_to_vip_cta" + }, + { + "label": "cooldown_banner_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L219", + "community": 1, + "norm_label": "cooldown_banner_title", + "id": "locales_de_blocker_cooldown_banner_title" + }, + { + "label": "deactivation_actionsheet_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L220", + "community": 1, + "norm_label": "deactivation_actionsheet_title", + "id": "locales_de_blocker_deactivation_actionsheet_title" + }, + { + "label": "deactivation_actionsheet_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L221", + "community": 1, + "norm_label": "deactivation_actionsheet_message", + "id": "locales_de_blocker_deactivation_actionsheet_message" + }, + { + "label": "deactivation_start_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L222", + "community": 1, + "norm_label": "deactivation_start_cta", + "id": "locales_de_blocker_deactivation_start_cta" + }, + { + "label": "deactivation_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L223", + "community": 1, + "norm_label": "deactivation_failed_msg", + "id": "locales_de_blocker_deactivation_failed_msg" + }, + { + "label": "deactivation_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L224", + "community": 1, + "norm_label": "deactivation_heading", + "id": "locales_de_blocker_deactivation_heading" + }, + { + "label": "deactivation_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L225", + "community": 1, + "norm_label": "deactivation_title", + "id": "locales_de_blocker_deactivation_title" + }, + { + "label": "deactivation_intro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L226", + "community": 1, + "norm_label": "deactivation_intro", + "id": "locales_de_blocker_deactivation_intro" + }, + { + "label": "deactivation_bullet1_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L227", + "community": 1, + "norm_label": "deactivation_bullet1_title", + "id": "locales_de_blocker_deactivation_bullet1_title" + }, + { + "label": "deactivation_bullet1_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L228", + "community": 1, + "norm_label": "deactivation_bullet1_text", + "id": "locales_de_blocker_deactivation_bullet1_text" + }, + { + "label": "deactivation_bullet2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L229", + "community": 1, + "norm_label": "deactivation_bullet2_title", + "id": "locales_de_blocker_deactivation_bullet2_title" + }, + { + "label": "deactivation_bullet2_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L230", + "community": 1, + "norm_label": "deactivation_bullet2_text", + "id": "locales_de_blocker_deactivation_bullet2_text" + }, + { + "label": "deactivation_bullet3_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L231", + "community": 1, + "norm_label": "deactivation_bullet3_title", + "id": "locales_de_blocker_deactivation_bullet3_title" + }, + { + "label": "deactivation_bullet3_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L232", + "community": 1, + "norm_label": "deactivation_bullet3_text", + "id": "locales_de_blocker_deactivation_bullet3_text" + }, + { + "label": "deactivation_breathe_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L233", + "community": 1, + "norm_label": "deactivation_breathe_cta", + "id": "locales_de_blocker_deactivation_breathe_cta" + }, + { + "label": "deactivation_start_anyway", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L234", + "community": 1, + "norm_label": "deactivation_start_anyway", + "id": "locales_de_blocker_deactivation_start_anyway" + }, + { + "label": "deactivation_starting", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L235", + "community": 1, + "norm_label": "deactivation_starting", + "id": "locales_de_blocker_deactivation_starting" + }, + { + "label": "deactivation_cancel_failed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L236", + "community": 1, + "norm_label": "deactivation_cancel_failed", + "id": "locales_de_blocker_deactivation_cancel_failed" + }, + { + "label": "domain_section_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L237", + "community": 1, + "norm_label": "domain_section_title", + "id": "locales_de_blocker_domain_section_title" + }, + { + "label": "domain_add_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L238", + "community": 1, + "norm_label": "domain_add_a11y", + "id": "locales_de_blocker_domain_add_a11y" + }, + { + "label": "domain_limit_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L239", + "community": 1, + "norm_label": "domain_limit_title", + "id": "locales_de_blocker_domain_limit_title" + }, + { + "label": "domain_limit_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L240", + "community": 1, + "norm_label": "domain_limit_desc", + "id": "locales_de_blocker_domain_limit_desc" + }, + { + "label": "domain_empty", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L241", + "community": 1, + "norm_label": "domain_empty", + "id": "locales_de_blocker_domain_empty" + }, + { + "label": "domain_badge_voting", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L242", + "community": 1, + "norm_label": "domain_badge_voting", + "id": "locales_de_blocker_domain_badge_voting" + }, + { + "label": "domain_badge_pruefung", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L243", + "community": 1, + "norm_label": "domain_badge_pruefung", + "id": "locales_de_blocker_domain_badge_pruefung" + }, + { + "label": "domain_badge_rejected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L244", + "community": 1, + "norm_label": "domain_badge_rejected", + "id": "locales_de_blocker_domain_badge_rejected" + }, + { + "label": "domain_badge_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L245", + "community": 1, + "norm_label": "domain_badge_active", + "id": "locales_de_blocker_domain_badge_active" + }, + { + "label": "domain_btn_freigeben", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L246", + "community": 1, + "norm_label": "domain_btn_freigeben", + "id": "locales_de_blocker_domain_btn_freigeben" + }, + { + "label": "domain_btn_erneut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L247", + "community": 1, + "norm_label": "domain_btn_erneut", + "id": "locales_de_blocker_domain_btn_erneut" + }, + { + "label": "domain_btn_in_abstimmung", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L248", + "community": 1, + "norm_label": "domain_btn_in_abstimmung", + "id": "locales_de_blocker_domain_btn_in_abstimmung" + }, + { + "label": "domain_btn_rebreak_prueft", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L249", + "community": 1, + "norm_label": "domain_btn_rebreak_prueft", + "id": "locales_de_blocker_domain_btn_rebreak_prueft" + }, + { + "label": "domain_confirm_legend_resubmit", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L250", + "community": 1, + "norm_label": "domain_confirm_legend_resubmit", + "id": "locales_de_blocker_domain_confirm_legend_resubmit" + }, + { + "label": "domain_confirm_legend_first", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L251", + "community": 1, + "norm_label": "domain_confirm_legend_first", + "id": "locales_de_blocker_domain_confirm_legend_first" + }, + { + "label": "domain_confirm_community_resubmit", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L252", + "community": 1, + "norm_label": "domain_confirm_community_resubmit", + "id": "locales_de_blocker_domain_confirm_community_resubmit" + }, + { + "label": "domain_confirm_community_first", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L253", + "community": 1, + "norm_label": "domain_confirm_community_first", + "id": "locales_de_blocker_domain_confirm_community_first" + }, + { + "label": "domain_confirm_legend_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L254", + "community": 1, + "norm_label": "domain_confirm_legend_message", + "id": "locales_de_blocker_domain_confirm_legend_message" + }, + { + "label": "domain_confirm_community_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L255", + "community": 1, + "norm_label": "domain_confirm_community_message", + "id": "locales_de_blocker_domain_confirm_community_message" + }, + { + "label": "domain_success_legend_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L256", + "community": 1, + "norm_label": "domain_success_legend_title", + "id": "locales_de_blocker_domain_success_legend_title" + }, + { + "label": "domain_success_community_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L257", + "community": 1, + "norm_label": "domain_success_community_title", + "id": "locales_de_blocker_domain_success_community_title" + }, + { + "label": "domain_success_legend_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L258", + "community": 1, + "norm_label": "domain_success_legend_message", + "id": "locales_de_blocker_domain_success_legend_message" + }, + { + "label": "domain_success_community_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L259", + "community": 1, + "norm_label": "domain_success_community_message", + "id": "locales_de_blocker_domain_success_community_message" + }, + { + "label": "upgrade_alert_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L260", + "community": 1, + "norm_label": "upgrade_alert_title", + "id": "locales_de_blocker_upgrade_alert_title" + }, + { + "label": "upgrade_alert_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L261", + "community": 1, + "norm_label": "upgrade_alert_desc", + "id": "locales_de_blocker_upgrade_alert_desc" + }, + { + "label": "protection_card_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L262", + "community": 1, + "norm_label": "protection_card_title", + "id": "locales_de_blocker_protection_card_title" + }, + { + "label": "protection_card_locked_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L263", + "community": 1, + "norm_label": "protection_card_locked_title", + "id": "locales_de_blocker_protection_card_locked_title" + }, + { + "label": "protection_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L264", + "community": 1, + "norm_label": "protection_subtitle_inactive", + "id": "locales_de_blocker_protection_subtitle_inactive" + }, + { + "label": "protection_subtitle_cooldown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L265", + "community": 1, + "norm_label": "protection_subtitle_cooldown", + "id": "locales_de_blocker_protection_subtitle_cooldown" + }, + { + "label": "protection_subtitle_free", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L266", + "community": 1, + "norm_label": "protection_subtitle_free", + "id": "locales_de_blocker_protection_subtitle_free" + }, + { + "label": "protection_subtitle_legend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L267", + "community": 1, + "norm_label": "protection_subtitle_legend", + "id": "locales_de_blocker_protection_subtitle_legend" + }, + { + "label": "protection_subtitle_pro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L268", + "community": 1, + "norm_label": "protection_subtitle_pro", + "id": "locales_de_blocker_protection_subtitle_pro" + }, + { + "label": "protection_settings_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L269", + "community": 1, + "norm_label": "protection_settings_a11y", + "id": "locales_de_blocker_protection_settings_a11y" + }, + { + "label": "protection_stat_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L270", + "community": 1, + "norm_label": "protection_stat_domains", + "id": "locales_de_blocker_protection_stat_domains" + }, + { + "label": "protection_stat_method", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L271", + "community": 1, + "norm_label": "protection_stat_method", + "id": "locales_de_blocker_protection_stat_method" + }, + { + "label": "protection_stat_method_dns", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L272", + "community": 1, + "norm_label": "protection_stat_method_dns", + "id": "locales_de_blocker_protection_stat_method_dns" + }, + { + "label": "protection_stat_method_native", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L273", + "community": 1, + "norm_label": "protection_stat_method_native", + "id": "locales_de_blocker_protection_stat_method_native" + }, + { + "label": "protection_stat_status", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L274", + "community": 1, + "norm_label": "protection_stat_status", + "id": "locales_de_blocker_protection_stat_status" + }, + { + "label": "protection_stat_status_live", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L275", + "community": 1, + "norm_label": "protection_stat_status_live", + "id": "locales_de_blocker_protection_stat_status_live" + }, + { + "label": "activate_url_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L276", + "community": 1, + "norm_label": "activate_url_failed_title", + "id": "locales_de_blocker_activate_url_failed_title" + }, + { + "label": "activate_url_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L277", + "community": 1, + "norm_label": "activate_url_failed_msg", + "id": "locales_de_blocker_activate_url_failed_msg" + }, + { + "label": "activate_settings_btn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L278", + "community": 1, + "norm_label": "activate_settings_btn", + "id": "locales_de_blocker_activate_settings_btn" + }, + { + "label": "permission_denied", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L279", + "community": 426, + "norm_label": "permission_denied", + "id": "locales_de_blocker_permission_denied" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L280", + "community": 426, + "norm_label": "title", + "id": "locales_de_permission_denied_title" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L281", + "community": 426, + "norm_label": "body", + "id": "locales_de_permission_denied_body" + }, + { + "label": "retry_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L282", + "community": 426, + "norm_label": "retry_cta", + "id": "locales_de_permission_denied_retry_cta" + }, + { + "label": "retry_loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L283", + "community": 426, + "norm_label": "retry_loading", + "id": "locales_de_permission_denied_retry_loading" + }, + { + "label": "settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L284", + "community": 426, + "norm_label": "settings_cta", + "id": "locales_de_permission_denied_settings_cta" + }, + { + "label": "fallback_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L285", + "community": 426, + "norm_label": "fallback_label", + "id": "locales_de_permission_denied_fallback_label" + }, + { + "label": "fallback_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L286", + "community": 426, + "norm_label": "fallback_body", + "id": "locales_de_permission_denied_fallback_body" + }, + { + "label": "family_controls_error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L288", + "community": 426, + "norm_label": "family_controls_error", + "id": "locales_de_blocker_family_controls_error" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L289", + "community": 426, + "norm_label": "title", + "id": "locales_de_family_controls_error_title" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L290", + "community": 426, + "norm_label": "body", + "id": "locales_de_family_controls_error_body" + }, + { + "label": "retry_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L291", + "community": 426, + "norm_label": "retry_cta", + "id": "locales_de_family_controls_error_retry_cta" + }, + { + "label": "retry_loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L292", + "community": 426, + "norm_label": "retry_loading", + "id": "locales_de_family_controls_error_retry_loading" + }, + { + "label": "settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L293", + "community": 426, + "norm_label": "settings_cta", + "id": "locales_de_family_controls_error_settings_cta" + }, + { + "label": "fallback_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L294", + "community": 426, + "norm_label": "fallback_label", + "id": "locales_de_family_controls_error_fallback_label" + }, + { + "label": "fallback_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L295", + "community": 426, + "norm_label": "fallback_body", + "id": "locales_de_family_controls_error_fallback_body" + }, + { + "label": "protection_off_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L297", + "community": 1, + "norm_label": "protection_off_title", + "id": "locales_de_blocker_protection_off_title" + }, + { + "label": "protection_off_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L298", + "community": 1, + "norm_label": "protection_off_message", + "id": "locales_de_blocker_protection_off_message" + }, + { + "label": "reactivate_btn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L299", + "community": 1, + "norm_label": "reactivate_btn", + "id": "locales_de_blocker_reactivate_btn" + }, + { + "label": "protection_off_later", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L300", + "community": 1, + "norm_label": "protection_off_later", + "id": "locales_de_blocker_protection_off_later" + }, + { + "label": "activate_app_lock_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L301", + "community": 1, + "norm_label": "activate_app_lock_failed_title", + "id": "locales_de_blocker_activate_app_lock_failed_title" + }, + { + "label": "activate_app_lock_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L302", + "community": 1, + "norm_label": "activate_app_lock_failed_msg", + "id": "locales_de_blocker_activate_app_lock_failed_msg" + }, + { + "label": "sync_list_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L303", + "community": 1, + "norm_label": "sync_list_failed_title", + "id": "locales_de_blocker_sync_list_failed_title" + }, + { + "label": "sync_list_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L304", + "community": 1, + "norm_label": "sync_list_failed_msg", + "id": "locales_de_blocker_sync_list_failed_msg" + }, + { + "label": "activation_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L305", + "community": 1, + "norm_label": "activation_failed_title", + "id": "locales_de_blocker_activation_failed_title" + }, + { + "label": "details_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L306", + "community": 1, + "norm_label": "details_done", + "id": "locales_de_blocker_details_done" + }, + { + "label": "details_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L307", + "community": 1, + "norm_label": "details_title", + "id": "locales_de_blocker_details_title" + }, + { + "label": "details_active_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L308", + "community": 1, + "norm_label": "details_active_title", + "id": "locales_de_blocker_details_active_title" + }, + { + "label": "details_domains_blocked", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L309", + "community": 1, + "norm_label": "details_domains_blocked", + "id": "locales_de_blocker_details_domains_blocked" + }, + { + "label": "details_layers_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L310", + "community": 1, + "norm_label": "details_layers_heading", + "id": "locales_de_blocker_details_layers_heading" + }, + { + "label": "details_layer_url_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L311", + "community": 1, + "norm_label": "details_layer_url_label", + "id": "locales_de_blocker_details_layer_url_label" + }, + { + "label": "details_layer_url_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L312", + "community": 1, + "norm_label": "details_layer_url_desc", + "id": "locales_de_blocker_details_layer_url_desc" + }, + { + "label": "details_layer_applock_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L313", + "community": 1, + "norm_label": "details_layer_applock_label", + "id": "locales_de_blocker_details_layer_applock_label" + }, + { + "label": "details_layer_applock_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L314", + "community": 1, + "norm_label": "details_layer_applock_desc", + "id": "locales_de_blocker_details_layer_applock_desc" + }, + { + "label": "details_layer_vpn_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L315", + "community": 1, + "norm_label": "details_layer_vpn_label", + "id": "locales_de_blocker_details_layer_vpn_label" + }, + { + "label": "details_layer_vpn_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L316", + "community": 1, + "norm_label": "details_layer_vpn_desc", + "id": "locales_de_blocker_details_layer_vpn_desc" + }, + { + "label": "details_layer_a11y_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L317", + "community": 1, + "norm_label": "details_layer_a11y_label", + "id": "locales_de_blocker_details_layer_a11y_label" + }, + { + "label": "details_layer_a11y_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L318", + "community": 1, + "norm_label": "details_layer_a11y_desc", + "id": "locales_de_blocker_details_layer_a11y_desc" + }, + { + "label": "details_layer_tamper_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L319", + "community": 1, + "norm_label": "details_layer_tamper_label", + "id": "locales_de_blocker_details_layer_tamper_label" + }, + { + "label": "details_layer_tamper_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L320", + "community": 1, + "norm_label": "details_layer_tamper_desc", + "id": "locales_de_blocker_details_layer_tamper_desc" + }, + { + "label": "details_lyra_cta_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L321", + "community": 1, + "norm_label": "details_lyra_cta_title", + "id": "locales_de_blocker_details_lyra_cta_title" + }, + { + "label": "details_lyra_cta_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L322", + "community": 1, + "norm_label": "details_lyra_cta_subtitle", + "id": "locales_de_blocker_details_lyra_cta_subtitle" + }, + { + "label": "details_deactivate_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L323", + "community": 1, + "norm_label": "details_deactivate_link", + "id": "locales_de_blocker_details_deactivate_link" + }, + { + "label": "layers_url_filter_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L324", + "community": 1, + "norm_label": "layers_url_filter_title", + "id": "locales_de_blocker_layers_url_filter_title" + }, + { + "label": "layers_url_filter_subtitle_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L325", + "community": 1, + "norm_label": "layers_url_filter_subtitle_active", + "id": "locales_de_blocker_layers_url_filter_subtitle_active" + }, + { + "label": "layers_url_filter_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L326", + "community": 1, + "norm_label": "layers_url_filter_subtitle_inactive", + "id": "locales_de_blocker_layers_url_filter_subtitle_inactive" + }, + { + "label": "layers_app_lock_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L327", + "community": 1, + "norm_label": "layers_app_lock_title", + "id": "locales_de_blocker_layers_app_lock_title" + }, + { + "label": "layers_app_lock_subtitle_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L328", + "community": 1, + "norm_label": "layers_app_lock_subtitle_active", + "id": "locales_de_blocker_layers_app_lock_subtitle_active" + }, + { + "label": "layers_app_lock_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L329", + "community": 1, + "norm_label": "layers_app_lock_subtitle_inactive", + "id": "locales_de_blocker_layers_app_lock_subtitle_inactive" + }, + { + "label": "layers_app_lock_warning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L330", + "community": 1, + "norm_label": "layers_app_lock_warning", + "id": "locales_de_blocker_layers_app_lock_warning" + }, + { + "label": "layers_app_lock_locked_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L331", + "community": 1, + "norm_label": "layers_app_lock_locked_hint", + "id": "locales_de_blocker_layers_app_lock_locked_hint" + }, + { + "label": "screentime_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L332", + "community": 1, + "norm_label": "screentime_title", + "id": "locales_de_blocker_screentime_title" + }, + { + "label": "screentime_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L333", + "community": 389, + "norm_label": "screentime_desc", + "id": "locales_de_blocker_screentime_desc" + }, + { + "label": "screentime_generate_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L334", + "community": 1, + "norm_label": "screentime_generate_cta", + "id": "locales_de_blocker_screentime_generate_cta" + }, + { + "label": "screentime_code_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L335", + "community": 1, + "norm_label": "screentime_code_label", + "id": "locales_de_blocker_screentime_code_label" + }, + { + "label": "screentime_step1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L336", + "community": 1, + "norm_label": "screentime_step1", + "id": "locales_de_blocker_screentime_step1" + }, + { + "label": "screentime_step2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L337", + "community": 1, + "norm_label": "screentime_step2", + "id": "locales_de_blocker_screentime_step2" + }, + { + "label": "screentime_step3", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L338", + "community": 1, + "norm_label": "screentime_step3", + "id": "locales_de_blocker_screentime_step3" + }, + { + "label": "screentime_step_note", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L339", + "community": 1, + "norm_label": "screentime_step_note", + "id": "locales_de_blocker_screentime_step_note" + }, + { + "label": "screentime_open_settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L340", + "community": 1, + "norm_label": "screentime_open_settings_cta", + "id": "locales_de_blocker_screentime_open_settings_cta" + }, + { + "label": "screentime_confirm_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L341", + "community": 1, + "norm_label": "screentime_confirm_cta", + "id": "locales_de_blocker_screentime_confirm_cta" + }, + { + "label": "screentime_confirmed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L342", + "community": 1, + "norm_label": "screentime_confirmed_title", + "id": "locales_de_blocker_screentime_confirmed_title" + }, + { + "label": "screentime_confirmed_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L343", + "community": 1, + "norm_label": "screentime_confirmed_desc", + "id": "locales_de_blocker_screentime_confirmed_desc" + }, + { + "label": "layers_a11y_subtitle_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L344", + "community": 1, + "norm_label": "layers_a11y_subtitle_active", + "id": "locales_de_blocker_layers_a11y_subtitle_active" + }, + { + "label": "layers_a11y_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L345", + "community": 1, + "norm_label": "layers_a11y_subtitle_inactive", + "id": "locales_de_blocker_layers_a11y_subtitle_inactive" + }, + { + "label": "kpi_global_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L346", + "community": 1, + "norm_label": "kpi_global_label", + "id": "locales_de_blocker_kpi_global_label" + }, + { + "label": "kpi_global_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L347", + "community": 1, + "norm_label": "kpi_global_subtitle", + "id": "locales_de_blocker_kpi_global_subtitle" + }, + { + "label": "delta_week", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L348", + "community": 1, + "norm_label": "delta_week", + "id": "locales_de_blocker_delta_week" + }, + { + "label": "delta_month", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L349", + "community": 1, + "norm_label": "delta_month", + "id": "locales_de_blocker_delta_month" + }, + { + "label": "kpi_submissions_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L350", + "community": 1, + "norm_label": "kpi_submissions_title", + "id": "locales_de_blocker_kpi_submissions_title" + }, + { + "label": "kpi_submissions_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L351", + "community": 1, + "norm_label": "kpi_submissions_subtitle", + "id": "locales_de_blocker_kpi_submissions_subtitle" + }, + { + "label": "kpi_my_submissions", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L352", + "community": 1, + "norm_label": "kpi_my_submissions", + "id": "locales_de_blocker_kpi_my_submissions" + }, + { + "label": "kpi_status_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L353", + "community": 1, + "norm_label": "kpi_status_active", + "id": "locales_de_blocker_kpi_status_active" + }, + { + "label": "kpi_status_vote", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L354", + "community": 1, + "norm_label": "kpi_status_vote", + "id": "locales_de_blocker_kpi_status_vote" + }, + { + "label": "kpi_status_review", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L355", + "community": 1, + "norm_label": "kpi_status_review", + "id": "locales_de_blocker_kpi_status_review" + }, + { + "label": "kpi_in_vote", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L356", + "community": 1, + "norm_label": "kpi_in_vote", + "id": "locales_de_blocker_kpi_in_vote" + }, + { + "label": "kpi_in_review", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L357", + "community": 1, + "norm_label": "kpi_in_review", + "id": "locales_de_blocker_kpi_in_review" + }, + { + "label": "kpi_avg_per_user", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L358", + "community": 1, + "norm_label": "kpi_avg_per_user", + "id": "locales_de_blocker_kpi_avg_per_user" + }, + { + "label": "kpi_avg_wait", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L359", + "community": 1, + "norm_label": "kpi_avg_wait", + "id": "locales_de_blocker_kpi_avg_wait" + }, + { + "label": "kpi_days_suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L360", + "community": 1, + "norm_label": "kpi_days_suffix", + "id": "locales_de_blocker_kpi_days_suffix" + }, + { + "label": "faq_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L361", + "community": 1, + "norm_label": "faq_heading", + "id": "locales_de_blocker_faq_heading" + }, + { + "label": "faq1_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L362", + "community": 1, + "norm_label": "faq1_q", + "id": "locales_de_blocker_faq1_q" + }, + { + "label": "faq1_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L363", + "community": 1, + "norm_label": "faq1_a", + "id": "locales_de_blocker_faq1_a" + }, + { + "label": "faq2_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L364", + "community": 1, + "norm_label": "faq2_q", + "id": "locales_de_blocker_faq2_q" + }, + { + "label": "faq2_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L365", + "community": 1, + "norm_label": "faq2_a", + "id": "locales_de_blocker_faq2_a" + }, + { + "label": "faq3_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L366", + "community": 1, + "norm_label": "faq3_q", + "id": "locales_de_blocker_faq3_q" + }, + { + "label": "faq3_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L367", + "community": 1, + "norm_label": "faq3_a", + "id": "locales_de_blocker_faq3_a" + }, + { + "label": "faq4_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L368", + "community": 1, + "norm_label": "faq4_q", + "id": "locales_de_blocker_faq4_q" + }, + { + "label": "faq4_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L369", + "community": 1, + "norm_label": "faq4_a", + "id": "locales_de_blocker_faq4_a" + }, + { + "label": "faq5_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L370", + "community": 1, + "norm_label": "faq5_q", + "id": "locales_de_blocker_faq5_q" + }, + { + "label": "faq5_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L371", + "community": 1, + "norm_label": "faq5_a", + "id": "locales_de_blocker_faq5_a" + }, + { + "label": "faq6_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L372", + "community": 1, + "norm_label": "faq6_q", + "id": "locales_de_blocker_faq6_q" + }, + { + "label": "faq6_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L373", + "community": 1, + "norm_label": "faq6_a", + "id": "locales_de_blocker_faq6_a" + }, + { + "label": "faq7_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L374", + "community": 1, + "norm_label": "faq7_q", + "id": "locales_de_blocker_faq7_q" + }, + { + "label": "faq7_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L375", + "community": 1, + "norm_label": "faq7_a", + "id": "locales_de_blocker_faq7_a" + }, + { + "label": "faq8_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L376", + "community": 1, + "norm_label": "faq8_q", + "id": "locales_de_blocker_faq8_q" + }, + { + "label": "faq8_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L377", + "community": 1, + "norm_label": "faq8_a", + "id": "locales_de_blocker_faq8_a" + }, + { + "label": "faq9_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L378", + "community": 1, + "norm_label": "faq9_q", + "id": "locales_de_blocker_faq9_q" + }, + { + "label": "faq9_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L379", + "community": 1, + "norm_label": "faq9_a", + "id": "locales_de_blocker_faq9_a" + }, + { + "label": "more_info_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L380", + "community": 1, + "norm_label": "more_info_title", + "id": "locales_de_blocker_more_info_title" + }, + { + "label": "cooldown_elapsed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L381", + "community": 1, + "norm_label": "cooldown_elapsed_title", + "id": "locales_de_blocker_cooldown_elapsed_title" + }, + { + "label": "cooldown_elapsed_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L382", + "community": 1, + "norm_label": "cooldown_elapsed_message", + "id": "locales_de_blocker_cooldown_elapsed_message" + }, + { + "label": "cooldown_elapsed_message_ios", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L383", + "community": 1, + "norm_label": "cooldown_elapsed_message_ios", + "id": "locales_de_blocker_cooldown_elapsed_message_ios" + }, + { + "label": "cooldown_elapsed_open_settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L384", + "community": 1, + "norm_label": "cooldown_elapsed_open_settings", + "id": "locales_de_blocker_cooldown_elapsed_open_settings" + }, + { + "label": "app_lock_coming_soon_badge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L385", + "community": 1, + "norm_label": "app_lock_coming_soon_badge", + "id": "locales_de_blocker_app_lock_coming_soon_badge" + }, + { + "label": "app_lock_coming_soon_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L386", + "community": 1, + "norm_label": "app_lock_coming_soon_desc", + "id": "locales_de_blocker_app_lock_coming_soon_desc" + }, + { + "label": "type_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L387", + "community": 1, + "norm_label": "type_web", + "id": "locales_de_blocker_type_web" + }, + { + "label": "type_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L388", + "community": 1, + "norm_label": "type_mail", + "id": "locales_de_blocker_type_mail" + }, + { + "label": "add_web_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L389", + "community": 1, + "norm_label": "add_web_label", + "id": "locales_de_blocker_add_web_label" + }, + { + "label": "add_web_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L390", + "community": 1, + "norm_label": "add_web_placeholder", + "id": "locales_de_blocker_add_web_placeholder" + }, + { + "label": "add_web_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L391", + "community": 1, + "norm_label": "add_web_help", + "id": "locales_de_blocker_add_web_help" + }, + { + "label": "add_mail_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L392", + "community": 1, + "norm_label": "add_mail_label", + "id": "locales_de_blocker_add_mail_label" + }, + { + "label": "add_mail_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L393", + "community": 1, + "norm_label": "add_mail_placeholder", + "id": "locales_de_blocker_add_mail_placeholder" + }, + { + "label": "add_mail_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L394", + "community": 1, + "norm_label": "add_mail_help", + "id": "locales_de_blocker_add_mail_help" + }, + { + "label": "add_mail_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L395", + "community": 1, + "norm_label": "add_mail_invalid", + "id": "locales_de_blocker_add_mail_invalid" + }, + { + "label": "add_sheet_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L396", + "community": 1, + "norm_label": "add_sheet_cta", + "id": "locales_de_blocker_add_sheet_cta" + }, + { + "label": "section_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L397", + "community": 1, + "norm_label": "section_domains", + "id": "locales_de_blocker_section_domains" + }, + { + "label": "section_mails", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L398", + "community": 1, + "norm_label": "section_mails", + "id": "locales_de_blocker_section_mails" + }, + { + "label": "count_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L399", + "community": 1, + "norm_label": "count_label", + "id": "locales_de_blocker_count_label" + }, + { + "label": "error_web_limit_reached", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L400", + "community": 1, + "norm_label": "error_web_limit_reached", + "id": "locales_de_blocker_error_web_limit_reached" + }, + { + "label": "error_mail_limit_reached", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L401", + "community": 1, + "norm_label": "error_mail_limit_reached", + "id": "locales_de_blocker_error_mail_limit_reached" + }, + { + "label": "error_limit_reached", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L402", + "community": 1, + "norm_label": "error_limit_reached", + "id": "locales_de_blocker_error_limit_reached" + }, + { + "label": "error_invalid_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L403", + "community": 1, + "norm_label": "error_invalid_mail", + "id": "locales_de_blocker_error_invalid_mail" + }, + { + "label": "error_invalid_input", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L404", + "community": 413, + "norm_label": "error_invalid_input", + "id": "locales_de_blocker_error_invalid_input" + }, + { + "label": "error_public_domain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L405", + "community": 1, + "norm_label": "error_public_domain", + "id": "locales_de_blocker_error_public_domain" + }, + { + "label": "error_duplicate", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L406", + "community": 1, + "norm_label": "error_duplicate", + "id": "locales_de_blocker_error_duplicate" + }, + { + "label": "kind_override_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L407", + "community": 1, + "norm_label": "kind_override_label", + "id": "locales_de_blocker_kind_override_label" + }, + { + "label": "empty_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L408", + "community": 1, + "norm_label": "empty_web", + "id": "locales_de_blocker_empty_web" + }, + { + "label": "empty_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L409", + "community": 1, + "norm_label": "empty_mail", + "id": "locales_de_blocker_empty_mail" + }, + { + "label": "vip_section_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L410", + "community": 1, + "norm_label": "vip_section_title", + "id": "locales_de_blocker_vip_section_title" + }, + { + "label": "vip_empty", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L411", + "community": 1, + "norm_label": "vip_empty", + "id": "locales_de_blocker_vip_empty" + }, + { + "label": "vip_global_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L412", + "community": 1, + "norm_label": "vip_global_hint", + "id": "locales_de_blocker_vip_global_hint" + }, + { + "label": "my_filters_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L413", + "community": 1, + "norm_label": "my_filters_title", + "id": "locales_de_blocker_my_filters_title" + }, + { + "label": "my_filters_empty", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L414", + "community": 1, + "norm_label": "my_filters_empty", + "id": "locales_de_blocker_my_filters_empty" + }, + { + "label": "vip_layer2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L415", + "community": 1, + "norm_label": "vip_layer2_title", + "id": "locales_de_blocker_vip_layer2_title" + }, + { + "label": "vip_layer2_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L416", + "community": 1, + "norm_label": "vip_layer2_desc", + "id": "locales_de_blocker_vip_layer2_desc" + }, + { + "label": "vip_layer2_global_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L417", + "community": 1, + "norm_label": "vip_layer2_global_hint", + "id": "locales_de_blocker_vip_layer2_global_hint" + }, + { + "label": "vip_layer2_count", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L418", + "community": 1, + "norm_label": "vip_layer2_count", + "id": "locales_de_blocker_vip_layer2_count" + }, + { + "label": "vip_section_custom_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L419", + "community": 1, + "norm_label": "vip_section_custom_title", + "id": "locales_de_blocker_vip_section_custom_title" + }, + { + "label": "vip_section_curated_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L420", + "community": 1, + "norm_label": "vip_section_curated_title", + "id": "locales_de_blocker_vip_section_curated_title" + }, + { + "label": "vip_section_custom_count", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L421", + "community": 1, + "norm_label": "vip_section_custom_count", + "id": "locales_de_blocker_vip_section_custom_count" + }, + { + "label": "vip_section_curated_count", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L422", + "community": 1, + "norm_label": "vip_section_curated_count", + "id": "locales_de_blocker_vip_section_curated_count" + }, + { + "label": "remove_domain_sheet_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L423", + "community": 1, + "norm_label": "remove_domain_sheet_heading", + "id": "locales_de_blocker_remove_domain_sheet_heading" + }, + { + "label": "remove_domain_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L424", + "community": 1, + "norm_label": "remove_domain_title", + "id": "locales_de_blocker_remove_domain_title" + }, + { + "label": "remove_domain_intro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L425", + "community": 1, + "norm_label": "remove_domain_intro", + "id": "locales_de_blocker_remove_domain_intro" + }, + { + "label": "remove_domain_bullet1_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L426", + "community": 1, + "norm_label": "remove_domain_bullet1_title", + "id": "locales_de_blocker_remove_domain_bullet1_title" + }, + { + "label": "remove_domain_bullet1_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L427", + "community": 1, + "norm_label": "remove_domain_bullet1_text", + "id": "locales_de_blocker_remove_domain_bullet1_text" + }, + { + "label": "remove_domain_bullet2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L428", + "community": 1, + "norm_label": "remove_domain_bullet2_title", + "id": "locales_de_blocker_remove_domain_bullet2_title" + }, + { + "label": "remove_domain_bullet2_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L429", + "community": 1, + "norm_label": "remove_domain_bullet2_text", + "id": "locales_de_blocker_remove_domain_bullet2_text" + }, + { + "label": "remove_domain_keep_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L430", + "community": 1, + "norm_label": "remove_domain_keep_cta", + "id": "locales_de_blocker_remove_domain_keep_cta" + }, + { + "label": "remove_domain_remove_anyway", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L431", + "community": 1, + "norm_label": "remove_domain_remove_anyway", + "id": "locales_de_blocker_remove_domain_remove_anyway" + }, + { + "label": "remove_domain_removing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L432", + "community": 1, + "norm_label": "remove_domain_removing", + "id": "locales_de_blocker_remove_domain_removing" + }, + { + "label": "remove_domain_failed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L433", + "community": 1, + "norm_label": "remove_domain_failed", + "id": "locales_de_blocker_remove_domain_failed" + }, + { + "label": "remove_domain_actionsheet_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L434", + "community": 1, + "norm_label": "remove_domain_actionsheet_title", + "id": "locales_de_blocker_remove_domain_actionsheet_title" + }, + { + "label": "remove_domain_actionsheet_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L435", + "community": 1, + "norm_label": "remove_domain_actionsheet_message", + "id": "locales_de_blocker_remove_domain_actionsheet_message" + }, + { + "label": "remove_domain_confirm_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L436", + "community": 1, + "norm_label": "remove_domain_confirm_cta", + "id": "locales_de_blocker_remove_domain_confirm_cta" + }, + { + "label": "vip_swap_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L437", + "community": 1, + "norm_label": "vip_swap_title", + "id": "locales_de_blocker_vip_swap_title" + }, + { + "label": "vip_swap_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L438", + "community": 1, + "norm_label": "vip_swap_desc", + "id": "locales_de_blocker_vip_swap_desc" + }, + { + "label": "vip_swap_pick", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L439", + "community": 1, + "norm_label": "vip_swap_pick", + "id": "locales_de_blocker_vip_swap_pick" + }, + { + "label": "vip_swap_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L440", + "community": 1, + "norm_label": "vip_swap_cta", + "id": "locales_de_blocker_vip_swap_cta" + }, + { + "label": "vip_swap_no_candidates", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L441", + "community": 1, + "norm_label": "vip_swap_no_candidates", + "id": "locales_de_blocker_vip_swap_no_candidates" + }, + { + "label": "vip_swap_error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L442", + "community": 1, + "norm_label": "vip_swap_error", + "id": "locales_de_blocker_vip_swap_error" + }, + { + "label": "vip_evict_badge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L443", + "community": 1, + "norm_label": "vip_evict_badge", + "id": "locales_de_blocker_vip_evict_badge" + }, + { + "label": "suggest_curated_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L444", + "community": 1, + "norm_label": "suggest_curated_link", + "id": "locales_de_blocker_suggest_curated_link" + }, + { + "label": "suggest_curated_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L445", + "community": 1, + "norm_label": "suggest_curated_title", + "id": "locales_de_blocker_suggest_curated_title" + }, + { + "label": "suggest_curated_explanation", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L446", + "community": 1, + "norm_label": "suggest_curated_explanation", + "id": "locales_de_blocker_suggest_curated_explanation" + }, + { + "label": "suggest_curated_input_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L447", + "community": 1, + "norm_label": "suggest_curated_input_label", + "id": "locales_de_blocker_suggest_curated_input_label" + }, + { + "label": "suggest_curated_input_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L448", + "community": 1, + "norm_label": "suggest_curated_input_placeholder", + "id": "locales_de_blocker_suggest_curated_input_placeholder" + }, + { + "label": "suggest_curated_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L449", + "community": 1, + "norm_label": "suggest_curated_cta", + "id": "locales_de_blocker_suggest_curated_cta" + }, + { + "label": "suggest_curated_success_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L450", + "community": 1, + "norm_label": "suggest_curated_success_title", + "id": "locales_de_blocker_suggest_curated_success_title" + }, + { + "label": "suggest_curated_success_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L451", + "community": 1, + "norm_label": "suggest_curated_success_body", + "id": "locales_de_blocker_suggest_curated_success_body" + }, + { + "label": "suggest_curated_error_invalid_domain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L452", + "community": 1, + "norm_label": "suggest_curated_error_invalid_domain", + "id": "locales_de_blocker_suggest_curated_error_invalid_domain" + }, + { + "label": "suggest_curated_error_already_suggested", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L453", + "community": 1, + "norm_label": "suggest_curated_error_already_suggested", + "id": "locales_de_blocker_suggest_curated_error_already_suggested" + }, + { + "label": "suggest_curated_error_already_approved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L454", + "community": 1, + "norm_label": "suggest_curated_error_already_approved", + "id": "locales_de_blocker_suggest_curated_error_already_approved" + }, + { + "label": "suggest_curated_error_already_rejected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L455", + "community": 1, + "norm_label": "suggest_curated_error_already_rejected", + "id": "locales_de_blocker_suggest_curated_error_already_rejected" + }, + { + "label": "suggest_curated_error_generic", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L456", + "community": 1, + "norm_label": "suggest_curated_error_generic", + "id": "locales_de_blocker_suggest_curated_error_generic" + }, + { + "label": "protection_subtitle_mdm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L457", + "community": 1, + "norm_label": "protection_subtitle_mdm", + "id": "locales_de_blocker_protection_subtitle_mdm" + }, + { + "label": "protection_stat_method_nefilter", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L458", + "community": 1, + "norm_label": "protection_stat_method_nefilter", + "id": "locales_de_blocker_protection_stat_method_nefilter" + }, + { + "label": "protection_stat_method_mdm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L459", + "community": 1, + "norm_label": "protection_stat_method_mdm", + "id": "locales_de_blocker_protection_stat_method_mdm" + }, + { + "label": "mdm_info_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L460", + "community": 1, + "norm_label": "mdm_info_hint", + "id": "locales_de_blocker_mdm_info_hint" + }, + { + "label": "mdm_deactivate_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L461", + "community": 1, + "norm_label": "mdm_deactivate_title", + "id": "locales_de_blocker_mdm_deactivate_title" + }, + { + "label": "mdm_deactivate_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L462", + "community": 1, + "norm_label": "mdm_deactivate_body", + "id": "locales_de_blocker_mdm_deactivate_body" + }, + { + "label": "setup_progress_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L463", + "community": 1, + "norm_label": "setup_progress_label", + "id": "locales_de_blocker_setup_progress_label" + }, + { + "label": "setup_step1_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L464", + "community": 1, + "norm_label": "setup_step1_title", + "id": "locales_de_blocker_setup_step1_title" + }, + { + "label": "setup_step1_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L465", + "community": 1, + "norm_label": "setup_step1_subtitle_pending", + "id": "locales_de_blocker_setup_step1_subtitle_pending" + }, + { + "label": "setup_step1_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L466", + "community": 1, + "norm_label": "setup_step1_subtitle_done", + "id": "locales_de_blocker_setup_step1_subtitle_done" + }, + { + "label": "setup_step1_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L467", + "community": 1, + "norm_label": "setup_step1_cta", + "id": "locales_de_blocker_setup_step1_cta" + }, + { + "label": "setup_step2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L468", + "community": 1, + "norm_label": "setup_step2_title", + "id": "locales_de_blocker_setup_step2_title" + }, + { + "label": "setup_step2_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L469", + "community": 1, + "norm_label": "setup_step2_subtitle_pending", + "id": "locales_de_blocker_setup_step2_subtitle_pending" + }, + { + "label": "setup_step2_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L470", + "community": 1, + "norm_label": "setup_step2_subtitle_done", + "id": "locales_de_blocker_setup_step2_subtitle_done" + }, + { + "label": "setup_step3_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L471", + "community": 1, + "norm_label": "setup_step3_title", + "id": "locales_de_blocker_setup_step3_title" + }, + { + "label": "setup_step3_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L472", + "community": 1, + "norm_label": "setup_step3_subtitle_pending", + "id": "locales_de_blocker_setup_step3_subtitle_pending" + }, + { + "label": "setup_step3_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L473", + "community": 1, + "norm_label": "setup_step3_subtitle_done", + "id": "locales_de_blocker_setup_step3_subtitle_done" + }, + { + "label": "setup_step3_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L474", + "community": 1, + "norm_label": "setup_step3_cta", + "id": "locales_de_blocker_setup_step3_cta" + }, + { + "label": "setup_step3_warning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L475", + "community": 1, + "norm_label": "setup_step3_warning", + "id": "locales_de_blocker_setup_step3_warning" + }, + { + "label": "setup_complete_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L476", + "community": 1, + "norm_label": "setup_complete_title", + "id": "locales_de_blocker_setup_complete_title" + }, + { + "label": "setup_complete_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L477", + "community": 1, + "norm_label": "setup_complete_subtitle", + "id": "locales_de_blocker_setup_complete_subtitle" + }, + { + "label": "setup_step_locked_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L478", + "community": 1, + "norm_label": "setup_step_locked_hint", + "id": "locales_de_blocker_setup_step_locked_hint" + }, + { + "label": "android_step1_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L479", + "community": 1, + "norm_label": "android_step1_title", + "id": "locales_de_blocker_android_step1_title" + }, + { + "label": "android_step1_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L480", + "community": 1, + "norm_label": "android_step1_subtitle_pending", + "id": "locales_de_blocker_android_step1_subtitle_pending" + }, + { + "label": "android_step1_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L481", + "community": 1, + "norm_label": "android_step1_subtitle_done", + "id": "locales_de_blocker_android_step1_subtitle_done" + }, + { + "label": "android_step1_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L482", + "community": 1, + "norm_label": "android_step1_cta", + "id": "locales_de_blocker_android_step1_cta" + }, + { + "label": "activating", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L483", + "community": 1, + "norm_label": "activating", + "id": "locales_de_blocker_activating" + }, + { + "label": "android_step2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L484", + "community": 1, + "norm_label": "android_step2_title", + "id": "locales_de_blocker_android_step2_title" + }, + { + "label": "android_step2_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L485", + "community": 1, + "norm_label": "android_step2_subtitle_pending", + "id": "locales_de_blocker_android_step2_subtitle_pending" + }, + { + "label": "android_step2_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L486", + "community": 1, + "norm_label": "android_step2_subtitle_done", + "id": "locales_de_blocker_android_step2_subtitle_done" + }, + { + "label": "android_step2_instruction1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L487", + "community": 1, + "norm_label": "android_step2_instruction1", + "id": "locales_de_blocker_android_step2_instruction1" + }, + { + "label": "android_step2_instruction2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L488", + "community": 1, + "norm_label": "android_step2_instruction2", + "id": "locales_de_blocker_android_step2_instruction2" + }, + { + "label": "android_step2_instruction3", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L489", + "community": 1, + "norm_label": "android_step2_instruction3", + "id": "locales_de_blocker_android_step2_instruction3" + }, + { + "label": "android_step2_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L490", + "community": 1, + "norm_label": "android_step2_cta", + "id": "locales_de_blocker_android_step2_cta" + }, + { + "label": "android_step2_note", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L491", + "community": 1, + "norm_label": "android_step2_note", + "id": "locales_de_blocker_android_step2_note" + }, + { + "label": "android_battery_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L492", + "community": 1, + "norm_label": "android_battery_title", + "id": "locales_de_blocker_android_battery_title" + }, + { + "label": "android_battery_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L493", + "community": 1, + "norm_label": "android_battery_subtitle_pending", + "id": "locales_de_blocker_android_battery_subtitle_pending" + }, + { + "label": "android_battery_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L494", + "community": 1, + "norm_label": "android_battery_subtitle_done", + "id": "locales_de_blocker_android_battery_subtitle_done" + }, + { + "label": "android_battery_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L495", + "community": 1, + "norm_label": "android_battery_body", + "id": "locales_de_blocker_android_battery_body" + }, + { + "label": "android_battery_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L496", + "community": 1, + "norm_label": "android_battery_cta", + "id": "locales_de_blocker_android_battery_cta" + }, + { + "label": "android_battery_samsung_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L497", + "community": 1, + "norm_label": "android_battery_samsung_hint", + "id": "locales_de_blocker_android_battery_samsung_hint" + }, + { + "label": "android_step3_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L498", + "community": 1, + "norm_label": "android_step3_title", + "id": "locales_de_blocker_android_step3_title" + }, + { + "label": "android_step3_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L499", + "community": 1, + "norm_label": "android_step3_subtitle_pending", + "id": "locales_de_blocker_android_step3_subtitle_pending" + }, + { + "label": "android_step3_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L500", + "community": 1, + "norm_label": "android_step3_subtitle_done", + "id": "locales_de_blocker_android_step3_subtitle_done" + }, + { + "label": "android_step3_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L501", + "community": 1, + "norm_label": "android_step3_cta", + "id": "locales_de_blocker_android_step3_cta" + }, + { + "label": "android_step3_warning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L502", + "community": 1, + "norm_label": "android_step3_warning", + "id": "locales_de_blocker_android_step3_warning" + }, + { + "label": "android_admin_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L503", + "community": 1, + "norm_label": "android_admin_failed_title", + "id": "locales_de_blocker_android_admin_failed_title" + }, + { + "label": "android_admin_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L504", + "community": 1, + "norm_label": "android_admin_failed_msg", + "id": "locales_de_blocker_android_admin_failed_msg" + }, + { + "label": "onboarding", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L506", + "community": 413, + "norm_label": "onboarding", + "id": "locales_de_onboarding" + }, + { + "label": "lyra", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L507", + "community": 413, + "norm_label": "lyra", + "id": "locales_de_onboarding_lyra" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L508", + "community": 413, + "norm_label": "welcome", + "id": "locales_de_lyra_welcome" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L509", + "community": 413, + "norm_label": "body", + "id": "locales_de_welcome_body" + }, + { + "label": "privacy", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L511", + "community": 413, + "norm_label": "privacy", + "id": "locales_de_lyra_privacy" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L512", + "community": 413, + "norm_label": "body", + "id": "locales_de_privacy_body" + }, + { + "label": "nickname", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L514", + "community": 413, + "norm_label": "nickname", + "id": "locales_de_lyra_nickname" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L515", + "community": 413, + "norm_label": "body", + "id": "locales_de_nickname_body" + }, + { + "label": "diga_choice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L517", + "community": 413, + "norm_label": "diga_choice", + "id": "locales_de_lyra_diga_choice" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L518", + "community": 413, + "norm_label": "body", + "id": "locales_de_diga_choice_body" + }, + { + "label": "diga_code", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L520", + "community": 413, + "norm_label": "diga_code", + "id": "locales_de_lyra_diga_code" + }, + { + "label": "en.json", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L1", + "community": 35, + "norm_label": "en.json", + "id": "apps_rebreak_native_locales_en_json" + }, + { + "label": "common", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L2", + "community": 442, + "norm_label": "common", + "id": "locales_en_common" + }, + { + "label": "loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L3", + "community": 442, + "norm_label": "loading", + "id": "locales_en_common_loading" + }, + { + "label": "cancel", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L4", + "community": 442, + "norm_label": "cancel", + "id": "locales_en_common_cancel" + }, + { + "label": "continue", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L5", + "community": 442, + "norm_label": "continue", + "id": "locales_en_common_continue" + }, + { + "label": "back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L6", + "community": 442, + "norm_label": "back", + "id": "locales_en_common_back" + }, + { + "label": "error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L7", + "community": 442, + "norm_label": "error", + "id": "locales_en_common_error" + }, + { + "label": "success", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L8", + "community": 442, + "norm_label": "success", + "id": "locales_en_common_success" + }, + { + "label": "ok", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L9", + "community": 442, + "norm_label": "ok", + "id": "locales_en_common_ok" + }, + { + "label": "confirm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L10", + "community": 442, + "norm_label": "confirm", + "id": "locales_en_common_confirm" + }, + { + "label": "retry", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L11", + "community": 442, + "norm_label": "retry", + "id": "locales_en_common_retry" + }, + { + "label": "unknown_error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L12", + "community": 442, + "norm_label": "unknown_error", + "id": "locales_en_common_unknown_error" + }, + { + "label": "auth", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L14", + "community": 19, + "norm_label": "auth", + "id": "locales_en_auth" + }, + { + "label": "welcomeBack", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L15", + "community": 19, + "norm_label": "welcomeback", + "id": "locales_en_auth_welcomeback" + }, + { + "label": "signinSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L16", + "community": 19, + "norm_label": "signinsubtitle", + "id": "locales_en_auth_signinsubtitle" + }, + { + "label": "signin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L17", + "community": 19, + "norm_label": "signin", + "id": "locales_en_auth_signin" + }, + { + "label": "signingIn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L18", + "community": 19, + "norm_label": "signingin", + "id": "locales_en_auth_signingin" + }, + { + "label": "signup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L19", + "community": 19, + "norm_label": "signup", + "id": "locales_en_auth_signup" + }, + { + "label": "signupTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L20", + "community": 19, + "norm_label": "signuptitle", + "id": "locales_en_auth_signuptitle" + }, + { + "label": "signupSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L21", + "community": 19, + "norm_label": "signupsubtitle", + "id": "locales_en_auth_signupsubtitle" + }, + { + "label": "signOut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L22", + "community": 35, + "norm_label": "signout", + "id": "locales_en_auth_signout" + }, + { + "label": "email", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L23", + "community": 19, + "norm_label": "email", + "id": "locales_en_auth_email" + }, + { + "label": "emailPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L24", + "community": 19, + "norm_label": "emailplaceholder", + "id": "locales_en_auth_emailplaceholder" + }, + { + "label": "emailRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L25", + "community": 19, + "norm_label": "emailrequired", + "id": "locales_en_auth_emailrequired" + }, + { + "label": "password", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L26", + "community": 19, + "norm_label": "password", + "id": "locales_en_auth_password" + }, + { + "label": "passwordPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L27", + "community": 19, + "norm_label": "passwordplaceholder", + "id": "locales_en_auth_passwordplaceholder" + }, + { + "label": "passwordRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L28", + "community": 19, + "norm_label": "passwordrequired", + "id": "locales_en_auth_passwordrequired" + }, + { + "label": "passwordMin8", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L29", + "community": 19, + "norm_label": "passwordmin8", + "id": "locales_en_auth_passwordmin8" + }, + { + "label": "newPassword", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L30", + "community": 19, + "norm_label": "newpassword", + "id": "locales_en_auth_newpassword" + }, + { + "label": "nickname", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L31", + "community": 45, + "norm_label": "nickname", + "id": "locales_en_auth_nickname" + }, + { + "label": "nicknamePlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L32", + "community": 19, + "norm_label": "nicknameplaceholder", + "id": "locales_en_auth_nicknameplaceholder" + }, + { + "label": "noAccount", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L33", + "community": 19, + "norm_label": "noaccount", + "id": "locales_en_auth_noaccount" + }, + { + "label": "alreadyRegistered", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L34", + "community": 19, + "norm_label": "alreadyregistered", + "id": "locales_en_auth_alreadyregistered" + }, + { + "label": "fillRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L35", + "community": 19, + "norm_label": "fillrequired", + "id": "locales_en_auth_fillrequired" + }, + { + "label": "googleSignin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L36", + "community": 19, + "norm_label": "googlesignin", + "id": "locales_en_auth_googlesignin" + }, + { + "label": "appleSignin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L37", + "community": 19, + "norm_label": "applesignin", + "id": "locales_en_auth_applesignin" + }, + { + "label": "googleSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L38", + "community": 19, + "norm_label": "googlesignup", + "id": "locales_en_auth_googlesignup" + }, + { + "label": "appleSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L39", + "community": 19, + "norm_label": "applesignup", + "id": "locales_en_auth_applesignup" + }, + { + "label": "orWithEmail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L40", + "community": 19, + "norm_label": "orwithemail", + "id": "locales_en_auth_orwithemail" + }, + { + "label": "forgotPassword", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L41", + "community": 19, + "norm_label": "forgotpassword", + "id": "locales_en_auth_forgotpassword" + }, + { + "label": "resetPasswordTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L42", + "community": 19, + "norm_label": "resetpasswordtitle", + "id": "locales_en_auth_resetpasswordtitle" + }, + { + "label": "resetPasswordSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L43", + "community": 19, + "norm_label": "resetpasswordsubtitle", + "id": "locales_en_auth_resetpasswordsubtitle" + }, + { + "label": "resetPasswordSend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L44", + "community": 19, + "norm_label": "resetpasswordsend", + "id": "locales_en_auth_resetpasswordsend" + }, + { + "label": "resetPasswordSent", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L45", + "community": 19, + "norm_label": "resetpasswordsent", + "id": "locales_en_auth_resetpasswordsent" + }, + { + "label": "resetPasswordSentDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L46", + "community": 19, + "norm_label": "resetpasswordsentdesc", + "id": "locales_en_auth_resetpasswordsentdesc" + }, + { + "label": "resetPasswordSentDescPrefix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L47", + "community": 19, + "norm_label": "resetpasswordsentdescprefix", + "id": "locales_en_auth_resetpasswordsentdescprefix" + }, + { + "label": "resetPasswordSentDescSuffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L48", + "community": 19, + "norm_label": "resetpasswordsentdescsuffix", + "id": "locales_en_auth_resetpasswordsentdescsuffix" + }, + { + "label": "backToLogin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L49", + "community": 19, + "norm_label": "backtologin", + "id": "locales_en_auth_backtologin" + }, + { + "label": "backToLoginPlain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L50", + "community": 19, + "norm_label": "backtologinplain", + "id": "locales_en_auth_backtologinplain" + }, + { + "label": "backToSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L51", + "community": 19, + "norm_label": "backtosignup", + "id": "locales_en_auth_backtosignup" + }, + { + "label": "chooseAvatar", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L52", + "community": 19, + "norm_label": "chooseavatar", + "id": "locales_en_auth_chooseavatar" + }, + { + "label": "privacyNotice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L53", + "community": 19, + "norm_label": "privacynotice", + "id": "locales_en_auth_privacynotice" + }, + { + "label": "acceptTerms", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L54", + "community": 19, + "norm_label": "acceptterms", + "id": "locales_en_auth_acceptterms" + }, + { + "label": "acceptTermsSuffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L55", + "community": 19, + "norm_label": "accepttermssuffix", + "id": "locales_en_auth_accepttermssuffix" + }, + { + "label": "termsLink", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L56", + "community": 19, + "norm_label": "termslink", + "id": "locales_en_auth_termslink" + }, + { + "label": "pleaseAcceptTerms", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L57", + "community": 19, + "norm_label": "pleaseacceptterms", + "id": "locales_en_auth_pleaseacceptterms" + }, + { + "label": "confirmEmailTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L58", + "community": 19, + "norm_label": "confirmemailtitle", + "id": "locales_en_auth_confirmemailtitle" + }, + { + "label": "confirmEmailDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L59", + "community": 19, + "norm_label": "confirmemaildesc", + "id": "locales_en_auth_confirmemaildesc" + }, + { + "label": "confirmEmailLine1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L60", + "community": 19, + "norm_label": "confirmemailline1", + "id": "locales_en_auth_confirmemailline1" + }, + { + "label": "confirmEmailLine2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L61", + "community": 19, + "norm_label": "confirmemailline2", + "id": "locales_en_auth_confirmemailline2" + }, + { + "label": "confirmBtn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L62", + "community": 19, + "norm_label": "confirmbtn", + "id": "locales_en_auth_confirmbtn" + }, + { + "label": "confirmed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L63", + "community": 19, + "norm_label": "confirmed", + "id": "locales_en_auth_confirmed" + }, + { + "label": "confirming", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L64", + "community": 19, + "norm_label": "confirming", + "id": "locales_en_auth_confirming" + }, + { + "label": "confirmSuccess", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L65", + "community": 19, + "norm_label": "confirmsuccess", + "id": "locales_en_auth_confirmsuccess" + }, + { + "label": "confirmTimeout", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L66", + "community": 19, + "norm_label": "confirmtimeout", + "id": "locales_en_auth_confirmtimeout" + }, + { + "label": "confirmFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L67", + "community": 19, + "norm_label": "confirmfailed", + "id": "locales_en_auth_confirmfailed" + }, + { + "label": "resend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L68", + "community": 19, + "norm_label": "resend", + "id": "locales_en_auth_resend" + }, + { + "label": "resendCooldown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L69", + "community": 19, + "norm_label": "resendcooldown", + "id": "locales_en_auth_resendcooldown" + }, + { + "label": "noCode", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L70", + "community": 19, + "norm_label": "nocode", + "id": "locales_en_auth_nocode" + }, + { + "label": "deviceLimitTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L71", + "community": 19, + "norm_label": "devicelimittitle", + "id": "locales_en_auth_devicelimittitle" + }, + { + "label": "deviceLimitDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L72", + "community": 19, + "norm_label": "devicelimitdesc", + "id": "locales_en_auth_devicelimitdesc" + }, + { + "label": "deviceLimitUpgrade", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L73", + "community": 19, + "norm_label": "devicelimitupgrade", + "id": "locales_en_auth_devicelimitupgrade" + }, + { + "label": "toLogin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L74", + "community": 19, + "norm_label": "tologin", + "id": "locales_en_auth_tologin" + }, + { + "label": "oauthFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L75", + "community": 19, + "norm_label": "oauthfailed", + "id": "locales_en_auth_oauthfailed" + }, + { + "label": "loginFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L76", + "community": 19, + "norm_label": "loginfailed", + "id": "locales_en_auth_loginfailed" + }, + { + "label": "registerFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L77", + "community": 19, + "norm_label": "registerfailed", + "id": "locales_en_auth_registerfailed" + }, + { + "label": "device_locked_headline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L78", + "community": 19, + "norm_label": "device_locked_headline", + "id": "locales_en_auth_device_locked_headline" + }, + { + "label": "device_locked_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L79", + "community": 19, + "norm_label": "device_locked_body", + "id": "locales_en_auth_device_locked_body" + }, + { + "label": "device_locked_countdown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L80", + "community": 19, + "norm_label": "device_locked_countdown", + "id": "locales_en_auth_device_locked_countdown" + }, + { + "label": "device_locked_email_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L81", + "community": 19, + "norm_label": "device_locked_email_hint", + "id": "locales_en_auth_device_locked_email_hint" + }, + { + "label": "device_locked_use_original", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L82", + "community": 19, + "norm_label": "device_locked_use_original", + "id": "locales_en_auth_device_locked_use_original" + }, + { + "label": "device_locked_back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L83", + "community": 19, + "norm_label": "device_locked_back", + "id": "locales_en_auth_device_locked_back" + }, + { + "label": "resetOtpTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L84", + "community": 19, + "norm_label": "resetotptitle", + "id": "locales_en_auth_resetotptitle" + }, + { + "label": "resetOtpLine1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L85", + "community": 19, + "norm_label": "resetotpline1", + "id": "locales_en_auth_resetotpline1" + }, + { + "label": "resetOtpLine2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L86", + "community": 19, + "norm_label": "resetotpline2", + "id": "locales_en_auth_resetotpline2" + }, + { + "label": "resetOtpConfirmBtn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L87", + "community": 19, + "norm_label": "resetotpconfirmbtn", + "id": "locales_en_auth_resetotpconfirmbtn" + }, + { + "label": "resetOtpResend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L88", + "community": 19, + "norm_label": "resetotpresend", + "id": "locales_en_auth_resetotpresend" + }, + { + "label": "resetOtpBackToForgot", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L89", + "community": 19, + "norm_label": "resetotpbacktoforgot", + "id": "locales_en_auth_resetotpbacktoforgot" + }, + { + "label": "newPasswordTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L90", + "community": 19, + "norm_label": "newpasswordtitle", + "id": "locales_en_auth_newpasswordtitle" + }, + { + "label": "newPasswordSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L91", + "community": 19, + "norm_label": "newpasswordsubtitle", + "id": "locales_en_auth_newpasswordsubtitle" + }, + { + "label": "newPasswordPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L92", + "community": 19, + "norm_label": "newpasswordplaceholder", + "id": "locales_en_auth_newpasswordplaceholder" + }, + { + "label": "newPasswordConfirmPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L93", + "community": 19, + "norm_label": "newpasswordconfirmplaceholder", + "id": "locales_en_auth_newpasswordconfirmplaceholder" + }, + { + "label": "newPasswordSave", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L94", + "community": 19, + "norm_label": "newpasswordsave", + "id": "locales_en_auth_newpasswordsave" + }, + { + "label": "newPasswordSaved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L95", + "community": 19, + "norm_label": "newpasswordsaved", + "id": "locales_en_auth_newpasswordsaved" + }, + { + "label": "newPasswordMismatch", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L96", + "community": 19, + "norm_label": "newpasswordmismatch", + "id": "locales_en_auth_newpasswordmismatch" + }, + { + "label": "newPasswordCancelLink", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L97", + "community": 19, + "norm_label": "newpasswordcancellink", + "id": "locales_en_auth_newpasswordcancellink" + }, + { + "label": "landing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L99", + "community": 35, + "norm_label": "landing", + "id": "apps_rebreak_native_locales_en_json_locales_en_landing" + }, + { + "label": "appName", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L100", + "community": 35, + "norm_label": "appname", + "id": "locales_en_landing_appname" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L101", + "community": 35, + "norm_label": "tagline", + "id": "locales_en_landing_tagline" + }, + { + "label": "start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L102", + "community": 35, + "norm_label": "start", + "id": "locales_en_landing_start" + }, + { + "label": "splash", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L104", + "community": 35, + "norm_label": "splash", + "id": "locales_en_splash" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L105", + "community": 35, + "norm_label": "tagline", + "id": "locales_en_splash_tagline" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L106", + "community": 35, + "norm_label": "subtitle", + "id": "locales_en_splash_subtitle" + }, + { + "label": "madeInGermany", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L107", + "community": 35, + "norm_label": "madeingermany", + "id": "locales_en_splash_madeingermany" + }, + { + "label": "applock", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L109", + "community": 35, + "norm_label": "applock", + "id": "locales_en_applock" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L110", + "community": 35, + "norm_label": "title", + "id": "locales_en_applock_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L111", + "community": 35, + "norm_label": "subtitle", + "id": "locales_en_applock_subtitle" + }, + { + "label": "unlock", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L112", + "community": 35, + "norm_label": "unlock", + "id": "locales_en_applock_unlock" + }, + { + "label": "prompt", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L113", + "community": 35, + "norm_label": "prompt", + "id": "locales_en_applock_prompt" + }, + { + "label": "signOut_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L114", + "community": 35, + "norm_label": "signout_title", + "id": "locales_en_applock_signout_title" + }, + { + "label": "signOut_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L115", + "community": 35, + "norm_label": "signout_body", + "id": "locales_en_applock_signout_body" + }, + { + "label": "appHeader", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L117", + "community": 35, + "norm_label": "appheader", + "id": "locales_en_appheader" + }, + { + "label": "appName", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L118", + "community": 35, + "norm_label": "appname", + "id": "locales_en_appheader_appname" + }, + { + "label": "sosLabel", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L119", + "community": 35, + "norm_label": "soslabel", + "id": "locales_en_appheader_soslabel" + }, + { + "label": "sosTagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L120", + "community": 35, + "norm_label": "sostagline", + "id": "locales_en_appheader_sostagline" + }, + { + "label": "sosSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L121", + "community": 35, + "norm_label": "sossubtitle", + "id": "locales_en_appheader_sossubtitle" + }, + { + "label": "editProfile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L122", + "community": 35, + "norm_label": "editprofile", + "id": "locales_en_appheader_editprofile" + }, + { + "label": "settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L123", + "community": 35, + "norm_label": "settings", + "id": "locales_en_appheader_settings" + }, + { + "label": "signOut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L124", + "community": 35, + "norm_label": "signout", + "id": "locales_en_appheader_signout" + }, + { + "label": "headerMenu", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L126", + "community": 35, + "norm_label": "headermenu", + "id": "locales_en_headermenu" + }, + { + "label": "profile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L127", + "community": 35, + "norm_label": "profile", + "id": "locales_en_headermenu_profile" + }, + { + "label": "settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L128", + "community": 35, + "norm_label": "settings", + "id": "locales_en_headermenu_settings" + }, + { + "label": "games", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L129", + "community": 35, + "norm_label": "games", + "id": "locales_en_headermenu_games" + }, + { + "label": "debug", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L130", + "community": 35, + "norm_label": "debug", + "id": "locales_en_headermenu_debug" + }, + { + "label": "logout", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L131", + "community": 35, + "norm_label": "logout", + "id": "locales_en_headermenu_logout" + }, + { + "label": "tabs", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L133", + "community": 294, + "norm_label": "tabs", + "id": "locales_en_tabs" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L134", + "community": 294, + "norm_label": "home", + "id": "locales_en_tabs_home" + }, + { + "label": "chat", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L135", + "community": 294, + "norm_label": "chat", + "id": "locales_en_tabs_chat" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L136", + "community": 294, + "norm_label": "coach", + "id": "locales_en_tabs_coach" + }, + { + "label": "blocker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L137", + "community": 294, + "norm_label": "blocker", + "id": "locales_en_tabs_blocker" + }, + { + "label": "mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L138", + "community": 294, + "norm_label": "mail", + "id": "locales_en_tabs_mail" + }, + { + "label": "profile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L139", + "community": 294, + "norm_label": "profile", + "id": "locales_en_tabs_profile" + }, + { + "label": "games", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L141", + "community": 35, + "norm_label": "games", + "id": "locales_en_games" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L142", + "community": 35, + "norm_label": "title", + "id": "locales_en_games_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L143", + "community": 35, + "norm_label": "subtitle", + "id": "locales_en_games_subtitle" + }, + { + "label": "back_to_picker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L144", + "community": 35, + "norm_label": "back_to_picker", + "id": "locales_en_games_back_to_picker" + }, + { + "label": "last_score", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L145", + "community": 35, + "norm_label": "last_score", + "id": "locales_en_games_last_score" + }, + { + "label": "skeleton_footer", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L146", + "community": 35, + "norm_label": "skeleton_footer", + "id": "locales_en_games_skeleton_footer" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L148", + "community": 294, + "norm_label": "home", + "id": "locales_en_home" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L149", + "community": 35, + "norm_label": "tagline", + "id": "locales_en_home_tagline" + }, + { + "label": "start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L150", + "community": 294, + "norm_label": "start", + "id": "locales_en_home_start" + }, + { + "label": "greeting_morning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L151", + "community": 294, + "norm_label": "greeting_morning", + "id": "locales_en_home_greeting_morning" + }, + { + "label": "greeting_day", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L152", + "community": 294, + "norm_label": "greeting_day", + "id": "locales_en_home_greeting_day" + }, + { + "label": "greeting_evening", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L153", + "community": 294, + "norm_label": "greeting_evening", + "id": "locales_en_home_greeting_evening" + }, + { + "label": "streak_days_one", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L154", + "community": 294, + "norm_label": "streak_days_one", + "id": "locales_en_home_streak_days_one" + }, + { + "label": "streak_days_other", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L155", + "community": 294, + "norm_label": "streak_days_other", + "id": "locales_en_home_streak_days_other" + }, + { + "label": "streak_start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L156", + "community": 294, + "norm_label": "streak_start", + "id": "locales_en_home_streak_start" + }, + { + "label": "quote_of_day", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L157", + "community": 294, + "norm_label": "quote_of_day", + "id": "locales_en_home_quote_of_day" + }, + { + "label": "quick_access", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L158", + "community": 294, + "norm_label": "quick_access", + "id": "locales_en_home_quick_access" + }, + { + "label": "stats_urges", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L159", + "community": 294, + "norm_label": "stats_urges", + "id": "locales_en_home_stats_urges" + }, + { + "label": "stats_chats", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L160", + "community": 294, + "norm_label": "stats_chats", + "id": "locales_en_home_stats_chats" + }, + { + "label": "stats_mails", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L161", + "community": 294, + "norm_label": "stats_mails", + "id": "locales_en_home_stats_mails" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L163", + "community": 45, + "norm_label": "coach", + "id": "locales_en_coach" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L164", + "community": 45, + "norm_label": "title", + "id": "locales_en_coach_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L165", + "community": 45, + "norm_label": "subtitle", + "id": "locales_en_coach_subtitle" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L166", + "community": 45, + "norm_label": "welcome", + "id": "locales_en_coach_welcome" + }, + { + "label": "input_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L167", + "community": 45, + "norm_label": "input_placeholder", + "id": "locales_en_coach_input_placeholder" + }, + { + "label": "new_chat", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L168", + "community": 45, + "norm_label": "new_chat", + "id": "locales_en_coach_new_chat" + }, + { + "label": "lyra", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L169", + "community": 45, + "norm_label": "lyra", + "id": "locales_en_coach_lyra" + }, + { + "label": "modeBadge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L170", + "community": 45, + "norm_label": "modebadge", + "id": "locales_en_coach_modebadge" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L171", + "community": 45, + "norm_label": "coach", + "id": "locales_en_modebadge_coach" + }, + { + "label": "sos", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L172", + "community": 45, + "norm_label": "sos", + "id": "locales_en_modebadge_sos" + }, + { + "label": "placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L174", + "community": 45, + "norm_label": "placeholder", + "id": "locales_en_coach_placeholder" + }, + { + "label": "speaking", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L175", + "community": 45, + "norm_label": "speaking", + "id": "locales_en_coach_speaking" + }, + { + "label": "recording", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L176", + "community": 45, + "norm_label": "recording", + "id": "locales_en_coach_recording" + }, + { + "label": "transcribing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L177", + "community": 45, + "norm_label": "transcribing", + "id": "locales_en_coach_transcribing" + }, + { + "label": "feedback_saved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L178", + "community": 45, + "norm_label": "feedback_saved", + "id": "locales_en_coach_feedback_saved" + }, + { + "label": "welcome_back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L179", + "community": 45, + "norm_label": "welcome_back", + "id": "locales_en_coach_welcome_back" + }, + { + "label": "online", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L180", + "community": 45, + "norm_label": "online", + "id": "locales_en_coach_online" + }, + { + "label": "thinking", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L181", + "community": 45, + "norm_label": "thinking", + "id": "locales_en_coach_thinking" + }, + { + "label": "error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L182", + "community": 442, + "norm_label": "error", + "id": "locales_en_coach_error" + }, + { + "label": "crisis_bar_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L183", + "community": 45, + "norm_label": "crisis_bar_label", + "id": "locales_en_coach_crisis_bar_label" + }, + { + "label": "blocker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L185", + "community": 0, + "norm_label": "blocker", + "id": "locales_en_blocker" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L186", + "community": 0, + "norm_label": "title", + "id": "locales_en_blocker_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L187", + "community": 0, + "norm_label": "subtitle", + "id": "locales_en_blocker_subtitle" + }, + { + "label": "status_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L188", + "community": 0, + "norm_label": "status_active", + "id": "locales_en_blocker_status_active" + }, + { + "label": "status_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L189", + "community": 0, + "norm_label": "status_inactive", + "id": "locales_en_blocker_status_inactive" + }, + { + "label": "filter_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L190", + "community": 0, + "norm_label": "filter_label", + "id": "locales_en_blocker_filter_label" + }, + { + "label": "filter_active_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L191", + "community": 0, + "norm_label": "filter_active_desc", + "id": "locales_en_blocker_filter_active_desc" + }, + { + "label": "filter_inactive_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L192", + "community": 0, + "norm_label": "filter_inactive_desc", + "id": "locales_en_blocker_filter_inactive_desc" + }, + { + "label": "tamper_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L193", + "community": 0, + "norm_label": "tamper_title", + "id": "locales_en_blocker_tamper_title" + }, + { + "label": "tamper_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L194", + "community": 0, + "norm_label": "tamper_desc", + "id": "locales_en_blocker_tamper_desc" + }, + { + "label": "custom_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L195", + "community": 0, + "norm_label": "custom_domains", + "id": "locales_en_blocker_custom_domains" + }, + { + "label": "add_domain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L196", + "community": 0, + "norm_label": "add_domain", + "id": "locales_en_blocker_add_domain" + }, + { + "label": "help_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L197", + "community": 0, + "norm_label": "help_link", + "id": "locales_en_blocker_help_link" + }, + { + "label": "status_approved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L198", + "community": 0, + "norm_label": "status_approved", + "id": "locales_en_blocker_status_approved" + }, + { + "label": "status_rejected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L199", + "community": 0, + "norm_label": "status_rejected", + "id": "locales_en_blocker_status_rejected" + }, + { + "label": "status_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L200", + "community": 0, + "norm_label": "status_pending", + "id": "locales_en_blocker_status_pending" + }, + { + "label": "add_sheet_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L201", + "community": 0, + "norm_label": "add_sheet_title", + "id": "locales_en_blocker_add_sheet_title" + }, + { + "label": "add_sheet_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L202", + "community": 0, + "norm_label": "add_sheet_label", + "id": "locales_en_blocker_add_sheet_label" + }, + { + "label": "add_sheet_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L203", + "community": 0, + "norm_label": "add_sheet_placeholder", + "id": "locales_en_blocker_add_sheet_placeholder" + }, + { + "label": "add_sheet_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L204", + "community": 0, + "norm_label": "add_sheet_invalid", + "id": "locales_en_blocker_add_sheet_invalid" + }, + { + "label": "add_sheet_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L205", + "community": 0, + "norm_label": "add_sheet_help", + "id": "locales_en_blocker_add_sheet_help" + }, + { + "label": "preview_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L206", + "community": 0, + "norm_label": "preview_web", + "id": "locales_en_blocker_preview_web" + }, + { + "label": "preview_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L207", + "community": 0, + "norm_label": "preview_mail", + "id": "locales_en_blocker_preview_mail" + }, + { + "label": "preview_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L208", + "community": 0, + "norm_label": "preview_invalid", + "id": "locales_en_blocker_preview_invalid" + }, + { + "label": "custom_filter_overview_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L209", + "community": 0, + "norm_label": "custom_filter_overview_title", + "id": "locales_en_blocker_custom_filter_overview_title" + }, + { + "label": "custom_filter_overview_count", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L210", + "community": 0, + "norm_label": "custom_filter_overview_count", + "id": "locales_en_blocker_custom_filter_overview_count" + }, + { + "label": "add_sheet_warning_free", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L211", + "community": 0, + "norm_label": "add_sheet_warning_free", + "id": "locales_en_blocker_add_sheet_warning_free" + }, + { + "label": "add_sheet_warning_pro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L212", + "community": 0, + "norm_label": "add_sheet_warning_pro", + "id": "locales_en_blocker_add_sheet_warning_pro" + }, + { + "label": "add_sheet_confirm_permanent", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L213", + "community": 0, + "norm_label": "add_sheet_confirm_permanent", + "id": "locales_en_blocker_add_sheet_confirm_permanent" + }, + { + "label": "add_sheet_add_failed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L214", + "community": 0, + "norm_label": "add_sheet_add_failed", + "id": "locales_en_blocker_add_sheet_add_failed" + }, + { + "label": "add_sheet_already_global", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L215", + "community": 0, + "norm_label": "add_sheet_already_global", + "id": "locales_en_blocker_add_sheet_already_global" + }, + { + "label": "add_sheet_already_protected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L216", + "community": 0, + "norm_label": "add_sheet_already_protected", + "id": "locales_en_blocker_add_sheet_already_protected" + }, + { + "label": "add_sheet_in_global_not_vip", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L217", + "community": 0, + "norm_label": "add_sheet_in_global_not_vip", + "id": "locales_en_blocker_add_sheet_in_global_not_vip" + }, + { + "label": "add_sheet_add_to_vip_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L218", + "community": 0, + "norm_label": "add_sheet_add_to_vip_cta", + "id": "locales_en_blocker_add_sheet_add_to_vip_cta" + }, + { + "label": "cooldown_banner_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L219", + "community": 0, + "norm_label": "cooldown_banner_title", + "id": "locales_en_blocker_cooldown_banner_title" + }, + { + "label": "deactivation_actionsheet_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L220", + "community": 0, + "norm_label": "deactivation_actionsheet_title", + "id": "locales_en_blocker_deactivation_actionsheet_title" + }, + { + "label": "deactivation_actionsheet_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L221", + "community": 0, + "norm_label": "deactivation_actionsheet_message", + "id": "locales_en_blocker_deactivation_actionsheet_message" + }, + { + "label": "deactivation_start_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L222", + "community": 0, + "norm_label": "deactivation_start_cta", + "id": "locales_en_blocker_deactivation_start_cta" + }, + { + "label": "deactivation_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L223", + "community": 0, + "norm_label": "deactivation_failed_msg", + "id": "locales_en_blocker_deactivation_failed_msg" + }, + { + "label": "deactivation_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L224", + "community": 0, + "norm_label": "deactivation_heading", + "id": "locales_en_blocker_deactivation_heading" + }, + { + "label": "deactivation_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L225", + "community": 0, + "norm_label": "deactivation_title", + "id": "locales_en_blocker_deactivation_title" + }, + { + "label": "deactivation_intro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L226", + "community": 0, + "norm_label": "deactivation_intro", + "id": "locales_en_blocker_deactivation_intro" + }, + { + "label": "deactivation_bullet1_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L227", + "community": 0, + "norm_label": "deactivation_bullet1_title", + "id": "locales_en_blocker_deactivation_bullet1_title" + }, + { + "label": "deactivation_bullet1_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L228", + "community": 0, + "norm_label": "deactivation_bullet1_text", + "id": "locales_en_blocker_deactivation_bullet1_text" + }, + { + "label": "deactivation_bullet2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L229", + "community": 0, + "norm_label": "deactivation_bullet2_title", + "id": "locales_en_blocker_deactivation_bullet2_title" + }, + { + "label": "deactivation_bullet2_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L230", + "community": 0, + "norm_label": "deactivation_bullet2_text", + "id": "locales_en_blocker_deactivation_bullet2_text" + }, + { + "label": "deactivation_bullet3_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L231", + "community": 0, + "norm_label": "deactivation_bullet3_title", + "id": "locales_en_blocker_deactivation_bullet3_title" + }, + { + "label": "deactivation_bullet3_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L232", + "community": 0, + "norm_label": "deactivation_bullet3_text", + "id": "locales_en_blocker_deactivation_bullet3_text" + }, + { + "label": "deactivation_breathe_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L233", + "community": 0, + "norm_label": "deactivation_breathe_cta", + "id": "locales_en_blocker_deactivation_breathe_cta" + }, + { + "label": "deactivation_start_anyway", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L234", + "community": 0, + "norm_label": "deactivation_start_anyway", + "id": "locales_en_blocker_deactivation_start_anyway" + }, + { + "label": "deactivation_starting", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L235", + "community": 0, + "norm_label": "deactivation_starting", + "id": "locales_en_blocker_deactivation_starting" + }, + { + "label": "deactivation_cancel_failed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L236", + "community": 0, + "norm_label": "deactivation_cancel_failed", + "id": "locales_en_blocker_deactivation_cancel_failed" + }, + { + "label": "domain_section_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L237", + "community": 0, + "norm_label": "domain_section_title", + "id": "locales_en_blocker_domain_section_title" + }, + { + "label": "domain_add_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L238", + "community": 0, + "norm_label": "domain_add_a11y", + "id": "locales_en_blocker_domain_add_a11y" + }, + { + "label": "domain_limit_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L239", + "community": 0, + "norm_label": "domain_limit_title", + "id": "locales_en_blocker_domain_limit_title" + }, + { + "label": "domain_limit_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L240", + "community": 0, + "norm_label": "domain_limit_desc", + "id": "locales_en_blocker_domain_limit_desc" + }, + { + "label": "domain_empty", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L241", + "community": 0, + "norm_label": "domain_empty", + "id": "locales_en_blocker_domain_empty" + }, + { + "label": "domain_badge_voting", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L242", + "community": 0, + "norm_label": "domain_badge_voting", + "id": "locales_en_blocker_domain_badge_voting" + }, + { + "label": "domain_badge_pruefung", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L243", + "community": 0, + "norm_label": "domain_badge_pruefung", + "id": "locales_en_blocker_domain_badge_pruefung" + }, + { + "label": "domain_badge_rejected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L244", + "community": 0, + "norm_label": "domain_badge_rejected", + "id": "locales_en_blocker_domain_badge_rejected" + }, + { + "label": "domain_badge_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L245", + "community": 0, + "norm_label": "domain_badge_active", + "id": "locales_en_blocker_domain_badge_active" + }, + { + "label": "domain_btn_freigeben", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L246", + "community": 0, + "norm_label": "domain_btn_freigeben", + "id": "locales_en_blocker_domain_btn_freigeben" + }, + { + "label": "domain_btn_erneut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L247", + "community": 0, + "norm_label": "domain_btn_erneut", + "id": "locales_en_blocker_domain_btn_erneut" + }, + { + "label": "domain_btn_in_abstimmung", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L248", + "community": 0, + "norm_label": "domain_btn_in_abstimmung", + "id": "locales_en_blocker_domain_btn_in_abstimmung" + }, + { + "label": "domain_btn_rebreak_prueft", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L249", + "community": 0, + "norm_label": "domain_btn_rebreak_prueft", + "id": "locales_en_blocker_domain_btn_rebreak_prueft" + }, + { + "label": "domain_confirm_legend_resubmit", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L250", + "community": 0, + "norm_label": "domain_confirm_legend_resubmit", + "id": "locales_en_blocker_domain_confirm_legend_resubmit" + }, + { + "label": "domain_confirm_legend_first", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L251", + "community": 0, + "norm_label": "domain_confirm_legend_first", + "id": "locales_en_blocker_domain_confirm_legend_first" + }, + { + "label": "domain_confirm_community_resubmit", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L252", + "community": 0, + "norm_label": "domain_confirm_community_resubmit", + "id": "locales_en_blocker_domain_confirm_community_resubmit" + }, + { + "label": "domain_confirm_community_first", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L253", + "community": 0, + "norm_label": "domain_confirm_community_first", + "id": "locales_en_blocker_domain_confirm_community_first" + }, + { + "label": "domain_confirm_legend_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L254", + "community": 0, + "norm_label": "domain_confirm_legend_message", + "id": "locales_en_blocker_domain_confirm_legend_message" + }, + { + "label": "domain_confirm_community_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L255", + "community": 0, + "norm_label": "domain_confirm_community_message", + "id": "locales_en_blocker_domain_confirm_community_message" + }, + { + "label": "domain_success_legend_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L256", + "community": 0, + "norm_label": "domain_success_legend_title", + "id": "locales_en_blocker_domain_success_legend_title" + }, + { + "label": "domain_success_community_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L257", + "community": 0, + "norm_label": "domain_success_community_title", + "id": "locales_en_blocker_domain_success_community_title" + }, + { + "label": "domain_success_legend_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L258", + "community": 0, + "norm_label": "domain_success_legend_message", + "id": "locales_en_blocker_domain_success_legend_message" + }, + { + "label": "domain_success_community_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L259", + "community": 0, + "norm_label": "domain_success_community_message", + "id": "locales_en_blocker_domain_success_community_message" + }, + { + "label": "upgrade_alert_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L260", + "community": 0, + "norm_label": "upgrade_alert_title", + "id": "locales_en_blocker_upgrade_alert_title" + }, + { + "label": "upgrade_alert_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L261", + "community": 0, + "norm_label": "upgrade_alert_desc", + "id": "locales_en_blocker_upgrade_alert_desc" + }, + { + "label": "protection_card_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L262", + "community": 0, + "norm_label": "protection_card_title", + "id": "locales_en_blocker_protection_card_title" + }, + { + "label": "protection_card_locked_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L263", + "community": 0, + "norm_label": "protection_card_locked_title", + "id": "locales_en_blocker_protection_card_locked_title" + }, + { + "label": "protection_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L264", + "community": 0, + "norm_label": "protection_subtitle_inactive", + "id": "locales_en_blocker_protection_subtitle_inactive" + }, + { + "label": "protection_subtitle_cooldown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L265", + "community": 0, + "norm_label": "protection_subtitle_cooldown", + "id": "locales_en_blocker_protection_subtitle_cooldown" + }, + { + "label": "protection_subtitle_free", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L266", + "community": 0, + "norm_label": "protection_subtitle_free", + "id": "locales_en_blocker_protection_subtitle_free" + }, + { + "label": "protection_subtitle_legend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L267", + "community": 0, + "norm_label": "protection_subtitle_legend", + "id": "locales_en_blocker_protection_subtitle_legend" + }, + { + "label": "protection_subtitle_pro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L268", + "community": 0, + "norm_label": "protection_subtitle_pro", + "id": "locales_en_blocker_protection_subtitle_pro" + }, + { + "label": "protection_settings_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L269", + "community": 0, + "norm_label": "protection_settings_a11y", + "id": "locales_en_blocker_protection_settings_a11y" + }, + { + "label": "protection_stat_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L270", + "community": 0, + "norm_label": "protection_stat_domains", + "id": "locales_en_blocker_protection_stat_domains" + }, + { + "label": "protection_stat_method", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L271", + "community": 0, + "norm_label": "protection_stat_method", + "id": "locales_en_blocker_protection_stat_method" + }, + { + "label": "protection_stat_method_dns", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L272", + "community": 0, + "norm_label": "protection_stat_method_dns", + "id": "locales_en_blocker_protection_stat_method_dns" + }, + { + "label": "protection_stat_method_native", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L273", + "community": 0, + "norm_label": "protection_stat_method_native", + "id": "locales_en_blocker_protection_stat_method_native" + }, + { + "label": "protection_stat_status", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L274", + "community": 0, + "norm_label": "protection_stat_status", + "id": "locales_en_blocker_protection_stat_status" + }, + { + "label": "protection_stat_status_live", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L275", + "community": 0, + "norm_label": "protection_stat_status_live", + "id": "locales_en_blocker_protection_stat_status_live" + }, + { + "label": "permission_denied", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L276", + "community": 432, + "norm_label": "permission_denied", + "id": "locales_en_blocker_permission_denied" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L277", + "community": 432, + "norm_label": "title", + "id": "locales_en_permission_denied_title" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L278", + "community": 432, + "norm_label": "body", + "id": "locales_en_permission_denied_body" + }, + { + "label": "retry_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L279", + "community": 432, + "norm_label": "retry_cta", + "id": "locales_en_permission_denied_retry_cta" + }, + { + "label": "retry_loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L280", + "community": 432, + "norm_label": "retry_loading", + "id": "locales_en_permission_denied_retry_loading" + }, + { + "label": "settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L281", + "community": 432, + "norm_label": "settings_cta", + "id": "locales_en_permission_denied_settings_cta" + }, + { + "label": "fallback_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L282", + "community": 432, + "norm_label": "fallback_label", + "id": "locales_en_permission_denied_fallback_label" + }, + { + "label": "fallback_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L283", + "community": 432, + "norm_label": "fallback_body", + "id": "locales_en_permission_denied_fallback_body" + }, + { + "label": "family_controls_error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L285", + "community": 432, + "norm_label": "family_controls_error", + "id": "locales_en_blocker_family_controls_error" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L286", + "community": 432, + "norm_label": "title", + "id": "locales_en_family_controls_error_title" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L287", + "community": 432, + "norm_label": "body", + "id": "locales_en_family_controls_error_body" + }, + { + "label": "retry_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L288", + "community": 432, + "norm_label": "retry_cta", + "id": "locales_en_family_controls_error_retry_cta" + }, + { + "label": "retry_loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L289", + "community": 432, + "norm_label": "retry_loading", + "id": "locales_en_family_controls_error_retry_loading" + }, + { + "label": "settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L290", + "community": 432, + "norm_label": "settings_cta", + "id": "locales_en_family_controls_error_settings_cta" + }, + { + "label": "fallback_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L291", + "community": 432, + "norm_label": "fallback_label", + "id": "locales_en_family_controls_error_fallback_label" + }, + { + "label": "fallback_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L292", + "community": 432, + "norm_label": "fallback_body", + "id": "locales_en_family_controls_error_fallback_body" + }, + { + "label": "activate_url_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L294", + "community": 0, + "norm_label": "activate_url_failed_title", + "id": "locales_en_blocker_activate_url_failed_title" + }, + { + "label": "activate_url_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L295", + "community": 0, + "norm_label": "activate_url_failed_msg", + "id": "locales_en_blocker_activate_url_failed_msg" + }, + { + "label": "activate_settings_btn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L296", + "community": 0, + "norm_label": "activate_settings_btn", + "id": "locales_en_blocker_activate_settings_btn" + }, + { + "label": "protection_off_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L297", + "community": 0, + "norm_label": "protection_off_title", + "id": "locales_en_blocker_protection_off_title" + }, + { + "label": "protection_off_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L298", + "community": 0, + "norm_label": "protection_off_message", + "id": "locales_en_blocker_protection_off_message" + }, + { + "label": "reactivate_btn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L299", + "community": 0, + "norm_label": "reactivate_btn", + "id": "locales_en_blocker_reactivate_btn" + }, + { + "label": "protection_off_later", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L300", + "community": 0, + "norm_label": "protection_off_later", + "id": "locales_en_blocker_protection_off_later" + }, + { + "label": "activate_app_lock_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L301", + "community": 0, + "norm_label": "activate_app_lock_failed_title", + "id": "locales_en_blocker_activate_app_lock_failed_title" + }, + { + "label": "activate_app_lock_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L302", + "community": 0, + "norm_label": "activate_app_lock_failed_msg", + "id": "locales_en_blocker_activate_app_lock_failed_msg" + }, + { + "label": "sync_list_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L303", + "community": 0, + "norm_label": "sync_list_failed_title", + "id": "locales_en_blocker_sync_list_failed_title" + }, + { + "label": "sync_list_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L304", + "community": 0, + "norm_label": "sync_list_failed_msg", + "id": "locales_en_blocker_sync_list_failed_msg" + }, + { + "label": "activation_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L305", + "community": 0, + "norm_label": "activation_failed_title", + "id": "locales_en_blocker_activation_failed_title" + }, + { + "label": "details_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L306", + "community": 0, + "norm_label": "details_done", + "id": "locales_en_blocker_details_done" + }, + { + "label": "details_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L307", + "community": 0, + "norm_label": "details_title", + "id": "locales_en_blocker_details_title" + }, + { + "label": "details_active_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L308", + "community": 0, + "norm_label": "details_active_title", + "id": "locales_en_blocker_details_active_title" + }, + { + "label": "details_domains_blocked", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L309", + "community": 0, + "norm_label": "details_domains_blocked", + "id": "locales_en_blocker_details_domains_blocked" + }, + { + "label": "details_layers_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L310", + "community": 0, + "norm_label": "details_layers_heading", + "id": "locales_en_blocker_details_layers_heading" + }, + { + "label": "details_layer_url_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L311", + "community": 0, + "norm_label": "details_layer_url_label", + "id": "locales_en_blocker_details_layer_url_label" + }, + { + "label": "details_layer_url_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L312", + "community": 0, + "norm_label": "details_layer_url_desc", + "id": "locales_en_blocker_details_layer_url_desc" + }, + { + "label": "details_layer_applock_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L313", + "community": 0, + "norm_label": "details_layer_applock_label", + "id": "locales_en_blocker_details_layer_applock_label" + }, + { + "label": "details_layer_applock_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L314", + "community": 0, + "norm_label": "details_layer_applock_desc", + "id": "locales_en_blocker_details_layer_applock_desc" + }, + { + "label": "details_layer_vpn_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L315", + "community": 0, + "norm_label": "details_layer_vpn_label", + "id": "locales_en_blocker_details_layer_vpn_label" + }, + { + "label": "details_layer_vpn_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L316", + "community": 0, + "norm_label": "details_layer_vpn_desc", + "id": "locales_en_blocker_details_layer_vpn_desc" + }, + { + "label": "details_layer_a11y_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L317", + "community": 0, + "norm_label": "details_layer_a11y_label", + "id": "locales_en_blocker_details_layer_a11y_label" + }, + { + "label": "details_layer_a11y_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L318", + "community": 0, + "norm_label": "details_layer_a11y_desc", + "id": "locales_en_blocker_details_layer_a11y_desc" + }, + { + "label": "details_layer_tamper_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L319", + "community": 0, + "norm_label": "details_layer_tamper_label", + "id": "locales_en_blocker_details_layer_tamper_label" + }, + { + "label": "details_layer_tamper_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L320", + "community": 0, + "norm_label": "details_layer_tamper_desc", + "id": "locales_en_blocker_details_layer_tamper_desc" + }, + { + "label": "details_lyra_cta_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L321", + "community": 0, + "norm_label": "details_lyra_cta_title", + "id": "locales_en_blocker_details_lyra_cta_title" + }, + { + "label": "details_lyra_cta_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L322", + "community": 0, + "norm_label": "details_lyra_cta_subtitle", + "id": "locales_en_blocker_details_lyra_cta_subtitle" + }, + { + "label": "details_deactivate_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L323", + "community": 0, + "norm_label": "details_deactivate_link", + "id": "locales_en_blocker_details_deactivate_link" + }, + { + "label": "layers_url_filter_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L324", + "community": 0, + "norm_label": "layers_url_filter_title", + "id": "locales_en_blocker_layers_url_filter_title" + }, + { + "label": "layers_url_filter_subtitle_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L325", + "community": 0, + "norm_label": "layers_url_filter_subtitle_active", + "id": "locales_en_blocker_layers_url_filter_subtitle_active" + }, + { + "label": "layers_url_filter_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L326", + "community": 0, + "norm_label": "layers_url_filter_subtitle_inactive", + "id": "locales_en_blocker_layers_url_filter_subtitle_inactive" + }, + { + "label": "layers_app_lock_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L327", + "community": 0, + "norm_label": "layers_app_lock_title", + "id": "locales_en_blocker_layers_app_lock_title" + }, + { + "label": "layers_app_lock_subtitle_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L328", + "community": 0, + "norm_label": "layers_app_lock_subtitle_active", + "id": "locales_en_blocker_layers_app_lock_subtitle_active" + }, + { + "label": "layers_app_lock_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L329", + "community": 0, + "norm_label": "layers_app_lock_subtitle_inactive", + "id": "locales_en_blocker_layers_app_lock_subtitle_inactive" + }, + { + "label": "layers_app_lock_warning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L330", + "community": 0, + "norm_label": "layers_app_lock_warning", + "id": "locales_en_blocker_layers_app_lock_warning" + }, + { + "label": "layers_app_lock_locked_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L331", + "community": 0, + "norm_label": "layers_app_lock_locked_hint", + "id": "locales_en_blocker_layers_app_lock_locked_hint" + }, + { + "label": "screentime_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L332", + "community": 0, + "norm_label": "screentime_title", + "id": "locales_en_blocker_screentime_title" + }, + { + "label": "screentime_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L333", + "community": 0, + "norm_label": "screentime_desc", + "id": "locales_en_blocker_screentime_desc" + }, + { + "label": "screentime_generate_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L334", + "community": 0, + "norm_label": "screentime_generate_cta", + "id": "locales_en_blocker_screentime_generate_cta" + }, + { + "label": "screentime_code_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L335", + "community": 0, + "norm_label": "screentime_code_label", + "id": "locales_en_blocker_screentime_code_label" + }, + { + "label": "screentime_step1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L336", + "community": 0, + "norm_label": "screentime_step1", + "id": "locales_en_blocker_screentime_step1" + }, + { + "label": "screentime_step2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L337", + "community": 0, + "norm_label": "screentime_step2", + "id": "locales_en_blocker_screentime_step2" + }, + { + "label": "screentime_step3", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L338", + "community": 0, + "norm_label": "screentime_step3", + "id": "locales_en_blocker_screentime_step3" + }, + { + "label": "screentime_step_note", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L339", + "community": 0, + "norm_label": "screentime_step_note", + "id": "locales_en_blocker_screentime_step_note" + }, + { + "label": "screentime_open_settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L340", + "community": 0, + "norm_label": "screentime_open_settings_cta", + "id": "locales_en_blocker_screentime_open_settings_cta" + }, + { + "label": "screentime_confirm_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L341", + "community": 0, + "norm_label": "screentime_confirm_cta", + "id": "locales_en_blocker_screentime_confirm_cta" + }, + { + "label": "screentime_confirmed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L342", + "community": 0, + "norm_label": "screentime_confirmed_title", + "id": "locales_en_blocker_screentime_confirmed_title" + }, + { + "label": "screentime_confirmed_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L343", + "community": 0, + "norm_label": "screentime_confirmed_desc", + "id": "locales_en_blocker_screentime_confirmed_desc" + }, + { + "label": "layers_a11y_subtitle_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L344", + "community": 0, + "norm_label": "layers_a11y_subtitle_active", + "id": "locales_en_blocker_layers_a11y_subtitle_active" + }, + { + "label": "layers_a11y_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L345", + "community": 0, + "norm_label": "layers_a11y_subtitle_inactive", + "id": "locales_en_blocker_layers_a11y_subtitle_inactive" + }, + { + "label": "kpi_global_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L346", + "community": 0, + "norm_label": "kpi_global_label", + "id": "locales_en_blocker_kpi_global_label" + }, + { + "label": "kpi_global_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L347", + "community": 0, + "norm_label": "kpi_global_subtitle", + "id": "locales_en_blocker_kpi_global_subtitle" + }, + { + "label": "delta_week", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L348", + "community": 0, + "norm_label": "delta_week", + "id": "locales_en_blocker_delta_week" + }, + { + "label": "delta_month", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L349", + "community": 0, + "norm_label": "delta_month", + "id": "locales_en_blocker_delta_month" + }, + { + "label": "kpi_submissions_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L350", + "community": 0, + "norm_label": "kpi_submissions_title", + "id": "locales_en_blocker_kpi_submissions_title" + }, + { + "label": "kpi_submissions_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L351", + "community": 0, + "norm_label": "kpi_submissions_subtitle", + "id": "locales_en_blocker_kpi_submissions_subtitle" + }, + { + "label": "kpi_my_submissions", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L352", + "community": 0, + "norm_label": "kpi_my_submissions", + "id": "locales_en_blocker_kpi_my_submissions" + }, + { + "label": "kpi_status_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L353", + "community": 0, + "norm_label": "kpi_status_active", + "id": "locales_en_blocker_kpi_status_active" + }, + { + "label": "kpi_status_vote", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L354", + "community": 0, + "norm_label": "kpi_status_vote", + "id": "locales_en_blocker_kpi_status_vote" + }, + { + "label": "kpi_status_review", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L355", + "community": 0, + "norm_label": "kpi_status_review", + "id": "locales_en_blocker_kpi_status_review" + }, + { + "label": "kpi_in_vote", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L356", + "community": 0, + "norm_label": "kpi_in_vote", + "id": "locales_en_blocker_kpi_in_vote" + }, + { + "label": "kpi_in_review", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L357", + "community": 0, + "norm_label": "kpi_in_review", + "id": "locales_en_blocker_kpi_in_review" + }, + { + "label": "kpi_avg_per_user", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L358", + "community": 0, + "norm_label": "kpi_avg_per_user", + "id": "locales_en_blocker_kpi_avg_per_user" + }, + { + "label": "kpi_avg_wait", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L359", + "community": 0, + "norm_label": "kpi_avg_wait", + "id": "locales_en_blocker_kpi_avg_wait" + }, + { + "label": "kpi_days_suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L360", + "community": 0, + "norm_label": "kpi_days_suffix", + "id": "locales_en_blocker_kpi_days_suffix" + }, + { + "label": "faq_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L361", + "community": 0, + "norm_label": "faq_heading", + "id": "locales_en_blocker_faq_heading" + }, + { + "label": "faq1_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L362", + "community": 0, + "norm_label": "faq1_q", + "id": "locales_en_blocker_faq1_q" + }, + { + "label": "faq1_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L363", + "community": 0, + "norm_label": "faq1_a", + "id": "locales_en_blocker_faq1_a" + }, + { + "label": "faq2_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L364", + "community": 0, + "norm_label": "faq2_q", + "id": "locales_en_blocker_faq2_q" + }, + { + "label": "faq2_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L365", + "community": 0, + "norm_label": "faq2_a", + "id": "locales_en_blocker_faq2_a" + }, + { + "label": "faq3_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L366", + "community": 0, + "norm_label": "faq3_q", + "id": "locales_en_blocker_faq3_q" + }, + { + "label": "faq3_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L367", + "community": 0, + "norm_label": "faq3_a", + "id": "locales_en_blocker_faq3_a" + }, + { + "label": "faq4_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L368", + "community": 0, + "norm_label": "faq4_q", + "id": "locales_en_blocker_faq4_q" + }, + { + "label": "faq4_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L369", + "community": 0, + "norm_label": "faq4_a", + "id": "locales_en_blocker_faq4_a" + }, + { + "label": "faq5_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L370", + "community": 0, + "norm_label": "faq5_q", + "id": "locales_en_blocker_faq5_q" + }, + { + "label": "faq5_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L371", + "community": 0, + "norm_label": "faq5_a", + "id": "locales_en_blocker_faq5_a" + }, + { + "label": "faq6_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L372", + "community": 0, + "norm_label": "faq6_q", + "id": "locales_en_blocker_faq6_q" + }, + { + "label": "faq6_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L373", + "community": 0, + "norm_label": "faq6_a", + "id": "locales_en_blocker_faq6_a" + }, + { + "label": "faq7_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L374", + "community": 0, + "norm_label": "faq7_q", + "id": "locales_en_blocker_faq7_q" + }, + { + "label": "faq7_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L375", + "community": 0, + "norm_label": "faq7_a", + "id": "locales_en_blocker_faq7_a" + }, + { + "label": "faq8_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L376", + "community": 0, + "norm_label": "faq8_q", + "id": "locales_en_blocker_faq8_q" + }, + { + "label": "faq8_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L377", + "community": 0, + "norm_label": "faq8_a", + "id": "locales_en_blocker_faq8_a" + }, + { + "label": "faq9_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L378", + "community": 0, + "norm_label": "faq9_q", + "id": "locales_en_blocker_faq9_q" + }, + { + "label": "faq9_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L379", + "community": 0, + "norm_label": "faq9_a", + "id": "locales_en_blocker_faq9_a" + }, + { + "label": "more_info_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L380", + "community": 0, + "norm_label": "more_info_title", + "id": "locales_en_blocker_more_info_title" + }, + { + "label": "cooldown_elapsed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L381", + "community": 0, + "norm_label": "cooldown_elapsed_title", + "id": "locales_en_blocker_cooldown_elapsed_title" + }, + { + "label": "cooldown_elapsed_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L382", + "community": 0, + "norm_label": "cooldown_elapsed_message", + "id": "locales_en_blocker_cooldown_elapsed_message" + }, + { + "label": "cooldown_elapsed_message_ios", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L383", + "community": 0, + "norm_label": "cooldown_elapsed_message_ios", + "id": "locales_en_blocker_cooldown_elapsed_message_ios" + }, + { + "label": "cooldown_elapsed_open_settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L384", + "community": 0, + "norm_label": "cooldown_elapsed_open_settings", + "id": "locales_en_blocker_cooldown_elapsed_open_settings" + }, + { + "label": "app_lock_coming_soon_badge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L385", + "community": 0, + "norm_label": "app_lock_coming_soon_badge", + "id": "locales_en_blocker_app_lock_coming_soon_badge" + }, + { + "label": "app_lock_coming_soon_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L386", + "community": 0, + "norm_label": "app_lock_coming_soon_desc", + "id": "locales_en_blocker_app_lock_coming_soon_desc" + }, + { + "label": "type_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L387", + "community": 0, + "norm_label": "type_web", + "id": "locales_en_blocker_type_web" + }, + { + "label": "type_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L388", + "community": 0, + "norm_label": "type_mail", + "id": "locales_en_blocker_type_mail" + }, + { + "label": "add_web_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L389", + "community": 0, + "norm_label": "add_web_label", + "id": "locales_en_blocker_add_web_label" + }, + { + "label": "add_web_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L390", + "community": 0, + "norm_label": "add_web_placeholder", + "id": "locales_en_blocker_add_web_placeholder" + }, + { + "label": "add_web_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L391", + "community": 0, + "norm_label": "add_web_help", + "id": "locales_en_blocker_add_web_help" + }, + { + "label": "add_mail_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L392", + "community": 0, + "norm_label": "add_mail_label", + "id": "locales_en_blocker_add_mail_label" + }, + { + "label": "add_mail_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L393", + "community": 0, + "norm_label": "add_mail_placeholder", + "id": "locales_en_blocker_add_mail_placeholder" + }, + { + "label": "add_mail_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L394", + "community": 0, + "norm_label": "add_mail_help", + "id": "locales_en_blocker_add_mail_help" + }, + { + "label": "add_mail_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L395", + "community": 0, + "norm_label": "add_mail_invalid", + "id": "locales_en_blocker_add_mail_invalid" + }, + { + "label": "add_sheet_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L396", + "community": 0, + "norm_label": "add_sheet_cta", + "id": "locales_en_blocker_add_sheet_cta" + }, + { + "label": "section_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L397", + "community": 0, + "norm_label": "section_domains", + "id": "locales_en_blocker_section_domains" + }, + { + "label": "section_mails", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L398", + "community": 0, + "norm_label": "section_mails", + "id": "locales_en_blocker_section_mails" + }, + { + "label": "count_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L399", + "community": 0, + "norm_label": "count_label", + "id": "locales_en_blocker_count_label" + }, + { + "label": "error_web_limit_reached", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L400", + "community": 0, + "norm_label": "error_web_limit_reached", + "id": "locales_en_blocker_error_web_limit_reached" + }, + { + "label": "error_mail_limit_reached", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L401", + "community": 0, + "norm_label": "error_mail_limit_reached", + "id": "locales_en_blocker_error_mail_limit_reached" + }, + { + "label": "error_limit_reached", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L402", + "community": 0, + "norm_label": "error_limit_reached", + "id": "locales_en_blocker_error_limit_reached" + }, + { + "label": "error_invalid_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L403", + "community": 0, + "norm_label": "error_invalid_mail", + "id": "locales_en_blocker_error_invalid_mail" + }, + { + "label": "error_invalid_input", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L404", + "community": 45, + "norm_label": "error_invalid_input", + "id": "locales_en_blocker_error_invalid_input" + }, + { + "label": "error_public_domain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L405", + "community": 0, + "norm_label": "error_public_domain", + "id": "locales_en_blocker_error_public_domain" + }, + { + "label": "error_duplicate", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L406", + "community": 0, + "norm_label": "error_duplicate", + "id": "locales_en_blocker_error_duplicate" + }, + { + "label": "kind_override_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L407", + "community": 0, + "norm_label": "kind_override_label", + "id": "locales_en_blocker_kind_override_label" + }, + { + "label": "empty_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L408", + "community": 0, + "norm_label": "empty_web", + "id": "locales_en_blocker_empty_web" + }, + { + "label": "empty_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L409", + "community": 0, + "norm_label": "empty_mail", + "id": "locales_en_blocker_empty_mail" + }, + { + "label": "vip_section_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L410", + "community": 0, + "norm_label": "vip_section_title", + "id": "locales_en_blocker_vip_section_title" + }, + { + "label": "vip_empty", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L411", + "community": 0, + "norm_label": "vip_empty", + "id": "locales_en_blocker_vip_empty" + }, + { + "label": "vip_global_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L412", + "community": 0, + "norm_label": "vip_global_hint", + "id": "locales_en_blocker_vip_global_hint" + }, + { + "label": "my_filters_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L413", + "community": 0, + "norm_label": "my_filters_title", + "id": "locales_en_blocker_my_filters_title" + }, + { + "label": "my_filters_empty", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L414", + "community": 0, + "norm_label": "my_filters_empty", + "id": "locales_en_blocker_my_filters_empty" + }, + { + "label": "vip_layer2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L415", + "community": 0, + "norm_label": "vip_layer2_title", + "id": "locales_en_blocker_vip_layer2_title" + }, + { + "label": "vip_layer2_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L416", + "community": 0, + "norm_label": "vip_layer2_desc", + "id": "locales_en_blocker_vip_layer2_desc" + }, + { + "label": "vip_layer2_global_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L417", + "community": 0, + "norm_label": "vip_layer2_global_hint", + "id": "locales_en_blocker_vip_layer2_global_hint" + }, + { + "label": "vip_layer2_count", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L418", + "community": 0, + "norm_label": "vip_layer2_count", + "id": "locales_en_blocker_vip_layer2_count" + }, + { + "label": "vip_section_custom_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L419", + "community": 0, + "norm_label": "vip_section_custom_title", + "id": "locales_en_blocker_vip_section_custom_title" + }, + { + "label": "vip_section_curated_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L420", + "community": 0, + "norm_label": "vip_section_curated_title", + "id": "locales_en_blocker_vip_section_curated_title" + }, + { + "label": "vip_section_custom_count", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L421", + "community": 0, + "norm_label": "vip_section_custom_count", + "id": "locales_en_blocker_vip_section_custom_count" + }, + { + "label": "vip_section_curated_count", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L422", + "community": 0, + "norm_label": "vip_section_curated_count", + "id": "locales_en_blocker_vip_section_curated_count" + }, + { + "label": "remove_domain_sheet_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L423", + "community": 0, + "norm_label": "remove_domain_sheet_heading", + "id": "locales_en_blocker_remove_domain_sheet_heading" + }, + { + "label": "remove_domain_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L424", + "community": 0, + "norm_label": "remove_domain_title", + "id": "locales_en_blocker_remove_domain_title" + }, + { + "label": "remove_domain_intro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L425", + "community": 0, + "norm_label": "remove_domain_intro", + "id": "locales_en_blocker_remove_domain_intro" + }, + { + "label": "remove_domain_bullet1_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L426", + "community": 0, + "norm_label": "remove_domain_bullet1_title", + "id": "locales_en_blocker_remove_domain_bullet1_title" + }, + { + "label": "remove_domain_bullet1_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L427", + "community": 0, + "norm_label": "remove_domain_bullet1_text", + "id": "locales_en_blocker_remove_domain_bullet1_text" + }, + { + "label": "remove_domain_bullet2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L428", + "community": 0, + "norm_label": "remove_domain_bullet2_title", + "id": "locales_en_blocker_remove_domain_bullet2_title" + }, + { + "label": "remove_domain_bullet2_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L429", + "community": 0, + "norm_label": "remove_domain_bullet2_text", + "id": "locales_en_blocker_remove_domain_bullet2_text" + }, + { + "label": "remove_domain_keep_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L430", + "community": 0, + "norm_label": "remove_domain_keep_cta", + "id": "locales_en_blocker_remove_domain_keep_cta" + }, + { + "label": "remove_domain_remove_anyway", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L431", + "community": 0, + "norm_label": "remove_domain_remove_anyway", + "id": "locales_en_blocker_remove_domain_remove_anyway" + }, + { + "label": "remove_domain_removing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L432", + "community": 0, + "norm_label": "remove_domain_removing", + "id": "locales_en_blocker_remove_domain_removing" + }, + { + "label": "remove_domain_failed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L433", + "community": 0, + "norm_label": "remove_domain_failed", + "id": "locales_en_blocker_remove_domain_failed" + }, + { + "label": "remove_domain_actionsheet_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L434", + "community": 0, + "norm_label": "remove_domain_actionsheet_title", + "id": "locales_en_blocker_remove_domain_actionsheet_title" + }, + { + "label": "remove_domain_actionsheet_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L435", + "community": 0, + "norm_label": "remove_domain_actionsheet_message", + "id": "locales_en_blocker_remove_domain_actionsheet_message" + }, + { + "label": "remove_domain_confirm_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L436", + "community": 0, + "norm_label": "remove_domain_confirm_cta", + "id": "locales_en_blocker_remove_domain_confirm_cta" + }, + { + "label": "vip_swap_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L437", + "community": 0, + "norm_label": "vip_swap_title", + "id": "locales_en_blocker_vip_swap_title" + }, + { + "label": "vip_swap_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L438", + "community": 0, + "norm_label": "vip_swap_desc", + "id": "locales_en_blocker_vip_swap_desc" + }, + { + "label": "vip_swap_pick", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L439", + "community": 0, + "norm_label": "vip_swap_pick", + "id": "locales_en_blocker_vip_swap_pick" + }, + { + "label": "vip_swap_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L440", + "community": 0, + "norm_label": "vip_swap_cta", + "id": "locales_en_blocker_vip_swap_cta" + }, + { + "label": "vip_swap_no_candidates", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L441", + "community": 0, + "norm_label": "vip_swap_no_candidates", + "id": "locales_en_blocker_vip_swap_no_candidates" + }, + { + "label": "vip_swap_error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L442", + "community": 0, + "norm_label": "vip_swap_error", + "id": "locales_en_blocker_vip_swap_error" + }, + { + "label": "vip_evict_badge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L443", + "community": 0, + "norm_label": "vip_evict_badge", + "id": "locales_en_blocker_vip_evict_badge" + }, + { + "label": "suggest_curated_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L444", + "community": 0, + "norm_label": "suggest_curated_link", + "id": "locales_en_blocker_suggest_curated_link" + }, + { + "label": "suggest_curated_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L445", + "community": 0, + "norm_label": "suggest_curated_title", + "id": "locales_en_blocker_suggest_curated_title" + }, + { + "label": "suggest_curated_explanation", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L446", + "community": 0, + "norm_label": "suggest_curated_explanation", + "id": "locales_en_blocker_suggest_curated_explanation" + }, + { + "label": "suggest_curated_input_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L447", + "community": 0, + "norm_label": "suggest_curated_input_label", + "id": "locales_en_blocker_suggest_curated_input_label" + }, + { + "label": "suggest_curated_input_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L448", + "community": 0, + "norm_label": "suggest_curated_input_placeholder", + "id": "locales_en_blocker_suggest_curated_input_placeholder" + }, + { + "label": "suggest_curated_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L449", + "community": 0, + "norm_label": "suggest_curated_cta", + "id": "locales_en_blocker_suggest_curated_cta" + }, + { + "label": "suggest_curated_success_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L450", + "community": 0, + "norm_label": "suggest_curated_success_title", + "id": "locales_en_blocker_suggest_curated_success_title" + }, + { + "label": "suggest_curated_success_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L451", + "community": 0, + "norm_label": "suggest_curated_success_body", + "id": "locales_en_blocker_suggest_curated_success_body" + }, + { + "label": "suggest_curated_error_invalid_domain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L452", + "community": 0, + "norm_label": "suggest_curated_error_invalid_domain", + "id": "locales_en_blocker_suggest_curated_error_invalid_domain" + }, + { + "label": "suggest_curated_error_already_suggested", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L453", + "community": 0, + "norm_label": "suggest_curated_error_already_suggested", + "id": "locales_en_blocker_suggest_curated_error_already_suggested" + }, + { + "label": "suggest_curated_error_already_approved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L454", + "community": 0, + "norm_label": "suggest_curated_error_already_approved", + "id": "locales_en_blocker_suggest_curated_error_already_approved" + }, + { + "label": "suggest_curated_error_already_rejected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L455", + "community": 0, + "norm_label": "suggest_curated_error_already_rejected", + "id": "locales_en_blocker_suggest_curated_error_already_rejected" + }, + { + "label": "suggest_curated_error_generic", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L456", + "community": 0, + "norm_label": "suggest_curated_error_generic", + "id": "locales_en_blocker_suggest_curated_error_generic" + }, + { + "label": "protection_subtitle_mdm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L457", + "community": 0, + "norm_label": "protection_subtitle_mdm", + "id": "locales_en_blocker_protection_subtitle_mdm" + }, + { + "label": "protection_stat_method_nefilter", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L458", + "community": 0, + "norm_label": "protection_stat_method_nefilter", + "id": "locales_en_blocker_protection_stat_method_nefilter" + }, + { + "label": "protection_stat_method_mdm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L459", + "community": 0, + "norm_label": "protection_stat_method_mdm", + "id": "locales_en_blocker_protection_stat_method_mdm" + }, + { + "label": "mdm_info_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L460", + "community": 0, + "norm_label": "mdm_info_hint", + "id": "locales_en_blocker_mdm_info_hint" + }, + { + "label": "mdm_deactivate_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L461", + "community": 0, + "norm_label": "mdm_deactivate_title", + "id": "locales_en_blocker_mdm_deactivate_title" + }, + { + "label": "mdm_deactivate_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L462", + "community": 0, + "norm_label": "mdm_deactivate_body", + "id": "locales_en_blocker_mdm_deactivate_body" + }, + { + "label": "setup_progress_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L463", + "community": 0, + "norm_label": "setup_progress_label", + "id": "locales_en_blocker_setup_progress_label" + }, + { + "label": "setup_step1_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L464", + "community": 0, + "norm_label": "setup_step1_title", + "id": "locales_en_blocker_setup_step1_title" + }, + { + "label": "setup_step1_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L465", + "community": 0, + "norm_label": "setup_step1_subtitle_pending", + "id": "locales_en_blocker_setup_step1_subtitle_pending" + }, + { + "label": "setup_step1_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L466", + "community": 0, + "norm_label": "setup_step1_subtitle_done", + "id": "locales_en_blocker_setup_step1_subtitle_done" + }, + { + "label": "setup_step1_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L467", + "community": 0, + "norm_label": "setup_step1_cta", + "id": "locales_en_blocker_setup_step1_cta" + }, + { + "label": "setup_step2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L468", + "community": 0, + "norm_label": "setup_step2_title", + "id": "locales_en_blocker_setup_step2_title" + }, + { + "label": "setup_step2_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L469", + "community": 0, + "norm_label": "setup_step2_subtitle_pending", + "id": "locales_en_blocker_setup_step2_subtitle_pending" + }, + { + "label": "setup_step2_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L470", + "community": 0, + "norm_label": "setup_step2_subtitle_done", + "id": "locales_en_blocker_setup_step2_subtitle_done" + }, + { + "label": "setup_step3_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L471", + "community": 0, + "norm_label": "setup_step3_title", + "id": "locales_en_blocker_setup_step3_title" + }, + { + "label": "setup_step3_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L472", + "community": 0, + "norm_label": "setup_step3_subtitle_pending", + "id": "locales_en_blocker_setup_step3_subtitle_pending" + }, + { + "label": "setup_step3_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L473", + "community": 0, + "norm_label": "setup_step3_subtitle_done", + "id": "locales_en_blocker_setup_step3_subtitle_done" + }, + { + "label": "setup_step3_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L474", + "community": 0, + "norm_label": "setup_step3_cta", + "id": "locales_en_blocker_setup_step3_cta" + }, + { + "label": "setup_step3_warning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L475", + "community": 0, + "norm_label": "setup_step3_warning", + "id": "locales_en_blocker_setup_step3_warning" + }, + { + "label": "setup_complete_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L476", + "community": 0, + "norm_label": "setup_complete_title", + "id": "locales_en_blocker_setup_complete_title" + }, + { + "label": "setup_complete_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L477", + "community": 0, + "norm_label": "setup_complete_subtitle", + "id": "locales_en_blocker_setup_complete_subtitle" + }, + { + "label": "setup_step_locked_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L478", + "community": 0, + "norm_label": "setup_step_locked_hint", + "id": "locales_en_blocker_setup_step_locked_hint" + }, + { + "label": "android_step1_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L479", + "community": 0, + "norm_label": "android_step1_title", + "id": "locales_en_blocker_android_step1_title" + }, + { + "label": "android_step1_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L480", + "community": 0, + "norm_label": "android_step1_subtitle_pending", + "id": "locales_en_blocker_android_step1_subtitle_pending" + }, + { + "label": "android_step1_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L481", + "community": 0, + "norm_label": "android_step1_subtitle_done", + "id": "locales_en_blocker_android_step1_subtitle_done" + }, + { + "label": "android_step1_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L482", + "community": 0, + "norm_label": "android_step1_cta", + "id": "locales_en_blocker_android_step1_cta" + }, + { + "label": "activating", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L483", + "community": 0, + "norm_label": "activating", + "id": "locales_en_blocker_activating" + }, + { + "label": "android_step2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L484", + "community": 0, + "norm_label": "android_step2_title", + "id": "locales_en_blocker_android_step2_title" + }, + { + "label": "android_step2_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L485", + "community": 0, + "norm_label": "android_step2_subtitle_pending", + "id": "locales_en_blocker_android_step2_subtitle_pending" + }, + { + "label": "android_step2_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L486", + "community": 0, + "norm_label": "android_step2_subtitle_done", + "id": "locales_en_blocker_android_step2_subtitle_done" + }, + { + "label": "android_step2_instruction1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L487", + "community": 0, + "norm_label": "android_step2_instruction1", + "id": "locales_en_blocker_android_step2_instruction1" + }, + { + "label": "android_step2_instruction2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L488", + "community": 0, + "norm_label": "android_step2_instruction2", + "id": "locales_en_blocker_android_step2_instruction2" + }, + { + "label": "android_step2_instruction3", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L489", + "community": 0, + "norm_label": "android_step2_instruction3", + "id": "locales_en_blocker_android_step2_instruction3" + }, + { + "label": "android_step2_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L490", + "community": 0, + "norm_label": "android_step2_cta", + "id": "locales_en_blocker_android_step2_cta" + }, + { + "label": "android_step2_note", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L491", + "community": 0, + "norm_label": "android_step2_note", + "id": "locales_en_blocker_android_step2_note" + }, + { + "label": "android_battery_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L492", + "community": 0, + "norm_label": "android_battery_title", + "id": "locales_en_blocker_android_battery_title" + }, + { + "label": "android_battery_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L493", + "community": 0, + "norm_label": "android_battery_subtitle_pending", + "id": "locales_en_blocker_android_battery_subtitle_pending" + }, + { + "label": "android_battery_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L494", + "community": 0, + "norm_label": "android_battery_subtitle_done", + "id": "locales_en_blocker_android_battery_subtitle_done" + }, + { + "label": "android_battery_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L495", + "community": 0, + "norm_label": "android_battery_body", + "id": "locales_en_blocker_android_battery_body" + }, + { + "label": "android_battery_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L496", + "community": 0, + "norm_label": "android_battery_cta", + "id": "locales_en_blocker_android_battery_cta" + }, + { + "label": "android_battery_samsung_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L497", + "community": 0, + "norm_label": "android_battery_samsung_hint", + "id": "locales_en_blocker_android_battery_samsung_hint" + }, + { + "label": "android_step3_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L498", + "community": 0, + "norm_label": "android_step3_title", + "id": "locales_en_blocker_android_step3_title" + }, + { + "label": "android_step3_subtitle_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L499", + "community": 0, + "norm_label": "android_step3_subtitle_pending", + "id": "locales_en_blocker_android_step3_subtitle_pending" + }, + { + "label": "android_step3_subtitle_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L500", + "community": 0, + "norm_label": "android_step3_subtitle_done", + "id": "locales_en_blocker_android_step3_subtitle_done" + }, + { + "label": "android_step3_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L501", + "community": 0, + "norm_label": "android_step3_cta", + "id": "locales_en_blocker_android_step3_cta" + }, + { + "label": "android_step3_warning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L502", + "community": 0, + "norm_label": "android_step3_warning", + "id": "locales_en_blocker_android_step3_warning" + }, + { + "label": "android_admin_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L503", + "community": 0, + "norm_label": "android_admin_failed_title", + "id": "locales_en_blocker_android_admin_failed_title" + }, + { + "label": "android_admin_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L504", + "community": 0, + "norm_label": "android_admin_failed_msg", + "id": "locales_en_blocker_android_admin_failed_msg" + }, + { + "label": "onboarding", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L506", + "community": 45, + "norm_label": "onboarding", + "id": "locales_en_onboarding" + }, + { + "label": "lyra", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L507", + "community": 45, + "norm_label": "lyra", + "id": "locales_en_onboarding_lyra" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L508", + "community": 45, + "norm_label": "welcome", + "id": "locales_en_lyra_welcome" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L509", + "community": 45, + "norm_label": "body", + "id": "locales_en_welcome_body" + }, + { + "label": "privacy", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L511", + "community": 45, + "norm_label": "privacy", + "id": "locales_en_lyra_privacy" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L512", + "community": 45, + "norm_label": "body", + "id": "locales_en_privacy_body" + }, + { + "label": "nickname", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L514", + "community": 45, + "norm_label": "nickname", + "id": "locales_en_lyra_nickname" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L515", + "community": 45, + "norm_label": "body", + "id": "locales_en_nickname_body" + }, + { + "label": "diga_choice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L517", + "community": 45, + "norm_label": "diga_choice", + "id": "locales_en_lyra_diga_choice" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L518", + "community": 45, + "norm_label": "body", + "id": "locales_en_diga_choice_body" + }, + { + "label": "diga_code", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L520", + "community": 45, + "norm_label": "diga_code", + "id": "locales_en_lyra_diga_code" + }, + { + "label": "fr.json", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L1", + "community": 130, + "norm_label": "fr.json", + "id": "apps_rebreak_native_locales_fr_json" + }, + { + "label": "common", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L2", + "community": 130, + "norm_label": "common", + "id": "locales_fr_common" + }, + { + "label": "loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L3", + "community": 130, + "norm_label": "loading", + "id": "locales_fr_common_loading" + }, + { + "label": "cancel", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L4", + "community": 130, + "norm_label": "cancel", + "id": "locales_fr_common_cancel" + }, + { + "label": "continue", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L5", + "community": 130, + "norm_label": "continue", + "id": "locales_fr_common_continue" + }, + { + "label": "back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L6", + "community": 130, + "norm_label": "back", + "id": "locales_fr_common_back" + }, + { + "label": "error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L7", + "community": 130, + "norm_label": "error", + "id": "locales_fr_common_error" + }, + { + "label": "success", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L8", + "community": 130, + "norm_label": "success", + "id": "locales_fr_common_success" + }, + { + "label": "ok", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L9", + "community": 130, + "norm_label": "ok", + "id": "locales_fr_common_ok" + }, + { + "label": "confirm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L10", + "community": 130, + "norm_label": "confirm", + "id": "locales_fr_common_confirm" + }, + { + "label": "retry", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L11", + "community": 130, + "norm_label": "retry", + "id": "locales_fr_common_retry" + }, + { + "label": "unknown_error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L12", + "community": 130, + "norm_label": "unknown_error", + "id": "locales_fr_common_unknown_error" + }, + { + "label": "auth", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L14", + "community": 25, + "norm_label": "auth", + "id": "locales_fr_auth" + }, + { + "label": "welcomeBack", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L15", + "community": 25, + "norm_label": "welcomeback", + "id": "locales_fr_auth_welcomeback" + }, + { + "label": "signinSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L16", + "community": 25, + "norm_label": "signinsubtitle", + "id": "locales_fr_auth_signinsubtitle" + }, + { + "label": "signin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L17", + "community": 25, + "norm_label": "signin", + "id": "locales_fr_auth_signin" + }, + { + "label": "signingIn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L18", + "community": 25, + "norm_label": "signingin", + "id": "locales_fr_auth_signingin" + }, + { + "label": "signup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L19", + "community": 25, + "norm_label": "signup", + "id": "locales_fr_auth_signup" + }, + { + "label": "signupTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L20", + "community": 25, + "norm_label": "signuptitle", + "id": "locales_fr_auth_signuptitle" + }, + { + "label": "signupSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L21", + "community": 25, + "norm_label": "signupsubtitle", + "id": "locales_fr_auth_signupsubtitle" + }, + { + "label": "signOut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L22", + "community": 43, + "norm_label": "signout", + "id": "locales_fr_auth_signout" + }, + { + "label": "email", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L23", + "community": 25, + "norm_label": "email", + "id": "locales_fr_auth_email" + }, + { + "label": "emailPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L24", + "community": 25, + "norm_label": "emailplaceholder", + "id": "locales_fr_auth_emailplaceholder" + }, + { + "label": "emailRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L25", + "community": 25, + "norm_label": "emailrequired", + "id": "locales_fr_auth_emailrequired" + }, + { + "label": "password", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L26", + "community": 25, + "norm_label": "password", + "id": "locales_fr_auth_password" + }, + { + "label": "passwordPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L27", + "community": 25, + "norm_label": "passwordplaceholder", + "id": "locales_fr_auth_passwordplaceholder" + }, + { + "label": "passwordRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L28", + "community": 25, + "norm_label": "passwordrequired", + "id": "locales_fr_auth_passwordrequired" + }, + { + "label": "passwordMin8", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L29", + "community": 25, + "norm_label": "passwordmin8", + "id": "locales_fr_auth_passwordmin8" + }, + { + "label": "newPassword", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L30", + "community": 25, + "norm_label": "newpassword", + "id": "locales_fr_auth_newpassword" + }, + { + "label": "nickname", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L31", + "community": 687, + "norm_label": "nickname", + "id": "locales_fr_auth_nickname" + }, + { + "label": "nicknamePlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L32", + "community": 25, + "norm_label": "nicknameplaceholder", + "id": "locales_fr_auth_nicknameplaceholder" + }, + { + "label": "noAccount", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L33", + "community": 25, + "norm_label": "noaccount", + "id": "locales_fr_auth_noaccount" + }, + { + "label": "alreadyRegistered", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L34", + "community": 25, + "norm_label": "alreadyregistered", + "id": "locales_fr_auth_alreadyregistered" + }, + { + "label": "fillRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L35", + "community": 25, + "norm_label": "fillrequired", + "id": "locales_fr_auth_fillrequired" + }, + { + "label": "googleSignin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L36", + "community": 25, + "norm_label": "googlesignin", + "id": "locales_fr_auth_googlesignin" + }, + { + "label": "appleSignin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L37", + "community": 25, + "norm_label": "applesignin", + "id": "locales_fr_auth_applesignin" + }, + { + "label": "googleSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L38", + "community": 25, + "norm_label": "googlesignup", + "id": "locales_fr_auth_googlesignup" + }, + { + "label": "appleSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L39", + "community": 25, + "norm_label": "applesignup", + "id": "locales_fr_auth_applesignup" + }, + { + "label": "orWithEmail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L40", + "community": 25, + "norm_label": "orwithemail", + "id": "locales_fr_auth_orwithemail" + }, + { + "label": "forgotPassword", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L41", + "community": 25, + "norm_label": "forgotpassword", + "id": "locales_fr_auth_forgotpassword" + }, + { + "label": "resetPasswordTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L42", + "community": 25, + "norm_label": "resetpasswordtitle", + "id": "locales_fr_auth_resetpasswordtitle" + }, + { + "label": "resetPasswordSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L43", + "community": 25, + "norm_label": "resetpasswordsubtitle", + "id": "locales_fr_auth_resetpasswordsubtitle" + }, + { + "label": "resetPasswordSend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L44", + "community": 25, + "norm_label": "resetpasswordsend", + "id": "locales_fr_auth_resetpasswordsend" + }, + { + "label": "resetPasswordSent", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L45", + "community": 25, + "norm_label": "resetpasswordsent", + "id": "locales_fr_auth_resetpasswordsent" + }, + { + "label": "resetPasswordSentDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L46", + "community": 25, + "norm_label": "resetpasswordsentdesc", + "id": "locales_fr_auth_resetpasswordsentdesc" + }, + { + "label": "resetPasswordSentDescPrefix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L47", + "community": 25, + "norm_label": "resetpasswordsentdescprefix", + "id": "locales_fr_auth_resetpasswordsentdescprefix" + }, + { + "label": "resetPasswordSentDescSuffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L48", + "community": 25, + "norm_label": "resetpasswordsentdescsuffix", + "id": "locales_fr_auth_resetpasswordsentdescsuffix" + }, + { + "label": "backToLogin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L49", + "community": 25, + "norm_label": "backtologin", + "id": "locales_fr_auth_backtologin" + }, + { + "label": "backToLoginPlain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L50", + "community": 25, + "norm_label": "backtologinplain", + "id": "locales_fr_auth_backtologinplain" + }, + { + "label": "backToSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L51", + "community": 25, + "norm_label": "backtosignup", + "id": "locales_fr_auth_backtosignup" + }, + { + "label": "chooseAvatar", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L52", + "community": 25, + "norm_label": "chooseavatar", + "id": "locales_fr_auth_chooseavatar" + }, + { + "label": "privacyNotice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L53", + "community": 25, + "norm_label": "privacynotice", + "id": "locales_fr_auth_privacynotice" + }, + { + "label": "acceptTerms", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L54", + "community": 25, + "norm_label": "acceptterms", + "id": "locales_fr_auth_acceptterms" + }, + { + "label": "acceptTermsSuffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L55", + "community": 25, + "norm_label": "accepttermssuffix", + "id": "locales_fr_auth_accepttermssuffix" + }, + { + "label": "termsLink", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L56", + "community": 25, + "norm_label": "termslink", + "id": "locales_fr_auth_termslink" + }, + { + "label": "pleaseAcceptTerms", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L57", + "community": 25, + "norm_label": "pleaseacceptterms", + "id": "locales_fr_auth_pleaseacceptterms" + }, + { + "label": "confirmEmailTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L58", + "community": 25, + "norm_label": "confirmemailtitle", + "id": "locales_fr_auth_confirmemailtitle" + }, + { + "label": "confirmEmailDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L59", + "community": 25, + "norm_label": "confirmemaildesc", + "id": "locales_fr_auth_confirmemaildesc" + }, + { + "label": "confirmEmailLine1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L60", + "community": 25, + "norm_label": "confirmemailline1", + "id": "locales_fr_auth_confirmemailline1" + }, + { + "label": "confirmEmailLine2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L61", + "community": 25, + "norm_label": "confirmemailline2", + "id": "locales_fr_auth_confirmemailline2" + }, + { + "label": "confirmBtn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L62", + "community": 25, + "norm_label": "confirmbtn", + "id": "locales_fr_auth_confirmbtn" + }, + { + "label": "confirmed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L63", + "community": 25, + "norm_label": "confirmed", + "id": "locales_fr_auth_confirmed" + }, + { + "label": "confirming", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L64", + "community": 25, + "norm_label": "confirming", + "id": "locales_fr_auth_confirming" + }, + { + "label": "confirmSuccess", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L65", + "community": 25, + "norm_label": "confirmsuccess", + "id": "locales_fr_auth_confirmsuccess" + }, + { + "label": "confirmTimeout", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L66", + "community": 25, + "norm_label": "confirmtimeout", + "id": "locales_fr_auth_confirmtimeout" + }, + { + "label": "confirmFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L67", + "community": 25, + "norm_label": "confirmfailed", + "id": "locales_fr_auth_confirmfailed" + }, + { + "label": "resend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L68", + "community": 25, + "norm_label": "resend", + "id": "locales_fr_auth_resend" + }, + { + "label": "resendCooldown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L69", + "community": 25, + "norm_label": "resendcooldown", + "id": "locales_fr_auth_resendcooldown" + }, + { + "label": "noCode", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L70", + "community": 25, + "norm_label": "nocode", + "id": "locales_fr_auth_nocode" + }, + { + "label": "deviceLimitTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L71", + "community": 25, + "norm_label": "devicelimittitle", + "id": "locales_fr_auth_devicelimittitle" + }, + { + "label": "deviceLimitDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L72", + "community": 25, + "norm_label": "devicelimitdesc", + "id": "locales_fr_auth_devicelimitdesc" + }, + { + "label": "deviceLimitUpgrade", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L73", + "community": 25, + "norm_label": "devicelimitupgrade", + "id": "locales_fr_auth_devicelimitupgrade" + }, + { + "label": "toLogin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L74", + "community": 25, + "norm_label": "tologin", + "id": "locales_fr_auth_tologin" + }, + { + "label": "oauthFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L75", + "community": 25, + "norm_label": "oauthfailed", + "id": "locales_fr_auth_oauthfailed" + }, + { + "label": "loginFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L76", + "community": 25, + "norm_label": "loginfailed", + "id": "locales_fr_auth_loginfailed" + }, + { + "label": "registerFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L77", + "community": 25, + "norm_label": "registerfailed", + "id": "locales_fr_auth_registerfailed" + }, + { + "label": "device_locked_headline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L78", + "community": 25, + "norm_label": "device_locked_headline", + "id": "locales_fr_auth_device_locked_headline" + }, + { + "label": "device_locked_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L79", + "community": 25, + "norm_label": "device_locked_body", + "id": "locales_fr_auth_device_locked_body" + }, + { + "label": "device_locked_countdown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L80", + "community": 25, + "norm_label": "device_locked_countdown", + "id": "locales_fr_auth_device_locked_countdown" + }, + { + "label": "device_locked_email_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L81", + "community": 25, + "norm_label": "device_locked_email_hint", + "id": "locales_fr_auth_device_locked_email_hint" + }, + { + "label": "device_locked_use_original", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L82", + "community": 25, + "norm_label": "device_locked_use_original", + "id": "locales_fr_auth_device_locked_use_original" + }, + { + "label": "device_locked_back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L83", + "community": 25, + "norm_label": "device_locked_back", + "id": "locales_fr_auth_device_locked_back" + }, + { + "label": "landing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L85", + "community": 43, + "norm_label": "landing", + "id": "locales_fr_landing" + }, + { + "label": "appName", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L86", + "community": 43, + "norm_label": "appname", + "id": "locales_fr_landing_appname" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L87", + "community": 43, + "norm_label": "tagline", + "id": "locales_fr_landing_tagline" + }, + { + "label": "start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L88", + "community": 43, + "norm_label": "start", + "id": "locales_fr_landing_start" + }, + { + "label": "splash", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L90", + "community": 130, + "norm_label": "splash", + "id": "locales_fr_splash" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L91", + "community": 130, + "norm_label": "tagline", + "id": "locales_fr_splash_tagline" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L92", + "community": 130, + "norm_label": "subtitle", + "id": "locales_fr_splash_subtitle" + }, + { + "label": "madeInGermany", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L93", + "community": 130, + "norm_label": "madeingermany", + "id": "locales_fr_splash_madeingermany" + }, + { + "label": "applock", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L95", + "community": 130, + "norm_label": "applock", + "id": "locales_fr_applock" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L96", + "community": 130, + "norm_label": "title", + "id": "locales_fr_applock_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L97", + "community": 130, + "norm_label": "subtitle", + "id": "locales_fr_applock_subtitle" + }, + { + "label": "unlock", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L98", + "community": 130, + "norm_label": "unlock", + "id": "locales_fr_applock_unlock" + }, + { + "label": "prompt", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L99", + "community": 130, + "norm_label": "prompt", + "id": "locales_fr_applock_prompt" + }, + { + "label": "signOut_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L100", + "community": 130, + "norm_label": "signout_title", + "id": "locales_fr_applock_signout_title" + }, + { + "label": "signOut_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L101", + "community": 130, + "norm_label": "signout_body", + "id": "locales_fr_applock_signout_body" + }, + { + "label": "appHeader", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L103", + "community": 43, + "norm_label": "appheader", + "id": "locales_fr_appheader" + }, + { + "label": "appName", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L104", + "community": 43, + "norm_label": "appname", + "id": "locales_fr_appheader_appname" + }, + { + "label": "sosLabel", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L105", + "community": 43, + "norm_label": "soslabel", + "id": "locales_fr_appheader_soslabel" + }, + { + "label": "sosTagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L106", + "community": 43, + "norm_label": "sostagline", + "id": "locales_fr_appheader_sostagline" + }, + { + "label": "sosSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L107", + "community": 43, + "norm_label": "sossubtitle", + "id": "locales_fr_appheader_sossubtitle" + }, + { + "label": "editProfile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L108", + "community": 43, + "norm_label": "editprofile", + "id": "locales_fr_appheader_editprofile" + }, + { + "label": "settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L109", + "community": 130, + "norm_label": "settings", + "id": "locales_fr_appheader_settings" + }, + { + "label": "signOut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L110", + "community": 43, + "norm_label": "signout", + "id": "locales_fr_appheader_signout" + }, + { + "label": "headerMenu", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L112", + "community": 130, + "norm_label": "headermenu", + "id": "locales_fr_headermenu" + }, + { + "label": "profile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L113", + "community": 130, + "norm_label": "profile", + "id": "locales_fr_headermenu_profile" + }, + { + "label": "settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L114", + "community": 130, + "norm_label": "settings", + "id": "locales_fr_headermenu_settings" + }, + { + "label": "games", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L115", + "community": 130, + "norm_label": "games", + "id": "locales_fr_headermenu_games" + }, + { + "label": "debug", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L116", + "community": 130, + "norm_label": "debug", + "id": "locales_fr_headermenu_debug" + }, + { + "label": "logout", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L117", + "community": 130, + "norm_label": "logout", + "id": "locales_fr_headermenu_logout" + }, + { + "label": "tabs", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L119", + "community": 130, + "norm_label": "tabs", + "id": "locales_fr_tabs" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L120", + "community": 130, + "norm_label": "home", + "id": "locales_fr_tabs_home" + }, + { + "label": "chat", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L121", + "community": 130, + "norm_label": "chat", + "id": "locales_fr_tabs_chat" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L122", + "community": 130, + "norm_label": "coach", + "id": "locales_fr_tabs_coach" + }, + { + "label": "blocker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L123", + "community": 130, + "norm_label": "blocker", + "id": "locales_fr_tabs_blocker" + }, + { + "label": "mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L124", + "community": 130, + "norm_label": "mail", + "id": "locales_fr_tabs_mail" + }, + { + "label": "profile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L125", + "community": 130, + "norm_label": "profile", + "id": "locales_fr_tabs_profile" + }, + { + "label": "games", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L127", + "community": 130, + "norm_label": "games", + "id": "locales_fr_games" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L128", + "community": 130, + "norm_label": "title", + "id": "locales_fr_games_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L129", + "community": 130, + "norm_label": "subtitle", + "id": "locales_fr_games_subtitle" + }, + { + "label": "back_to_picker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L130", + "community": 130, + "norm_label": "back_to_picker", + "id": "locales_fr_games_back_to_picker" + }, + { + "label": "last_score", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L131", + "community": 130, + "norm_label": "last_score", + "id": "locales_fr_games_last_score" + }, + { + "label": "skeleton_footer", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L132", + "community": 130, + "norm_label": "skeleton_footer", + "id": "locales_fr_games_skeleton_footer" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L134", + "community": 43, + "norm_label": "home", + "id": "locales_fr_home" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L135", + "community": 43, + "norm_label": "tagline", + "id": "locales_fr_home_tagline" + }, + { + "label": "start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L136", + "community": 43, + "norm_label": "start", + "id": "locales_fr_home_start" + }, + { + "label": "greeting_morning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L137", + "community": 43, + "norm_label": "greeting_morning", + "id": "locales_fr_home_greeting_morning" + }, + { + "label": "greeting_day", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L138", + "community": 43, + "norm_label": "greeting_day", + "id": "locales_fr_home_greeting_day" + }, + { + "label": "greeting_evening", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L139", + "community": 43, + "norm_label": "greeting_evening", + "id": "locales_fr_home_greeting_evening" + }, + { + "label": "streak_days_one", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L140", + "community": 43, + "norm_label": "streak_days_one", + "id": "locales_fr_home_streak_days_one" + }, + { + "label": "streak_days_other", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L141", + "community": 43, + "norm_label": "streak_days_other", + "id": "locales_fr_home_streak_days_other" + }, + { + "label": "streak_start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L142", + "community": 43, + "norm_label": "streak_start", + "id": "locales_fr_home_streak_start" + }, + { + "label": "quote_of_day", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L143", + "community": 43, + "norm_label": "quote_of_day", + "id": "locales_fr_home_quote_of_day" + }, + { + "label": "quick_access", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L144", + "community": 43, + "norm_label": "quick_access", + "id": "locales_fr_home_quick_access" + }, + { + "label": "stats_urges", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L145", + "community": 43, + "norm_label": "stats_urges", + "id": "locales_fr_home_stats_urges" + }, + { + "label": "stats_chats", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L146", + "community": 43, + "norm_label": "stats_chats", + "id": "locales_fr_home_stats_chats" + }, + { + "label": "stats_mails", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L147", + "community": 43, + "norm_label": "stats_mails", + "id": "locales_fr_home_stats_mails" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L149", + "community": 130, + "norm_label": "coach", + "id": "locales_fr_coach" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L150", + "community": 130, + "norm_label": "title", + "id": "locales_fr_coach_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L151", + "community": 130, + "norm_label": "subtitle", + "id": "locales_fr_coach_subtitle" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L152", + "community": 130, + "norm_label": "welcome", + "id": "locales_fr_coach_welcome" + }, + { + "label": "input_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L153", + "community": 130, + "norm_label": "input_placeholder", + "id": "locales_fr_coach_input_placeholder" + }, + { + "label": "new_chat", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L154", + "community": 130, + "norm_label": "new_chat", + "id": "locales_fr_coach_new_chat" + }, + { + "label": "lyra", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L155", + "community": 40, + "norm_label": "lyra", + "id": "locales_fr_coach_lyra" + }, + { + "label": "modeBadge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L156", + "community": 130, + "norm_label": "modebadge", + "id": "locales_fr_coach_modebadge" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L157", + "community": 130, + "norm_label": "coach", + "id": "locales_fr_modebadge_coach" + }, + { + "label": "sos", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L158", + "community": 130, + "norm_label": "sos", + "id": "locales_fr_modebadge_sos" + }, + { + "label": "placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L160", + "community": 687, + "norm_label": "placeholder", + "id": "locales_fr_coach_placeholder" + }, + { + "label": "speaking", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L161", + "community": 130, + "norm_label": "speaking", + "id": "locales_fr_coach_speaking" + }, + { + "label": "recording", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L162", + "community": 130, + "norm_label": "recording", + "id": "locales_fr_coach_recording" + }, + { + "label": "transcribing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L163", + "community": 130, + "norm_label": "transcribing", + "id": "locales_fr_coach_transcribing" + }, + { + "label": "feedback_saved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L164", + "community": 130, + "norm_label": "feedback_saved", + "id": "locales_fr_coach_feedback_saved" + }, + { + "label": "welcome_back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L165", + "community": 130, + "norm_label": "welcome_back", + "id": "locales_fr_coach_welcome_back" + }, + { + "label": "online", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L166", + "community": 130, + "norm_label": "online", + "id": "locales_fr_coach_online" + }, + { + "label": "thinking", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L167", + "community": 130, + "norm_label": "thinking", + "id": "locales_fr_coach_thinking" + }, + { + "label": "error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L168", + "community": 130, + "norm_label": "error", + "id": "locales_fr_coach_error" + }, + { + "label": "blocker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L170", + "community": 3, + "norm_label": "blocker", + "id": "locales_fr_blocker" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L171", + "community": 3, + "norm_label": "title", + "id": "locales_fr_blocker_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L172", + "community": 3, + "norm_label": "subtitle", + "id": "locales_fr_blocker_subtitle" + }, + { + "label": "status_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L173", + "community": 3, + "norm_label": "status_active", + "id": "locales_fr_blocker_status_active" + }, + { + "label": "status_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L174", + "community": 3, + "norm_label": "status_inactive", + "id": "locales_fr_blocker_status_inactive" + }, + { + "label": "filter_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L175", + "community": 3, + "norm_label": "filter_label", + "id": "locales_fr_blocker_filter_label" + }, + { + "label": "filter_active_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L176", + "community": 3, + "norm_label": "filter_active_desc", + "id": "locales_fr_blocker_filter_active_desc" + }, + { + "label": "filter_inactive_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L177", + "community": 3, + "norm_label": "filter_inactive_desc", + "id": "locales_fr_blocker_filter_inactive_desc" + }, + { + "label": "tamper_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L178", + "community": 3, + "norm_label": "tamper_title", + "id": "locales_fr_blocker_tamper_title" + }, + { + "label": "tamper_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L179", + "community": 3, + "norm_label": "tamper_desc", + "id": "locales_fr_blocker_tamper_desc" + }, + { + "label": "custom_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L180", + "community": 3, + "norm_label": "custom_domains", + "id": "locales_fr_blocker_custom_domains" + }, + { + "label": "add_domain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L181", + "community": 3, + "norm_label": "add_domain", + "id": "locales_fr_blocker_add_domain" + }, + { + "label": "help_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L182", + "community": 3, + "norm_label": "help_link", + "id": "locales_fr_blocker_help_link" + }, + { + "label": "status_approved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L183", + "community": 3, + "norm_label": "status_approved", + "id": "locales_fr_blocker_status_approved" + }, + { + "label": "status_rejected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L184", + "community": 3, + "norm_label": "status_rejected", + "id": "locales_fr_blocker_status_rejected" + }, + { + "label": "status_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L185", + "community": 3, + "norm_label": "status_pending", + "id": "locales_fr_blocker_status_pending" + }, + { + "label": "add_sheet_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L186", + "community": 3, + "norm_label": "add_sheet_title", + "id": "locales_fr_blocker_add_sheet_title" + }, + { + "label": "add_sheet_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L187", + "community": 3, + "norm_label": "add_sheet_label", + "id": "locales_fr_blocker_add_sheet_label" + }, + { + "label": "add_sheet_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L188", + "community": 3, + "norm_label": "add_sheet_placeholder", + "id": "locales_fr_blocker_add_sheet_placeholder" + }, + { + "label": "add_sheet_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L189", + "community": 3, + "norm_label": "add_sheet_invalid", + "id": "locales_fr_blocker_add_sheet_invalid" + }, + { + "label": "add_sheet_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L190", + "community": 3, + "norm_label": "add_sheet_help", + "id": "locales_fr_blocker_add_sheet_help" + }, + { + "label": "preview_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L191", + "community": 3, + "norm_label": "preview_web", + "id": "locales_fr_blocker_preview_web" + }, + { + "label": "preview_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L192", + "community": 3, + "norm_label": "preview_mail", + "id": "locales_fr_blocker_preview_mail" + }, + { + "label": "preview_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L193", + "community": 3, + "norm_label": "preview_invalid", + "id": "locales_fr_blocker_preview_invalid" + }, + { + "label": "custom_filter_overview_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L194", + "community": 3, + "norm_label": "custom_filter_overview_title", + "id": "locales_fr_blocker_custom_filter_overview_title" + }, + { + "label": "custom_filter_overview_count", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L195", + "community": 3, + "norm_label": "custom_filter_overview_count", + "id": "locales_fr_blocker_custom_filter_overview_count" + }, + { + "label": "add_sheet_warning_free", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L196", + "community": 3, + "norm_label": "add_sheet_warning_free", + "id": "locales_fr_blocker_add_sheet_warning_free" + }, + { + "label": "add_sheet_warning_pro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L197", + "community": 3, + "norm_label": "add_sheet_warning_pro", + "id": "locales_fr_blocker_add_sheet_warning_pro" + }, + { + "label": "add_sheet_confirm_permanent", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L198", + "community": 3, + "norm_label": "add_sheet_confirm_permanent", + "id": "locales_fr_blocker_add_sheet_confirm_permanent" + }, + { + "label": "add_sheet_add_failed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L199", + "community": 3, + "norm_label": "add_sheet_add_failed", + "id": "locales_fr_blocker_add_sheet_add_failed" + }, + { + "label": "add_sheet_already_global", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L200", + "community": 3, + "norm_label": "add_sheet_already_global", + "id": "locales_fr_blocker_add_sheet_already_global" + }, + { + "label": "cooldown_banner_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L201", + "community": 3, + "norm_label": "cooldown_banner_title", + "id": "locales_fr_blocker_cooldown_banner_title" + }, + { + "label": "deactivation_actionsheet_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L202", + "community": 3, + "norm_label": "deactivation_actionsheet_title", + "id": "locales_fr_blocker_deactivation_actionsheet_title" + }, + { + "label": "deactivation_actionsheet_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L203", + "community": 3, + "norm_label": "deactivation_actionsheet_message", + "id": "locales_fr_blocker_deactivation_actionsheet_message" + }, + { + "label": "deactivation_start_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L204", + "community": 3, + "norm_label": "deactivation_start_cta", + "id": "locales_fr_blocker_deactivation_start_cta" + }, + { + "label": "deactivation_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L205", + "community": 3, + "norm_label": "deactivation_failed_msg", + "id": "locales_fr_blocker_deactivation_failed_msg" + }, + { + "label": "deactivation_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L206", + "community": 3, + "norm_label": "deactivation_heading", + "id": "locales_fr_blocker_deactivation_heading" + }, + { + "label": "deactivation_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L207", + "community": 3, + "norm_label": "deactivation_title", + "id": "locales_fr_blocker_deactivation_title" + }, + { + "label": "deactivation_intro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L208", + "community": 3, + "norm_label": "deactivation_intro", + "id": "locales_fr_blocker_deactivation_intro" + }, + { + "label": "deactivation_bullet1_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L209", + "community": 3, + "norm_label": "deactivation_bullet1_title", + "id": "locales_fr_blocker_deactivation_bullet1_title" + }, + { + "label": "deactivation_bullet1_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L210", + "community": 3, + "norm_label": "deactivation_bullet1_text", + "id": "locales_fr_blocker_deactivation_bullet1_text" + }, + { + "label": "deactivation_bullet2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L211", + "community": 3, + "norm_label": "deactivation_bullet2_title", + "id": "locales_fr_blocker_deactivation_bullet2_title" + }, + { + "label": "deactivation_bullet2_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L212", + "community": 3, + "norm_label": "deactivation_bullet2_text", + "id": "locales_fr_blocker_deactivation_bullet2_text" + }, + { + "label": "deactivation_bullet3_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L213", + "community": 3, + "norm_label": "deactivation_bullet3_title", + "id": "locales_fr_blocker_deactivation_bullet3_title" + }, + { + "label": "deactivation_bullet3_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L214", + "community": 3, + "norm_label": "deactivation_bullet3_text", + "id": "locales_fr_blocker_deactivation_bullet3_text" + }, + { + "label": "deactivation_breathe_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L215", + "community": 3, + "norm_label": "deactivation_breathe_cta", + "id": "locales_fr_blocker_deactivation_breathe_cta" + }, + { + "label": "deactivation_start_anyway", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L216", + "community": 3, + "norm_label": "deactivation_start_anyway", + "id": "locales_fr_blocker_deactivation_start_anyway" + }, + { + "label": "deactivation_starting", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L217", + "community": 3, + "norm_label": "deactivation_starting", + "id": "locales_fr_blocker_deactivation_starting" + }, + { + "label": "deactivation_cancel_failed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L218", + "community": 3, + "norm_label": "deactivation_cancel_failed", + "id": "locales_fr_blocker_deactivation_cancel_failed" + }, + { + "label": "domain_section_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L219", + "community": 3, + "norm_label": "domain_section_title", + "id": "locales_fr_blocker_domain_section_title" + }, + { + "label": "domain_add_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L220", + "community": 3, + "norm_label": "domain_add_a11y", + "id": "locales_fr_blocker_domain_add_a11y" + }, + { + "label": "domain_limit_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L221", + "community": 3, + "norm_label": "domain_limit_title", + "id": "locales_fr_blocker_domain_limit_title" + }, + { + "label": "domain_limit_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L222", + "community": 3, + "norm_label": "domain_limit_desc", + "id": "locales_fr_blocker_domain_limit_desc" + }, + { + "label": "domain_empty", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L223", + "community": 3, + "norm_label": "domain_empty", + "id": "locales_fr_blocker_domain_empty" + }, + { + "label": "domain_badge_voting", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L224", + "community": 3, + "norm_label": "domain_badge_voting", + "id": "locales_fr_blocker_domain_badge_voting" + }, + { + "label": "domain_badge_pruefung", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L225", + "community": 3, + "norm_label": "domain_badge_pruefung", + "id": "locales_fr_blocker_domain_badge_pruefung" + }, + { + "label": "domain_badge_rejected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L226", + "community": 3, + "norm_label": "domain_badge_rejected", + "id": "locales_fr_blocker_domain_badge_rejected" + }, + { + "label": "domain_badge_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L227", + "community": 3, + "norm_label": "domain_badge_active", + "id": "locales_fr_blocker_domain_badge_active" + }, + { + "label": "domain_btn_freigeben", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L228", + "community": 3, + "norm_label": "domain_btn_freigeben", + "id": "locales_fr_blocker_domain_btn_freigeben" + }, + { + "label": "domain_btn_erneut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L229", + "community": 3, + "norm_label": "domain_btn_erneut", + "id": "locales_fr_blocker_domain_btn_erneut" + }, + { + "label": "domain_btn_in_abstimmung", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L230", + "community": 3, + "norm_label": "domain_btn_in_abstimmung", + "id": "locales_fr_blocker_domain_btn_in_abstimmung" + }, + { + "label": "domain_btn_rebreak_prueft", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L231", + "community": 3, + "norm_label": "domain_btn_rebreak_prueft", + "id": "locales_fr_blocker_domain_btn_rebreak_prueft" + }, + { + "label": "domain_confirm_legend_resubmit", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L232", + "community": 3, + "norm_label": "domain_confirm_legend_resubmit", + "id": "locales_fr_blocker_domain_confirm_legend_resubmit" + }, + { + "label": "domain_confirm_legend_first", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L233", + "community": 3, + "norm_label": "domain_confirm_legend_first", + "id": "locales_fr_blocker_domain_confirm_legend_first" + }, + { + "label": "domain_confirm_community_resubmit", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L234", + "community": 3, + "norm_label": "domain_confirm_community_resubmit", + "id": "locales_fr_blocker_domain_confirm_community_resubmit" + }, + { + "label": "domain_confirm_community_first", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L235", + "community": 3, + "norm_label": "domain_confirm_community_first", + "id": "locales_fr_blocker_domain_confirm_community_first" + }, + { + "label": "domain_confirm_legend_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L236", + "community": 3, + "norm_label": "domain_confirm_legend_message", + "id": "locales_fr_blocker_domain_confirm_legend_message" + }, + { + "label": "domain_confirm_community_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L237", + "community": 3, + "norm_label": "domain_confirm_community_message", + "id": "locales_fr_blocker_domain_confirm_community_message" + }, + { + "label": "domain_success_legend_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L238", + "community": 3, + "norm_label": "domain_success_legend_title", + "id": "locales_fr_blocker_domain_success_legend_title" + }, + { + "label": "domain_success_community_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L239", + "community": 3, + "norm_label": "domain_success_community_title", + "id": "locales_fr_blocker_domain_success_community_title" + }, + { + "label": "domain_success_legend_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L240", + "community": 3, + "norm_label": "domain_success_legend_message", + "id": "locales_fr_blocker_domain_success_legend_message" + }, + { + "label": "domain_success_community_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L241", + "community": 3, + "norm_label": "domain_success_community_message", + "id": "locales_fr_blocker_domain_success_community_message" + }, + { + "label": "upgrade_alert_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L242", + "community": 3, + "norm_label": "upgrade_alert_title", + "id": "locales_fr_blocker_upgrade_alert_title" + }, + { + "label": "upgrade_alert_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L243", + "community": 3, + "norm_label": "upgrade_alert_desc", + "id": "locales_fr_blocker_upgrade_alert_desc" + }, + { + "label": "protection_card_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L244", + "community": 3, + "norm_label": "protection_card_title", + "id": "locales_fr_blocker_protection_card_title" + }, + { + "label": "protection_card_locked_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L245", + "community": 3, + "norm_label": "protection_card_locked_title", + "id": "locales_fr_blocker_protection_card_locked_title" + }, + { + "label": "protection_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L246", + "community": 3, + "norm_label": "protection_subtitle_inactive", + "id": "locales_fr_blocker_protection_subtitle_inactive" + }, + { + "label": "protection_subtitle_cooldown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L247", + "community": 3, + "norm_label": "protection_subtitle_cooldown", + "id": "locales_fr_blocker_protection_subtitle_cooldown" + }, + { + "label": "protection_subtitle_free", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L248", + "community": 3, + "norm_label": "protection_subtitle_free", + "id": "locales_fr_blocker_protection_subtitle_free" + }, + { + "label": "protection_subtitle_legend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L249", + "community": 3, + "norm_label": "protection_subtitle_legend", + "id": "locales_fr_blocker_protection_subtitle_legend" + }, + { + "label": "protection_subtitle_pro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L250", + "community": 3, + "norm_label": "protection_subtitle_pro", + "id": "locales_fr_blocker_protection_subtitle_pro" + }, + { + "label": "protection_settings_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L251", + "community": 3, + "norm_label": "protection_settings_a11y", + "id": "locales_fr_blocker_protection_settings_a11y" + }, + { + "label": "protection_stat_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L252", + "community": 3, + "norm_label": "protection_stat_domains", + "id": "locales_fr_blocker_protection_stat_domains" + }, + { + "label": "protection_stat_method", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L253", + "community": 3, + "norm_label": "protection_stat_method", + "id": "locales_fr_blocker_protection_stat_method" + }, + { + "label": "protection_stat_method_dns", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L254", + "community": 3, + "norm_label": "protection_stat_method_dns", + "id": "locales_fr_blocker_protection_stat_method_dns" + }, + { + "label": "protection_stat_method_native", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L255", + "community": 3, + "norm_label": "protection_stat_method_native", + "id": "locales_fr_blocker_protection_stat_method_native" + }, + { + "label": "protection_stat_status", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L256", + "community": 3, + "norm_label": "protection_stat_status", + "id": "locales_fr_blocker_protection_stat_status" + }, + { + "label": "protection_stat_status_live", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L257", + "community": 3, + "norm_label": "protection_stat_status_live", + "id": "locales_fr_blocker_protection_stat_status_live" + }, + { + "label": "activate_url_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L258", + "community": 3, + "norm_label": "activate_url_failed_title", + "id": "locales_fr_blocker_activate_url_failed_title" + }, + { + "label": "activate_url_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L259", + "community": 3, + "norm_label": "activate_url_failed_msg", + "id": "locales_fr_blocker_activate_url_failed_msg" + }, + { + "label": "activate_settings_btn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L260", + "community": 3, + "norm_label": "activate_settings_btn", + "id": "locales_fr_blocker_activate_settings_btn" + }, + { + "label": "permission_denied", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L261", + "community": 604, + "norm_label": "permission_denied", + "id": "locales_fr_blocker_permission_denied" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L262", + "community": 604, + "norm_label": "title", + "id": "locales_fr_permission_denied_title" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L263", + "community": 604, + "norm_label": "body", + "id": "locales_fr_permission_denied_body" + }, + { + "label": "retry_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L264", + "community": 604, + "norm_label": "retry_cta", + "id": "locales_fr_permission_denied_retry_cta" + }, + { + "label": "retry_loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L265", + "community": 604, + "norm_label": "retry_loading", + "id": "locales_fr_permission_denied_retry_loading" + }, + { + "label": "settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L266", + "community": 604, + "norm_label": "settings_cta", + "id": "locales_fr_permission_denied_settings_cta" + }, + { + "label": "fallback_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L267", + "community": 604, + "norm_label": "fallback_label", + "id": "locales_fr_permission_denied_fallback_label" + }, + { + "label": "fallback_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L268", + "community": 604, + "norm_label": "fallback_body", + "id": "locales_fr_permission_denied_fallback_body" + }, + { + "label": "family_controls_error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L270", + "community": 604, + "norm_label": "family_controls_error", + "id": "locales_fr_blocker_family_controls_error" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L271", + "community": 604, + "norm_label": "title", + "id": "locales_fr_family_controls_error_title" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L272", + "community": 604, + "norm_label": "body", + "id": "locales_fr_family_controls_error_body" + }, + { + "label": "retry_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L273", + "community": 604, + "norm_label": "retry_cta", + "id": "locales_fr_family_controls_error_retry_cta" + }, + { + "label": "retry_loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L274", + "community": 604, + "norm_label": "retry_loading", + "id": "locales_fr_family_controls_error_retry_loading" + }, + { + "label": "settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L275", + "community": 604, + "norm_label": "settings_cta", + "id": "locales_fr_family_controls_error_settings_cta" + }, + { + "label": "fallback_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L276", + "community": 604, + "norm_label": "fallback_label", + "id": "locales_fr_family_controls_error_fallback_label" + }, + { + "label": "fallback_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L277", + "community": 604, + "norm_label": "fallback_body", + "id": "locales_fr_family_controls_error_fallback_body" + }, + { + "label": "protection_off_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L279", + "community": 3, + "norm_label": "protection_off_title", + "id": "locales_fr_blocker_protection_off_title" + }, + { + "label": "protection_off_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L280", + "community": 3, + "norm_label": "protection_off_message", + "id": "locales_fr_blocker_protection_off_message" + }, + { + "label": "reactivate_btn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L281", + "community": 3, + "norm_label": "reactivate_btn", + "id": "locales_fr_blocker_reactivate_btn" + }, + { + "label": "protection_off_later", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L282", + "community": 3, + "norm_label": "protection_off_later", + "id": "locales_fr_blocker_protection_off_later" + }, + { + "label": "activate_app_lock_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L283", + "community": 3, + "norm_label": "activate_app_lock_failed_title", + "id": "locales_fr_blocker_activate_app_lock_failed_title" + }, + { + "label": "activate_app_lock_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L284", + "community": 3, + "norm_label": "activate_app_lock_failed_msg", + "id": "locales_fr_blocker_activate_app_lock_failed_msg" + }, + { + "label": "sync_list_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L285", + "community": 3, + "norm_label": "sync_list_failed_title", + "id": "locales_fr_blocker_sync_list_failed_title" + }, + { + "label": "sync_list_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L286", + "community": 3, + "norm_label": "sync_list_failed_msg", + "id": "locales_fr_blocker_sync_list_failed_msg" + }, + { + "label": "activation_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L287", + "community": 3, + "norm_label": "activation_failed_title", + "id": "locales_fr_blocker_activation_failed_title" + }, + { + "label": "details_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L288", + "community": 3, + "norm_label": "details_done", + "id": "locales_fr_blocker_details_done" + }, + { + "label": "details_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L289", + "community": 3, + "norm_label": "details_title", + "id": "locales_fr_blocker_details_title" + }, + { + "label": "details_active_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L290", + "community": 3, + "norm_label": "details_active_title", + "id": "locales_fr_blocker_details_active_title" + }, + { + "label": "details_domains_blocked", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L291", + "community": 3, + "norm_label": "details_domains_blocked", + "id": "locales_fr_blocker_details_domains_blocked" + }, + { + "label": "details_layers_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L292", + "community": 3, + "norm_label": "details_layers_heading", + "id": "locales_fr_blocker_details_layers_heading" + }, + { + "label": "details_layer_url_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L293", + "community": 3, + "norm_label": "details_layer_url_label", + "id": "locales_fr_blocker_details_layer_url_label" + }, + { + "label": "details_layer_url_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L294", + "community": 3, + "norm_label": "details_layer_url_desc", + "id": "locales_fr_blocker_details_layer_url_desc" + }, + { + "label": "details_layer_applock_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L295", + "community": 3, + "norm_label": "details_layer_applock_label", + "id": "locales_fr_blocker_details_layer_applock_label" + }, + { + "label": "details_layer_applock_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L296", + "community": 3, + "norm_label": "details_layer_applock_desc", + "id": "locales_fr_blocker_details_layer_applock_desc" + }, + { + "label": "details_layer_vpn_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L297", + "community": 3, + "norm_label": "details_layer_vpn_label", + "id": "locales_fr_blocker_details_layer_vpn_label" + }, + { + "label": "details_layer_vpn_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L298", + "community": 3, + "norm_label": "details_layer_vpn_desc", + "id": "locales_fr_blocker_details_layer_vpn_desc" + }, + { + "label": "details_layer_a11y_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L299", + "community": 3, + "norm_label": "details_layer_a11y_label", + "id": "locales_fr_blocker_details_layer_a11y_label" + }, + { + "label": "details_layer_a11y_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L300", + "community": 3, + "norm_label": "details_layer_a11y_desc", + "id": "locales_fr_blocker_details_layer_a11y_desc" + }, + { + "label": "details_layer_tamper_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L301", + "community": 3, + "norm_label": "details_layer_tamper_label", + "id": "locales_fr_blocker_details_layer_tamper_label" + }, + { + "label": "details_layer_tamper_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L302", + "community": 3, + "norm_label": "details_layer_tamper_desc", + "id": "locales_fr_blocker_details_layer_tamper_desc" + }, + { + "label": "details_lyra_cta_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L303", + "community": 3, + "norm_label": "details_lyra_cta_title", + "id": "locales_fr_blocker_details_lyra_cta_title" + }, + { + "label": "details_lyra_cta_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L304", + "community": 3, + "norm_label": "details_lyra_cta_subtitle", + "id": "locales_fr_blocker_details_lyra_cta_subtitle" + }, + { + "label": "details_deactivate_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L305", + "community": 3, + "norm_label": "details_deactivate_link", + "id": "locales_fr_blocker_details_deactivate_link" + }, + { + "label": "layers_url_filter_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L306", + "community": 3, + "norm_label": "layers_url_filter_title", + "id": "locales_fr_blocker_layers_url_filter_title" + }, + { + "label": "layers_url_filter_subtitle_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L307", + "community": 3, + "norm_label": "layers_url_filter_subtitle_active", + "id": "locales_fr_blocker_layers_url_filter_subtitle_active" + }, + { + "label": "layers_url_filter_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L308", + "community": 3, + "norm_label": "layers_url_filter_subtitle_inactive", + "id": "locales_fr_blocker_layers_url_filter_subtitle_inactive" + }, + { + "label": "layers_app_lock_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L309", + "community": 3, + "norm_label": "layers_app_lock_title", + "id": "locales_fr_blocker_layers_app_lock_title" + }, + { + "label": "layers_app_lock_subtitle_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L310", + "community": 3, + "norm_label": "layers_app_lock_subtitle_active", + "id": "locales_fr_blocker_layers_app_lock_subtitle_active" + }, + { + "label": "layers_app_lock_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L311", + "community": 3, + "norm_label": "layers_app_lock_subtitle_inactive", + "id": "locales_fr_blocker_layers_app_lock_subtitle_inactive" + }, + { + "label": "layers_app_lock_warning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L312", + "community": 3, + "norm_label": "layers_app_lock_warning", + "id": "locales_fr_blocker_layers_app_lock_warning" + }, + { + "label": "layers_app_lock_locked_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L313", + "community": 3, + "norm_label": "layers_app_lock_locked_hint", + "id": "locales_fr_blocker_layers_app_lock_locked_hint" + }, + { + "label": "screentime_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L314", + "community": 3, + "norm_label": "screentime_title", + "id": "locales_fr_blocker_screentime_title" + }, + { + "label": "screentime_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L315", + "community": 3, + "norm_label": "screentime_desc", + "id": "locales_fr_blocker_screentime_desc" + }, + { + "label": "screentime_generate_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L316", + "community": 3, + "norm_label": "screentime_generate_cta", + "id": "locales_fr_blocker_screentime_generate_cta" + }, + { + "label": "screentime_code_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L317", + "community": 3, + "norm_label": "screentime_code_label", + "id": "locales_fr_blocker_screentime_code_label" + }, + { + "label": "screentime_step1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L318", + "community": 3, + "norm_label": "screentime_step1", + "id": "locales_fr_blocker_screentime_step1" + }, + { + "label": "screentime_step2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L319", + "community": 3, + "norm_label": "screentime_step2", + "id": "locales_fr_blocker_screentime_step2" + }, + { + "label": "screentime_step3", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L320", + "community": 3, + "norm_label": "screentime_step3", + "id": "locales_fr_blocker_screentime_step3" + }, + { + "label": "screentime_step_note", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L321", + "community": 3, + "norm_label": "screentime_step_note", + "id": "locales_fr_blocker_screentime_step_note" + }, + { + "label": "screentime_open_settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L322", + "community": 3, + "norm_label": "screentime_open_settings_cta", + "id": "locales_fr_blocker_screentime_open_settings_cta" + }, + { + "label": "screentime_confirm_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L323", + "community": 3, + "norm_label": "screentime_confirm_cta", + "id": "locales_fr_blocker_screentime_confirm_cta" + }, + { + "label": "screentime_confirmed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L324", + "community": 3, + "norm_label": "screentime_confirmed_title", + "id": "locales_fr_blocker_screentime_confirmed_title" + }, + { + "label": "screentime_confirmed_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L325", + "community": 3, + "norm_label": "screentime_confirmed_desc", + "id": "locales_fr_blocker_screentime_confirmed_desc" + }, + { + "label": "kpi_global_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L326", + "community": 3, + "norm_label": "kpi_global_label", + "id": "locales_fr_blocker_kpi_global_label" + }, + { + "label": "kpi_global_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L327", + "community": 3, + "norm_label": "kpi_global_subtitle", + "id": "locales_fr_blocker_kpi_global_subtitle" + }, + { + "label": "delta_week", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L328", + "community": 3, + "norm_label": "delta_week", + "id": "locales_fr_blocker_delta_week" + }, + { + "label": "delta_month", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L329", + "community": 3, + "norm_label": "delta_month", + "id": "locales_fr_blocker_delta_month" + }, + { + "label": "kpi_submissions_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L330", + "community": 3, + "norm_label": "kpi_submissions_title", + "id": "locales_fr_blocker_kpi_submissions_title" + }, + { + "label": "kpi_submissions_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L331", + "community": 3, + "norm_label": "kpi_submissions_subtitle", + "id": "locales_fr_blocker_kpi_submissions_subtitle" + }, + { + "label": "kpi_my_submissions", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L332", + "community": 3, + "norm_label": "kpi_my_submissions", + "id": "locales_fr_blocker_kpi_my_submissions" + }, + { + "label": "kpi_status_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L333", + "community": 3, + "norm_label": "kpi_status_active", + "id": "locales_fr_blocker_kpi_status_active" + }, + { + "label": "kpi_status_vote", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L334", + "community": 3, + "norm_label": "kpi_status_vote", + "id": "locales_fr_blocker_kpi_status_vote" + }, + { + "label": "kpi_status_review", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L335", + "community": 3, + "norm_label": "kpi_status_review", + "id": "locales_fr_blocker_kpi_status_review" + }, + { + "label": "kpi_in_vote", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L336", + "community": 3, + "norm_label": "kpi_in_vote", + "id": "locales_fr_blocker_kpi_in_vote" + }, + { + "label": "kpi_in_review", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L337", + "community": 3, + "norm_label": "kpi_in_review", + "id": "locales_fr_blocker_kpi_in_review" + }, + { + "label": "kpi_avg_per_user", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L338", + "community": 3, + "norm_label": "kpi_avg_per_user", + "id": "locales_fr_blocker_kpi_avg_per_user" + }, + { + "label": "kpi_avg_wait", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L339", + "community": 3, + "norm_label": "kpi_avg_wait", + "id": "locales_fr_blocker_kpi_avg_wait" + }, + { + "label": "kpi_days_suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L340", + "community": 3, + "norm_label": "kpi_days_suffix", + "id": "locales_fr_blocker_kpi_days_suffix" + }, + { + "label": "faq_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L341", + "community": 3, + "norm_label": "faq_heading", + "id": "locales_fr_blocker_faq_heading" + }, + { + "label": "faq1_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L342", + "community": 3, + "norm_label": "faq1_q", + "id": "locales_fr_blocker_faq1_q" + }, + { + "label": "faq1_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L343", + "community": 3, + "norm_label": "faq1_a", + "id": "locales_fr_blocker_faq1_a" + }, + { + "label": "faq2_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L344", + "community": 3, + "norm_label": "faq2_q", + "id": "locales_fr_blocker_faq2_q" + }, + { + "label": "faq2_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L345", + "community": 3, + "norm_label": "faq2_a", + "id": "locales_fr_blocker_faq2_a" + }, + { + "label": "faq3_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L346", + "community": 3, + "norm_label": "faq3_q", + "id": "locales_fr_blocker_faq3_q" + }, + { + "label": "faq3_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L347", + "community": 3, + "norm_label": "faq3_a", + "id": "locales_fr_blocker_faq3_a" + }, + { + "label": "faq4_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L348", + "community": 3, + "norm_label": "faq4_q", + "id": "locales_fr_blocker_faq4_q" + }, + { + "label": "faq4_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L349", + "community": 3, + "norm_label": "faq4_a", + "id": "locales_fr_blocker_faq4_a" + }, + { + "label": "faq5_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L350", + "community": 3, + "norm_label": "faq5_q", + "id": "locales_fr_blocker_faq5_q" + }, + { + "label": "faq5_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L351", + "community": 3, + "norm_label": "faq5_a", + "id": "locales_fr_blocker_faq5_a" + }, + { + "label": "faq6_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L352", + "community": 3, + "norm_label": "faq6_q", + "id": "locales_fr_blocker_faq6_q" + }, + { + "label": "faq6_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L353", + "community": 3, + "norm_label": "faq6_a", + "id": "locales_fr_blocker_faq6_a" + }, + { + "label": "faq7_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L354", + "community": 3, + "norm_label": "faq7_q", + "id": "locales_fr_blocker_faq7_q" + }, + { + "label": "faq7_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L355", + "community": 3, + "norm_label": "faq7_a", + "id": "locales_fr_blocker_faq7_a" + }, + { + "label": "faq8_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L356", + "community": 3, + "norm_label": "faq8_q", + "id": "locales_fr_blocker_faq8_q" + }, + { + "label": "faq8_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L357", + "community": 3, + "norm_label": "faq8_a", + "id": "locales_fr_blocker_faq8_a" + }, + { + "label": "faq9_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L358", + "community": 3, + "norm_label": "faq9_q", + "id": "locales_fr_blocker_faq9_q" + }, + { + "label": "faq9_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L359", + "community": 3, + "norm_label": "faq9_a", + "id": "locales_fr_blocker_faq9_a" + }, + { + "label": "more_info_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L360", + "community": 3, + "norm_label": "more_info_title", + "id": "locales_fr_blocker_more_info_title" + }, + { + "label": "cooldown_elapsed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L361", + "community": 3, + "norm_label": "cooldown_elapsed_title", + "id": "locales_fr_blocker_cooldown_elapsed_title" + }, + { + "label": "cooldown_elapsed_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L362", + "community": 3, + "norm_label": "cooldown_elapsed_message", + "id": "locales_fr_blocker_cooldown_elapsed_message" + }, + { + "label": "cooldown_elapsed_message_ios", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L363", + "community": 3, + "norm_label": "cooldown_elapsed_message_ios", + "id": "locales_fr_blocker_cooldown_elapsed_message_ios" + }, + { + "label": "cooldown_elapsed_open_settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L364", + "community": 3, + "norm_label": "cooldown_elapsed_open_settings", + "id": "locales_fr_blocker_cooldown_elapsed_open_settings" + }, + { + "label": "app_lock_coming_soon_badge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L365", + "community": 3, + "norm_label": "app_lock_coming_soon_badge", + "id": "locales_fr_blocker_app_lock_coming_soon_badge" + }, + { + "label": "app_lock_coming_soon_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L366", + "community": 3, + "norm_label": "app_lock_coming_soon_desc", + "id": "locales_fr_blocker_app_lock_coming_soon_desc" + }, + { + "label": "type_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L367", + "community": 3, + "norm_label": "type_web", + "id": "locales_fr_blocker_type_web" + }, + { + "label": "type_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L368", + "community": 3, + "norm_label": "type_mail", + "id": "locales_fr_blocker_type_mail" + }, + { + "label": "add_web_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L369", + "community": 3, + "norm_label": "add_web_label", + "id": "locales_fr_blocker_add_web_label" + }, + { + "label": "add_web_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L370", + "community": 3, + "norm_label": "add_web_placeholder", + "id": "locales_fr_blocker_add_web_placeholder" + }, + { + "label": "add_web_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L371", + "community": 3, + "norm_label": "add_web_help", + "id": "locales_fr_blocker_add_web_help" + }, + { + "label": "add_mail_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L372", + "community": 3, + "norm_label": "add_mail_label", + "id": "locales_fr_blocker_add_mail_label" + }, + { + "label": "add_mail_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L373", + "community": 3, + "norm_label": "add_mail_placeholder", + "id": "locales_fr_blocker_add_mail_placeholder" + }, + { + "label": "add_mail_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L374", + "community": 3, + "norm_label": "add_mail_help", + "id": "locales_fr_blocker_add_mail_help" + }, + { + "label": "add_mail_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L375", + "community": 3, + "norm_label": "add_mail_invalid", + "id": "locales_fr_blocker_add_mail_invalid" + }, + { + "label": "add_sheet_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L376", + "community": 3, + "norm_label": "add_sheet_cta", + "id": "locales_fr_blocker_add_sheet_cta" + }, + { + "label": "section_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L377", + "community": 3, + "norm_label": "section_domains", + "id": "locales_fr_blocker_section_domains" + }, + { + "label": "section_mails", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L378", + "community": 3, + "norm_label": "section_mails", + "id": "locales_fr_blocker_section_mails" + }, + { + "label": "count_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L379", + "community": 3, + "norm_label": "count_label", + "id": "locales_fr_blocker_count_label" + }, + { + "label": "error_web_limit_reached", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L380", + "community": 3, + "norm_label": "error_web_limit_reached", + "id": "locales_fr_blocker_error_web_limit_reached" + }, + { + "label": "error_mail_limit_reached", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L381", + "community": 3, + "norm_label": "error_mail_limit_reached", + "id": "locales_fr_blocker_error_mail_limit_reached" + }, + { + "label": "error_invalid_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L382", + "community": 3, + "norm_label": "error_invalid_mail", + "id": "locales_fr_blocker_error_invalid_mail" + }, + { + "label": "error_invalid_input", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L383", + "community": 687, + "norm_label": "error_invalid_input", + "id": "locales_fr_blocker_error_invalid_input" + }, + { + "label": "error_public_domain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L384", + "community": 3, + "norm_label": "error_public_domain", + "id": "locales_fr_blocker_error_public_domain" + }, + { + "label": "error_duplicate", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L385", + "community": 3, + "norm_label": "error_duplicate", + "id": "locales_fr_blocker_error_duplicate" + }, + { + "label": "kind_override_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L386", + "community": 3, + "norm_label": "kind_override_label", + "id": "locales_fr_blocker_kind_override_label" + }, + { + "label": "empty_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L387", + "community": 3, + "norm_label": "empty_web", + "id": "locales_fr_blocker_empty_web" + }, + { + "label": "empty_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L388", + "community": 3, + "norm_label": "empty_mail", + "id": "locales_fr_blocker_empty_mail" + }, + { + "label": "protection_subtitle_mdm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L389", + "community": 3, + "norm_label": "protection_subtitle_mdm", + "id": "locales_fr_blocker_protection_subtitle_mdm" + }, + { + "label": "protection_stat_method_nefilter", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L390", + "community": 3, + "norm_label": "protection_stat_method_nefilter", + "id": "locales_fr_blocker_protection_stat_method_nefilter" + }, + { + "label": "protection_stat_method_mdm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L391", + "community": 3, + "norm_label": "protection_stat_method_mdm", + "id": "locales_fr_blocker_protection_stat_method_mdm" + }, + { + "label": "mdm_info_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L392", + "community": 3, + "norm_label": "mdm_info_hint", + "id": "locales_fr_blocker_mdm_info_hint" + }, + { + "label": "mdm_deactivate_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L393", + "community": 3, + "norm_label": "mdm_deactivate_title", + "id": "locales_fr_blocker_mdm_deactivate_title" + }, + { + "label": "mdm_deactivate_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L394", + "community": 3, + "norm_label": "mdm_deactivate_body", + "id": "locales_fr_blocker_mdm_deactivate_body" + }, + { + "label": "onboarding", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L396", + "community": 40, + "norm_label": "onboarding", + "id": "locales_fr_onboarding" + }, + { + "label": "lyra", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L397", + "community": 40, + "norm_label": "lyra", + "id": "locales_fr_onboarding_lyra" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L398", + "community": 40, + "norm_label": "welcome", + "id": "locales_fr_lyra_welcome" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L399", + "community": 40, + "norm_label": "body", + "id": "locales_fr_welcome_body" + }, + { + "label": "privacy", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L401", + "community": 40, + "norm_label": "privacy", + "id": "locales_fr_lyra_privacy" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L402", + "community": 40, + "norm_label": "body", + "id": "locales_fr_privacy_body" + }, + { + "label": "nickname", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L404", + "community": 40, + "norm_label": "nickname", + "id": "locales_fr_lyra_nickname" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L405", + "community": 40, + "norm_label": "body", + "id": "locales_fr_nickname_body" + }, + { + "label": "diga_choice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L407", + "community": 40, + "norm_label": "diga_choice", + "id": "locales_fr_lyra_diga_choice" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L408", + "community": 40, + "norm_label": "body", + "id": "locales_fr_diga_choice_body" + }, + { + "label": "diga_code", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L410", + "community": 687, + "norm_label": "diga_code", + "id": "locales_fr_lyra_diga_code" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L411", + "community": 687, + "norm_label": "body", + "id": "locales_fr_diga_code_body" + }, + { + "label": "plan", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L413", + "community": 83, + "norm_label": "plan", + "id": "locales_fr_lyra_plan" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L414", + "community": 40, + "norm_label": "body", + "id": "locales_fr_plan_body" + }, + { + "label": "payment", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L416", + "community": 40, + "norm_label": "payment", + "id": "locales_fr_lyra_payment" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L417", + "community": 40, + "norm_label": "body", + "id": "locales_fr_payment_body" + }, + { + "label": "protection", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L419", + "community": 71, + "norm_label": "protection", + "id": "locales_fr_lyra_protection" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L420", + "community": 71, + "norm_label": "body", + "id": "locales_fr_protection_body" + }, + { + "label": "protection_url", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L422", + "community": 40, + "norm_label": "protection_url", + "id": "locales_fr_lyra_protection_url" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L423", + "community": 40, + "norm_label": "body", + "id": "locales_fr_protection_url_body" + }, + { + "label": "protection_lock", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L425", + "community": 40, + "norm_label": "protection_lock", + "id": "locales_fr_lyra_protection_lock" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L426", + "community": 40, + "norm_label": "body", + "id": "locales_fr_protection_lock_body" + }, + { + "label": "protection_url_android", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L428", + "community": 40, + "norm_label": "protection_url_android", + "id": "locales_fr_lyra_protection_url_android" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L429", + "community": 40, + "norm_label": "body", + "id": "locales_fr_protection_url_android_body" + }, + { + "label": "protection_lock_android", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L431", + "community": 40, + "norm_label": "protection_lock_android", + "id": "locales_fr_lyra_protection_lock_android" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L432", + "community": 40, + "norm_label": "body", + "id": "locales_fr_protection_lock_android_body" + }, + { + "label": "done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L434", + "community": 40, + "norm_label": "done", + "id": "locales_fr_lyra_done" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L435", + "community": 40, + "norm_label": "body", + "id": "locales_fr_done_body" + }, + { + "label": "audio_play", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L437", + "community": 40, + "norm_label": "audio_play", + "id": "locales_fr_lyra_audio_play" + }, + { + "label": "audio_loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L438", + "community": 40, + "norm_label": "audio_loading", + "id": "locales_fr_lyra_audio_loading" + }, + { + "label": "audio_stop", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L439", + "community": 40, + "norm_label": "audio_stop", + "id": "locales_fr_lyra_audio_stop" + }, + { + "label": "audio_disable", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L440", + "community": 40, + "norm_label": "audio_disable", + "id": "locales_fr_lyra_audio_disable" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L442", + "community": 40, + "norm_label": "welcome", + "id": "locales_fr_onboarding_welcome" + }, + { + "label": "cta_primary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L443", + "community": 40, + "norm_label": "cta_primary", + "id": "locales_fr_welcome_cta_primary" + }, + { + "label": "bullet_anon", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L444", + "community": 40, + "norm_label": "bullet_anon", + "id": "locales_fr_welcome_bullet_anon" + }, + { + "label": "bullet_protect", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L445", + "community": 40, + "norm_label": "bullet_protect", + "id": "locales_fr_welcome_bullet_protect" + }, + { + "label": "bullet_community", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L446", + "community": 40, + "norm_label": "bullet_community", + "id": "locales_fr_welcome_bullet_community" + }, + { + "label": "privacy", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L448", + "community": 40, + "norm_label": "privacy", + "id": "locales_fr_onboarding_privacy" + }, + { + "label": "cta_primary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L449", + "community": 40, + "norm_label": "cta_primary", + "id": "locales_fr_privacy_cta_primary" + }, + { + "label": "promise_alias", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L450", + "community": 40, + "norm_label": "promise_alias", + "id": "locales_fr_privacy_promise_alias" + }, + { + "label": "promise_minimal", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L451", + "community": 40, + "norm_label": "promise_minimal", + "id": "locales_fr_privacy_promise_minimal" + }, + { + "label": "promise_no_ads", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L452", + "community": 40, + "norm_label": "promise_no_ads", + "id": "locales_fr_privacy_promise_no_ads" + }, + { + "label": "promise_germany", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L453", + "community": 40, + "norm_label": "promise_germany", + "id": "locales_fr_privacy_promise_germany" + }, + { + "label": "nickname", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L455", + "community": 687, + "norm_label": "nickname", + "id": "locales_fr_onboarding_nickname" + }, + { + "label": "cta_primary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L456", + "community": 687, + "norm_label": "cta_primary", + "id": "locales_fr_nickname_cta_primary" + }, + { + "label": "label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L457", + "community": 687, + "norm_label": "label", + "id": "locales_fr_nickname_label" + }, + { + "label": "placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L458", + "community": 687, + "norm_label": "placeholder", + "id": "locales_fr_nickname_placeholder" + }, + { + "label": "hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L459", + "community": 687, + "norm_label": "hint", + "id": "locales_fr_nickname_hint" + }, + { + "label": "error_too_short", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L460", + "community": 687, + "norm_label": "error_too_short", + "id": "locales_fr_nickname_error_too_short" + }, + { + "label": "error_too_long", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L461", + "community": 687, + "norm_label": "error_too_long", + "id": "locales_fr_nickname_error_too_long" + }, + { + "label": "error_profanity", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L462", + "community": 687, + "norm_label": "error_profanity", + "id": "locales_fr_nickname_error_profanity" + }, + { + "label": "error_taken", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L463", + "community": 687, + "norm_label": "error_taken", + "id": "locales_fr_nickname_error_taken" + }, + { + "label": "diga_choice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L465", + "community": 40, + "norm_label": "diga_choice", + "id": "locales_fr_onboarding_diga_choice" + }, + { + "label": "cta_yes", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L466", + "community": 40, + "norm_label": "cta_yes", + "id": "locales_fr_diga_choice_cta_yes" + }, + { + "label": "cta_no", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L467", + "community": 40, + "norm_label": "cta_no", + "id": "locales_fr_diga_choice_cta_no" + }, + { + "label": "hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L468", + "community": 40, + "norm_label": "hint", + "id": "locales_fr_diga_choice_hint" + }, + { + "label": "diga_code", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L470", + "community": 687, + "norm_label": "diga_code", + "id": "locales_fr_onboarding_diga_code" + }, + { + "label": "cta_primary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L471", + "community": 687, + "norm_label": "cta_primary", + "id": "locales_fr_diga_code_cta_primary" + }, + { + "label": "cta_secondary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L472", + "community": 687, + "norm_label": "cta_secondary", + "id": "locales_fr_diga_code_cta_secondary" + }, + { + "label": "label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L473", + "community": 687, + "norm_label": "label", + "id": "locales_fr_diga_code_label" + }, + { + "label": "hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L474", + "community": 687, + "norm_label": "hint", + "id": "locales_fr_diga_code_hint" + }, + { + "label": "error_not_found", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L475", + "community": 687, + "norm_label": "error_not_found", + "id": "locales_fr_diga_code_error_not_found" + }, + { + "label": "error_already_used", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L476", + "community": 687, + "norm_label": "error_already_used", + "id": "locales_fr_diga_code_error_already_used" + }, + { + "label": "error_expired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L477", + "community": 687, + "norm_label": "error_expired", + "id": "locales_fr_diga_code_error_expired" + }, + { + "label": "error_invalid_input", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L478", + "community": 687, + "norm_label": "error_invalid_input", + "id": "locales_fr_diga_code_error_invalid_input" + }, + { + "label": "plan", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L480", + "community": 83, + "norm_label": "plan", + "id": "locales_fr_onboarding_plan" + }, + { + "label": "cta_trial", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L481", + "community": 83, + "norm_label": "cta_trial", + "id": "locales_fr_plan_cta_trial" + }, + { + "label": "cta_legend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L482", + "community": 83, + "norm_label": "cta_legend", + "id": "locales_fr_plan_cta_legend" + }, + { + "label": "billing_monthly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L483", + "community": 83, + "norm_label": "billing_monthly", + "id": "locales_fr_plan_billing_monthly" + }, + { + "label": "billing_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L484", + "community": 83, + "norm_label": "billing_yearly", + "id": "locales_fr_plan_billing_yearly" + }, + { + "label": "billing_savings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L485", + "community": 83, + "norm_label": "billing_savings", + "id": "locales_fr_plan_billing_savings" + }, + { + "label": "tier_pro_badge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L486", + "community": 83, + "norm_label": "tier_pro_badge", + "id": "locales_fr_plan_tier_pro_badge" + }, + { + "label": "tier_pro_price_monthly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L487", + "community": 83, + "norm_label": "tier_pro_price_monthly", + "id": "locales_fr_plan_tier_pro_price_monthly" + }, + { + "label": "tier_pro_price_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L488", + "community": 83, + "norm_label": "tier_pro_price_yearly", + "id": "locales_fr_plan_tier_pro_price_yearly" + }, + { + "label": "tier_pro_anchor_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L489", + "community": 83, + "norm_label": "tier_pro_anchor_yearly", + "id": "locales_fr_plan_tier_pro_anchor_yearly" + }, + { + "label": "tier_pro_total_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L490", + "community": 83, + "norm_label": "tier_pro_total_yearly", + "id": "locales_fr_plan_tier_pro_total_yearly" + }, + { + "label": "tier_pro_subline_monthly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L491", + "community": 83, + "norm_label": "tier_pro_subline_monthly", + "id": "locales_fr_plan_tier_pro_subline_monthly" + }, + { + "label": "tier_pro_subline_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L492", + "community": 83, + "norm_label": "tier_pro_subline_yearly", + "id": "locales_fr_plan_tier_pro_subline_yearly" + }, + { + "label": "tier_legend_price_monthly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L493", + "community": 83, + "norm_label": "tier_legend_price_monthly", + "id": "locales_fr_plan_tier_legend_price_monthly" + }, + { + "label": "tier_legend_price_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L494", + "community": 83, + "norm_label": "tier_legend_price_yearly", + "id": "locales_fr_plan_tier_legend_price_yearly" + }, + { + "label": "tier_legend_anchor_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L495", + "community": 83, + "norm_label": "tier_legend_anchor_yearly", + "id": "locales_fr_plan_tier_legend_anchor_yearly" + }, + { + "label": "tier_legend_total_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L496", + "community": 83, + "norm_label": "tier_legend_total_yearly", + "id": "locales_fr_plan_tier_legend_total_yearly" + }, + { + "label": "tier_legend_subline_monthly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L497", + "community": 83, + "norm_label": "tier_legend_subline_monthly", + "id": "locales_fr_plan_tier_legend_subline_monthly" + }, + { + "label": "tier_legend_subline_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L498", + "community": 83, + "norm_label": "tier_legend_subline_yearly", + "id": "locales_fr_plan_tier_legend_subline_yearly" + }, + { + "label": "feat_blocklist", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L499", + "community": 83, + "norm_label": "feat_blocklist", + "id": "locales_fr_plan_feat_blocklist" + }, + { + "label": "feat_lyra", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L500", + "community": 83, + "norm_label": "feat_lyra", + "id": "locales_fr_plan_feat_lyra" + }, + { + "label": "feat_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L501", + "community": 83, + "norm_label": "feat_mail", + "id": "locales_fr_plan_feat_mail" + }, + { + "label": "feat_community", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L502", + "community": 83, + "norm_label": "feat_community", + "id": "locales_fr_plan_feat_community" + }, + { + "label": "feat_legend_all_pro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L503", + "community": 83, + "norm_label": "feat_legend_all_pro", + "id": "locales_fr_plan_feat_legend_all_pro" + }, + { + "label": "feat_legend_multi_device", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L504", + "community": 83, + "norm_label": "feat_legend_multi_device", + "id": "locales_fr_plan_feat_legend_multi_device" + }, + { + "label": "feat_legend_voice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L505", + "community": 83, + "norm_label": "feat_legend_voice", + "id": "locales_fr_plan_feat_legend_voice" + }, + { + "label": "disclaimer", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L506", + "community": 83, + "norm_label": "disclaimer", + "id": "locales_fr_plan_disclaimer" + }, + { + "label": "hardship_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L507", + "community": 83, + "norm_label": "hardship_link", + "id": "locales_fr_plan_hardship_link" + }, + { + "label": "payment", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L509", + "community": 40, + "norm_label": "payment", + "id": "locales_fr_onboarding_payment" + }, + { + "label": "cta_dev_skip", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L510", + "community": 40, + "norm_label": "cta_dev_skip", + "id": "locales_fr_payment_cta_dev_skip" + }, + { + "label": "dev_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L511", + "community": 40, + "norm_label": "dev_label", + "id": "locales_fr_payment_dev_label" + }, + { + "label": "dev_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L512", + "community": 40, + "norm_label": "dev_body", + "id": "locales_fr_payment_dev_body" + }, + { + "label": "protection", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L514", + "community": 71, + "norm_label": "protection", + "id": "locales_fr_onboarding_protection" + }, + { + "label": "cta_primary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L515", + "community": 71, + "norm_label": "cta_primary", + "id": "locales_fr_protection_cta_primary" + }, + { + "label": "cta_open_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L516", + "community": 71, + "norm_label": "cta_open_a11y", + "id": "locales_fr_protection_cta_open_a11y" + }, + { + "label": "cta_check_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L517", + "community": 71, + "norm_label": "cta_check_a11y", + "id": "locales_fr_protection_cta_check_a11y" + }, + { + "label": "url_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L518", + "community": 71, + "norm_label": "url_title", + "id": "locales_fr_protection_url_title" + }, + { + "label": "lock_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L519", + "community": 71, + "norm_label": "lock_title", + "id": "locales_fr_protection_lock_title" + }, + { + "label": "url_title_android", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L520", + "community": 71, + "norm_label": "url_title_android", + "id": "locales_fr_protection_url_title_android" + }, + { + "label": "lock_title_android", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L521", + "community": 71, + "norm_label": "lock_title_android", + "id": "locales_fr_protection_lock_title_android" + }, + { + "label": "tap_marker_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L522", + "community": 71, + "norm_label": "tap_marker_hint", + "id": "locales_fr_protection_tap_marker_hint" + }, + { + "label": "tap_marker_hint_android_vpn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L523", + "community": 71, + "norm_label": "tap_marker_hint_android_vpn", + "id": "locales_fr_protection_tap_marker_hint_android_vpn" + }, + { + "label": "tap_marker_hint_android_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L524", + "community": 71, + "norm_label": "tap_marker_hint_android_a11y", + "id": "locales_fr_protection_tap_marker_hint_android_a11y" + }, + { + "label": "android_a11y_pending_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L525", + "community": 71, + "norm_label": "android_a11y_pending_title", + "id": "locales_fr_protection_android_a11y_pending_title" + }, + { + "label": "android_a11y_pending_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L526", + "community": 71, + "norm_label": "android_a11y_pending_body", + "id": "locales_fr_protection_android_a11y_pending_body" + }, + { + "label": "dialog_button_allow", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L527", + "community": 71, + "norm_label": "dialog_button_allow", + "id": "locales_fr_protection_dialog_button_allow" + }, + { + "label": "dialog_button_continue", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L528", + "community": 71, + "norm_label": "dialog_button_continue", + "id": "locales_fr_protection_dialog_button_continue" + }, + { + "label": "dialog_button_vpn_ok", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L529", + "community": 71, + "norm_label": "dialog_button_vpn_ok", + "id": "locales_fr_protection_dialog_button_vpn_ok" + }, + { + "label": "dialog_button_a11y_toggle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L530", + "community": 71, + "norm_label": "dialog_button_a11y_toggle", + "id": "locales_fr_protection_dialog_button_a11y_toggle" + }, + { + "label": "android_restart_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L531", + "community": 71, + "norm_label": "android_restart_title", + "id": "locales_fr_protection_android_restart_title" + }, + { + "label": "android_restart_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L532", + "community": 71, + "norm_label": "android_restart_body", + "id": "locales_fr_protection_android_restart_body" + }, + { + "label": "android_restart_now", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L533", + "community": 71, + "norm_label": "android_restart_now", + "id": "locales_fr_protection_android_restart_now" + }, + { + "label": "android_restart_later", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L534", + "community": 71, + "norm_label": "android_restart_later", + "id": "locales_fr_protection_android_restart_later" + }, + { + "label": "applock_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L535", + "community": 71, + "norm_label": "applock_failed_title", + "id": "locales_fr_protection_applock_failed_title" + }, + { + "label": "applock_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L536", + "community": 71, + "norm_label": "applock_failed_msg", + "id": "locales_fr_protection_applock_failed_msg" + }, + { + "label": "applock_skip", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/fr.json", + "source_location": "L537", + "community": 71, + "norm_label": "applock_skip", + "id": "locales_fr_protection_applock_skip" + }, + { + "label": "ar.json", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L1", + "community": 28, + "norm_label": "ar.json", + "id": "apps_rebreak_native_locales_ar_json" + }, + { + "label": "common", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L2", + "community": 411, + "norm_label": "common", + "id": "locales_ar_common" + }, + { + "label": "loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L3", + "community": 411, + "norm_label": "loading", + "id": "locales_ar_common_loading" + }, + { + "label": "cancel", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L4", + "community": 411, + "norm_label": "cancel", + "id": "locales_ar_common_cancel" + }, + { + "label": "continue", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L5", + "community": 411, + "norm_label": "continue", + "id": "locales_ar_common_continue" + }, + { + "label": "back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L6", + "community": 411, + "norm_label": "back", + "id": "locales_ar_common_back" + }, + { + "label": "error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L7", + "community": 411, + "norm_label": "error", + "id": "locales_ar_common_error" + }, + { + "label": "success", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L8", + "community": 411, + "norm_label": "success", + "id": "locales_ar_common_success" + }, + { + "label": "ok", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L9", + "community": 411, + "norm_label": "ok", + "id": "locales_ar_common_ok" + }, + { + "label": "confirm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L10", + "community": 411, + "norm_label": "confirm", + "id": "locales_ar_common_confirm" + }, + { + "label": "retry", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L11", + "community": 411, + "norm_label": "retry", + "id": "locales_ar_common_retry" + }, + { + "label": "unknown_error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L12", + "community": 411, + "norm_label": "unknown_error", + "id": "locales_ar_common_unknown_error" + }, + { + "label": "auth", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L14", + "community": 23, + "norm_label": "auth", + "id": "locales_ar_auth" + }, + { + "label": "welcomeBack", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L15", + "community": 23, + "norm_label": "welcomeback", + "id": "locales_ar_auth_welcomeback" + }, + { + "label": "signinSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L16", + "community": 23, + "norm_label": "signinsubtitle", + "id": "locales_ar_auth_signinsubtitle" + }, + { + "label": "signin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L17", + "community": 23, + "norm_label": "signin", + "id": "locales_ar_auth_signin" + }, + { + "label": "signingIn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L18", + "community": 23, + "norm_label": "signingin", + "id": "locales_ar_auth_signingin" + }, + { + "label": "signup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L19", + "community": 23, + "norm_label": "signup", + "id": "locales_ar_auth_signup" + }, + { + "label": "signupTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L20", + "community": 23, + "norm_label": "signuptitle", + "id": "locales_ar_auth_signuptitle" + }, + { + "label": "signupSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L21", + "community": 23, + "norm_label": "signupsubtitle", + "id": "locales_ar_auth_signupsubtitle" + }, + { + "label": "signOut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L22", + "community": 28, + "norm_label": "signout", + "id": "locales_ar_auth_signout" + }, + { + "label": "email", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L23", + "community": 23, + "norm_label": "email", + "id": "locales_ar_auth_email" + }, + { + "label": "emailPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L24", + "community": 23, + "norm_label": "emailplaceholder", + "id": "locales_ar_auth_emailplaceholder" + }, + { + "label": "emailRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L25", + "community": 23, + "norm_label": "emailrequired", + "id": "locales_ar_auth_emailrequired" + }, + { + "label": "password", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L26", + "community": 23, + "norm_label": "password", + "id": "locales_ar_auth_password" + }, + { + "label": "passwordPlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L27", + "community": 23, + "norm_label": "passwordplaceholder", + "id": "locales_ar_auth_passwordplaceholder" + }, + { + "label": "passwordRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L28", + "community": 23, + "norm_label": "passwordrequired", + "id": "locales_ar_auth_passwordrequired" + }, + { + "label": "passwordMin8", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L29", + "community": 23, + "norm_label": "passwordmin8", + "id": "locales_ar_auth_passwordmin8" + }, + { + "label": "newPassword", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L30", + "community": 23, + "norm_label": "newpassword", + "id": "locales_ar_auth_newpassword" + }, + { + "label": "nickname", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L31", + "community": 41, + "norm_label": "nickname", + "id": "locales_ar_auth_nickname" + }, + { + "label": "nicknamePlaceholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L32", + "community": 23, + "norm_label": "nicknameplaceholder", + "id": "locales_ar_auth_nicknameplaceholder" + }, + { + "label": "noAccount", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L33", + "community": 23, + "norm_label": "noaccount", + "id": "locales_ar_auth_noaccount" + }, + { + "label": "alreadyRegistered", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L34", + "community": 23, + "norm_label": "alreadyregistered", + "id": "locales_ar_auth_alreadyregistered" + }, + { + "label": "fillRequired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L35", + "community": 23, + "norm_label": "fillrequired", + "id": "locales_ar_auth_fillrequired" + }, + { + "label": "googleSignin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L36", + "community": 23, + "norm_label": "googlesignin", + "id": "locales_ar_auth_googlesignin" + }, + { + "label": "appleSignin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L37", + "community": 23, + "norm_label": "applesignin", + "id": "locales_ar_auth_applesignin" + }, + { + "label": "googleSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L38", + "community": 23, + "norm_label": "googlesignup", + "id": "locales_ar_auth_googlesignup" + }, + { + "label": "appleSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L39", + "community": 23, + "norm_label": "applesignup", + "id": "locales_ar_auth_applesignup" + }, + { + "label": "orWithEmail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L40", + "community": 23, + "norm_label": "orwithemail", + "id": "locales_ar_auth_orwithemail" + }, + { + "label": "forgotPassword", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L41", + "community": 23, + "norm_label": "forgotpassword", + "id": "locales_ar_auth_forgotpassword" + }, + { + "label": "resetPasswordTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L42", + "community": 23, + "norm_label": "resetpasswordtitle", + "id": "locales_ar_auth_resetpasswordtitle" + }, + { + "label": "resetPasswordSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L43", + "community": 23, + "norm_label": "resetpasswordsubtitle", + "id": "locales_ar_auth_resetpasswordsubtitle" + }, + { + "label": "resetPasswordSend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L44", + "community": 23, + "norm_label": "resetpasswordsend", + "id": "locales_ar_auth_resetpasswordsend" + }, + { + "label": "resetPasswordSent", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L45", + "community": 23, + "norm_label": "resetpasswordsent", + "id": "locales_ar_auth_resetpasswordsent" + }, + { + "label": "resetPasswordSentDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L46", + "community": 23, + "norm_label": "resetpasswordsentdesc", + "id": "locales_ar_auth_resetpasswordsentdesc" + }, + { + "label": "resetPasswordSentDescPrefix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L47", + "community": 23, + "norm_label": "resetpasswordsentdescprefix", + "id": "locales_ar_auth_resetpasswordsentdescprefix" + }, + { + "label": "resetPasswordSentDescSuffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L48", + "community": 23, + "norm_label": "resetpasswordsentdescsuffix", + "id": "locales_ar_auth_resetpasswordsentdescsuffix" + }, + { + "label": "backToLogin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L49", + "community": 23, + "norm_label": "backtologin", + "id": "locales_ar_auth_backtologin" + }, + { + "label": "backToLoginPlain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L50", + "community": 23, + "norm_label": "backtologinplain", + "id": "locales_ar_auth_backtologinplain" + }, + { + "label": "backToSignup", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L51", + "community": 23, + "norm_label": "backtosignup", + "id": "locales_ar_auth_backtosignup" + }, + { + "label": "chooseAvatar", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L52", + "community": 23, + "norm_label": "chooseavatar", + "id": "locales_ar_auth_chooseavatar" + }, + { + "label": "privacyNotice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L53", + "community": 23, + "norm_label": "privacynotice", + "id": "locales_ar_auth_privacynotice" + }, + { + "label": "acceptTerms", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L54", + "community": 23, + "norm_label": "acceptterms", + "id": "locales_ar_auth_acceptterms" + }, + { + "label": "acceptTermsSuffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L55", + "community": 23, + "norm_label": "accepttermssuffix", + "id": "locales_ar_auth_accepttermssuffix" + }, + { + "label": "termsLink", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L56", + "community": 23, + "norm_label": "termslink", + "id": "locales_ar_auth_termslink" + }, + { + "label": "pleaseAcceptTerms", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L57", + "community": 23, + "norm_label": "pleaseacceptterms", + "id": "locales_ar_auth_pleaseacceptterms" + }, + { + "label": "confirmEmailTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L58", + "community": 23, + "norm_label": "confirmemailtitle", + "id": "locales_ar_auth_confirmemailtitle" + }, + { + "label": "confirmEmailDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L59", + "community": 23, + "norm_label": "confirmemaildesc", + "id": "locales_ar_auth_confirmemaildesc" + }, + { + "label": "confirmEmailLine1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L60", + "community": 23, + "norm_label": "confirmemailline1", + "id": "locales_ar_auth_confirmemailline1" + }, + { + "label": "confirmEmailLine2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L61", + "community": 23, + "norm_label": "confirmemailline2", + "id": "locales_ar_auth_confirmemailline2" + }, + { + "label": "confirmBtn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L62", + "community": 23, + "norm_label": "confirmbtn", + "id": "locales_ar_auth_confirmbtn" + }, + { + "label": "confirmed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L63", + "community": 23, + "norm_label": "confirmed", + "id": "locales_ar_auth_confirmed" + }, + { + "label": "confirming", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L64", + "community": 23, + "norm_label": "confirming", + "id": "locales_ar_auth_confirming" + }, + { + "label": "confirmSuccess", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L65", + "community": 23, + "norm_label": "confirmsuccess", + "id": "locales_ar_auth_confirmsuccess" + }, + { + "label": "confirmTimeout", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L66", + "community": 23, + "norm_label": "confirmtimeout", + "id": "locales_ar_auth_confirmtimeout" + }, + { + "label": "confirmFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L67", + "community": 23, + "norm_label": "confirmfailed", + "id": "locales_ar_auth_confirmfailed" + }, + { + "label": "resend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L68", + "community": 23, + "norm_label": "resend", + "id": "locales_ar_auth_resend" + }, + { + "label": "resendCooldown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L69", + "community": 23, + "norm_label": "resendcooldown", + "id": "locales_ar_auth_resendcooldown" + }, + { + "label": "noCode", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L70", + "community": 23, + "norm_label": "nocode", + "id": "locales_ar_auth_nocode" + }, + { + "label": "deviceLimitTitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L71", + "community": 23, + "norm_label": "devicelimittitle", + "id": "locales_ar_auth_devicelimittitle" + }, + { + "label": "deviceLimitDesc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L72", + "community": 23, + "norm_label": "devicelimitdesc", + "id": "locales_ar_auth_devicelimitdesc" + }, + { + "label": "deviceLimitUpgrade", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L73", + "community": 23, + "norm_label": "devicelimitupgrade", + "id": "locales_ar_auth_devicelimitupgrade" + }, + { + "label": "toLogin", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L74", + "community": 23, + "norm_label": "tologin", + "id": "locales_ar_auth_tologin" + }, + { + "label": "oauthFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L75", + "community": 23, + "norm_label": "oauthfailed", + "id": "locales_ar_auth_oauthfailed" + }, + { + "label": "loginFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L76", + "community": 23, + "norm_label": "loginfailed", + "id": "locales_ar_auth_loginfailed" + }, + { + "label": "registerFailed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L77", + "community": 23, + "norm_label": "registerfailed", + "id": "locales_ar_auth_registerfailed" + }, + { + "label": "device_locked_headline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L78", + "community": 23, + "norm_label": "device_locked_headline", + "id": "locales_ar_auth_device_locked_headline" + }, + { + "label": "device_locked_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L79", + "community": 23, + "norm_label": "device_locked_body", + "id": "locales_ar_auth_device_locked_body" + }, + { + "label": "device_locked_countdown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L80", + "community": 23, + "norm_label": "device_locked_countdown", + "id": "locales_ar_auth_device_locked_countdown" + }, + { + "label": "device_locked_email_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L81", + "community": 23, + "norm_label": "device_locked_email_hint", + "id": "locales_ar_auth_device_locked_email_hint" + }, + { + "label": "device_locked_use_original", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L82", + "community": 23, + "norm_label": "device_locked_use_original", + "id": "locales_ar_auth_device_locked_use_original" + }, + { + "label": "device_locked_back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L83", + "community": 23, + "norm_label": "device_locked_back", + "id": "locales_ar_auth_device_locked_back" + }, + { + "label": "landing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L85", + "community": 28, + "norm_label": "landing", + "id": "locales_ar_landing" + }, + { + "label": "appName", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L86", + "community": 28, + "norm_label": "appname", + "id": "locales_ar_landing_appname" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L87", + "community": 28, + "norm_label": "tagline", + "id": "locales_ar_landing_tagline" + }, + { + "label": "start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L88", + "community": 28, + "norm_label": "start", + "id": "locales_ar_landing_start" + }, + { + "label": "splash", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L90", + "community": 28, + "norm_label": "splash", + "id": "locales_ar_splash" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L91", + "community": 28, + "norm_label": "tagline", + "id": "locales_ar_splash_tagline" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L92", + "community": 28, + "norm_label": "subtitle", + "id": "locales_ar_splash_subtitle" + }, + { + "label": "madeInGermany", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L93", + "community": 28, + "norm_label": "madeingermany", + "id": "locales_ar_splash_madeingermany" + }, + { + "label": "applock", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L95", + "community": 28, + "norm_label": "applock", + "id": "locales_ar_applock" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L96", + "community": 28, + "norm_label": "title", + "id": "locales_ar_applock_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L97", + "community": 28, + "norm_label": "subtitle", + "id": "locales_ar_applock_subtitle" + }, + { + "label": "unlock", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L98", + "community": 28, + "norm_label": "unlock", + "id": "locales_ar_applock_unlock" + }, + { + "label": "prompt", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L99", + "community": 28, + "norm_label": "prompt", + "id": "locales_ar_applock_prompt" + }, + { + "label": "signOut_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L100", + "community": 28, + "norm_label": "signout_title", + "id": "locales_ar_applock_signout_title" + }, + { + "label": "signOut_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L101", + "community": 28, + "norm_label": "signout_body", + "id": "locales_ar_applock_signout_body" + }, + { + "label": "appHeader", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L103", + "community": 28, + "norm_label": "appheader", + "id": "locales_ar_appheader" + }, + { + "label": "appName", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L104", + "community": 28, + "norm_label": "appname", + "id": "locales_ar_appheader_appname" + }, + { + "label": "sosLabel", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L105", + "community": 28, + "norm_label": "soslabel", + "id": "locales_ar_appheader_soslabel" + }, + { + "label": "sosTagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L106", + "community": 28, + "norm_label": "sostagline", + "id": "locales_ar_appheader_sostagline" + }, + { + "label": "sosSubtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L107", + "community": 28, + "norm_label": "sossubtitle", + "id": "locales_ar_appheader_sossubtitle" + }, + { + "label": "editProfile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L108", + "community": 28, + "norm_label": "editprofile", + "id": "locales_ar_appheader_editprofile" + }, + { + "label": "settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L109", + "community": 28, + "norm_label": "settings", + "id": "locales_ar_appheader_settings" + }, + { + "label": "signOut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L110", + "community": 28, + "norm_label": "signout", + "id": "locales_ar_appheader_signout" + }, + { + "label": "headerMenu", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L112", + "community": 28, + "norm_label": "headermenu", + "id": "locales_ar_headermenu" + }, + { + "label": "profile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L113", + "community": 28, + "norm_label": "profile", + "id": "locales_ar_headermenu_profile" + }, + { + "label": "settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L114", + "community": 28, + "norm_label": "settings", + "id": "locales_ar_headermenu_settings" + }, + { + "label": "games", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L115", + "community": 28, + "norm_label": "games", + "id": "locales_ar_headermenu_games" + }, + { + "label": "debug", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L116", + "community": 28, + "norm_label": "debug", + "id": "locales_ar_headermenu_debug" + }, + { + "label": "logout", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L117", + "community": 28, + "norm_label": "logout", + "id": "locales_ar_headermenu_logout" + }, + { + "label": "tabs", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L119", + "community": 28, + "norm_label": "tabs", + "id": "locales_ar_tabs" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L120", + "community": 28, + "norm_label": "home", + "id": "locales_ar_tabs_home" + }, + { + "label": "chat", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L121", + "community": 28, + "norm_label": "chat", + "id": "locales_ar_tabs_chat" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L122", + "community": 28, + "norm_label": "coach", + "id": "locales_ar_tabs_coach" + }, + { + "label": "blocker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L123", + "community": 28, + "norm_label": "blocker", + "id": "locales_ar_tabs_blocker" + }, + { + "label": "mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L124", + "community": 28, + "norm_label": "mail", + "id": "locales_ar_tabs_mail" + }, + { + "label": "profile", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L125", + "community": 28, + "norm_label": "profile", + "id": "locales_ar_tabs_profile" + }, + { + "label": "games", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L127", + "community": 28, + "norm_label": "games", + "id": "locales_ar_games" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L128", + "community": 28, + "norm_label": "title", + "id": "locales_ar_games_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L129", + "community": 28, + "norm_label": "subtitle", + "id": "locales_ar_games_subtitle" + }, + { + "label": "back_to_picker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L130", + "community": 28, + "norm_label": "back_to_picker", + "id": "locales_ar_games_back_to_picker" + }, + { + "label": "last_score", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L131", + "community": 28, + "norm_label": "last_score", + "id": "locales_ar_games_last_score" + }, + { + "label": "skeleton_footer", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L132", + "community": 28, + "norm_label": "skeleton_footer", + "id": "locales_ar_games_skeleton_footer" + }, + { + "label": "home", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L134", + "community": 28, + "norm_label": "home", + "id": "locales_ar_home" + }, + { + "label": "tagline", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L135", + "community": 28, + "norm_label": "tagline", + "id": "locales_ar_home_tagline" + }, + { + "label": "start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L136", + "community": 28, + "norm_label": "start", + "id": "locales_ar_home_start" + }, + { + "label": "greeting_morning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L137", + "community": 28, + "norm_label": "greeting_morning", + "id": "locales_ar_home_greeting_morning" + }, + { + "label": "greeting_day", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L138", + "community": 28, + "norm_label": "greeting_day", + "id": "locales_ar_home_greeting_day" + }, + { + "label": "greeting_evening", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L139", + "community": 28, + "norm_label": "greeting_evening", + "id": "locales_ar_home_greeting_evening" + }, + { + "label": "streak_days_one", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L140", + "community": 28, + "norm_label": "streak_days_one", + "id": "locales_ar_home_streak_days_one" + }, + { + "label": "streak_days_other", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L141", + "community": 28, + "norm_label": "streak_days_other", + "id": "locales_ar_home_streak_days_other" + }, + { + "label": "streak_start", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L142", + "community": 28, + "norm_label": "streak_start", + "id": "locales_ar_home_streak_start" + }, + { + "label": "quote_of_day", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L143", + "community": 28, + "norm_label": "quote_of_day", + "id": "locales_ar_home_quote_of_day" + }, + { + "label": "quick_access", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L144", + "community": 28, + "norm_label": "quick_access", + "id": "locales_ar_home_quick_access" + }, + { + "label": "stats_urges", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L145", + "community": 28, + "norm_label": "stats_urges", + "id": "locales_ar_home_stats_urges" + }, + { + "label": "stats_chats", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L146", + "community": 28, + "norm_label": "stats_chats", + "id": "locales_ar_home_stats_chats" + }, + { + "label": "stats_mails", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L147", + "community": 28, + "norm_label": "stats_mails", + "id": "locales_ar_home_stats_mails" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L149", + "community": 411, + "norm_label": "coach", + "id": "locales_ar_coach" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L150", + "community": 411, + "norm_label": "title", + "id": "locales_ar_coach_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L151", + "community": 411, + "norm_label": "subtitle", + "id": "locales_ar_coach_subtitle" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L152", + "community": 411, + "norm_label": "welcome", + "id": "locales_ar_coach_welcome" + }, + { + "label": "input_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L153", + "community": 411, + "norm_label": "input_placeholder", + "id": "locales_ar_coach_input_placeholder" + }, + { + "label": "new_chat", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L154", + "community": 411, + "norm_label": "new_chat", + "id": "locales_ar_coach_new_chat" + }, + { + "label": "lyra", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L155", + "community": 41, + "norm_label": "lyra", + "id": "locales_ar_coach_lyra" + }, + { + "label": "modeBadge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L156", + "community": 411, + "norm_label": "modebadge", + "id": "locales_ar_coach_modebadge" + }, + { + "label": "coach", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L157", + "community": 411, + "norm_label": "coach", + "id": "locales_ar_modebadge_coach" + }, + { + "label": "sos", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L158", + "community": 411, + "norm_label": "sos", + "id": "locales_ar_modebadge_sos" + }, + { + "label": "placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L160", + "community": 41, + "norm_label": "placeholder", + "id": "locales_ar_coach_placeholder" + }, + { + "label": "speaking", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L161", + "community": 411, + "norm_label": "speaking", + "id": "locales_ar_coach_speaking" + }, + { + "label": "recording", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L162", + "community": 411, + "norm_label": "recording", + "id": "locales_ar_coach_recording" + }, + { + "label": "transcribing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L163", + "community": 411, + "norm_label": "transcribing", + "id": "locales_ar_coach_transcribing" + }, + { + "label": "feedback_saved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L164", + "community": 411, + "norm_label": "feedback_saved", + "id": "locales_ar_coach_feedback_saved" + }, + { + "label": "welcome_back", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L165", + "community": 411, + "norm_label": "welcome_back", + "id": "locales_ar_coach_welcome_back" + }, + { + "label": "online", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L166", + "community": 411, + "norm_label": "online", + "id": "locales_ar_coach_online" + }, + { + "label": "thinking", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L167", + "community": 411, + "norm_label": "thinking", + "id": "locales_ar_coach_thinking" + }, + { + "label": "error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L168", + "community": 411, + "norm_label": "error", + "id": "locales_ar_coach_error" + }, + { + "label": "blocker", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L170", + "community": 2, + "norm_label": "blocker", + "id": "locales_ar_blocker" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L171", + "community": 2, + "norm_label": "title", + "id": "locales_ar_blocker_title" + }, + { + "label": "subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L172", + "community": 2, + "norm_label": "subtitle", + "id": "locales_ar_blocker_subtitle" + }, + { + "label": "status_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L173", + "community": 2, + "norm_label": "status_active", + "id": "locales_ar_blocker_status_active" + }, + { + "label": "status_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L174", + "community": 2, + "norm_label": "status_inactive", + "id": "locales_ar_blocker_status_inactive" + }, + { + "label": "filter_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L175", + "community": 2, + "norm_label": "filter_label", + "id": "locales_ar_blocker_filter_label" + }, + { + "label": "filter_active_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L176", + "community": 2, + "norm_label": "filter_active_desc", + "id": "locales_ar_blocker_filter_active_desc" + }, + { + "label": "filter_inactive_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L177", + "community": 2, + "norm_label": "filter_inactive_desc", + "id": "locales_ar_blocker_filter_inactive_desc" + }, + { + "label": "tamper_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L178", + "community": 2, + "norm_label": "tamper_title", + "id": "locales_ar_blocker_tamper_title" + }, + { + "label": "tamper_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L179", + "community": 2, + "norm_label": "tamper_desc", + "id": "locales_ar_blocker_tamper_desc" + }, + { + "label": "custom_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L180", + "community": 2, + "norm_label": "custom_domains", + "id": "locales_ar_blocker_custom_domains" + }, + { + "label": "add_domain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L181", + "community": 2, + "norm_label": "add_domain", + "id": "locales_ar_blocker_add_domain" + }, + { + "label": "help_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L182", + "community": 2, + "norm_label": "help_link", + "id": "locales_ar_blocker_help_link" + }, + { + "label": "status_approved", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L183", + "community": 2, + "norm_label": "status_approved", + "id": "locales_ar_blocker_status_approved" + }, + { + "label": "status_rejected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L184", + "community": 2, + "norm_label": "status_rejected", + "id": "locales_ar_blocker_status_rejected" + }, + { + "label": "status_pending", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L185", + "community": 2, + "norm_label": "status_pending", + "id": "locales_ar_blocker_status_pending" + }, + { + "label": "add_sheet_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L186", + "community": 2, + "norm_label": "add_sheet_title", + "id": "locales_ar_blocker_add_sheet_title" + }, + { + "label": "add_sheet_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L187", + "community": 2, + "norm_label": "add_sheet_label", + "id": "locales_ar_blocker_add_sheet_label" + }, + { + "label": "add_sheet_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L188", + "community": 2, + "norm_label": "add_sheet_placeholder", + "id": "locales_ar_blocker_add_sheet_placeholder" + }, + { + "label": "add_sheet_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L189", + "community": 2, + "norm_label": "add_sheet_invalid", + "id": "locales_ar_blocker_add_sheet_invalid" + }, + { + "label": "add_sheet_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L190", + "community": 2, + "norm_label": "add_sheet_help", + "id": "locales_ar_blocker_add_sheet_help" + }, + { + "label": "preview_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L191", + "community": 2, + "norm_label": "preview_web", + "id": "locales_ar_blocker_preview_web" + }, + { + "label": "preview_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L192", + "community": 2, + "norm_label": "preview_mail", + "id": "locales_ar_blocker_preview_mail" + }, + { + "label": "preview_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L193", + "community": 2, + "norm_label": "preview_invalid", + "id": "locales_ar_blocker_preview_invalid" + }, + { + "label": "custom_filter_overview_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L194", + "community": 2, + "norm_label": "custom_filter_overview_title", + "id": "locales_ar_blocker_custom_filter_overview_title" + }, + { + "label": "custom_filter_overview_count", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L195", + "community": 2, + "norm_label": "custom_filter_overview_count", + "id": "locales_ar_blocker_custom_filter_overview_count" + }, + { + "label": "add_sheet_warning_free", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L196", + "community": 2, + "norm_label": "add_sheet_warning_free", + "id": "locales_ar_blocker_add_sheet_warning_free" + }, + { + "label": "add_sheet_warning_pro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L197", + "community": 2, + "norm_label": "add_sheet_warning_pro", + "id": "locales_ar_blocker_add_sheet_warning_pro" + }, + { + "label": "add_sheet_confirm_permanent", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L198", + "community": 2, + "norm_label": "add_sheet_confirm_permanent", + "id": "locales_ar_blocker_add_sheet_confirm_permanent" + }, + { + "label": "add_sheet_add_failed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L199", + "community": 2, + "norm_label": "add_sheet_add_failed", + "id": "locales_ar_blocker_add_sheet_add_failed" + }, + { + "label": "add_sheet_already_global", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L200", + "community": 2, + "norm_label": "add_sheet_already_global", + "id": "locales_ar_blocker_add_sheet_already_global" + }, + { + "label": "cooldown_banner_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L201", + "community": 2, + "norm_label": "cooldown_banner_title", + "id": "locales_ar_blocker_cooldown_banner_title" + }, + { + "label": "deactivation_actionsheet_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L202", + "community": 2, + "norm_label": "deactivation_actionsheet_title", + "id": "locales_ar_blocker_deactivation_actionsheet_title" + }, + { + "label": "deactivation_actionsheet_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L203", + "community": 2, + "norm_label": "deactivation_actionsheet_message", + "id": "locales_ar_blocker_deactivation_actionsheet_message" + }, + { + "label": "deactivation_start_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L204", + "community": 2, + "norm_label": "deactivation_start_cta", + "id": "locales_ar_blocker_deactivation_start_cta" + }, + { + "label": "deactivation_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L205", + "community": 2, + "norm_label": "deactivation_failed_msg", + "id": "locales_ar_blocker_deactivation_failed_msg" + }, + { + "label": "deactivation_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L206", + "community": 2, + "norm_label": "deactivation_heading", + "id": "locales_ar_blocker_deactivation_heading" + }, + { + "label": "deactivation_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L207", + "community": 2, + "norm_label": "deactivation_title", + "id": "locales_ar_blocker_deactivation_title" + }, + { + "label": "deactivation_intro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L208", + "community": 2, + "norm_label": "deactivation_intro", + "id": "locales_ar_blocker_deactivation_intro" + }, + { + "label": "deactivation_bullet1_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L209", + "community": 2, + "norm_label": "deactivation_bullet1_title", + "id": "locales_ar_blocker_deactivation_bullet1_title" + }, + { + "label": "deactivation_bullet1_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L210", + "community": 2, + "norm_label": "deactivation_bullet1_text", + "id": "locales_ar_blocker_deactivation_bullet1_text" + }, + { + "label": "deactivation_bullet2_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L211", + "community": 2, + "norm_label": "deactivation_bullet2_title", + "id": "locales_ar_blocker_deactivation_bullet2_title" + }, + { + "label": "deactivation_bullet2_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L212", + "community": 2, + "norm_label": "deactivation_bullet2_text", + "id": "locales_ar_blocker_deactivation_bullet2_text" + }, + { + "label": "deactivation_bullet3_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L213", + "community": 2, + "norm_label": "deactivation_bullet3_title", + "id": "locales_ar_blocker_deactivation_bullet3_title" + }, + { + "label": "deactivation_bullet3_text", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L214", + "community": 2, + "norm_label": "deactivation_bullet3_text", + "id": "locales_ar_blocker_deactivation_bullet3_text" + }, + { + "label": "deactivation_breathe_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L215", + "community": 2, + "norm_label": "deactivation_breathe_cta", + "id": "locales_ar_blocker_deactivation_breathe_cta" + }, + { + "label": "deactivation_start_anyway", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L216", + "community": 2, + "norm_label": "deactivation_start_anyway", + "id": "locales_ar_blocker_deactivation_start_anyway" + }, + { + "label": "deactivation_starting", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L217", + "community": 2, + "norm_label": "deactivation_starting", + "id": "locales_ar_blocker_deactivation_starting" + }, + { + "label": "deactivation_cancel_failed", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L218", + "community": 2, + "norm_label": "deactivation_cancel_failed", + "id": "locales_ar_blocker_deactivation_cancel_failed" + }, + { + "label": "domain_section_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L219", + "community": 2, + "norm_label": "domain_section_title", + "id": "locales_ar_blocker_domain_section_title" + }, + { + "label": "domain_add_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L220", + "community": 2, + "norm_label": "domain_add_a11y", + "id": "locales_ar_blocker_domain_add_a11y" + }, + { + "label": "domain_limit_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L221", + "community": 2, + "norm_label": "domain_limit_title", + "id": "locales_ar_blocker_domain_limit_title" + }, + { + "label": "domain_limit_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L222", + "community": 2, + "norm_label": "domain_limit_desc", + "id": "locales_ar_blocker_domain_limit_desc" + }, + { + "label": "domain_empty", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L223", + "community": 2, + "norm_label": "domain_empty", + "id": "locales_ar_blocker_domain_empty" + }, + { + "label": "domain_badge_voting", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L224", + "community": 2, + "norm_label": "domain_badge_voting", + "id": "locales_ar_blocker_domain_badge_voting" + }, + { + "label": "domain_badge_pruefung", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L225", + "community": 2, + "norm_label": "domain_badge_pruefung", + "id": "locales_ar_blocker_domain_badge_pruefung" + }, + { + "label": "domain_badge_rejected", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L226", + "community": 2, + "norm_label": "domain_badge_rejected", + "id": "locales_ar_blocker_domain_badge_rejected" + }, + { + "label": "domain_badge_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L227", + "community": 2, + "norm_label": "domain_badge_active", + "id": "locales_ar_blocker_domain_badge_active" + }, + { + "label": "domain_btn_freigeben", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L228", + "community": 2, + "norm_label": "domain_btn_freigeben", + "id": "locales_ar_blocker_domain_btn_freigeben" + }, + { + "label": "domain_btn_erneut", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L229", + "community": 2, + "norm_label": "domain_btn_erneut", + "id": "locales_ar_blocker_domain_btn_erneut" + }, + { + "label": "domain_btn_in_abstimmung", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L230", + "community": 2, + "norm_label": "domain_btn_in_abstimmung", + "id": "locales_ar_blocker_domain_btn_in_abstimmung" + }, + { + "label": "domain_btn_rebreak_prueft", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L231", + "community": 2, + "norm_label": "domain_btn_rebreak_prueft", + "id": "locales_ar_blocker_domain_btn_rebreak_prueft" + }, + { + "label": "domain_confirm_legend_resubmit", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L232", + "community": 2, + "norm_label": "domain_confirm_legend_resubmit", + "id": "locales_ar_blocker_domain_confirm_legend_resubmit" + }, + { + "label": "domain_confirm_legend_first", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L233", + "community": 2, + "norm_label": "domain_confirm_legend_first", + "id": "locales_ar_blocker_domain_confirm_legend_first" + }, + { + "label": "domain_confirm_community_resubmit", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L234", + "community": 2, + "norm_label": "domain_confirm_community_resubmit", + "id": "locales_ar_blocker_domain_confirm_community_resubmit" + }, + { + "label": "domain_confirm_community_first", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L235", + "community": 2, + "norm_label": "domain_confirm_community_first", + "id": "locales_ar_blocker_domain_confirm_community_first" + }, + { + "label": "domain_confirm_legend_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L236", + "community": 2, + "norm_label": "domain_confirm_legend_message", + "id": "locales_ar_blocker_domain_confirm_legend_message" + }, + { + "label": "domain_confirm_community_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L237", + "community": 2, + "norm_label": "domain_confirm_community_message", + "id": "locales_ar_blocker_domain_confirm_community_message" + }, + { + "label": "domain_success_legend_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L238", + "community": 2, + "norm_label": "domain_success_legend_title", + "id": "locales_ar_blocker_domain_success_legend_title" + }, + { + "label": "domain_success_community_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L239", + "community": 2, + "norm_label": "domain_success_community_title", + "id": "locales_ar_blocker_domain_success_community_title" + }, + { + "label": "domain_success_legend_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L240", + "community": 2, + "norm_label": "domain_success_legend_message", + "id": "locales_ar_blocker_domain_success_legend_message" + }, + { + "label": "domain_success_community_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L241", + "community": 2, + "norm_label": "domain_success_community_message", + "id": "locales_ar_blocker_domain_success_community_message" + }, + { + "label": "upgrade_alert_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L242", + "community": 2, + "norm_label": "upgrade_alert_title", + "id": "locales_ar_blocker_upgrade_alert_title" + }, + { + "label": "upgrade_alert_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L243", + "community": 2, + "norm_label": "upgrade_alert_desc", + "id": "locales_ar_blocker_upgrade_alert_desc" + }, + { + "label": "protection_card_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L244", + "community": 2, + "norm_label": "protection_card_title", + "id": "locales_ar_blocker_protection_card_title" + }, + { + "label": "protection_card_locked_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L245", + "community": 2, + "norm_label": "protection_card_locked_title", + "id": "locales_ar_blocker_protection_card_locked_title" + }, + { + "label": "protection_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L246", + "community": 2, + "norm_label": "protection_subtitle_inactive", + "id": "locales_ar_blocker_protection_subtitle_inactive" + }, + { + "label": "protection_subtitle_cooldown", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L247", + "community": 2, + "norm_label": "protection_subtitle_cooldown", + "id": "locales_ar_blocker_protection_subtitle_cooldown" + }, + { + "label": "protection_subtitle_free", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L248", + "community": 2, + "norm_label": "protection_subtitle_free", + "id": "locales_ar_blocker_protection_subtitle_free" + }, + { + "label": "protection_subtitle_legend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L249", + "community": 2, + "norm_label": "protection_subtitle_legend", + "id": "locales_ar_blocker_protection_subtitle_legend" + }, + { + "label": "protection_subtitle_pro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L250", + "community": 2, + "norm_label": "protection_subtitle_pro", + "id": "locales_ar_blocker_protection_subtitle_pro" + }, + { + "label": "protection_settings_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L251", + "community": 2, + "norm_label": "protection_settings_a11y", + "id": "locales_ar_blocker_protection_settings_a11y" + }, + { + "label": "protection_stat_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L252", + "community": 2, + "norm_label": "protection_stat_domains", + "id": "locales_ar_blocker_protection_stat_domains" + }, + { + "label": "protection_stat_method", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L253", + "community": 2, + "norm_label": "protection_stat_method", + "id": "locales_ar_blocker_protection_stat_method" + }, + { + "label": "protection_stat_method_dns", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L254", + "community": 2, + "norm_label": "protection_stat_method_dns", + "id": "locales_ar_blocker_protection_stat_method_dns" + }, + { + "label": "protection_stat_method_native", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L255", + "community": 2, + "norm_label": "protection_stat_method_native", + "id": "locales_ar_blocker_protection_stat_method_native" + }, + { + "label": "protection_stat_status", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L256", + "community": 2, + "norm_label": "protection_stat_status", + "id": "locales_ar_blocker_protection_stat_status" + }, + { + "label": "protection_stat_status_live", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L257", + "community": 2, + "norm_label": "protection_stat_status_live", + "id": "locales_ar_blocker_protection_stat_status_live" + }, + { + "label": "activate_url_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L258", + "community": 2, + "norm_label": "activate_url_failed_title", + "id": "locales_ar_blocker_activate_url_failed_title" + }, + { + "label": "activate_url_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L259", + "community": 2, + "norm_label": "activate_url_failed_msg", + "id": "locales_ar_blocker_activate_url_failed_msg" + }, + { + "label": "activate_settings_btn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L260", + "community": 2, + "norm_label": "activate_settings_btn", + "id": "locales_ar_blocker_activate_settings_btn" + }, + { + "label": "permission_denied", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L261", + "community": 602, + "norm_label": "permission_denied", + "id": "locales_ar_blocker_permission_denied" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L262", + "community": 602, + "norm_label": "title", + "id": "locales_ar_permission_denied_title" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L263", + "community": 602, + "norm_label": "body", + "id": "locales_ar_permission_denied_body" + }, + { + "label": "retry_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L264", + "community": 602, + "norm_label": "retry_cta", + "id": "locales_ar_permission_denied_retry_cta" + }, + { + "label": "retry_loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L265", + "community": 602, + "norm_label": "retry_loading", + "id": "locales_ar_permission_denied_retry_loading" + }, + { + "label": "settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L266", + "community": 602, + "norm_label": "settings_cta", + "id": "locales_ar_permission_denied_settings_cta" + }, + { + "label": "fallback_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L267", + "community": 602, + "norm_label": "fallback_label", + "id": "locales_ar_permission_denied_fallback_label" + }, + { + "label": "fallback_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L268", + "community": 602, + "norm_label": "fallback_body", + "id": "locales_ar_permission_denied_fallback_body" + }, + { + "label": "family_controls_error", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L270", + "community": 602, + "norm_label": "family_controls_error", + "id": "locales_ar_blocker_family_controls_error" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L271", + "community": 602, + "norm_label": "title", + "id": "locales_ar_family_controls_error_title" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L272", + "community": 602, + "norm_label": "body", + "id": "locales_ar_family_controls_error_body" + }, + { + "label": "retry_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L273", + "community": 602, + "norm_label": "retry_cta", + "id": "locales_ar_family_controls_error_retry_cta" + }, + { + "label": "retry_loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L274", + "community": 602, + "norm_label": "retry_loading", + "id": "locales_ar_family_controls_error_retry_loading" + }, + { + "label": "settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L275", + "community": 602, + "norm_label": "settings_cta", + "id": "locales_ar_family_controls_error_settings_cta" + }, + { + "label": "fallback_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L276", + "community": 602, + "norm_label": "fallback_label", + "id": "locales_ar_family_controls_error_fallback_label" + }, + { + "label": "fallback_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L277", + "community": 602, + "norm_label": "fallback_body", + "id": "locales_ar_family_controls_error_fallback_body" + }, + { + "label": "protection_off_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L279", + "community": 2, + "norm_label": "protection_off_title", + "id": "locales_ar_blocker_protection_off_title" + }, + { + "label": "protection_off_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L280", + "community": 2, + "norm_label": "protection_off_message", + "id": "locales_ar_blocker_protection_off_message" + }, + { + "label": "reactivate_btn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L281", + "community": 2, + "norm_label": "reactivate_btn", + "id": "locales_ar_blocker_reactivate_btn" + }, + { + "label": "protection_off_later", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L282", + "community": 2, + "norm_label": "protection_off_later", + "id": "locales_ar_blocker_protection_off_later" + }, + { + "label": "activate_app_lock_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L283", + "community": 2, + "norm_label": "activate_app_lock_failed_title", + "id": "locales_ar_blocker_activate_app_lock_failed_title" + }, + { + "label": "activate_app_lock_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L284", + "community": 2, + "norm_label": "activate_app_lock_failed_msg", + "id": "locales_ar_blocker_activate_app_lock_failed_msg" + }, + { + "label": "sync_list_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L285", + "community": 2, + "norm_label": "sync_list_failed_title", + "id": "locales_ar_blocker_sync_list_failed_title" + }, + { + "label": "sync_list_failed_msg", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L286", + "community": 2, + "norm_label": "sync_list_failed_msg", + "id": "locales_ar_blocker_sync_list_failed_msg" + }, + { + "label": "activation_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L287", + "community": 2, + "norm_label": "activation_failed_title", + "id": "locales_ar_blocker_activation_failed_title" + }, + { + "label": "details_done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L288", + "community": 2, + "norm_label": "details_done", + "id": "locales_ar_blocker_details_done" + }, + { + "label": "details_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L289", + "community": 2, + "norm_label": "details_title", + "id": "locales_ar_blocker_details_title" + }, + { + "label": "details_active_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L290", + "community": 2, + "norm_label": "details_active_title", + "id": "locales_ar_blocker_details_active_title" + }, + { + "label": "details_domains_blocked", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L291", + "community": 2, + "norm_label": "details_domains_blocked", + "id": "locales_ar_blocker_details_domains_blocked" + }, + { + "label": "details_layers_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L292", + "community": 2, + "norm_label": "details_layers_heading", + "id": "locales_ar_blocker_details_layers_heading" + }, + { + "label": "details_layer_url_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L293", + "community": 2, + "norm_label": "details_layer_url_label", + "id": "locales_ar_blocker_details_layer_url_label" + }, + { + "label": "details_layer_url_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L294", + "community": 2, + "norm_label": "details_layer_url_desc", + "id": "locales_ar_blocker_details_layer_url_desc" + }, + { + "label": "details_layer_applock_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L295", + "community": 2, + "norm_label": "details_layer_applock_label", + "id": "locales_ar_blocker_details_layer_applock_label" + }, + { + "label": "details_layer_applock_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L296", + "community": 2, + "norm_label": "details_layer_applock_desc", + "id": "locales_ar_blocker_details_layer_applock_desc" + }, + { + "label": "details_layer_vpn_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L297", + "community": 2, + "norm_label": "details_layer_vpn_label", + "id": "locales_ar_blocker_details_layer_vpn_label" + }, + { + "label": "details_layer_vpn_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L298", + "community": 2, + "norm_label": "details_layer_vpn_desc", + "id": "locales_ar_blocker_details_layer_vpn_desc" + }, + { + "label": "details_layer_a11y_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L299", + "community": 2, + "norm_label": "details_layer_a11y_label", + "id": "locales_ar_blocker_details_layer_a11y_label" + }, + { + "label": "details_layer_a11y_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L300", + "community": 2, + "norm_label": "details_layer_a11y_desc", + "id": "locales_ar_blocker_details_layer_a11y_desc" + }, + { + "label": "details_layer_tamper_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L301", + "community": 2, + "norm_label": "details_layer_tamper_label", + "id": "locales_ar_blocker_details_layer_tamper_label" + }, + { + "label": "details_layer_tamper_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L302", + "community": 2, + "norm_label": "details_layer_tamper_desc", + "id": "locales_ar_blocker_details_layer_tamper_desc" + }, + { + "label": "details_lyra_cta_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L303", + "community": 2, + "norm_label": "details_lyra_cta_title", + "id": "locales_ar_blocker_details_lyra_cta_title" + }, + { + "label": "details_lyra_cta_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L304", + "community": 2, + "norm_label": "details_lyra_cta_subtitle", + "id": "locales_ar_blocker_details_lyra_cta_subtitle" + }, + { + "label": "details_deactivate_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L305", + "community": 2, + "norm_label": "details_deactivate_link", + "id": "locales_ar_blocker_details_deactivate_link" + }, + { + "label": "layers_url_filter_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L306", + "community": 2, + "norm_label": "layers_url_filter_title", + "id": "locales_ar_blocker_layers_url_filter_title" + }, + { + "label": "layers_url_filter_subtitle_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L307", + "community": 2, + "norm_label": "layers_url_filter_subtitle_active", + "id": "locales_ar_blocker_layers_url_filter_subtitle_active" + }, + { + "label": "layers_url_filter_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L308", + "community": 2, + "norm_label": "layers_url_filter_subtitle_inactive", + "id": "locales_ar_blocker_layers_url_filter_subtitle_inactive" + }, + { + "label": "layers_app_lock_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L309", + "community": 2, + "norm_label": "layers_app_lock_title", + "id": "locales_ar_blocker_layers_app_lock_title" + }, + { + "label": "layers_app_lock_subtitle_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L310", + "community": 2, + "norm_label": "layers_app_lock_subtitle_active", + "id": "locales_ar_blocker_layers_app_lock_subtitle_active" + }, + { + "label": "layers_app_lock_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L311", + "community": 2, + "norm_label": "layers_app_lock_subtitle_inactive", + "id": "locales_ar_blocker_layers_app_lock_subtitle_inactive" + }, + { + "label": "layers_app_lock_warning", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L312", + "community": 2, + "norm_label": "layers_app_lock_warning", + "id": "locales_ar_blocker_layers_app_lock_warning" + }, + { + "label": "layers_app_lock_locked_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L313", + "community": 2, + "norm_label": "layers_app_lock_locked_hint", + "id": "locales_ar_blocker_layers_app_lock_locked_hint" + }, + { + "label": "screentime_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L314", + "community": 2, + "norm_label": "screentime_title", + "id": "locales_ar_blocker_screentime_title" + }, + { + "label": "screentime_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L315", + "community": 2, + "norm_label": "screentime_desc", + "id": "locales_ar_blocker_screentime_desc" + }, + { + "label": "screentime_generate_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L316", + "community": 2, + "norm_label": "screentime_generate_cta", + "id": "locales_ar_blocker_screentime_generate_cta" + }, + { + "label": "screentime_code_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L317", + "community": 2, + "norm_label": "screentime_code_label", + "id": "locales_ar_blocker_screentime_code_label" + }, + { + "label": "screentime_step1", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L318", + "community": 2, + "norm_label": "screentime_step1", + "id": "locales_ar_blocker_screentime_step1" + }, + { + "label": "screentime_step2", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L319", + "community": 2, + "norm_label": "screentime_step2", + "id": "locales_ar_blocker_screentime_step2" + }, + { + "label": "screentime_step3", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L320", + "community": 2, + "norm_label": "screentime_step3", + "id": "locales_ar_blocker_screentime_step3" + }, + { + "label": "screentime_step_note", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L321", + "community": 2, + "norm_label": "screentime_step_note", + "id": "locales_ar_blocker_screentime_step_note" + }, + { + "label": "screentime_open_settings_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L322", + "community": 2, + "norm_label": "screentime_open_settings_cta", + "id": "locales_ar_blocker_screentime_open_settings_cta" + }, + { + "label": "screentime_confirm_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L323", + "community": 2, + "norm_label": "screentime_confirm_cta", + "id": "locales_ar_blocker_screentime_confirm_cta" + }, + { + "label": "screentime_confirmed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L324", + "community": 2, + "norm_label": "screentime_confirmed_title", + "id": "locales_ar_blocker_screentime_confirmed_title" + }, + { + "label": "screentime_confirmed_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L325", + "community": 2, + "norm_label": "screentime_confirmed_desc", + "id": "locales_ar_blocker_screentime_confirmed_desc" + }, + { + "label": "layers_a11y_subtitle_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L326", + "community": 2, + "norm_label": "layers_a11y_subtitle_active", + "id": "locales_ar_blocker_layers_a11y_subtitle_active" + }, + { + "label": "layers_a11y_subtitle_inactive", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L327", + "community": 2, + "norm_label": "layers_a11y_subtitle_inactive", + "id": "locales_ar_blocker_layers_a11y_subtitle_inactive" + }, + { + "label": "kpi_global_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L328", + "community": 2, + "norm_label": "kpi_global_label", + "id": "locales_ar_blocker_kpi_global_label" + }, + { + "label": "kpi_global_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L329", + "community": 2, + "norm_label": "kpi_global_subtitle", + "id": "locales_ar_blocker_kpi_global_subtitle" + }, + { + "label": "delta_week", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L330", + "community": 2, + "norm_label": "delta_week", + "id": "locales_ar_blocker_delta_week" + }, + { + "label": "delta_month", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L331", + "community": 2, + "norm_label": "delta_month", + "id": "locales_ar_blocker_delta_month" + }, + { + "label": "kpi_submissions_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L332", + "community": 2, + "norm_label": "kpi_submissions_title", + "id": "locales_ar_blocker_kpi_submissions_title" + }, + { + "label": "kpi_submissions_subtitle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L333", + "community": 2, + "norm_label": "kpi_submissions_subtitle", + "id": "locales_ar_blocker_kpi_submissions_subtitle" + }, + { + "label": "kpi_my_submissions", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L334", + "community": 2, + "norm_label": "kpi_my_submissions", + "id": "locales_ar_blocker_kpi_my_submissions" + }, + { + "label": "kpi_status_active", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L335", + "community": 2, + "norm_label": "kpi_status_active", + "id": "locales_ar_blocker_kpi_status_active" + }, + { + "label": "kpi_status_vote", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L336", + "community": 2, + "norm_label": "kpi_status_vote", + "id": "locales_ar_blocker_kpi_status_vote" + }, + { + "label": "kpi_status_review", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L337", + "community": 2, + "norm_label": "kpi_status_review", + "id": "locales_ar_blocker_kpi_status_review" + }, + { + "label": "kpi_in_vote", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L338", + "community": 2, + "norm_label": "kpi_in_vote", + "id": "locales_ar_blocker_kpi_in_vote" + }, + { + "label": "kpi_in_review", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L339", + "community": 2, + "norm_label": "kpi_in_review", + "id": "locales_ar_blocker_kpi_in_review" + }, + { + "label": "kpi_avg_per_user", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L340", + "community": 2, + "norm_label": "kpi_avg_per_user", + "id": "locales_ar_blocker_kpi_avg_per_user" + }, + { + "label": "kpi_avg_wait", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L341", + "community": 2, + "norm_label": "kpi_avg_wait", + "id": "locales_ar_blocker_kpi_avg_wait" + }, + { + "label": "kpi_days_suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L342", + "community": 2, + "norm_label": "kpi_days_suffix", + "id": "locales_ar_blocker_kpi_days_suffix" + }, + { + "label": "faq_heading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L343", + "community": 2, + "norm_label": "faq_heading", + "id": "locales_ar_blocker_faq_heading" + }, + { + "label": "faq1_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L344", + "community": 2, + "norm_label": "faq1_q", + "id": "locales_ar_blocker_faq1_q" + }, + { + "label": "faq1_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L345", + "community": 2, + "norm_label": "faq1_a", + "id": "locales_ar_blocker_faq1_a" + }, + { + "label": "faq2_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L346", + "community": 2, + "norm_label": "faq2_q", + "id": "locales_ar_blocker_faq2_q" + }, + { + "label": "faq2_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L347", + "community": 2, + "norm_label": "faq2_a", + "id": "locales_ar_blocker_faq2_a" + }, + { + "label": "faq3_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L348", + "community": 2, + "norm_label": "faq3_q", + "id": "locales_ar_blocker_faq3_q" + }, + { + "label": "faq3_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L349", + "community": 2, + "norm_label": "faq3_a", + "id": "locales_ar_blocker_faq3_a" + }, + { + "label": "faq4_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L350", + "community": 2, + "norm_label": "faq4_q", + "id": "locales_ar_blocker_faq4_q" + }, + { + "label": "faq4_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L351", + "community": 2, + "norm_label": "faq4_a", + "id": "locales_ar_blocker_faq4_a" + }, + { + "label": "faq5_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L352", + "community": 2, + "norm_label": "faq5_q", + "id": "locales_ar_blocker_faq5_q" + }, + { + "label": "faq5_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L353", + "community": 2, + "norm_label": "faq5_a", + "id": "locales_ar_blocker_faq5_a" + }, + { + "label": "faq6_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L354", + "community": 2, + "norm_label": "faq6_q", + "id": "locales_ar_blocker_faq6_q" + }, + { + "label": "faq6_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L355", + "community": 2, + "norm_label": "faq6_a", + "id": "locales_ar_blocker_faq6_a" + }, + { + "label": "faq7_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L356", + "community": 2, + "norm_label": "faq7_q", + "id": "locales_ar_blocker_faq7_q" + }, + { + "label": "faq7_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L357", + "community": 2, + "norm_label": "faq7_a", + "id": "locales_ar_blocker_faq7_a" + }, + { + "label": "faq8_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L358", + "community": 2, + "norm_label": "faq8_q", + "id": "locales_ar_blocker_faq8_q" + }, + { + "label": "faq8_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L359", + "community": 2, + "norm_label": "faq8_a", + "id": "locales_ar_blocker_faq8_a" + }, + { + "label": "faq9_q", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L360", + "community": 2, + "norm_label": "faq9_q", + "id": "locales_ar_blocker_faq9_q" + }, + { + "label": "faq9_a", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L361", + "community": 2, + "norm_label": "faq9_a", + "id": "locales_ar_blocker_faq9_a" + }, + { + "label": "more_info_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L362", + "community": 2, + "norm_label": "more_info_title", + "id": "locales_ar_blocker_more_info_title" + }, + { + "label": "cooldown_elapsed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L363", + "community": 2, + "norm_label": "cooldown_elapsed_title", + "id": "locales_ar_blocker_cooldown_elapsed_title" + }, + { + "label": "cooldown_elapsed_message", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L364", + "community": 2, + "norm_label": "cooldown_elapsed_message", + "id": "locales_ar_blocker_cooldown_elapsed_message" + }, + { + "label": "cooldown_elapsed_message_ios", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L365", + "community": 2, + "norm_label": "cooldown_elapsed_message_ios", + "id": "locales_ar_blocker_cooldown_elapsed_message_ios" + }, + { + "label": "cooldown_elapsed_open_settings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L366", + "community": 2, + "norm_label": "cooldown_elapsed_open_settings", + "id": "locales_ar_blocker_cooldown_elapsed_open_settings" + }, + { + "label": "app_lock_coming_soon_badge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L367", + "community": 2, + "norm_label": "app_lock_coming_soon_badge", + "id": "locales_ar_blocker_app_lock_coming_soon_badge" + }, + { + "label": "app_lock_coming_soon_desc", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L368", + "community": 2, + "norm_label": "app_lock_coming_soon_desc", + "id": "locales_ar_blocker_app_lock_coming_soon_desc" + }, + { + "label": "type_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L369", + "community": 2, + "norm_label": "type_web", + "id": "locales_ar_blocker_type_web" + }, + { + "label": "type_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L370", + "community": 2, + "norm_label": "type_mail", + "id": "locales_ar_blocker_type_mail" + }, + { + "label": "add_web_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L371", + "community": 2, + "norm_label": "add_web_label", + "id": "locales_ar_blocker_add_web_label" + }, + { + "label": "add_web_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L372", + "community": 2, + "norm_label": "add_web_placeholder", + "id": "locales_ar_blocker_add_web_placeholder" + }, + { + "label": "add_web_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L373", + "community": 2, + "norm_label": "add_web_help", + "id": "locales_ar_blocker_add_web_help" + }, + { + "label": "add_mail_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L374", + "community": 2, + "norm_label": "add_mail_label", + "id": "locales_ar_blocker_add_mail_label" + }, + { + "label": "add_mail_placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L375", + "community": 2, + "norm_label": "add_mail_placeholder", + "id": "locales_ar_blocker_add_mail_placeholder" + }, + { + "label": "add_mail_help", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L376", + "community": 2, + "norm_label": "add_mail_help", + "id": "locales_ar_blocker_add_mail_help" + }, + { + "label": "add_mail_invalid", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L377", + "community": 2, + "norm_label": "add_mail_invalid", + "id": "locales_ar_blocker_add_mail_invalid" + }, + { + "label": "add_sheet_cta", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L378", + "community": 2, + "norm_label": "add_sheet_cta", + "id": "locales_ar_blocker_add_sheet_cta" + }, + { + "label": "section_domains", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L379", + "community": 2, + "norm_label": "section_domains", + "id": "locales_ar_blocker_section_domains" + }, + { + "label": "section_mails", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L380", + "community": 2, + "norm_label": "section_mails", + "id": "locales_ar_blocker_section_mails" + }, + { + "label": "count_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L381", + "community": 2, + "norm_label": "count_label", + "id": "locales_ar_blocker_count_label" + }, + { + "label": "error_web_limit_reached", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L382", + "community": 2, + "norm_label": "error_web_limit_reached", + "id": "locales_ar_blocker_error_web_limit_reached" + }, + { + "label": "error_mail_limit_reached", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L383", + "community": 2, + "norm_label": "error_mail_limit_reached", + "id": "locales_ar_blocker_error_mail_limit_reached" + }, + { + "label": "error_invalid_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L384", + "community": 2, + "norm_label": "error_invalid_mail", + "id": "locales_ar_blocker_error_invalid_mail" + }, + { + "label": "error_invalid_input", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L385", + "community": 41, + "norm_label": "error_invalid_input", + "id": "locales_ar_blocker_error_invalid_input" + }, + { + "label": "error_public_domain", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L386", + "community": 2, + "norm_label": "error_public_domain", + "id": "locales_ar_blocker_error_public_domain" + }, + { + "label": "error_duplicate", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L387", + "community": 2, + "norm_label": "error_duplicate", + "id": "locales_ar_blocker_error_duplicate" + }, + { + "label": "kind_override_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L388", + "community": 2, + "norm_label": "kind_override_label", + "id": "locales_ar_blocker_kind_override_label" + }, + { + "label": "empty_web", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L389", + "community": 2, + "norm_label": "empty_web", + "id": "locales_ar_blocker_empty_web" + }, + { + "label": "empty_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L390", + "community": 2, + "norm_label": "empty_mail", + "id": "locales_ar_blocker_empty_mail" + }, + { + "label": "protection_subtitle_mdm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L391", + "community": 2, + "norm_label": "protection_subtitle_mdm", + "id": "locales_ar_blocker_protection_subtitle_mdm" + }, + { + "label": "protection_stat_method_nefilter", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L392", + "community": 2, + "norm_label": "protection_stat_method_nefilter", + "id": "locales_ar_blocker_protection_stat_method_nefilter" + }, + { + "label": "protection_stat_method_mdm", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L393", + "community": 2, + "norm_label": "protection_stat_method_mdm", + "id": "locales_ar_blocker_protection_stat_method_mdm" + }, + { + "label": "mdm_info_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L394", + "community": 2, + "norm_label": "mdm_info_hint", + "id": "locales_ar_blocker_mdm_info_hint" + }, + { + "label": "mdm_deactivate_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L395", + "community": 2, + "norm_label": "mdm_deactivate_title", + "id": "locales_ar_blocker_mdm_deactivate_title" + }, + { + "label": "mdm_deactivate_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L396", + "community": 2, + "norm_label": "mdm_deactivate_body", + "id": "locales_ar_blocker_mdm_deactivate_body" + }, + { + "label": "onboarding", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L398", + "community": 41, + "norm_label": "onboarding", + "id": "locales_ar_onboarding" + }, + { + "label": "lyra", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L399", + "community": 41, + "norm_label": "lyra", + "id": "locales_ar_onboarding_lyra" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L400", + "community": 41, + "norm_label": "welcome", + "id": "locales_ar_lyra_welcome" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L401", + "community": 41, + "norm_label": "body", + "id": "locales_ar_welcome_body" + }, + { + "label": "privacy", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L403", + "community": 41, + "norm_label": "privacy", + "id": "locales_ar_lyra_privacy" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L404", + "community": 41, + "norm_label": "body", + "id": "locales_ar_privacy_body" + }, + { + "label": "nickname", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L406", + "community": 41, + "norm_label": "nickname", + "id": "locales_ar_lyra_nickname" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L407", + "community": 41, + "norm_label": "body", + "id": "locales_ar_nickname_body" + }, + { + "label": "diga_choice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L409", + "community": 41, + "norm_label": "diga_choice", + "id": "locales_ar_lyra_diga_choice" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L410", + "community": 41, + "norm_label": "body", + "id": "locales_ar_diga_choice_body" + }, + { + "label": "diga_code", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L412", + "community": 41, + "norm_label": "diga_code", + "id": "locales_ar_lyra_diga_code" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L413", + "community": 41, + "norm_label": "body", + "id": "locales_ar_diga_code_body" + }, + { + "label": "plan", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L415", + "community": 82, + "norm_label": "plan", + "id": "locales_ar_lyra_plan" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L416", + "community": 41, + "norm_label": "body", + "id": "locales_ar_plan_body" + }, + { + "label": "payment", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L418", + "community": 41, + "norm_label": "payment", + "id": "locales_ar_lyra_payment" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L419", + "community": 41, + "norm_label": "body", + "id": "locales_ar_payment_body" + }, + { + "label": "protection", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L421", + "community": 55, + "norm_label": "protection", + "id": "locales_ar_lyra_protection" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L422", + "community": 55, + "norm_label": "body", + "id": "locales_ar_protection_body" + }, + { + "label": "protection_url", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L424", + "community": 41, + "norm_label": "protection_url", + "id": "locales_ar_lyra_protection_url" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L425", + "community": 41, + "norm_label": "body", + "id": "locales_ar_protection_url_body" + }, + { + "label": "protection_lock", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L427", + "community": 41, + "norm_label": "protection_lock", + "id": "locales_ar_lyra_protection_lock" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L428", + "community": 41, + "norm_label": "body", + "id": "locales_ar_protection_lock_body" + }, + { + "label": "protection_url_android", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L430", + "community": 41, + "norm_label": "protection_url_android", + "id": "locales_ar_lyra_protection_url_android" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L431", + "community": 41, + "norm_label": "body", + "id": "locales_ar_protection_url_android_body" + }, + { + "label": "protection_lock_android", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L433", + "community": 41, + "norm_label": "protection_lock_android", + "id": "locales_ar_lyra_protection_lock_android" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L434", + "community": 41, + "norm_label": "body", + "id": "locales_ar_protection_lock_android_body" + }, + { + "label": "done", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L436", + "community": 41, + "norm_label": "done", + "id": "locales_ar_lyra_done" + }, + { + "label": "body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L437", + "community": 41, + "norm_label": "body", + "id": "locales_ar_done_body" + }, + { + "label": "audio_play", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L439", + "community": 41, + "norm_label": "audio_play", + "id": "locales_ar_lyra_audio_play" + }, + { + "label": "audio_loading", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L440", + "community": 41, + "norm_label": "audio_loading", + "id": "locales_ar_lyra_audio_loading" + }, + { + "label": "audio_stop", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L441", + "community": 41, + "norm_label": "audio_stop", + "id": "locales_ar_lyra_audio_stop" + }, + { + "label": "audio_disable", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L442", + "community": 41, + "norm_label": "audio_disable", + "id": "locales_ar_lyra_audio_disable" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L444", + "community": 41, + "norm_label": "welcome", + "id": "locales_ar_onboarding_welcome" + }, + { + "label": "cta_primary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L445", + "community": 41, + "norm_label": "cta_primary", + "id": "locales_ar_welcome_cta_primary" + }, + { + "label": "bullet_anon", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L446", + "community": 41, + "norm_label": "bullet_anon", + "id": "locales_ar_welcome_bullet_anon" + }, + { + "label": "bullet_protect", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L447", + "community": 41, + "norm_label": "bullet_protect", + "id": "locales_ar_welcome_bullet_protect" + }, + { + "label": "bullet_community", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L448", + "community": 41, + "norm_label": "bullet_community", + "id": "locales_ar_welcome_bullet_community" + }, + { + "label": "privacy", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L450", + "community": 41, + "norm_label": "privacy", + "id": "locales_ar_onboarding_privacy" + }, + { + "label": "cta_primary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L451", + "community": 41, + "norm_label": "cta_primary", + "id": "locales_ar_privacy_cta_primary" + }, + { + "label": "promise_alias", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L452", + "community": 41, + "norm_label": "promise_alias", + "id": "locales_ar_privacy_promise_alias" + }, + { + "label": "promise_minimal", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L453", + "community": 41, + "norm_label": "promise_minimal", + "id": "locales_ar_privacy_promise_minimal" + }, + { + "label": "promise_no_ads", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L454", + "community": 41, + "norm_label": "promise_no_ads", + "id": "locales_ar_privacy_promise_no_ads" + }, + { + "label": "promise_germany", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L455", + "community": 41, + "norm_label": "promise_germany", + "id": "locales_ar_privacy_promise_germany" + }, + { + "label": "nickname", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L457", + "community": 41, + "norm_label": "nickname", + "id": "locales_ar_onboarding_nickname" + }, + { + "label": "cta_primary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L458", + "community": 41, + "norm_label": "cta_primary", + "id": "locales_ar_nickname_cta_primary" + }, + { + "label": "label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L459", + "community": 41, + "norm_label": "label", + "id": "locales_ar_nickname_label" + }, + { + "label": "placeholder", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L460", + "community": 41, + "norm_label": "placeholder", + "id": "locales_ar_nickname_placeholder" + }, + { + "label": "hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L461", + "community": 41, + "norm_label": "hint", + "id": "locales_ar_nickname_hint" + }, + { + "label": "error_too_short", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L462", + "community": 41, + "norm_label": "error_too_short", + "id": "locales_ar_nickname_error_too_short" + }, + { + "label": "error_too_long", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L463", + "community": 41, + "norm_label": "error_too_long", + "id": "locales_ar_nickname_error_too_long" + }, + { + "label": "error_profanity", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L464", + "community": 41, + "norm_label": "error_profanity", + "id": "locales_ar_nickname_error_profanity" + }, + { + "label": "error_taken", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L465", + "community": 41, + "norm_label": "error_taken", + "id": "locales_ar_nickname_error_taken" + }, + { + "label": "diga_choice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L467", + "community": 41, + "norm_label": "diga_choice", + "id": "locales_ar_onboarding_diga_choice" + }, + { + "label": "cta_yes", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L468", + "community": 41, + "norm_label": "cta_yes", + "id": "locales_ar_diga_choice_cta_yes" + }, + { + "label": "cta_no", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L469", + "community": 41, + "norm_label": "cta_no", + "id": "locales_ar_diga_choice_cta_no" + }, + { + "label": "hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L470", + "community": 41, + "norm_label": "hint", + "id": "locales_ar_diga_choice_hint" + }, + { + "label": "diga_code", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L472", + "community": 41, + "norm_label": "diga_code", + "id": "locales_ar_onboarding_diga_code" + }, + { + "label": "cta_primary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L473", + "community": 41, + "norm_label": "cta_primary", + "id": "locales_ar_diga_code_cta_primary" + }, + { + "label": "cta_secondary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L474", + "community": 41, + "norm_label": "cta_secondary", + "id": "locales_ar_diga_code_cta_secondary" + }, + { + "label": "label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L475", + "community": 41, + "norm_label": "label", + "id": "locales_ar_diga_code_label" + }, + { + "label": "hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L476", + "community": 41, + "norm_label": "hint", + "id": "locales_ar_diga_code_hint" + }, + { + "label": "error_not_found", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L477", + "community": 41, + "norm_label": "error_not_found", + "id": "locales_ar_diga_code_error_not_found" + }, + { + "label": "error_already_used", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L478", + "community": 41, + "norm_label": "error_already_used", + "id": "locales_ar_diga_code_error_already_used" + }, + { + "label": "error_expired", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L479", + "community": 41, + "norm_label": "error_expired", + "id": "locales_ar_diga_code_error_expired" + }, + { + "label": "error_invalid_input", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L480", + "community": 41, + "norm_label": "error_invalid_input", + "id": "locales_ar_diga_code_error_invalid_input" + }, + { + "label": "plan", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L482", + "community": 82, + "norm_label": "plan", + "id": "locales_ar_onboarding_plan" + }, + { + "label": "cta_trial", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L483", + "community": 82, + "norm_label": "cta_trial", + "id": "locales_ar_plan_cta_trial" + }, + { + "label": "cta_legend", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L484", + "community": 82, + "norm_label": "cta_legend", + "id": "locales_ar_plan_cta_legend" + }, + { + "label": "billing_monthly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L485", + "community": 82, + "norm_label": "billing_monthly", + "id": "locales_ar_plan_billing_monthly" + }, + { + "label": "billing_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L486", + "community": 82, + "norm_label": "billing_yearly", + "id": "locales_ar_plan_billing_yearly" + }, + { + "label": "billing_savings", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L487", + "community": 82, + "norm_label": "billing_savings", + "id": "locales_ar_plan_billing_savings" + }, + { + "label": "tier_pro_badge", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L488", + "community": 82, + "norm_label": "tier_pro_badge", + "id": "locales_ar_plan_tier_pro_badge" + }, + { + "label": "tier_pro_price_monthly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L489", + "community": 82, + "norm_label": "tier_pro_price_monthly", + "id": "locales_ar_plan_tier_pro_price_monthly" + }, + { + "label": "tier_pro_price_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L490", + "community": 82, + "norm_label": "tier_pro_price_yearly", + "id": "locales_ar_plan_tier_pro_price_yearly" + }, + { + "label": "tier_pro_anchor_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L491", + "community": 82, + "norm_label": "tier_pro_anchor_yearly", + "id": "locales_ar_plan_tier_pro_anchor_yearly" + }, + { + "label": "tier_pro_total_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L492", + "community": 82, + "norm_label": "tier_pro_total_yearly", + "id": "locales_ar_plan_tier_pro_total_yearly" + }, + { + "label": "tier_pro_subline_monthly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L493", + "community": 82, + "norm_label": "tier_pro_subline_monthly", + "id": "locales_ar_plan_tier_pro_subline_monthly" + }, + { + "label": "tier_pro_subline_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L494", + "community": 82, + "norm_label": "tier_pro_subline_yearly", + "id": "locales_ar_plan_tier_pro_subline_yearly" + }, + { + "label": "tier_legend_price_monthly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L495", + "community": 82, + "norm_label": "tier_legend_price_monthly", + "id": "locales_ar_plan_tier_legend_price_monthly" + }, + { + "label": "tier_legend_price_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L496", + "community": 82, + "norm_label": "tier_legend_price_yearly", + "id": "locales_ar_plan_tier_legend_price_yearly" + }, + { + "label": "tier_legend_anchor_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L497", + "community": 82, + "norm_label": "tier_legend_anchor_yearly", + "id": "locales_ar_plan_tier_legend_anchor_yearly" + }, + { + "label": "tier_legend_total_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L498", + "community": 82, + "norm_label": "tier_legend_total_yearly", + "id": "locales_ar_plan_tier_legend_total_yearly" + }, + { + "label": "tier_legend_subline_monthly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L499", + "community": 82, + "norm_label": "tier_legend_subline_monthly", + "id": "locales_ar_plan_tier_legend_subline_monthly" + }, + { + "label": "tier_legend_subline_yearly", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L500", + "community": 82, + "norm_label": "tier_legend_subline_yearly", + "id": "locales_ar_plan_tier_legend_subline_yearly" + }, + { + "label": "feat_blocklist", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L501", + "community": 82, + "norm_label": "feat_blocklist", + "id": "locales_ar_plan_feat_blocklist" + }, + { + "label": "feat_lyra", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L502", + "community": 82, + "norm_label": "feat_lyra", + "id": "locales_ar_plan_feat_lyra" + }, + { + "label": "feat_mail", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L503", + "community": 82, + "norm_label": "feat_mail", + "id": "locales_ar_plan_feat_mail" + }, + { + "label": "feat_community", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L504", + "community": 82, + "norm_label": "feat_community", + "id": "locales_ar_plan_feat_community" + }, + { + "label": "feat_legend_all_pro", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L505", + "community": 82, + "norm_label": "feat_legend_all_pro", + "id": "locales_ar_plan_feat_legend_all_pro" + }, + { + "label": "feat_legend_multi_device", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L506", + "community": 82, + "norm_label": "feat_legend_multi_device", + "id": "locales_ar_plan_feat_legend_multi_device" + }, + { + "label": "feat_legend_voice", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L507", + "community": 82, + "norm_label": "feat_legend_voice", + "id": "locales_ar_plan_feat_legend_voice" + }, + { + "label": "disclaimer", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L508", + "community": 82, + "norm_label": "disclaimer", + "id": "locales_ar_plan_disclaimer" + }, + { + "label": "hardship_link", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L509", + "community": 82, + "norm_label": "hardship_link", + "id": "locales_ar_plan_hardship_link" + }, + { + "label": "payment", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L511", + "community": 41, + "norm_label": "payment", + "id": "locales_ar_onboarding_payment" + }, + { + "label": "cta_dev_skip", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L512", + "community": 41, + "norm_label": "cta_dev_skip", + "id": "locales_ar_payment_cta_dev_skip" + }, + { + "label": "dev_label", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L513", + "community": 41, + "norm_label": "dev_label", + "id": "locales_ar_payment_dev_label" + }, + { + "label": "dev_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L514", + "community": 41, + "norm_label": "dev_body", + "id": "locales_ar_payment_dev_body" + }, + { + "label": "protection", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L516", + "community": 55, + "norm_label": "protection", + "id": "locales_ar_onboarding_protection" + }, + { + "label": "cta_primary", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L517", + "community": 55, + "norm_label": "cta_primary", + "id": "locales_ar_protection_cta_primary" + }, + { + "label": "cta_open_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L518", + "community": 55, + "norm_label": "cta_open_a11y", + "id": "locales_ar_protection_cta_open_a11y" + }, + { + "label": "cta_check_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L519", + "community": 55, + "norm_label": "cta_check_a11y", + "id": "locales_ar_protection_cta_check_a11y" + }, + { + "label": "url_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L520", + "community": 55, + "norm_label": "url_title", + "id": "locales_ar_protection_url_title" + }, + { + "label": "lock_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L521", + "community": 55, + "norm_label": "lock_title", + "id": "locales_ar_protection_lock_title" + }, + { + "label": "url_title_android", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L522", + "community": 55, + "norm_label": "url_title_android", + "id": "locales_ar_protection_url_title_android" + }, + { + "label": "lock_title_android", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L523", + "community": 55, + "norm_label": "lock_title_android", + "id": "locales_ar_protection_lock_title_android" + }, + { + "label": "tap_marker_hint", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L524", + "community": 55, + "norm_label": "tap_marker_hint", + "id": "locales_ar_protection_tap_marker_hint" + }, + { + "label": "tap_marker_hint_android_vpn", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L525", + "community": 55, + "norm_label": "tap_marker_hint_android_vpn", + "id": "locales_ar_protection_tap_marker_hint_android_vpn" + }, + { + "label": "tap_marker_hint_android_a11y", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L526", + "community": 55, + "norm_label": "tap_marker_hint_android_a11y", + "id": "locales_ar_protection_tap_marker_hint_android_a11y" + }, + { + "label": "android_a11y_pending_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L527", + "community": 55, + "norm_label": "android_a11y_pending_title", + "id": "locales_ar_protection_android_a11y_pending_title" + }, + { + "label": "android_a11y_pending_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L528", + "community": 55, + "norm_label": "android_a11y_pending_body", + "id": "locales_ar_protection_android_a11y_pending_body" + }, + { + "label": "dialog_button_allow", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L529", + "community": 55, + "norm_label": "dialog_button_allow", + "id": "locales_ar_protection_dialog_button_allow" + }, + { + "label": "dialog_button_continue", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L530", + "community": 55, + "norm_label": "dialog_button_continue", + "id": "locales_ar_protection_dialog_button_continue" + }, + { + "label": "dialog_button_vpn_ok", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L531", + "community": 55, + "norm_label": "dialog_button_vpn_ok", + "id": "locales_ar_protection_dialog_button_vpn_ok" + }, + { + "label": "dialog_button_a11y_toggle", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L532", + "community": 55, + "norm_label": "dialog_button_a11y_toggle", + "id": "locales_ar_protection_dialog_button_a11y_toggle" + }, + { + "label": "android_restart_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L533", + "community": 55, + "norm_label": "android_restart_title", + "id": "locales_ar_protection_android_restart_title" + }, + { + "label": "android_restart_body", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L534", + "community": 55, + "norm_label": "android_restart_body", + "id": "locales_ar_protection_android_restart_body" + }, + { + "label": "android_restart_now", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L535", + "community": 55, + "norm_label": "android_restart_now", + "id": "locales_ar_protection_android_restart_now" + }, + { + "label": "android_restart_later", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L536", + "community": 55, + "norm_label": "android_restart_later", + "id": "locales_ar_protection_android_restart_later" + }, + { + "label": "applock_failed_title", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L537", + "community": 55, + "norm_label": "applock_failed_title", + "id": "locales_ar_protection_applock_failed_title" + }, { "label": "settings.tsx", "file_type": "code", "source_file": "apps/rebreak-native/app/settings.tsx", "source_location": "L1", - "community": 20, + "community": 18, "norm_label": "settings.tsx", "id": "apps_rebreak_native_app_settings_tsx" }, @@ -36426,8 +36991,8 @@ "label": "SubscriptionSheetProps", "file_type": "code", "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L34", - "community": 20, + "source_location": "L35", + "community": 18, "norm_label": "subscriptionsheetprops", "id": "app_settings_subscriptionsheetprops" }, @@ -36435,8 +37000,8 @@ "label": "PLAN_ACCENT", "file_type": "code", "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L40", - "community": 20, + "source_location": "L41", + "community": 18, "norm_label": "plan_accent", "id": "app_settings_plan_accent" }, @@ -36444,8 +37009,8 @@ "label": "SubscriptionSheet()", "file_type": "code", "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L46", - "community": 20, + "source_location": "L47", + "community": 18, "norm_label": "subscriptionsheet()", "id": "app_settings_subscriptionsheet" }, @@ -36453,8 +37018,8 @@ "label": "PickerOption", "file_type": "code", "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L126", - "community": 20, + "source_location": "L127", + "community": 18, "norm_label": "pickeroption", "id": "app_settings_pickeroption" }, @@ -36462,8 +37027,8 @@ "label": "SectionRow", "file_type": "code", "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L128", - "community": 20, + "source_location": "L129", + "community": 18, "norm_label": "sectionrow", "id": "app_settings_sectionrow" }, @@ -36471,8 +37036,8 @@ "label": "Section", "file_type": "code", "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L151", - "community": 20, + "source_location": "L152", + "community": 18, "norm_label": "section", "id": "app_settings_section" }, @@ -36480,7 +37045,7 @@ "label": "SettingsScreen()", "file_type": "code", "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L157", + "source_location": "L158", "community": 20, "norm_label": "settingsscreen()", "id": "app_settings_settingsscreen" @@ -36489,11 +37054,38 @@ "label": "StreakTimePickerSheet()", "file_type": "code", "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L769", - "community": 20, + "source_location": "L806", + "community": 18, "norm_label": "streaktimepickersheet()", "id": "app_settings_streaktimepickersheet" }, + { + "label": "index.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/app/index.tsx", + "source_location": "L1", + "community": 20, + "norm_label": "index.tsx", + "id": "apps_rebreak_native_app_index_tsx" + }, + { + "label": "EASE_OUT", + "file_type": "code", + "source_file": "apps/rebreak-native/app/index.tsx", + "source_location": "L16", + "community": 20, + "norm_label": "ease_out", + "id": "app_index_ease_out" + }, + { + "label": "LandingScreen()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/index.tsx", + "source_location": "L18", + "community": 20, + "norm_label": "landingscreen()", + "id": "app_index_landingscreen" + }, { "label": "dm.tsx", "file_type": "code", @@ -36503,39 +37095,273 @@ "norm_label": "dm.tsx", "id": "apps_rebreak_native_app_dm_tsx" }, + { + "label": "MediaLibraryModule", + "file_type": "code", + "source_file": "apps/rebreak-native/app/dm.tsx", + "source_location": "L31", + "community": 17, + "norm_label": "medialibrarymodule", + "id": "app_dm_medialibrarymodule" + }, { "label": "DmHistoryResponse", "file_type": "code", "source_file": "apps/rebreak-native/app/dm.tsx", - "source_location": "L36", + "source_location": "L50", "community": 17, "norm_label": "dmhistoryresponse", "id": "app_dm_dmhistoryresponse" }, + { + "label": "DmData", + "file_type": "code", + "source_file": "apps/rebreak-native/app/dm.tsx", + "source_location": "L76", + "community": 17, + "norm_label": "dmdata", + "id": "app_dm_dmdata" + }, + { + "label": "mergeMessages()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/dm.tsx", + "source_location": "L84", + "community": 17, + "norm_label": "mergemessages()", + "id": "app_dm_mergemessages" + }, { "label": "DmScreen()", "file_type": "code", "source_file": "apps/rebreak-native/app/dm.tsx", - "source_location": "L62", + "source_location": "L93", "community": 17, "norm_label": "dmscreen()", "id": "app_dm_dmscreen" }, + { + "label": "DmInfoSheet()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/dm.tsx", + "source_location": "L1038", + "community": 17, + "norm_label": "dminfosheet()", + "id": "app_dm_dminfosheet" + }, { "label": "makeStyles()", "file_type": "code", "source_file": "apps/rebreak-native/app/dm.tsx", - "source_location": "L617", + "source_location": "L1147", "community": 17, "norm_label": "makestyles()", "id": "app_dm_makestyles" }, + { + "label": "debug.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1", + "community": 7, + "norm_label": "debug.tsx", + "id": "apps_rebreak_native_app_debug_tsx" + }, + { + "label": "DebugScreen()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L25", + "community": 7, + "norm_label": "debugscreen()", + "id": "app_debug_debugscreen" + }, + { + "label": "PREVIEW_EMOTIONS", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L175", + "community": 7, + "norm_label": "preview_emotions", + "id": "app_debug_preview_emotions" + }, + { + "label": "LyraEmotionPreviewCard()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L188", + "community": 7, + "norm_label": "lyraemotionpreviewcard()", + "id": "app_debug_lyraemotionpreviewcard" + }, + { + "label": "RedirectTestCard()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L294", + "community": 7, + "norm_label": "redirecttestcard()", + "id": "app_debug_redirecttestcard" + }, + { + "label": "RealtimeStatusCard()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L404", + "community": 7, + "norm_label": "realtimestatuscard()", + "id": "app_debug_realtimestatuscard" + }, + { + "label": "StatusRow()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L581", + "community": 7, + "norm_label": "statusrow()", + "id": "app_debug_statusrow" + }, + { + "label": "RealtimeLogCard()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L627", + "community": 7, + "norm_label": "realtimelogcard()", + "id": "app_debug_realtimelogcard" + }, + { + "label": "ProtectionLogCard()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L723", + "community": 413, + "norm_label": "protectionlogcard()", + "id": "app_debug_protectionlogcard" + }, + { + "label": "LogLine()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L845", + "community": 7, + "norm_label": "logline()", + "id": "app_debug_logline" + }, + { + "label": "pad()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L898", + "community": 7, + "norm_label": "pad()", + "id": "app_debug_pad" + }, + { + "label": "relativeSeconds()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L902", + "community": 7, + "norm_label": "relativeseconds()", + "id": "app_debug_relativeseconds" + }, + { + "label": "stateAccent()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L910", + "community": 7, + "norm_label": "stateaccent()", + "id": "app_debug_stateaccent" + }, + { + "label": "PLANS", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L921", + "community": 7, + "norm_label": "plans", + "id": "app_debug_plans" + }, + { + "label": "PLAN_COLOR", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L923", + "community": 7, + "norm_label": "plan_color", + "id": "app_debug_plan_color" + }, + { + "label": "PlanOverrideToggle()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L929", + "community": 7, + "norm_label": "planoverridetoggle()", + "id": "app_debug_planoverridetoggle" + }, + { + "label": "ONBOARDING_STEPS", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1058", + "community": 7, + "norm_label": "onboarding_steps", + "id": "app_debug_onboarding_steps" + }, + { + "label": "OnboardingStepValue", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1059", + "community": 7, + "norm_label": "onboardingstepvalue", + "id": "app_debug_onboardingstepvalue" + }, + { + "label": "OnboardingResetToggle()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1061", + "community": 7, + "norm_label": "onboardingresettoggle()", + "id": "app_debug_onboardingresettoggle" + }, + { + "label": "AndroidA11yResetToggle()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1181", + "community": 7, + "norm_label": "androida11yresettoggle()", + "id": "app_debug_androida11yresettoggle" + }, + { + "label": "CooldownTestModeToggle()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1285", + "community": 7, + "norm_label": "cooldowntestmodetoggle()", + "id": "app_debug_cooldowntestmodetoggle" + }, + { + "label": "DebugStub()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1354", + "community": 7, + "norm_label": "debugstub()", + "id": "app_debug_debugstub" + }, { "label": "games.tsx", "file_type": "code", "source_file": "apps/rebreak-native/app/games.tsx", "source_location": "L1", - "community": 686, + "community": 865, "norm_label": "games.tsx", "id": "apps_rebreak_native_app_games_tsx" }, @@ -36544,7 +37370,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/games.tsx", "source_location": "L19", - "community": 686, + "community": 865, "norm_label": "gamestat", "id": "app_games_gamestat" }, @@ -36553,7 +37379,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/games.tsx", "source_location": "L20", - "community": 686, + "community": 865, "norm_label": "gamestats", "id": "app_games_gamestats" }, @@ -36562,7 +37388,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/games.tsx", "source_location": "L22", - "community": 686, + "community": 865, "norm_label": "empty_stats", "id": "app_games_empty_stats" }, @@ -36571,7 +37397,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/games.tsx", "source_location": "L29", - "community": 686, + "community": 865, "norm_label": "lastscore", "id": "app_games_lastscore" }, @@ -36580,7 +37406,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/games.tsx", "source_location": "L31", - "community": 686, + "community": 865, "norm_label": "gamesscreen()", "id": "app_games_gamesscreen" }, @@ -36589,7 +37415,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/devices.tsx", "source_location": "L1", - "community": 7, + "community": 37, "norm_label": "devices.tsx", "id": "apps_rebreak_native_app_devices_tsx" }, @@ -36597,35 +37423,17 @@ "label": "formatCountdown()", "file_type": "code", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L19", - "community": 7, + "source_location": "L20", + "community": 37, "norm_label": "formatcountdown()", "id": "app_devices_formatcountdown" }, - { - "label": "mobileIcon()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L38", - "community": 7, - "norm_label": "mobileicon()", - "id": "app_devices_mobileicon" - }, - { - "label": "protectedDeviceIcon()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L44", - "community": 7, - "norm_label": "protecteddeviceicon()", - "id": "app_devices_protecteddeviceicon" - }, { "label": "formatLastSeen()", "file_type": "code", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L50", - "community": 7, + "source_location": "L43", + "community": 37, "norm_label": "formatlastseen()", "id": "app_devices_formatlastseen" }, @@ -36633,8 +37441,8 @@ "label": "formatSince()", "file_type": "code", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L66", - "community": 7, + "source_location": "L59", + "community": 37, "norm_label": "formatsince()", "id": "app_devices_formatsince" }, @@ -36642,8 +37450,8 @@ "label": "StatusBadge()", "file_type": "code", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L76", - "community": 7, + "source_location": "L69", + "community": 37, "norm_label": "statusbadge()", "id": "app_devices_statusbadge" }, @@ -36651,8 +37459,8 @@ "label": "MobileDeviceRow()", "file_type": "code", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L122", - "community": 7, + "source_location": "L115", + "community": 37, "norm_label": "mobiledevicerow()", "id": "app_devices_mobiledevicerow" }, @@ -36660,7 +37468,7 @@ "label": "ProtectedDeviceRow()", "file_type": "code", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L318", + "source_location": "L315", "community": 80, "norm_label": "protecteddevicerow()", "id": "app_devices_protecteddevicerow" @@ -36669,8 +37477,8 @@ "label": "SectionCard()", "file_type": "code", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L426", - "community": 7, + "source_location": "L419", + "community": 37, "norm_label": "sectioncard()", "id": "app_devices_sectioncard" }, @@ -36678,8 +37486,8 @@ "label": "SectionLabel()", "file_type": "code", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L446", - "community": 7, + "source_location": "L439", + "community": 37, "norm_label": "sectionlabel()", "id": "app_devices_sectionlabel" }, @@ -36687,8 +37495,8 @@ "label": "DevicesScreen()", "file_type": "code", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L467", - "community": 7, + "source_location": "L460", + "community": 37, "norm_label": "devicesscreen()", "id": "app_devices_devicesscreen" }, @@ -36755,12 +37563,48 @@ "norm_label": "makemodalstyles()", "id": "app_room_makemodalstyles" }, + { + "label": "call.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L1", + "community": 288, + "norm_label": "call.tsx", + "id": "apps_rebreak_native_app_call_tsx" + }, + { + "label": "fmtDuration()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L11", + "community": 288, + "norm_label": "fmtduration()", + "id": "app_call_fmtduration" + }, + { + "label": "CallScreen()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L17", + "community": 288, + "norm_label": "callscreen()", + "id": "app_call_callscreen" + }, + { + "label": "CircleBtn()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L182", + "community": 288, + "norm_label": "circlebtn()", + "id": "app_call_circlebtn" + }, { "label": "_layout.tsx", "file_type": "code", "source_file": "apps/rebreak-native/app/_layout.tsx", "source_location": "L1", - "community": 17, + "community": 20, "norm_label": "_layout.tsx", "id": "apps_rebreak_native_app_layout_tsx" }, @@ -36768,8 +37612,8 @@ "label": "queryClient", "file_type": "code", "source_file": "apps/rebreak-native/app/_layout.tsx", - "source_location": "L48", - "community": 17, + "source_location": "L55", + "community": 20, "norm_label": "queryclient", "id": "app_layout_queryclient" }, @@ -36777,8 +37621,8 @@ "label": "RootLayoutInner()", "file_type": "code", "source_file": "apps/rebreak-native/app/_layout.tsx", - "source_location": "L57", - "community": 17, + "source_location": "L64", + "community": 20, "norm_label": "rootlayoutinner()", "id": "app_layout_rootlayoutinner" }, @@ -36786,11 +37630,110 @@ "label": "RootLayout()", "file_type": "code", "source_file": "apps/rebreak-native/app/_layout.tsx", - "source_location": "L234", - "community": 17, + "source_location": "L294", + "community": 20, "norm_label": "rootlayout()", "id": "app_layout_rootlayout" }, + { + "label": "urge.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L1", + "community": 437, + "norm_label": "urge.tsx", + "id": "apps_rebreak_native_app_urge_tsx" + }, + { + "label": "SOSScreen()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L40", + "community": 872, + "norm_label": "sosscreen()", + "id": "app_urge_sosscreen" + }, + { + "label": "makeStyles()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L1351", + "community": 872, + "norm_label": "makestyles()", + "id": "app_urge_makestyles" + }, + { + "label": "lyra.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L1", + "community": 17, + "norm_label": "lyra.tsx", + "id": "apps_rebreak_native_app_lyra_tsx" + }, + { + "label": "formatTimestamp()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L39", + "community": 686, + "norm_label": "formattimestamp()", + "id": "app_lyra_formattimestamp" + }, + { + "label": "LoadingPulse()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L45", + "community": 17, + "norm_label": "loadingpulse()", + "id": "app_lyra_loadingpulse" + }, + { + "label": "ThinkingDots()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L56", + "community": 17, + "norm_label": "thinkingdots()", + "id": "app_lyra_thinkingdots" + }, + { + "label": "MessageWithMeta", + "file_type": "code", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L91", + "community": 17, + "norm_label": "messagewithmeta", + "id": "app_lyra_messagewithmeta" + }, + { + "label": "MessageRow()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L93", + "community": 686, + "norm_label": "messagerow()", + "id": "app_lyra_messagerow" + }, + { + "label": "CoachScreen()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L128", + "community": 17, + "norm_label": "coachscreen()", + "id": "app_lyra_coachscreen" + }, + { + "label": "styles", + "file_type": "code", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L680", + "community": 17, + "norm_label": "styles", + "id": "app_lyra_styles" + }, { "label": "mail.tsx", "file_type": "code", @@ -36841,7 +37784,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/index.tsx", "source_location": "L1", - "community": 53, + "community": 8, "norm_label": "index.tsx", "id": "apps_rebreak_native_app_app_index_tsx" }, @@ -36850,7 +37793,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/index.tsx", "source_location": "L24", - "community": 53, + "community": 8, "norm_label": "filterchip", "id": "app_index_filterchip" }, @@ -36859,34 +37802,70 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/index.tsx", "source_location": "L30", - "community": 53, + "community": 8, "norm_label": "homescreen()", "id": "app_index_homescreen" }, + { + "label": "notifications.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L1", + "community": 93, + "norm_label": "notifications.tsx", + "id": "apps_rebreak_native_app_app_notifications_tsx" + }, { "label": "NotificationsScreen()", "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", "source_location": "L12", - "community": 47, + "community": 93, "norm_label": "notificationsscreen()", "id": "app_notifications_notificationsscreen" }, + { + "label": "NotificationRow()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L83", + "community": 93, + "norm_label": "notificationrow()", + "id": "app_notifications_notificationrow" + }, { "label": "iconForType()", "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", "source_location": "L147", - "community": 47, + "community": 93, "norm_label": "iconfortype()", "id": "app_notifications_iconfortype" }, + { + "label": "blocker.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "blocker.tsx", + "id": "apps_rebreak_native_app_app_blocker_tsx" + }, + { + "label": "BlockerScreen()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L26", + "community": 53, + "norm_label": "blockerscreen()", + "id": "app_blocker_blockerscreen" + }, { "label": "_layout.tsx", "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", "source_location": "L1", - "community": 696, + "community": 20, "norm_label": "_layout.tsx", "id": "apps_rebreak_native_app_app_layout_tsx" }, @@ -36894,8 +37873,8 @@ "label": "DmConvUnreadSlice", "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", - "source_location": "L23", - "community": 696, + "source_location": "L26", + "community": 20, "norm_label": "dmconvunreadslice", "id": "app_layout_dmconvunreadslice" }, @@ -36903,8 +37882,8 @@ "label": "AppLayout()", "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", - "source_location": "L25", - "community": 27, + "source_location": "L28", + "community": 8, "norm_label": "applayout()", "id": "app_layout_applayout" }, @@ -36921,7 +37900,7 @@ "label": "DmConversation", "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/chat.tsx", - "source_location": "L21", + "source_location": "L23", "community": 181, "norm_label": "dmconversation", "id": "app_chat_dmconversation" @@ -36930,7 +37909,7 @@ "label": "formatTime()", "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/chat.tsx", - "source_location": "L31", + "source_location": "L34", "community": 53, "norm_label": "formattime()", "id": "app_chat_formattime" @@ -36939,7 +37918,7 @@ "label": "DmItem()", "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/chat.tsx", - "source_location": "L44", + "source_location": "L47", "community": 53, "norm_label": "dmitem()", "id": "app_chat_dmitem" @@ -36948,7 +37927,7 @@ "label": "ChatScreen()", "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/chat.tsx", - "source_location": "L96", + "source_location": "L103", "community": 53, "norm_label": "chatscreen()", "id": "app_chat_chatscreen" @@ -36957,7 +37936,7 @@ "label": "makeStyles()", "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/chat.tsx", - "source_location": "L191", + "source_location": "L309", "community": 53, "norm_label": "makestyles()", "id": "app_chat_makestyles" @@ -36967,7 +37946,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/coach.tsx", "source_location": "L1", - "community": 8, + "community": 53, "norm_label": "coach.tsx", "id": "apps_rebreak_native_app_app_coach_tsx" }, @@ -36976,16 +37955,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/(app)/coach.tsx", "source_location": "L13", - "community": 8, + "community": 53, "norm_label": "coachtabredirect()", "id": "app_coach_coachtabredirect" }, + { + "label": "mail-oauth-callback.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/app/auth/mail-oauth-callback.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "mail-oauth-callback.tsx", + "id": "apps_rebreak_native_app_auth_mail_oauth_callback_tsx" + }, { "label": "MailOAuthCallback()", "file_type": "code", "source_file": "apps/rebreak-native/app/auth/mail-oauth-callback.tsx", "source_location": "L17", - "community": 8, + "community": 53, "norm_label": "mailoauthcallback()", "id": "auth_mail_oauth_callback_mailoauthcallback" }, @@ -37012,7 +38000,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/profile/index.tsx", "source_location": "L1", - "community": 27, + "community": 34, "norm_label": "index.tsx", "id": "apps_rebreak_native_app_profile_index_tsx" }, @@ -37020,8 +38008,8 @@ "label": "EMPTY_COOLDOWNS", "file_type": "code", "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L29", - "community": 27, + "source_location": "L30", + "community": 34, "norm_label": "empty_cooldowns", "id": "profile_index_empty_cooldowns" }, @@ -37029,8 +38017,8 @@ "label": "isDemographicsComplete()", "file_type": "code", "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L31", - "community": 27, + "source_location": "L32", + "community": 34, "norm_label": "isdemographicscomplete()", "id": "profile_index_isdemographicscomplete" }, @@ -37038,8 +38026,8 @@ "label": "EMPTY_DEMOGRAPHICS", "file_type": "code", "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L50", - "community": 27, + "source_location": "L51", + "community": 34, "norm_label": "empty_demographics", "id": "profile_index_empty_demographics" }, @@ -37047,26 +38035,17 @@ "label": "formatMemberSince()", "file_type": "code", "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L62", - "community": 27, + "source_location": "L63", + "community": 34, "norm_label": "formatmembersince()", "id": "profile_index_formatmembersince" }, - { - "label": "formatStreakStartDate()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L68", - "community": 27, - "norm_label": "formatstreakstartdate()", - "id": "profile_index_formatstreakstartdate" - }, { "label": "mapHelpedBy()", "file_type": "code", "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L74", - "community": 27, + "source_location": "L70", + "community": 34, "norm_label": "maphelpedby()", "id": "profile_index_maphelpedby" }, @@ -37074,8 +38053,8 @@ "label": "ProfileScreen()", "file_type": "code", "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L89", - "community": 27, + "source_location": "L85", + "community": 34, "norm_label": "profilescreen()", "id": "profile_index_profilescreen" }, @@ -37084,7 +38063,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/profile/[userId].tsx", "source_location": "L1", - "community": 53, + "community": 8, "norm_label": "[userid].tsx", "id": "apps_rebreak_native_app_profile_userid_tsx" }, @@ -37093,7 +38072,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/profile/[userId].tsx", "source_location": "L16", - "community": 53, + "community": 8, "norm_label": "foreignprofile", "id": "profile_userid_foreignprofile" }, @@ -37102,7 +38081,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/profile/[userId].tsx", "source_location": "L32", - "community": 53, + "community": 8, "norm_label": "formatjoinedat()", "id": "profile_userid_formatjoinedat" }, @@ -37111,7 +38090,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/profile/[userId].tsx", "source_location": "L41", - "community": 53, + "community": 8, "norm_label": "statprops", "id": "profile_userid_statprops" }, @@ -37120,7 +38099,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/profile/[userId].tsx", "source_location": "L43", - "community": 53, + "community": 8, "norm_label": "foreignstat()", "id": "profile_userid_foreignstat" }, @@ -37129,7 +38108,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/profile/[userId].tsx", "source_location": "L68", - "community": 53, + "community": 8, "norm_label": "foreignprofilescreen()", "id": "profile_userid_foreignprofilescreen" }, @@ -37138,7 +38117,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/profile/edit.tsx", "source_location": "L1", - "community": 47, + "community": 93, "norm_label": "edit.tsx", "id": "apps_rebreak_native_app_profile_edit_tsx" }, @@ -37147,16 +38126,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/profile/edit.tsx", "source_location": "L26", - "community": 47, + "community": 93, "norm_label": "profileeditscreen()", "id": "profile_edit_profileeditscreen" }, + { + "label": "device-limit.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/app/(auth)/device-limit.tsx", + "source_location": "L1", + "community": 20, + "norm_label": "device-limit.tsx", + "id": "apps_rebreak_native_app_auth_device_limit_tsx" + }, { "label": "DeviceLimitScreen()", "file_type": "code", "source_file": "apps/rebreak-native/app/(auth)/device-limit.tsx", "source_location": "L11", - "community": 29, + "community": 20, "norm_label": "devicelimitscreen()", "id": "auth_device_limit_devicelimitscreen" }, @@ -37192,7 +38180,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/(auth)/signup.tsx", "source_location": "L1", - "community": 47, + "community": 93, "norm_label": "signup.tsx", "id": "apps_rebreak_native_app_auth_signup_tsx" }, @@ -37201,7 +38189,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/(auth)/signup.tsx", "source_location": "L20", - "community": 47, + "community": 93, "norm_label": "googleicon()", "id": "auth_signup_googleicon" }, @@ -37210,7 +38198,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/(auth)/signup.tsx", "source_location": "L31", - "community": 47, + "community": 93, "norm_label": "appleicon()", "id": "auth_signup_appleicon" }, @@ -37219,7 +38207,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/(auth)/signup.tsx", "source_location": "L39", - "community": 47, + "community": 93, "norm_label": "oauthprovider", "id": "auth_signup_oauthprovider" }, @@ -37228,7 +38216,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/(auth)/signup.tsx", "source_location": "L41", - "community": 47, + "community": 93, "norm_label": "input_style", "id": "auth_signup_input_style" }, @@ -37237,7 +38225,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/(auth)/signup.tsx", "source_location": "L50", - "community": 47, + "community": 93, "norm_label": "signupscreen()", "id": "auth_signup_signupscreen" }, @@ -37389,7 +38377,7 @@ "label": "Slide", "file_type": "code", "source_file": "apps/rebreak-native/app/onboarding/index.tsx", - "source_location": "L37", + "source_location": "L38", "community": 18, "norm_label": "slide", "id": "onboarding_index_slide" @@ -37398,7 +38386,7 @@ "label": "LINEAR_ORDER", "file_type": "code", "source_file": "apps/rebreak-native/app/onboarding/index.tsx", - "source_location": "L50", + "source_location": "L51", "community": 18, "norm_label": "linear_order", "id": "onboarding_index_linear_order" @@ -37407,7 +38395,7 @@ "label": "slideFromStep()", "file_type": "code", "source_file": "apps/rebreak-native/app/onboarding/index.tsx", - "source_location": "L61", + "source_location": "L62", "community": 18, "norm_label": "slidefromstep()", "id": "onboarding_index_slidefromstep" @@ -37416,8 +38404,8 @@ "label": "OnboardingScreen()", "file_type": "code", "source_file": "apps/rebreak-native/app/onboarding/index.tsx", - "source_location": "L82", - "community": 18, + "source_location": "L83", + "community": 8, "norm_label": "onboardingscreen()", "id": "onboarding_index_onboardingscreen" }, @@ -37426,7 +38414,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/crisis.tsx", "source_location": "L1", - "community": 27, + "community": 53, "norm_label": "crisis.tsx", "id": "apps_rebreak_native_app_help_crisis_tsx" }, @@ -37435,7 +38423,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/crisis.tsx", "source_location": "L8", - "community": 27, + "community": 53, "norm_label": "hotlinerowprops", "id": "help_crisis_hotlinerowprops" }, @@ -37444,7 +38432,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/crisis.tsx", "source_location": "L16", - "community": 27, + "community": 53, "norm_label": "hotlinerow()", "id": "help_crisis_hotlinerow" }, @@ -37453,7 +38441,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/crisis.tsx", "source_location": "L74", - "community": 27, + "community": 53, "norm_label": "crisisscreen()", "id": "help_crisis_crisisscreen" }, @@ -37462,7 +38450,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/contact.tsx", "source_location": "L1", - "community": 7, + "community": 53, "norm_label": "contact.tsx", "id": "apps_rebreak_native_app_help_contact_tsx" }, @@ -37471,7 +38459,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/contact.tsx", "source_location": "L8", - "community": 7, + "community": 53, "norm_label": "contactscreen()", "id": "help_contact_contactscreen" }, @@ -37480,7 +38468,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/_layout.tsx", "source_location": "L1", - "community": 8, + "community": 53, "norm_label": "_layout.tsx", "id": "apps_rebreak_native_app_help_layout_tsx" }, @@ -37489,7 +38477,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/_layout.tsx", "source_location": "L5", - "community": 8, + "community": 53, "norm_label": "helplayout()", "id": "help_layout_helplayout" }, @@ -37498,7 +38486,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/faq.tsx", "source_location": "L1", - "community": 8, + "community": 53, "norm_label": "faq.tsx", "id": "apps_rebreak_native_app_help_faq_tsx" }, @@ -37507,7 +38495,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/faq.tsx", "source_location": "L8", - "community": 8, + "community": 53, "norm_label": "faqscreen()", "id": "help_faq_faqscreen" }, @@ -37516,7 +38504,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/about.tsx", "source_location": "L1", - "community": 27, + "community": 53, "norm_label": "about.tsx", "id": "apps_rebreak_native_app_help_about_tsx" }, @@ -37525,10 +38513,145 @@ "file_type": "code", "source_file": "apps/rebreak-native/app/help/about.tsx", "source_location": "L8", - "community": 27, + "community": 53, "norm_label": "aboutscreen()", "id": "help_about_aboutscreen" }, + { + "label": "with-rebreak-protection-android.js", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L1", + "community": 428, + "norm_label": "with-rebreak-protection-android.js", + "id": "apps_rebreak_native_plugins_with_rebreak_protection_android_js" + }, + { + "label": "{\n withAndroidManifest,\n withStringsXml,\n withDangerousMod,\n AndroidConfig,\n}", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L30", + "community": 428, + "norm_label": "{\n withandroidmanifest,\n withstringsxml,\n withdangerousmod,\n androidconfig,\n}", + "id": "plugins_with_rebreak_protection_android_withandroidmanifest_withstringsxml_withdangerousmod_androidconfig" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L36", + "community": 428, + "norm_label": "fs", + "id": "plugins_with_rebreak_protection_android_fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L37", + "community": 428, + "norm_label": "path", + "id": "plugins_with_rebreak_protection_android_path" + }, + { + "label": "ensureToolsNamespace()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L50", + "community": 428, + "norm_label": "ensuretoolsnamespace()", + "id": "plugins_with_rebreak_protection_android_ensuretoolsnamespace" + }, + { + "label": "ensureVpnService()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L59", + "community": 428, + "norm_label": "ensurevpnservice()", + "id": "plugins_with_rebreak_protection_android_ensurevpnservice" + }, + { + "label": "ensureAccessibilityService()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L100", + "community": 428, + "norm_label": "ensureaccessibilityservice()", + "id": "plugins_with_rebreak_protection_android_ensureaccessibilityservice" + }, + { + "label": "ensureBootPermission()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L145", + "community": 428, + "norm_label": "ensurebootpermission()", + "id": "plugins_with_rebreak_protection_android_ensurebootpermission" + }, + { + "label": "ensureReceivers()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L165", + "community": 428, + "norm_label": "ensurereceivers()", + "id": "plugins_with_rebreak_protection_android_ensurereceivers" + }, + { + "label": "withA11yStringResource()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L233", + "community": 428, + "norm_label": "witha11ystringresource()", + "id": "plugins_with_rebreak_protection_android_witha11ystringresource" + }, + { + "label": "MODULE_A11Y_XML", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L261", + "community": 428, + "norm_label": "module_a11y_xml", + "id": "plugins_with_rebreak_protection_android_module_a11y_xml" + }, + { + "label": "withA11yConfigXml()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L266", + "community": 428, + "norm_label": "witha11yconfigxml()", + "id": "plugins_with_rebreak_protection_android_witha11yconfigxml" + }, + { + "label": "MODULE_DEVICE_ADMIN_XML", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L286", + "community": 428, + "norm_label": "module_device_admin_xml", + "id": "plugins_with_rebreak_protection_android_module_device_admin_xml" + }, + { + "label": "withDeviceAdminXml()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L291", + "community": 428, + "norm_label": "withdeviceadminxml()", + "id": "plugins_with_rebreak_protection_android_withdeviceadminxml" + }, + { + "label": "withRebreakProtectionAndroid()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L311", + "community": 428, + "norm_label": "withrebreakprotectionandroid()", + "id": "plugins_with_rebreak_protection_android_withrebreakprotectionandroid" + }, { "label": "with-resource-bundle-signing-fix.js", "file_type": "code", @@ -37565,6 +38688,69 @@ "norm_label": "path", "id": "plugins_with_resource_bundle_signing_fix_path" }, + { + "label": "with-voip-pushkit-ios.js", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L1", + "community": 635, + "norm_label": "with-voip-pushkit-ios.js", + "id": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js" + }, + { + "label": "{ withDangerousMod }", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L23", + "community": 635, + "norm_label": "{ withdangerousmod }", + "id": "plugins_with_voip_pushkit_ios_withdangerousmod" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L24", + "community": 635, + "norm_label": "fs", + "id": "plugins_with_voip_pushkit_ios_fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L25", + "community": 635, + "norm_label": "path", + "id": "plugins_with_voip_pushkit_ios_path" + }, + { + "label": "patchBridgingHeader()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L162", + "community": 635, + "norm_label": "patchbridgingheader()", + "id": "plugins_with_voip_pushkit_ios_patchbridgingheader" + }, + { + "label": "patchAppDelegate()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L191", + "community": 635, + "norm_label": "patchappdelegate()", + "id": "plugins_with_voip_pushkit_ios_patchappdelegate" + }, + { + "label": "with-rive-asset-android.js", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-rive-asset-android.js", + "source_location": "L1", + "community": 660, + "norm_label": "with-rive-asset-android.js", + "id": "apps_rebreak_native_plugins_with_rive_asset_android_js" + }, { "label": "fs", "file_type": "code", @@ -37610,6 +38796,42 @@ "norm_label": "withriveassetandroid()", "id": "plugins_with_rive_asset_android_withriveassetandroid" }, + { + "label": "with-allow-nonmodular-includes.js", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", + "source_location": "L1", + "community": 689, + "norm_label": "with-allow-nonmodular-includes.js", + "id": "apps_rebreak_native_plugins_with_allow_nonmodular_includes_js" + }, + { + "label": "{ withDangerousMod }", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", + "source_location": "L21", + "community": 689, + "norm_label": "{ withdangerousmod }", + "id": "plugins_with_allow_nonmodular_includes_withdangerousmod" + }, + { + "label": "fs", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", + "source_location": "L22", + "community": 689, + "norm_label": "fs", + "id": "plugins_with_allow_nonmodular_includes_fs" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", + "source_location": "L23", + "community": 689, + "norm_label": "path", + "id": "plugins_with_allow_nonmodular_includes_path" + }, { "label": "with-fmt-consteval-fix.js", "file_type": "code", @@ -37673,6 +38895,15 @@ "norm_label": "{ withandroidstyles }", "id": "plugins_with_material_theme_android_withandroidstyles" }, + { + "label": "withMaterialThemeAndroid()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-material-theme-android.js", + "source_location": "L20", + "community": 757, + "norm_label": "withmaterialthemeandroid()", + "id": "plugins_with_material_theme_android_withmaterialthemeandroid" + }, { "label": "with-release-signing-android.js", "file_type": "code", @@ -37691,6 +38922,15 @@ "norm_label": "{ withappbuildgradle }", "id": "plugins_with_release_signing_android_withappbuildgradle" }, + { + "label": "withReleaseSigningAndroid()", + "file_type": "code", + "source_file": "apps/rebreak-native/plugins/with-release-signing-android.js", + "source_location": "L25", + "community": 748, + "norm_label": "withreleasesigningandroid()", + "id": "plugins_with_release_signing_android_withreleasesigningandroid" + }, { "label": "with-rebreak-protection-ios.js", "file_type": "code", @@ -37840,7 +39080,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/notificationPrefs.ts", "source_location": "L1", - "community": 95, + "community": 18, "norm_label": "notificationprefs.ts", "id": "apps_rebreak_native_stores_notificationprefs_ts" }, @@ -37849,7 +39089,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/notificationPrefs.ts", "source_location": "L7", - "community": 95, + "community": 18, "norm_label": "notificationprefsstate", "id": "stores_notificationprefs_notificationprefsstate" }, @@ -37857,8 +39097,8 @@ "label": "persist()", "file_type": "code", "source_file": "apps/rebreak-native/stores/notificationPrefs.ts", - "source_location": "L19", - "community": 95, + "source_location": "L24", + "community": 18, "norm_label": "persist()", "id": "stores_notificationprefs_persist" }, @@ -37866,8 +39106,8 @@ "label": "useNotificationPrefsStore", "file_type": "code", "source_file": "apps/rebreak-native/stores/notificationPrefs.ts", - "source_location": "L25", - "community": 95, + "source_location": "L30", + "community": 18, "norm_label": "usenotificationprefsstore", "id": "stores_notificationprefs_usenotificationprefsstore" }, @@ -37876,7 +39116,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/devices.ts", "source_location": "L1", - "community": 7, + "community": 37, "norm_label": "devices.ts", "id": "apps_rebreak_native_stores_devices_ts" }, @@ -37885,7 +39125,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/devices.ts", "source_location": "L5", - "community": 7, + "community": 37, "norm_label": "userdevice", "id": "stores_devices_userdevice" }, @@ -37894,7 +39134,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/devices.ts", "source_location": "L18", - "community": 285, + "community": 109, "norm_label": "devicesstate", "id": "stores_devices_devicesstate" }, @@ -37903,16 +39143,214 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/devices.ts", "source_location": "L32", - "community": 7, + "community": 37, "norm_label": "usedevicesstore", "id": "stores_devices_usedevicesstore" }, + { + "label": "call.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L1", + "community": 288, + "norm_label": "call.ts", + "id": "apps_rebreak_native_stores_call_ts" + }, + { + "label": "isWebRTCAvailable()", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L24", + "community": 288, + "norm_label": "iswebrtcavailable()", + "id": "stores_call_iswebrtcavailable" + }, + { + "label": "CallStatus", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L28", + "community": 288, + "norm_label": "callstatus", + "id": "stores_call_callstatus" + }, + { + "label": "CallPeer", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L36", + "community": 288, + "norm_label": "callpeer", + "id": "stores_call_callpeer" + }, + { + "label": "CallEndReason", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L37", + "community": 288, + "norm_label": "callendreason", + "id": "stores_call_callendreason" + }, + { + "label": "pendingRemoteIce", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L52", + "community": 288, + "norm_label": "pendingremoteice", + "id": "stores_call_pendingremoteice" + }, + { + "label": "CallState", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L64", + "community": 288, + "norm_label": "callstate", + "id": "stores_call_callstate" + }, + { + "label": "rtc()", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L83", + "community": 288, + "norm_label": "rtc()", + "id": "stores_call_rtc" + }, + { + "label": "inCall()", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L90", + "community": 288, + "norm_label": "incall()", + "id": "stores_call_incall" + }, + { + "label": "clog()", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L96", + "community": 288, + "norm_label": "clog()", + "id": "stores_call_clog" + }, + { + "label": "fireRingCancel()", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L102", + "community": 288, + "norm_label": "fireringcancel()", + "id": "stores_call_fireringcancel" + }, + { + "label": "teardown()", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L112", + "community": 288, + "norm_label": "teardown()", + "id": "stores_call_teardown" + }, + { + "label": "logCallToChat()", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L145", + "community": 288, + "norm_label": "logcalltochat()", + "id": "stores_call_logcalltochat" + }, + { + "label": "useCallStore", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L175", + "community": 288, + "norm_label": "usecallstore", + "id": "stores_call_usecallstore" + }, + { + "label": "deviceApproval.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/deviceApproval.ts", + "source_location": "L1", + "community": 20, + "norm_label": "deviceapproval.ts", + "id": "apps_rebreak_native_stores_deviceapproval_ts" + }, + { + "label": "DeviceApprovalRecord", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/deviceApproval.ts", + "source_location": "L21", + "community": 20, + "norm_label": "deviceapprovalrecord", + "id": "stores_deviceapproval_deviceapprovalrecord" + }, + { + "label": "State", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/deviceApproval.ts", + "source_location": "L40", + "community": 20, + "norm_label": "state", + "id": "stores_deviceapproval_state" + }, + { + "label": "useDeviceApprovalStore", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/deviceApproval.ts", + "source_location": "L69", + "community": 20, + "norm_label": "usedeviceapprovalstore", + "id": "stores_deviceapproval_usedeviceapprovalstore" + }, + { + "label": "notifications.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L1", + "community": 93, + "norm_label": "notifications.ts", + "id": "apps_rebreak_native_stores_notifications_ts" + }, + { + "label": "AppNotification", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L7", + "community": 93, + "norm_label": "appnotification", + "id": "stores_notifications_appnotification" + }, + { + "label": "NotificationState", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L18", + "community": 93, + "norm_label": "notificationstate", + "id": "stores_notifications_notificationstate" + }, + { + "label": "useNotificationStore", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L33", + "community": 93, + "norm_label": "usenotificationstore", + "id": "stores_notifications_usenotificationstore" + }, { "label": "language.ts", "file_type": "code", "source_file": "apps/rebreak-native/stores/language.ts", "source_location": "L1", - "community": 20, + "community": 18, "norm_label": "language.ts", "id": "apps_rebreak_native_stores_language_ts" }, @@ -37921,7 +39359,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/language.ts", "source_location": "L7", - "community": 20, + "community": 18, "norm_label": "applanguage", "id": "stores_language_applanguage" }, @@ -37930,7 +39368,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/language.ts", "source_location": "L11", - "community": 20, + "community": 18, "norm_label": "languagestate", "id": "stores_language_languagestate" }, @@ -37939,7 +39377,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/language.ts", "source_location": "L17", - "community": 20, + "community": 18, "norm_label": "applyrtl()", "id": "stores_language_applyrtl" }, @@ -37948,7 +39386,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/language.ts", "source_location": "L26", - "community": 20, + "community": 18, "norm_label": "uselanguagestore", "id": "stores_language_uselanguagestore" }, @@ -37957,7 +39395,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/language.ts", "source_location": "L69", - "community": 20, + "community": 18, "norm_label": "synclanguagefromusermetadata()", "id": "stores_language_synclanguagefromusermetadata" }, @@ -37979,6 +39417,15 @@ "norm_label": "protecteddevicestatus", "id": "stores_protecteddevices_protecteddevicestatus" }, + { + "label": "ProtectedDevice", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/protectedDevices.ts", + "source_location": "L6", + "community": 7, + "norm_label": "protecteddevice", + "id": "stores_protecteddevices_protecteddevice" + }, { "label": "EnrollResult", "file_type": "code", @@ -38011,7 +39458,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/mailConsent.ts", "source_location": "L1", - "community": 696, + "community": 20, "norm_label": "mailconsent.ts", "id": "apps_rebreak_native_stores_mailconsent_ts" }, @@ -38020,7 +39467,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/mailConsent.ts", "source_location": "L3", - "community": 696, + "community": 20, "norm_label": "pendingconsentconnection", "id": "stores_mailconsent_pendingconsentconnection" }, @@ -38029,7 +39476,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/mailConsent.ts", "source_location": "L8", - "community": 696, + "community": 20, "norm_label": "mailconsentstate", "id": "stores_mailconsent_mailconsentstate" }, @@ -38038,7 +39485,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/mailConsent.ts", "source_location": "L17", - "community": 696, + "community": 20, "norm_label": "usemailconsentstore", "id": "stores_mailconsent_usemailconsentstore" }, @@ -38047,7 +39494,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/community.ts", "source_location": "L1", - "community": 53, + "community": 8, "norm_label": "community.ts", "id": "apps_rebreak_native_stores_community_ts" }, @@ -38056,16 +39503,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/community.ts", "source_location": "L3", - "community": 53, + "community": 8, "norm_label": "communitycategory", "id": "stores_community_communitycategory" }, + { + "label": "CommunityPostAuthor", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/community.ts", + "source_location": "L5", + "community": 8, + "norm_label": "communitypostauthor", + "id": "stores_community_communitypostauthor" + }, { "label": "CommunityPost", "file_type": "code", "source_file": "apps/rebreak-native/stores/community.ts", - "source_location": "L14", - "community": 53, + "source_location": "L13", + "community": 8, "norm_label": "communitypost", "id": "stores_community_communitypost" }, @@ -38073,8 +39529,8 @@ "label": "CommunityComment", "file_type": "code", "source_file": "apps/rebreak-native/stores/community.ts", - "source_location": "L53", - "community": 53, + "source_location": "L52", + "community": 8, "norm_label": "communitycomment", "id": "stores_community_communitycomment" }, @@ -38082,8 +39538,8 @@ "label": "CommunityState", "file_type": "code", "source_file": "apps/rebreak-native/stores/community.ts", - "source_location": "L65", - "community": 53, + "source_location": "L64", + "community": 8, "norm_label": "communitystate", "id": "stores_community_communitystate" }, @@ -38091,26 +39547,98 @@ "label": "useCommunityStore", "file_type": "code", "source_file": "apps/rebreak-native/stores/community.ts", - "source_location": "L77", - "community": 53, + "source_location": "L76", + "community": 8, "norm_label": "usecommunitystore", "id": "stores_community_usecommunitystore" }, + { + "label": "blockerStats.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L1", + "community": 54, + "norm_label": "blockerstats.ts", + "id": "apps_rebreak_native_stores_blockerstats_ts" + }, + { + "label": "BlockerStats", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L4", + "community": 54, + "norm_label": "blockerstats", + "id": "stores_blockerstats_blockerstats" + }, + { + "label": "RawStatsResponse", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L23", + "community": 54, + "norm_label": "rawstatsresponse", + "id": "stores_blockerstats_rawstatsresponse" + }, + { + "label": "BlockerStatsState", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L47", + "community": 54, + "norm_label": "blockerstatsstate", + "id": "stores_blockerstats_blockerstatsstate" + }, + { + "label": "asNumber()", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L63", + "community": 54, + "norm_label": "asnumber()", + "id": "stores_blockerstats_asnumber" + }, + { + "label": "normalizeStats()", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L67", + "community": 54, + "norm_label": "normalizestats()", + "id": "stores_blockerstats_normalizestats" + }, + { + "label": "useBlockerStatsStore", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L108", + "community": 54, + "norm_label": "useblockerstatsstore", + "id": "stores_blockerstats_useblockerstatsstore" + }, { "label": "deviceLimit.ts", "file_type": "code", "source_file": "apps/rebreak-native/stores/deviceLimit.ts", "source_location": "L1", - "community": 29, + "community": 20, "norm_label": "devicelimit.ts", "id": "apps_rebreak_native_stores_devicelimit_ts" }, + { + "label": "DeviceLimitDevice", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/deviceLimit.ts", + "source_location": "L3", + "community": 20, + "norm_label": "devicelimitdevice", + "id": "stores_devicelimit_devicelimitdevice" + }, { "label": "DeviceLimitState", "file_type": "code", "source_file": "apps/rebreak-native/stores/deviceLimit.ts", "source_location": "L15", - "community": 29, + "community": 20, "norm_label": "devicelimitstate", "id": "stores_devicelimit_devicelimitstate" }, @@ -38119,16 +39647,52 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/deviceLimit.ts", "source_location": "L26", - "community": 29, + "community": 20, "norm_label": "usedevicelimitstore", "id": "stores_devicelimit_usedevicelimitstore" }, + { + "label": "appLock.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/appLock.ts", + "source_location": "L1", + "community": 20, + "norm_label": "applock.ts", + "id": "apps_rebreak_native_stores_applock_ts" + }, + { + "label": "LocalAuthModule", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/appLock.ts", + "source_location": "L11", + "community": 20, + "norm_label": "localauthmodule", + "id": "stores_applock_localauthmodule" + }, + { + "label": "AppLockState", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/appLock.ts", + "source_location": "L40", + "community": 20, + "norm_label": "applockstate", + "id": "stores_applock_applockstate" + }, + { + "label": "useAppLockStore", + "file_type": "code", + "source_file": "apps/rebreak-native/stores/appLock.ts", + "source_location": "L58", + "community": 20, + "norm_label": "useapplockstore", + "id": "stores_applock_useapplockstore" + }, { "label": "lyraVoice.ts", "file_type": "code", "source_file": "apps/rebreak-native/stores/lyraVoice.ts", "source_location": "L1", - "community": 18, + "community": 20, "norm_label": "lyravoice.ts", "id": "apps_rebreak_native_stores_lyravoice_ts" }, @@ -38137,7 +39701,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/lyraVoice.ts", "source_location": "L17", - "community": 18, + "community": 20, "norm_label": "lyravoicestate", "id": "stores_lyravoice_lyravoicestate" }, @@ -38146,7 +39710,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/lyraVoice.ts", "source_location": "L26", - "community": 18, + "community": 20, "norm_label": "uselyravoicestore", "id": "stores_lyravoice_uselyravoicestore" }, @@ -38200,7 +39764,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/mailConnectDraft.ts", "source_location": "L1", - "community": 21, + "community": 95, "norm_label": "mailconnectdraft.ts", "id": "apps_rebreak_native_stores_mailconnectdraft_ts" }, @@ -38209,7 +39773,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/mailConnectDraft.ts", "source_location": "L4", - "community": 21, + "community": 95, "norm_label": "providersnapshot", "id": "stores_mailconnectdraft_providersnapshot" }, @@ -38218,7 +39782,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/mailConnectDraft.ts", "source_location": "L16", - "community": 21, + "community": 95, "norm_label": "mailconnectdraftstate", "id": "stores_mailconnectdraft_mailconnectdraftstate" }, @@ -38227,7 +39791,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/mailConnectDraft.ts", "source_location": "L34", - "community": 21, + "community": 95, "norm_label": "initial", "id": "stores_mailconnectdraft_initial" }, @@ -38236,7 +39800,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/mailConnectDraft.ts", "source_location": "L46", - "community": 21, + "community": 95, "norm_label": "usemailconnectdraft", "id": "stores_mailconnectdraft_usemailconnectdraft" }, @@ -38245,7 +39809,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/coach.ts", "source_location": "L1", - "community": 286, + "community": 17, "norm_label": "coach.ts", "id": "apps_rebreak_native_stores_coach_ts" }, @@ -38254,7 +39818,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/coach.ts", "source_location": "L6", - "community": 286, + "community": 17, "norm_label": "message", "id": "stores_coach_message" }, @@ -38263,7 +39827,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/coach.ts", "source_location": "L14", - "community": 286, + "community": 17, "norm_label": "coachstate", "id": "stores_coach_coachstate" }, @@ -38272,7 +39836,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/coach.ts", "source_location": "L33", - "community": 286, + "community": 17, "norm_label": "usecoachstore", "id": "stores_coach_usecoachstore" }, @@ -38281,7 +39845,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/realtimeDebug.ts", "source_location": "L1", - "community": 17, + "community": 7, "norm_label": "realtimedebug.ts", "id": "apps_rebreak_native_stores_realtimedebug_ts" }, @@ -38290,7 +39854,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/realtimeDebug.ts", "source_location": "L4", - "community": 17, + "community": 7, "norm_label": "logentry", "id": "stores_realtimedebug_logentry" }, @@ -38299,7 +39863,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/realtimeDebug.ts", "source_location": "L10", - "community": 17, + "community": 7, "norm_label": "realtimedebugstate", "id": "stores_realtimedebug_realtimedebugstate" }, @@ -38308,7 +39872,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/stores/realtimeDebug.ts", "source_location": "L26", - "community": 17, + "community": 7, "norm_label": "userealtimedebugstore", "id": "stores_realtimedebug_userealtimedebugstore" }, @@ -38384,6 +39948,84 @@ "norm_label": "useauthstore", "id": "stores_auth_useauthstore" }, + { + "label": "capture-marketing.sh", + "file_type": "code", + "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "community": 698, + "norm_label": "capture-marketing.sh", + "id": "apps_rebreak_native_maestro_screens_capture_marketing_sh" + }, + { + "label": "capture-marketing.sh script", + "file_type": "code", + "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 698, + "norm_label": "capture-marketing.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_maestro_screens_capture_marketing_sh__entry" + }, + { + "label": "MAPPING", + "file_type": "code", + "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing.sh", + "source_location": "L127", + "metadata": { + "language": "bash", + "kind": "code" + }, + "community": 698, + "norm_label": "mapping", + "id": "screens_capture_marketing_mapping" + }, + { + "label": "capture-marketing-loggedin.sh", + "file_type": "code", + "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing-loggedin.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "community": 758, + "norm_label": "capture-marketing-loggedin.sh", + "id": "apps_rebreak_native_maestro_screens_capture_marketing_loggedin_sh" + }, + { + "label": "capture-marketing-loggedin.sh script", + "file_type": "code", + "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing-loggedin.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 758, + "norm_label": "capture-marketing-loggedin.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_maestro_screens_capture_marketing_loggedin_sh__entry" + }, + { + "label": "PATH", + "file_type": "code", + "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing-loggedin.sh", + "source_location": "L20", + "metadata": { + "language": "bash", + "kind": "code" + }, + "community": 758, + "norm_label": "path", + "id": "screens_capture_marketing_loggedin_path" + }, { "label": "Podfile.properties.json", "file_type": "code", @@ -38632,10 +40274,28 @@ "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", "source_location": "L1", - "community": 112, + "community": 277, "norm_label": "domainhasher.swift", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift" }, + { + "label": "DomainHasher", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", + "source_location": "L16", + "community": 277, + "norm_label": "domainhasher", + "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher" + }, + { + "label": ".normalize()", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", + "source_location": "L26", + "community": 277, + "norm_label": ".normalize()", + "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher_normalize" + }, { "label": "String", "file_type": "code", @@ -38668,7 +40328,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", "source_location": "L1", - "community": 33, + "community": 191, "norm_label": "packettunnelprovider.swift", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift" }, @@ -38676,8 +40336,8 @@ "label": "ExtLog", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L60", - "community": 33, + "source_location": "L66", + "community": 191, "norm_label": "extlog", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_extlog" }, @@ -38685,8 +40345,8 @@ "label": ".write()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L61", - "community": 33, + "source_location": "L67", + "community": 191, "norm_label": ".write()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_extlog_write" }, @@ -38694,17 +40354,26 @@ "label": "String", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L61", - "community": 33, + "source_location": "L67", + "community": 191, "norm_label": "string", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_string" }, + { + "label": "PacketTunnelProvider", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L80", + "community": 191, + "norm_label": "packettunnelprovider", + "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider" + }, { "label": "NEPacketTunnelProvider", "file_type": "code", "source_file": "", "source_location": "", - "community": 33, + "community": 191, "norm_label": "nepackettunnelprovider", "id": "nepackettunnelprovider" }, @@ -38712,8 +40381,8 @@ "label": "HashList", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L80", - "community": 33, + "source_location": "L86", + "community": 191, "norm_label": "hashlist", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_hashlist" }, @@ -38721,8 +40390,8 @@ "label": ".buildTunnelSettings()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L127", - "community": 33, + "source_location": "L133", + "community": 191, "norm_label": ".buildtunnelsettings()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_buildtunnelsettings" }, @@ -38730,8 +40399,8 @@ "label": "NEPacketTunnelNetworkSettings", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L127", - "community": 33, + "source_location": "L133", + "community": 191, "norm_label": "nepackettunnelnetworksettings", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_nepackettunnelnetworksettings" }, @@ -38739,8 +40408,8 @@ "label": ".startTunnel()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L162", - "community": 33, + "source_location": "L168", + "community": 191, "norm_label": ".starttunnel()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_starttunnel" }, @@ -38748,8 +40417,8 @@ "label": "NSObject", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L162", - "community": 33, + "source_location": "L168", + "community": 191, "norm_label": "nsobject", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_nsobject" }, @@ -38757,8 +40426,8 @@ "label": "Error", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L162", - "community": 33, + "source_location": "L168", + "community": 191, "norm_label": "error", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_error" }, @@ -38766,8 +40435,8 @@ "label": "Void", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L162", - "community": 33, + "source_location": "L168", + "community": 191, "norm_label": "void", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_void" }, @@ -38775,8 +40444,8 @@ "label": ".stopTunnel()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L215", - "community": 33, + "source_location": "L221", + "community": 191, "norm_label": ".stoptunnel()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_stoptunnel" }, @@ -38784,8 +40453,8 @@ "label": "NEProviderStopReason", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L215", - "community": 33, + "source_location": "L221", + "community": 191, "norm_label": "neproviderstopreason", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_neproviderstopreason" }, @@ -38793,8 +40462,8 @@ "label": ".readPackets()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L246", - "community": 33, + "source_location": "L252", + "community": 191, "norm_label": ".readpackets()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_readpackets" }, @@ -38802,8 +40471,8 @@ "label": ".handlePacket()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L267", - "community": 33, + "source_location": "L273", + "community": 191, "norm_label": ".handlepacket()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_handlepacket" }, @@ -38811,8 +40480,8 @@ "label": "Data", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L267", - "community": 33, + "source_location": "L273", + "community": 191, "norm_label": "data", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_data" }, @@ -38820,8 +40489,8 @@ "label": ".forwardPacket()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L300", - "community": 33, + "source_location": "L313", + "community": 191, "norm_label": ".forwardpacket()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_forwardpacket" }, @@ -38829,8 +40498,8 @@ "label": ".replyServFail()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L412", - "community": 33, + "source_location": "L425", + "community": 191, "norm_label": ".replyservfail()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_replyservfail" }, @@ -38838,8 +40507,8 @@ "label": ".writeToTun()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L421", - "community": 33, + "source_location": "L434", + "community": 191, "norm_label": ".writetotun()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_writetotun" }, @@ -38847,17 +40516,26 @@ "label": ".registerBlocklistObserver()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L432", - "community": 33, + "source_location": "L445", + "community": 191, "norm_label": ".registerblocklistobserver()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_registerblocklistobserver" }, + { + "label": ".unregisterBlocklistObserver()", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L462", + "community": 191, + "norm_label": ".unregisterblocklistobserver()", + "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_unregisterblocklistobserver" + }, { "label": ".reloadBlocklist()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L473", - "community": 33, + "source_location": "L486", + "community": 191, "norm_label": ".reloadblocklist()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_reloadblocklist" }, @@ -38865,8 +40543,8 @@ "label": ".reapplyTunnelSettings()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L483", - "community": 33, + "source_location": "L496", + "community": 191, "norm_label": ".reapplytunnelsettings()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_reapplytunnelsettings" }, @@ -38874,8 +40552,8 @@ "label": ".scheduleBlocklistRetryIfEmpty()", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L508", - "community": 33, + "source_location": "L521", + "community": 191, "norm_label": ".scheduleblocklistretryifempty()", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_scheduleblocklistretryifempty" }, @@ -38883,8 +40561,8 @@ "label": "Int", "file_type": "code", "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L508", - "community": 33, + "source_location": "L521", + "community": 191, "norm_label": "int", "id": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_int" }, @@ -39095,20 +40773,11 @@ "norm_label": "appdelegate.swift", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift" }, - { - "label": "AppDelegate", - "file_type": "code", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L5", - "community": 46, - "norm_label": "appdelegate", - "id": "rebreak_appdelegate_appdelegate" - }, { "label": "UIWindow", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L7", + "source_location": "L10", "community": 46, "norm_label": "uiwindow", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_uiwindow" @@ -39117,7 +40786,7 @@ "label": "ExpoReactNativeFactoryDelegate", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L9", + "source_location": "L12", "community": 46, "norm_label": "exporeactnativefactorydelegate", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_exporeactnativefactorydelegate" @@ -39126,16 +40795,25 @@ "label": "RCTReactNativeFactory", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L10", + "source_location": "L13", "community": 46, "norm_label": "rctreactnativefactory", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_rctreactnativefactory" }, + { + "label": "PKPushRegistry", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L16", + "community": 46, + "norm_label": "pkpushregistry", + "id": "pkpushregistry" + }, { "label": ".application()", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L12", + "source_location": "L19", "community": 46, "norm_label": ".application()", "id": "rebreak_appdelegate_appdelegate_application" @@ -39144,7 +40822,7 @@ "label": "UIApplication", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L12", + "source_location": "L19", "community": 46, "norm_label": "uiapplication", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_uiapplication" @@ -39153,7 +40831,7 @@ "label": "Any", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L12", + "source_location": "L19", "community": 46, "norm_label": "any", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_any" @@ -39162,7 +40840,7 @@ "label": "Bool", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L12", + "source_location": "L19", "community": 46, "norm_label": "bool", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_bool" @@ -39171,7 +40849,7 @@ "label": "URL", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L36", + "source_location": "L56", "community": 46, "norm_label": "url", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_url" @@ -39180,7 +40858,7 @@ "label": "NSUserActivity", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L45", + "source_location": "L65", "community": 46, "norm_label": "nsuseractivity", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_nsuseractivity" @@ -39189,7 +40867,7 @@ "label": "UIUserActivityRestoring", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L45", + "source_location": "L65", "community": 46, "norm_label": "uiuseractivityrestoring", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_uiuseractivityrestoring" @@ -39198,7 +40876,7 @@ "label": "Void", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L45", + "source_location": "L65", "community": 46, "norm_label": "void", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_void" @@ -39207,7 +40885,7 @@ "label": "ReactNativeDelegate", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L55", + "source_location": "L75", "community": 46, "norm_label": "reactnativedelegate", "id": "rebreak_appdelegate_reactnativedelegate" @@ -39216,7 +40894,7 @@ "label": ".sourceURL()", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L58", + "source_location": "L78", "community": 46, "norm_label": ".sourceurl()", "id": "rebreak_appdelegate_reactnativedelegate_sourceurl" @@ -39225,7 +40903,7 @@ "label": "RCTBridge", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L58", + "source_location": "L78", "community": 46, "norm_label": "rctbridge", "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_rctbridge" @@ -39234,11 +40912,74 @@ "label": ".bundleURL()", "file_type": "code", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L63", + "source_location": "L83", "community": 46, "norm_label": ".bundleurl()", "id": "rebreak_appdelegate_reactnativedelegate_bundleurl" }, + { + "label": "PKPushRegistryDelegate", + "file_type": "code", + "source_file": "", + "source_location": "", + "community": 46, + "norm_label": "pkpushregistrydelegate", + "id": "pkpushregistrydelegate" + }, + { + "label": ".pushRegistry()", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L98", + "community": 46, + "norm_label": ".pushregistry()", + "id": "rebreak_appdelegate_appdelegate_pushregistry" + }, + { + "label": "PKPushCredentials", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L98", + "community": 46, + "norm_label": "pkpushcredentials", + "id": "pkpushcredentials" + }, + { + "label": "PKPushType", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L98", + "community": 46, + "norm_label": "pkpushtype", + "id": "pkpushtype" + }, + { + "label": "PKPushPayload", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L119", + "community": 46, + "norm_label": "pkpushpayload", + "id": "pkpushpayload" + }, + { + "label": ".callIdToUuid()", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L162", + "community": 46, + "norm_label": ".callidtouuid()", + "id": "rebreak_appdelegate_appdelegate_callidtouuid" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L162", + "community": 46, + "norm_label": "string", + "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_string" + }, { "label": "Contents.json", "file_type": "code", @@ -39410,6 +41151,15 @@ "norm_label": "author", "id": "apps_rebreak_native_ios_rebreak_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info_author" }, + { + "label": "FilterDataProvider.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/RebreakContentFilter/FilterDataProvider.swift", + "source_location": "L1", + "community": 30, + "norm_label": "filterdataprovider.swift", + "id": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift" + }, { "label": "SharedLogStore", "file_type": "code", @@ -39581,6 +41331,15 @@ "norm_label": "bool", "id": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_bool" }, + { + "label": "FilterDataProvider", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/RebreakContentFilter/FilterDataProvider.swift", + "source_location": "L179", + "community": 30, + "norm_label": "filterdataprovider", + "id": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_filterdataprovider" + }, { "label": "NEFilterDataProvider", "file_type": "code", @@ -39662,12 +41421,21 @@ "norm_label": "nefilternewflowverdict", "id": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_nefilternewflowverdict" }, + { + "label": "NotificationsDropdown.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L1", + "community": 93, + "norm_label": "notificationsdropdown.tsx", + "id": "apps_rebreak_native_components_notificationsdropdown_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", "source_location": "L12", - "community": 47, + "community": 93, "norm_label": "props", "id": "components_notificationsdropdown_props" }, @@ -39676,7 +41444,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", "source_location": "L19", - "community": 47, + "community": 93, "norm_label": "notificationsdropdown()", "id": "components_notificationsdropdown_notificationsdropdown" }, @@ -39685,7 +41453,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", "source_location": "L163", - "community": 47, + "community": 93, "norm_label": "notiflabel()", "id": "components_notificationsdropdown_notiflabel" }, @@ -39694,7 +41462,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", "source_location": "L186", - "community": 47, + "community": 93, "norm_label": "notificon()", "id": "components_notificationsdropdown_notificon" }, @@ -39703,7 +41471,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", "source_location": "L209", - "community": 47, + "community": 93, "norm_label": "timeago()", "id": "components_notificationsdropdown_timeago" }, @@ -39712,16 +41480,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", "source_location": "L218", - "community": 47, + "community": 93, "norm_label": "notificationrow()", "id": "components_notificationsdropdown_notificationrow" }, + { + "label": "FaqAccordion.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "faqaccordion.tsx", + "id": "apps_rebreak_native_components_faqaccordion_tsx" + }, { "label": "FaqItem", "file_type": "code", "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", "source_location": "L22", - "community": 8, + "community": 53, "norm_label": "faqitem", "id": "components_faqaccordion_faqitem" }, @@ -39730,7 +41507,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", "source_location": "L24", - "community": 8, + "community": 53, "norm_label": "variant", "id": "components_faqaccordion_variant" }, @@ -39739,7 +41516,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", "source_location": "L26", - "community": 8, + "community": 53, "norm_label": "faqaccordion()", "id": "components_faqaccordion_faqaccordion" }, @@ -39748,7 +41525,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", "source_location": "L70", - "community": 8, + "community": 53, "norm_label": "cardrow()", "id": "components_faqaccordion_cardrow" }, @@ -39757,34 +41534,61 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", "source_location": "L126", - "community": 8, + "community": 53, "norm_label": "pillrow()", "id": "components_faqaccordion_pillrow" }, + { + "label": "PostCardSkeleton.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/PostCardSkeleton.tsx", + "source_location": "L1", + "community": 8, + "norm_label": "postcardskeleton.tsx", + "id": "apps_rebreak_native_components_postcardskeleton_tsx" + }, { "label": "PostCardSkeleton()", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCardSkeleton.tsx", "source_location": "L4", - "community": 53, + "community": 8, "norm_label": "postcardskeleton()", "id": "components_postcardskeleton_postcardskeleton" }, + { + "label": "PostCard.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L1", + "community": 8, + "norm_label": "postcard.tsx", + "id": "apps_rebreak_native_components_postcard_tsx" + }, { "label": "resolveLocalizedJsonContent()", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCard.tsx", "source_location": "L24", - "community": 53, + "community": 8, "norm_label": "resolvelocalizedjsoncontent()", "id": "components_postcard_resolvelocalizedjsoncontent" }, + { + "label": "renderWithMentions()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L49", + "community": 8, + "norm_label": "renderwithmentions()", + "id": "components_postcard_renderwithmentions" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L44", - "community": 53, + "source_location": "L63", + "community": 8, "norm_label": "props", "id": "components_postcard_props" }, @@ -39792,8 +41596,8 @@ "label": "PostCardImpl()", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L49", - "community": 53, + "source_location": "L68", + "community": 8, "norm_label": "postcardimpl()", "id": "components_postcard_postcardimpl" }, @@ -39801,8 +41605,8 @@ "label": "PostCard", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L369", - "community": 53, + "source_location": "L388", + "community": 8, "norm_label": "postcard", "id": "components_postcard_postcard" }, @@ -39810,8 +41614,8 @@ "label": "DomainFaviconProps", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L419", - "community": 53, + "source_location": "L438", + "community": 8, "norm_label": "domainfaviconprops", "id": "components_postcard_domainfaviconprops" }, @@ -39819,8 +41623,8 @@ "label": "DomainFavicon()", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L421", - "community": 53, + "source_location": "L440", + "community": 8, "norm_label": "domainfavicon()", "id": "components_postcard_domainfavicon" }, @@ -39828,8 +41632,8 @@ "label": "Submission", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L450", - "community": 53, + "source_location": "L469", + "community": 8, "norm_label": "submission", "id": "components_postcard_submission" }, @@ -39837,8 +41641,8 @@ "label": "DomainVoteCardProps", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L452", - "community": 53, + "source_location": "L471", + "community": 8, "norm_label": "domainvotecardprops", "id": "components_postcard_domainvotecardprops" }, @@ -39846,8 +41650,8 @@ "label": "DomainVoteCard()", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L465", - "community": 53, + "source_location": "L484", + "community": 8, "norm_label": "domainvotecard()", "id": "components_postcard_domainvotecard" }, @@ -39855,17 +41659,26 @@ "label": "formatApprovedDate()", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L611", - "community": 53, + "source_location": "L630", + "community": 8, "norm_label": "formatapproveddate()", "id": "components_postcard_formatapproveddate" }, + { + "label": "HeroShieldCheck.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/HeroShieldCheck.tsx", + "source_location": "L1", + "community": 8, + "norm_label": "heroshieldcheck.tsx", + "id": "apps_rebreak_native_components_heroshieldcheck_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/HeroShieldCheck.tsx", "source_location": "L8", - "community": 47, + "community": 8, "norm_label": "props", "id": "components_heroshieldcheck_props" }, @@ -39874,16 +41687,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/HeroShieldCheck.tsx", "source_location": "L13", - "community": 47, + "community": 8, "norm_label": "heroshieldcheck()", "id": "components_heroshieldcheck_heroshieldcheck" }, + { + "label": "PostCommentsSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L1", + "community": 8, + "norm_label": "postcommentssheet.tsx", + "id": "apps_rebreak_native_components_postcommentssheet_tsx" + }, { "label": "EMOJIS", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", "source_location": "L29", - "community": 53, + "community": 8, "norm_label": "emojis", "id": "components_postcommentssheet_emojis" }, @@ -39892,7 +41714,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", "source_location": "L31", - "community": 53, + "community": 8, "norm_label": "props", "id": "components_postcommentssheet_props" }, @@ -39901,25 +41723,97 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", "source_location": "L37", - "community": 53, + "community": 8, "norm_label": "postcommentssheet()", "id": "components_postcommentssheet_postcommentssheet" }, + { + "label": "CommentRowProps", + "file_type": "code", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L499", + "community": 8, + "norm_label": "commentrowprops", + "id": "components_postcommentssheet_commentrowprops" + }, { "label": "CommentRow()", "file_type": "code", "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", "source_location": "L506", - "community": 53, + "community": 8, "norm_label": "commentrow()", "id": "components_postcommentssheet_commentrow" }, + { + "label": "BrandSplash.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/BrandSplash.tsx", + "source_location": "L1", + "community": 20, + "norm_label": "brandsplash.tsx", + "id": "apps_rebreak_native_components_brandsplash_tsx" + }, + { + "label": "{ height: SH }", + "file_type": "code", + "source_file": "apps/rebreak-native/components/BrandSplash.tsx", + "source_location": "L16", + "community": 20, + "norm_label": "{ height: sh }", + "id": "components_brandsplash_height_sh" + }, + { + "label": "EASE_OUT", + "file_type": "code", + "source_file": "apps/rebreak-native/components/BrandSplash.tsx", + "source_location": "L18", + "community": 20, + "norm_label": "ease_out", + "id": "components_brandsplash_ease_out" + }, + { + "label": "EASE_IN", + "file_type": "code", + "source_file": "apps/rebreak-native/components/BrandSplash.tsx", + "source_location": "L19", + "community": 20, + "norm_label": "ease_in", + "id": "components_brandsplash_ease_in" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/rebreak-native/components/BrandSplash.tsx", + "source_location": "L21", + "community": 20, + "norm_label": "props", + "id": "components_brandsplash_props" + }, + { + "label": "BrandSplash()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/BrandSplash.tsx", + "source_location": "L25", + "community": 20, + "norm_label": "brandsplash()", + "id": "components_brandsplash_brandsplash" + }, + { + "label": "SheetFieldStack.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/SheetFieldStack.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "sheetfieldstack.tsx", + "id": "apps_rebreak_native_components_sheetfieldstack_tsx" + }, { "label": "SheetField", "file_type": "code", "source_file": "apps/rebreak-native/components/SheetFieldStack.tsx", "source_location": "L13", - "community": 22, + "community": 53, "norm_label": "sheetfield", "id": "components_sheetfieldstack_sheetfield" }, @@ -39928,10 +41822,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/SheetFieldStack.tsx", "source_location": "L28", - "community": 22, + "community": 53, "norm_label": "props", "id": "components_sheetfieldstack_props" }, + { + "label": "SheetFieldStack()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/SheetFieldStack.tsx", + "source_location": "L51", + "community": 53, + "norm_label": "sheetfieldstack()", + "id": "components_sheetfieldstack_sheetfieldstack" + }, { "label": "Card.tsx", "file_type": "code", @@ -39959,6 +41862,24 @@ "norm_label": "card()", "id": "components_card_card" }, + { + "label": "KeyboardAwareScreen.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/KeyboardAwareScreen.tsx", + "source_location": "L1", + "community": 20, + "norm_label": "keyboardawarescreen.tsx", + "id": "apps_rebreak_native_components_keyboardawarescreen_tsx" + }, + { + "label": "KeyboardAwareScreenProps", + "file_type": "code", + "source_file": "apps/rebreak-native/components/KeyboardAwareScreen.tsx", + "source_location": "L13", + "community": 20, + "norm_label": "keyboardawarescreenprops", + "id": "components_keyboardawarescreen_keyboardawarescreenprops" + }, { "label": "KeyboardAwareScreen()", "file_type": "code", @@ -39968,6 +41889,15 @@ "norm_label": "keyboardawarescreen()", "id": "components_keyboardawarescreen_keyboardawarescreen" }, + { + "label": "AppAlert.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/AppAlert.tsx", + "source_location": "L1", + "community": 567, + "norm_label": "appalert.tsx", + "id": "apps_rebreak_native_components_appalert_tsx" + }, { "label": "sanitizeMessage()", "file_type": "code", @@ -40049,21 +41979,57 @@ "norm_label": "appalert()", "id": "components_appalert_appalert" }, + { + "label": "LockScreen.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/LockScreen.tsx", + "source_location": "L1", + "community": 20, + "norm_label": "lockscreen.tsx", + "id": "apps_rebreak_native_components_lockscreen_tsx" + }, + { + "label": "LockScreen()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/LockScreen.tsx", + "source_location": "L36", + "community": 20, + "norm_label": "lockscreen()", + "id": "components_lockscreen_lockscreen" + }, + { + "label": "ProtectionOffSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/ProtectionOffSheet.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "protectionoffsheet.tsx", + "id": "apps_rebreak_native_components_protectionoffsheet_tsx" + }, { "label": "ProtectionOffSheet()", "file_type": "code", "source_file": "apps/rebreak-native/components/ProtectionOffSheet.tsx", "source_location": "L22", - "community": 22, + "community": 53, "norm_label": "protectionoffsheet()", "id": "components_protectionoffsheet_protectionoffsheet" }, + { + "label": "FormSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/FormSheet.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "formsheet.tsx", + "id": "apps_rebreak_native_components_formsheet_tsx" + }, { "label": "FormSheetProps", "file_type": "code", "source_file": "apps/rebreak-native/components/FormSheet.tsx", "source_location": "L47", - "community": 22, + "community": 53, "norm_label": "formsheetprops", "id": "components_formsheet_formsheetprops" }, @@ -40072,16 +42038,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/FormSheet.tsx", "source_location": "L78", - "community": 22, + "community": 53, "norm_label": "formsheet()", "id": "components_formsheet_formsheet" }, + { + "label": "WheelPickerModal.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/WheelPickerModal.tsx", + "source_location": "L1", + "community": 27, + "norm_label": "wheelpickermodal.tsx", + "id": "apps_rebreak_native_components_wheelpickermodal_tsx" + }, { "label": "Option", "file_type": "code", "source_file": "apps/rebreak-native/components/WheelPickerModal.tsx", "source_location": "L19", - "community": 156, + "community": 27, "norm_label": "option", "id": "components_wheelpickermodal_option" }, @@ -40090,7 +42065,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/WheelPickerModal.tsx", "source_location": "L21", - "community": 156, + "community": 27, "norm_label": "props", "id": "components_wheelpickermodal_props" }, @@ -40099,7 +42074,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/WheelPickerModal.tsx", "source_location": "L30", - "community": 156, + "community": 27, "norm_label": "wheelpickermodal()", "id": "components_wheelpickermodal_wheelpickermodal" }, @@ -40121,12 +42096,21 @@ "norm_label": "applockgate()", "id": "components_applockgate_applockgate" }, + { + "label": "ComposeCard.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L1", + "community": 8, + "norm_label": "composecard.tsx", + "id": "apps_rebreak_native_components_composecard_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/ComposeCard.tsx", "source_location": "L24", - "community": 18, + "community": 8, "norm_label": "props", "id": "components_composecard_props" }, @@ -40135,10 +42119,181 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/ComposeCard.tsx", "source_location": "L28", - "community": 18, + "community": 8, "norm_label": "composecard()", "id": "components_composecard_composecard" }, + { + "label": "RiveAvatar.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L1", + "community": 7, + "norm_label": "riveavatar.tsx", + "id": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "label": "RIVE_MODULE", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L16", + "community": 7, + "norm_label": "rive_module", + "id": "components_riveavatar_rive_module" + }, + { + "label": "preloadRiveAsset()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L20", + "community": 7, + "norm_label": "preloadriveasset()", + "id": "components_riveavatar_preloadriveasset" + }, + { + "label": "SupportedEmotion", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L45", + "community": 7, + "norm_label": "supportedemotion", + "id": "components_riveavatar_supportedemotion" + }, + { + "label": "Emotion", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L56", + "community": 18, + "norm_label": "emotion", + "id": "components_riveavatar_emotion" + }, + { + "label": "EMOTION_ANIMATIONS", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L64", + "community": 7, + "norm_label": "emotion_animations", + "id": "components_riveavatar_emotion_animations" + }, + { + "label": "EXISTING_TIMELINES", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L85", + "community": 7, + "norm_label": "existing_timelines", + "id": "components_riveavatar_existing_timelines" + }, + { + "label": "safeAnim()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L95", + "community": 7, + "norm_label": "safeanim()", + "id": "components_riveavatar_safeanim" + }, + { + "label": "TWO_PHASE", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L103", + "community": 7, + "norm_label": "two_phase", + "id": "components_riveavatar_two_phase" + }, + { + "label": "SUSTAINED", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L109", + "community": 7, + "norm_label": "sustained", + "id": "components_riveavatar_sustained" + }, + { + "label": "EMOTION_LABELS", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L112", + "community": 7, + "norm_label": "emotion_labels", + "id": "components_riveavatar_emotion_labels" + }, + { + "label": "SIZE_PX", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L125", + "community": 7, + "norm_label": "size_px", + "id": "components_riveavatar_size_px" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L131", + "community": 7, + "norm_label": "props", + "id": "components_riveavatar_props" + }, + { + "label": "RiveAvatar()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L138", + "community": 7, + "norm_label": "riveavatar()", + "id": "components_riveavatar_riveavatar" + }, + { + "label": "DeviceApprovalIncomingSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L1", + "community": 20, + "norm_label": "deviceapprovalincomingsheet.tsx", + "id": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx" + }, + { + "label": "UserDevice", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L13", + "community": 20, + "norm_label": "userdevice", + "id": "components_deviceapprovalincomingsheet_userdevice" + }, + { + "label": "platformIcon()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L25", + "community": 20, + "norm_label": "platformicon()", + "id": "components_deviceapprovalincomingsheet_platformicon" + }, + { + "label": "DeviceApprovalIncomingSheet()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L43", + "community": 20, + "norm_label": "deviceapprovalincomingsheet()", + "id": "components_deviceapprovalincomingsheet_deviceapprovalincomingsheet" + }, + { + "label": "KeyboardAdjustedView.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/KeyboardAdjustedView.tsx", + "source_location": "L1", + "community": 702, + "norm_label": "keyboardadjustedview.tsx", + "id": "apps_rebreak_native_components_keyboardadjustedview_tsx" + }, { "label": "KeyboardAdjustedViewProps", "file_type": "code", @@ -40184,12 +42339,21 @@ "norm_label": "successalert()", "id": "components_successalert_successalert" }, + { + "label": "SearchBarFloating.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/SearchBarFloating.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "searchbarfloating.tsx", + "id": "apps_rebreak_native_components_searchbarfloating_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/SearchBarFloating.tsx", "source_location": "L46", - "community": 8, + "community": 53, "norm_label": "props", "id": "components_searchbarfloating_props" }, @@ -40198,7 +42362,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/SearchBarFloating.tsx", "source_location": "L58", - "community": 8, + "community": 53, "norm_label": "searchbarfloating()", "id": "components_searchbarfloating_searchbarfloating" }, @@ -40207,16 +42371,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/SearchBarFloating.tsx", "source_location": "L152", - "community": 8, + "community": 53, "norm_label": "styles", "id": "components_searchbarfloating_styles" }, + { + "label": "OptionsBottomSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/OptionsBottomSheet.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "optionsbottomsheet.tsx", + "id": "apps_rebreak_native_components_optionsbottomsheet_tsx" + }, { "label": "Option", "file_type": "code", "source_file": "apps/rebreak-native/components/OptionsBottomSheet.tsx", "source_location": "L28", - "community": 8, + "community": 53, "norm_label": "option", "id": "components_optionsbottomsheet_option" }, @@ -40225,7 +42398,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/OptionsBottomSheet.tsx", "source_location": "L35", - "community": 8, + "community": 53, "norm_label": "props", "id": "components_optionsbottomsheet_props" }, @@ -40234,10 +42407,46 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/OptionsBottomSheet.tsx", "source_location": "L45", - "community": 8, + "community": 53, "norm_label": "optionsbottomsheet()", "id": "components_optionsbottomsheet_optionsbottomsheet" }, + { + "label": "AppHeader.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "appheader.tsx", + "id": "apps_rebreak_native_components_appheader_tsx" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L16", + "community": 53, + "norm_label": "props", + "id": "components_appheader_props" + }, + { + "label": "AppHeader()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L22", + "community": 53, + "norm_label": "appheader()", + "id": "components_appheader_appheader" + }, + { + "label": "OnlinePresenceProvider.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L1", + "community": 750, + "norm_label": "onlinepresenceprovider.tsx", + "id": "apps_rebreak_native_components_onlinepresenceprovider_tsx" + }, { "label": "PresenceContextExtended", "file_type": "code", @@ -40288,7 +42497,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NativeTabs.tsx", "source_location": "L1", - "community": 696, + "community": 20, "norm_label": "nativetabs.tsx", "id": "apps_rebreak_native_components_nativetabs_tsx" }, @@ -40297,7 +42506,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NativeTabs.tsx", "source_location": "L17", - "community": 696, + "community": 20, "norm_label": "nativetabsscreenoptions", "id": "components_nativetabs_nativetabsscreenoptions" }, @@ -40306,7 +42515,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NativeTabs.tsx", "source_location": "L25", - "community": 696, + "community": 20, "norm_label": "nativetabnavigationeventmap", "id": "components_nativetabs_nativetabnavigationeventmap" }, @@ -40315,7 +42524,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NativeTabs.tsx", "source_location": "L31", - "community": 696, + "community": 20, "norm_label": "nativeonlyoptions", "id": "components_nativetabs_nativeonlyoptions" }, @@ -40324,7 +42533,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NativeTabs.tsx", "source_location": "L48", - "community": 696, + "community": 20, "norm_label": "props", "id": "components_nativetabs_props" }, @@ -40333,7 +42542,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NativeTabs.tsx", "source_location": "L59", - "community": 696, + "community": 20, "norm_label": "nativetabsnavigator()", "id": "components_nativetabs_nativetabsnavigator" }, @@ -40342,25 +42551,52 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/NativeTabs.tsx", "source_location": "L150", - "community": 696, + "community": 20, "norm_label": "createnativetabnavigator", "id": "components_nativetabs_createnativetabnavigator" }, + { + "label": "NativeTabNav", + "file_type": "code", + "source_file": "apps/rebreak-native/components/NativeTabs.tsx", + "source_location": "L152", + "community": 20, + "norm_label": "nativetabnav", + "id": "components_nativetabs_nativetabnav" + }, { "label": "NativeTabs", "file_type": "code", "source_file": "apps/rebreak-native/components/NativeTabs.tsx", "source_location": "L155", - "community": 696, + "community": 20, "norm_label": "nativetabs", "id": "components_nativetabs_nativetabs" }, + { + "label": "DeviceApprovalPendingSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", + "source_location": "L1", + "community": 20, + "norm_label": "deviceapprovalpendingsheet.tsx", + "id": "apps_rebreak_native_components_deviceapprovalpendingsheet_tsx" + }, + { + "label": "DeviceApprovalPendingSheet()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", + "source_location": "L23", + "community": 20, + "norm_label": "deviceapprovalpendingsheet()", + "id": "components_deviceapprovalpendingsheet_deviceapprovalpendingsheet" + }, { "label": "DeviceLimitReachedSheet.tsx", "file_type": "code", "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", "source_location": "L1", - "community": 29, + "community": 20, "norm_label": "devicelimitreachedsheet.tsx", "id": "apps_rebreak_native_components_devicelimitreachedsheet_tsx" }, @@ -40368,8 +42604,8 @@ "label": "platformIcon()", "file_type": "code", "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", - "source_location": "L10", - "community": 29, + "source_location": "L12", + "community": 20, "norm_label": "platformicon()", "id": "components_devicelimitreachedsheet_platformicon" }, @@ -40377,8 +42613,8 @@ "label": "formatLastSeen()", "file_type": "code", "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", - "source_location": "L18", - "community": 29, + "source_location": "L20", + "community": 20, "norm_label": "formatlastseen()", "id": "components_devicelimitreachedsheet_formatlastseen" }, @@ -40386,11 +42622,74 @@ "label": "DeviceLimitRow()", "file_type": "code", "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", - "source_location": "L33", - "community": 29, + "source_location": "L35", + "community": 20, "norm_label": "devicelimitrow()", "id": "components_devicelimitreachedsheet_devicelimitrow" }, + { + "label": "DeviceLimitReachedSheet()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", + "source_location": "L155", + "community": 20, + "norm_label": "devicelimitreachedsheet()", + "id": "components_devicelimitreachedsheet_devicelimitreachedsheet" + }, + { + "label": "DiGaMilestoneModal.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L1", + "community": 34, + "norm_label": "digamilestonemodal.tsx", + "id": "apps_rebreak_native_components_digamilestonemodal_tsx" + }, + { + "label": "MILESTONES", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L14", + "community": 34, + "norm_label": "milestones", + "id": "components_digamilestonemodal_milestones" + }, + { + "label": "storageKey()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L16", + "community": 34, + "norm_label": "storagekey()", + "id": "components_digamilestonemodal_storagekey" + }, + { + "label": "DemographicsResp", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L20", + "community": 34, + "norm_label": "demographicsresp", + "id": "components_digamilestonemodal_demographicsresp" + }, + { + "label": "DiGaMilestoneModal()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L22", + "community": 34, + "norm_label": "digamilestonemodal()", + "id": "components_digamilestonemodal_digamilestonemodal" + }, + { + "label": "IconButton.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/IconButton.tsx", + "source_location": "L1", + "community": 753, + "norm_label": "iconbutton.tsx", + "id": "apps_rebreak_native_components_iconbutton_tsx" + }, { "label": "Props", "file_type": "code", @@ -40409,6 +42708,15 @@ "norm_label": "iconbutton()", "id": "components_iconbutton_iconbutton" }, + { + "label": "PermissionDeniedSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/PermissionDeniedSheet.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "permissiondeniedsheet.tsx", + "id": "apps_rebreak_native_components_permissiondeniedsheet_tsx" + }, { "label": "PermissionDeniedVariant", "file_type": "code", @@ -40418,6 +42726,24 @@ "norm_label": "permissiondeniedvariant", "id": "components_permissiondeniedsheet_permissiondeniedvariant" }, + { + "label": "PermissionDeniedSheet()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/PermissionDeniedSheet.tsx", + "source_location": "L23", + "community": 53, + "norm_label": "permissiondeniedsheet()", + "id": "components_permissiondeniedsheet_permissiondeniedsheet" + }, + { + "label": "ConfirmAlert.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/ConfirmAlert.tsx", + "source_location": "L1", + "community": 22, + "norm_label": "confirmalert.tsx", + "id": "apps_rebreak_native_components_confirmalert_tsx" + }, { "label": "Props", "file_type": "code", @@ -40499,12 +42825,21 @@ "norm_label": "button()", "id": "components_button_button" }, + { + "label": "StreakBadge.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/StreakBadge.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "streakbadge.tsx", + "id": "apps_rebreak_native_components_streakbadge_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/StreakBadge.tsx", "source_location": "L6", - "community": 8, + "community": 53, "norm_label": "props", "id": "components_streakbadge_props" }, @@ -40513,16 +42848,34 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/StreakBadge.tsx", "source_location": "L11", - "community": 8, + "community": 53, "norm_label": "sizemap", "id": "components_streakbadge_sizemap" }, + { + "label": "StreakBadge()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/StreakBadge.tsx", + "source_location": "L17", + "community": 53, + "norm_label": "streakbadge()", + "id": "components_streakbadge_streakbadge" + }, + { + "label": "EmptyState.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/EmptyState.tsx", + "source_location": "L1", + "community": 93, + "norm_label": "emptystate.tsx", + "id": "apps_rebreak_native_components_emptystate_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/EmptyState.tsx", "source_location": "L5", - "community": 47, + "community": 93, "norm_label": "props", "id": "components_emptystate_props" }, @@ -40531,7 +42884,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/EmptyState.tsx", "source_location": "L12", - "community": 47, + "community": 93, "norm_label": "emptystate()", "id": "components_emptystate_emptystate" }, @@ -40540,7 +42893,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/UserAvatar.tsx", "source_location": "L1", - "community": 17, + "community": 8, "norm_label": "useravatar.tsx", "id": "apps_rebreak_native_components_useravatar_tsx" }, @@ -40548,8 +42901,8 @@ "label": "Size", "file_type": "code", "source_file": "apps/rebreak-native/components/UserAvatar.tsx", - "source_location": "L8", - "community": 17, + "source_location": "L15", + "community": 8, "norm_label": "size", "id": "components_useravatar_size" }, @@ -40557,8 +42910,8 @@ "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/UserAvatar.tsx", - "source_location": "L10", - "community": 17, + "source_location": "L17", + "community": 8, "norm_label": "props", "id": "components_useravatar_props" }, @@ -40566,8 +42919,8 @@ "label": "SIZE_MAP", "file_type": "code", "source_file": "apps/rebreak-native/components/UserAvatar.tsx", - "source_location": "L19", - "community": 17, + "source_location": "L30", + "community": 8, "norm_label": "size_map", "id": "components_useravatar_size_map" }, @@ -40575,8 +42928,8 @@ "label": "OnlineDot()", "file_type": "code", "source_file": "apps/rebreak-native/components/UserAvatar.tsx", - "source_location": "L32", - "community": 17, + "source_location": "L43", + "community": 8, "norm_label": "onlinedot()", "id": "components_useravatar_onlinedot" }, @@ -40584,8 +42937,8 @@ "label": "UserAvatar()", "file_type": "code", "source_file": "apps/rebreak-native/components/UserAvatar.tsx", - "source_location": "L56", - "community": 17, + "source_location": "L67", + "community": 8, "norm_label": "useravatar()", "id": "components_useravatar_useravatar" }, @@ -40594,7 +42947,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/ProtectionOnboardingSheet.tsx", "source_location": "L1", - "community": 22, + "community": 53, "norm_label": "protectiononboardingsheet.tsx", "id": "apps_rebreak_native_components_protectiononboardingsheet_tsx" }, @@ -40602,20 +42955,92 @@ "label": "StepState", "file_type": "code", "source_file": "apps/rebreak-native/components/ProtectionOnboardingSheet.tsx", - "source_location": "L9", - "community": 22, + "source_location": "L10", + "community": 53, "norm_label": "stepstate", "id": "components_protectiononboardingsheet_stepstate" }, + { + "label": "ProtectionOnboardingSheet()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/ProtectionOnboardingSheet.tsx", + "source_location": "L12", + "community": 53, + "norm_label": "protectiononboardingsheet()", + "id": "components_protectiononboardingsheet_protectiononboardingsheet" + }, { "label": "StepCard()", "file_type": "code", "source_file": "apps/rebreak-native/components/ProtectionOnboardingSheet.tsx", - "source_location": "L168", - "community": 22, + "source_location": "L211", + "community": 53, "norm_label": "stepcard()", "id": "components_protectiononboardingsheet_stepcard" }, + { + "label": "VoiceRecordingBar.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L1", + "community": 17, + "norm_label": "voicerecordingbar.tsx", + "id": "apps_rebreak_native_components_chat_voicerecordingbar_tsx" + }, + { + "label": "formatVoiceDuration()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L6", + "community": 17, + "norm_label": "formatvoiceduration()", + "id": "chat_voicerecordingbar_formatvoiceduration" + }, + { + "label": "VoiceBars()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L12", + "community": 17, + "norm_label": "voicebars()", + "id": "chat_voicerecordingbar_voicebars" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L47", + "community": 17, + "norm_label": "props", + "id": "chat_voicerecordingbar_props" + }, + { + "label": "VoiceRecordingBar()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L59", + "community": 17, + "norm_label": "voicerecordingbar()", + "id": "chat_voicerecordingbar_voicerecordingbar" + }, + { + "label": "styles", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L94", + "community": 17, + "norm_label": "styles", + "id": "chat_voicerecordingbar_styles" + }, + { + "label": "MessageActionMenu.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/MessageActionMenu.tsx", + "source_location": "L1", + "community": 17, + "norm_label": "messageactionmenu.tsx", + "id": "apps_rebreak_native_components_chat_messageactionmenu_tsx" + }, { "label": "REACTION_EMOJIS", "file_type": "code", @@ -40656,17 +43081,26 @@ "label": "styles", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/MessageActionMenu.tsx", - "source_location": "L191", + "source_location": "L202", "community": 17, "norm_label": "styles", "id": "chat_messageactionmenu_styles" }, + { + "label": "DmChatBackground.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/DmChatBackground.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "dmchatbackground.tsx", + "id": "apps_rebreak_native_components_chat_dmchatbackground_tsx" + }, { "label": "Symbol", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/DmChatBackground.tsx", "source_location": "L9", - "community": 8, + "community": 53, "norm_label": "symbol", "id": "chat_dmchatbackground_symbol" }, @@ -40675,7 +43109,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/chat/DmChatBackground.tsx", "source_location": "L11", - "community": 8, + "community": 53, "norm_label": "sequence", "id": "chat_dmchatbackground_sequence" }, @@ -40684,7 +43118,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/chat/DmChatBackground.tsx", "source_location": "L16", - "community": 8, + "community": 53, "norm_label": "symbolshape()", "id": "chat_dmchatbackground_symbolshape" }, @@ -40693,10 +43127,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/chat/DmChatBackground.tsx", "source_location": "L78", - "community": 8, + "community": 53, "norm_label": "dmchatbackground()", "id": "chat_dmchatbackground_dmchatbackground" }, + { + "label": "ChatHeaderStatus.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/ChatHeaderStatus.tsx", + "source_location": "L1", + "community": 750, + "norm_label": "chatheaderstatus.tsx", + "id": "apps_rebreak_native_components_chat_chatheaderstatus_tsx" + }, { "label": "Props", "file_type": "code", @@ -40710,7 +43153,7 @@ "label": "formatLastSeen()", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/ChatHeaderStatus.tsx", - "source_location": "L10", + "source_location": "L12", "community": 750, "norm_label": "formatlastseen()", "id": "chat_chatheaderstatus_formatlastseen" @@ -40719,17 +43162,26 @@ "label": "ChatHeaderStatus()", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/ChatHeaderStatus.tsx", - "source_location": "L18", + "source_location": "L20", "community": 750, "norm_label": "chatheaderstatus()", "id": "chat_chatheaderstatus_chatheaderstatus" }, + { + "label": "CreateRoomSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "createroomsheet.tsx", + "id": "apps_rebreak_native_components_chat_createroomsheet_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", "source_location": "L15", - "community": 22, + "community": 53, "norm_label": "props", "id": "chat_createroomsheet_props" }, @@ -40738,7 +43190,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", "source_location": "L21", - "community": 22, + "community": 53, "norm_label": "createroomsheet()", "id": "chat_createroomsheet_createroomsheet" }, @@ -40747,16 +43199,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", "source_location": "L162", - "community": 22, + "community": 53, "norm_label": "makestyles()", "id": "chat_createroomsheet_makestyles" }, + { + "label": "RoomCard.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "roomcard.tsx", + "id": "apps_rebreak_native_components_chat_roomcard_tsx" + }, { "label": "Room", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", "source_location": "L7", - "community": 8, + "community": 53, "norm_label": "room", "id": "chat_roomcard_room" }, @@ -40765,7 +43226,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", "source_location": "L19", - "community": 8, + "community": 53, "norm_label": "props", "id": "chat_roomcard_props" }, @@ -40774,7 +43235,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", "source_location": "L24", - "community": 8, + "community": 53, "norm_label": "formattime()", "id": "chat_roomcard_formattime" }, @@ -40783,7 +43244,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", "source_location": "L32", - "community": 8, + "community": 53, "norm_label": "roomcard()", "id": "chat_roomcard_roomcard" }, @@ -40792,15 +43253,78 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", "source_location": "L107", - "community": 8, + "community": 53, "norm_label": "makestyles()", "id": "chat_roomcard_makestyles" }, + { + "label": "TypingBubble.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", + "source_location": "L1", + "community": 17, + "norm_label": "typingbubble.tsx", + "id": "apps_rebreak_native_components_chat_typingbubble_tsx" + }, + { + "label": "WaveDots()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", + "source_location": "L15", + "community": 17, + "norm_label": "wavedots()", + "id": "chat_typingbubble_wavedots" + }, + { + "label": "TypingBubble()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", + "source_location": "L52", + "community": 17, + "norm_label": "typingbubble()", + "id": "chat_typingbubble_typingbubble" + }, + { + "label": "styles", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", + "source_location": "L83", + "community": 17, + "norm_label": "styles", + "id": "chat_typingbubble_styles" + }, + { + "label": "ChatBubble.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L1", + "community": 17, + "norm_label": "chatbubble.tsx", + "id": "apps_rebreak_native_components_chat_chatbubble_tsx" + }, + { + "label": "fmtSec()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L19", + "community": 17, + "norm_label": "fmtsec()", + "id": "chat_chatbubble_fmtsec" + }, + { + "label": "VoiceNoteBubble()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L27", + "community": 17, + "norm_label": "voicenotebubble()", + "id": "chat_chatbubble_voicenotebubble" + }, { "label": "MessageReaction", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L17", + "source_location": "L163", "community": 17, "norm_label": "messagereaction", "id": "chat_chatbubble_messagereaction" @@ -40809,7 +43333,7 @@ "label": "ChatMsg", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L19", + "source_location": "L164", "community": 17, "norm_label": "chatmsg", "id": "chat_chatbubble_chatmsg" @@ -40818,7 +43342,7 @@ "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L48", + "source_location": "L193", "community": 17, "norm_label": "props", "id": "chat_chatbubble_props" @@ -40827,7 +43351,7 @@ "label": "formatTime()", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L65", + "source_location": "L213", "community": 17, "norm_label": "formattime()", "id": "chat_chatbubble_formattime" @@ -40836,25 +43360,43 @@ "label": "useBubbleColors()", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L69", + "source_location": "L217", "community": 17, "norm_label": "usebubblecolors()", "id": "chat_chatbubble_usebubblecolors" }, + { + "label": "CallNoteRow()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L233", + "community": 17, + "norm_label": "callnoterow()", + "id": "chat_chatbubble_callnoterow" + }, { "label": "ChatBubble()", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L82", + "source_location": "L269", "community": 17, "norm_label": "chatbubble()", "id": "chat_chatbubble_chatbubble" }, + { + "label": "ChatBubbleInner()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L277", + "community": 17, + "norm_label": "chatbubbleinner()", + "id": "chat_chatbubble_chatbubbleinner" + }, { "label": "makeStyles()", "file_type": "code", "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L422", + "source_location": "L647", "community": 17, "norm_label": "makestyles()", "id": "chat_chatbubble_makestyles" @@ -40922,12 +43464,39 @@ "norm_label": "makestyles()", "id": "chat_chatinput_makestyles" }, + { + "label": "MediaLightbox.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/MediaLightbox.tsx", + "source_location": "L1", + "community": 17, + "norm_label": "medialightbox.tsx", + "id": "apps_rebreak_native_components_chat_medialightbox_tsx" + }, + { + "label": "MediaLightbox()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/chat/MediaLightbox.tsx", + "source_location": "L28", + "community": 17, + "norm_label": "medialightbox()", + "id": "chat_medialightbox_medialightbox" + }, + { + "label": "MailActivityLog.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L1", + "community": 616, + "norm_label": "mailactivitylog.tsx", + "id": "apps_rebreak_native_components_mail_mailactivitylog_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", "source_location": "L20", - "community": 887, + "community": 616, "norm_label": "props", "id": "mail_mailactivitylog_props" }, @@ -40936,7 +43505,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", "source_location": "L26", - "community": 887, + "community": 616, "norm_label": "formatdate()", "id": "mail_mailactivitylog_formatdate" }, @@ -40945,7 +43514,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", "source_location": "L38", - "community": 887, + "community": 616, "norm_label": "domainfromemail()", "id": "mail_mailactivitylog_domainfromemail" }, @@ -40954,7 +43523,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", "source_location": "L42", - "community": 887, + "community": 616, "norm_label": "providerdisplayname()", "id": "mail_mailactivitylog_providerdisplayname" }, @@ -40963,25 +43532,43 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", "source_location": "L54", - "community": 887, + "community": 616, "norm_label": "mailactivitylog()", "id": "mail_mailactivitylog_mailactivitylog" }, + { + "label": "MailActivityLogBody()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L134", + "community": 616, + "norm_label": "mailactivitylogbody()", + "id": "mail_mailactivitylog_mailactivitylogbody" + }, { "label": "ActivityItem()", "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", "source_location": "L239", - "community": 887, + "community": 616, "norm_label": "activityitem()", "id": "mail_mailactivitylog_activityitem" }, + { + "label": "MailDistributionChart.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L1", + "community": 54, + "norm_label": "maildistributionchart.tsx", + "id": "apps_rebreak_native_components_mail_maildistributionchart_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", "source_location": "L8", - "community": 8, + "community": 54, "norm_label": "props", "id": "mail_maildistributionchart_props" }, @@ -40990,7 +43577,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", "source_location": "L16", - "community": 8, + "community": 54, "norm_label": "slice_colors", "id": "mail_maildistributionchart_slice_colors" }, @@ -40999,7 +43586,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", "source_location": "L23", - "community": 8, + "community": 54, "norm_label": "formatcompact()", "id": "mail_maildistributionchart_formatcompact" }, @@ -41008,7 +43595,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", "source_location": "L30", - "community": 8, + "community": 54, "norm_label": "domainfromemail()", "id": "mail_maildistributionchart_domainfromemail" }, @@ -41017,7 +43604,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", "source_location": "L34", - "community": 8, + "community": 54, "norm_label": "displaylabel()", "id": "mail_maildistributionchart_displaylabel" }, @@ -41026,7 +43613,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", "source_location": "L38", - "community": 8, + "community": 54, "norm_label": "maildistributionchart()", "id": "mail_maildistributionchart_maildistributionchart" }, @@ -41035,10 +43622,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", "source_location": "L155", - "community": 8, + "community": 54, "norm_label": "legendrow()", "id": "mail_maildistributionchart_legendrow" }, + { + "label": "MailAccountSettingsSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L1", + "community": 21, + "norm_label": "mailaccountsettingssheet.tsx", + "id": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx" + }, { "label": "EditMode", "file_type": "code", @@ -41102,6 +43698,15 @@ "norm_label": "mailaccountsettingssheet()", "id": "mail_mailaccountsettingssheet_mailaccountsettingssheet" }, + { + "label": "MailWeeklyChart.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailWeeklyChart.tsx", + "source_location": "L1", + "community": 21, + "norm_label": "mailweeklychart.tsx", + "id": "apps_rebreak_native_components_mail_mailweeklychart_tsx" + }, { "label": "Props", "file_type": "code", @@ -41120,12 +43725,21 @@ "norm_label": "mailweeklychart()", "id": "mail_mailweeklychart_mailweeklychart" }, + { + "label": "MailConsentReminderSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailConsentReminderSheet.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "mailconsentremindersheet.tsx", + "id": "apps_rebreak_native_components_mail_mailconsentremindersheet_tsx" + }, { "label": "PendingConnection", "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailConsentReminderSheet.tsx", "source_location": "L12", - "community": 696, + "community": 18, "norm_label": "pendingconnection", "id": "mail_mailconsentremindersheet_pendingconnection" }, @@ -41134,7 +43748,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailConsentReminderSheet.tsx", "source_location": "L17", - "community": 696, + "community": 18, "norm_label": "props", "id": "mail_mailconsentremindersheet_props" }, @@ -41143,10 +43757,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/MailConsentReminderSheet.tsx", "source_location": "L23", - "community": 696, + "community": 18, "norm_label": "mailconsentremindersheet()", "id": "mail_mailconsentremindersheet_mailconsentremindersheet" }, + { + "label": "MailStatsRow.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailStatsRow.tsx", + "source_location": "L1", + "community": 756, + "norm_label": "mailstatsrow.tsx", + "id": "apps_rebreak_native_components_mail_mailstatsrow_tsx" + }, { "label": "Props", "file_type": "code", @@ -41165,12 +43788,21 @@ "norm_label": "mailstatsrow()", "id": "mail_mailstatsrow_mailstatsrow" }, + { + "label": "EditMailAccountSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L1", + "community": 95, + "norm_label": "editmailaccountsheet.tsx", + "id": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", "source_location": "L11", - "community": 21, + "community": 95, "norm_label": "props", "id": "mail_editmailaccountsheet_props" }, @@ -41179,10 +43811,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", "source_location": "L22", - "community": 21, + "community": 95, "norm_label": "editmailaccountsheet()", "id": "mail_editmailaccountsheet_editmailaccountsheet" }, + { + "label": "MailBlockedByDayChart.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailBlockedByDayChart.tsx", + "source_location": "L1", + "community": 21, + "norm_label": "mailblockedbydaychart.tsx", + "id": "apps_rebreak_native_components_mail_mailblockedbydaychart_tsx" + }, { "label": "Props", "file_type": "code", @@ -41219,21 +43860,39 @@ "norm_label": "mailblockedbydaychart()", "id": "mail_mailblockedbydaychart_mailblockedbydaychart" }, + { + "label": "ConnectMailSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L1", + "community": 95, + "norm_label": "connectmailsheet.tsx", + "id": "apps_rebreak_native_components_mail_connectmailsheet_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", "source_location": "L25", - "community": 21, + "community": 95, "norm_label": "props", "id": "mail_connectmailsheet_props" }, + { + "label": "ProviderConfig", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L31", + "community": 95, + "norm_label": "providerconfig", + "id": "mail_connectmailsheet_providerconfig" + }, { "label": "PROVIDERS", "file_type": "code", "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", "source_location": "L43", - "community": 21, + "community": 95, "norm_label": "providers", "id": "mail_connectmailsheet_providers" }, @@ -41242,7 +43901,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", "source_location": "L104", - "community": 21, + "community": 95, "norm_label": "connectmailsheet()", "id": "mail_connectmailsheet_connectmailsheet" }, @@ -41251,7 +43910,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", "source_location": "L355", - "community": 21, + "community": 95, "norm_label": "formview()", "id": "mail_connectmailsheet_formview" }, @@ -41260,7 +43919,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", "source_location": "L618", - "community": 21, + "community": 95, "norm_label": "consentstep()", "id": "mail_connectmailsheet_consentstep" }, @@ -41269,7 +43928,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", "source_location": "L757", - "community": 21, + "community": 95, "norm_label": "oauthwarningstep()", "id": "mail_connectmailsheet_oauthwarningstep" }, @@ -41278,7 +43937,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", "source_location": "L874", - "community": 21, + "community": 95, "norm_label": "oauthpendingstep()", "id": "mail_connectmailsheet_oauthpendingstep" }, @@ -41287,10 +43946,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", "source_location": "L919", - "community": 21, + "community": 95, "norm_label": "providergrid()", "id": "mail_connectmailsheet_providergrid" }, + { + "label": "MailAccountCard.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L1", + "community": 21, + "norm_label": "mailaccountcard.tsx", + "id": "apps_rebreak_native_components_mail_mailaccountcard_tsx" + }, { "label": "ScanResult", "file_type": "code", @@ -41327,6 +43995,15 @@ "norm_label": "resolveprovidericon()", "id": "mail_mailaccountcard_resolveprovidericon" }, + { + "label": "isOAuthProvider()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L171", + "community": 21, + "norm_label": "isoauthprovider()", + "id": "mail_mailaccountcard_isoauthprovider" + }, { "label": "idleHeartbeatAlive()", "file_type": "code", @@ -41372,6 +44049,24 @@ "norm_label": "statusdotrow()", "id": "mail_mailaccountcard_statusdotrow" }, + { + "label": "MailAccountCard()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L254", + "community": 21, + "norm_label": "mailaccountcard()", + "id": "mail_mailaccountcard_mailaccountcard" + }, + { + "label": "MailEmptyState.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/MailEmptyState.tsx", + "source_location": "L1", + "community": 21, + "norm_label": "mailemptystate.tsx", + "id": "apps_rebreak_native_components_mail_mailemptystate_tsx" + }, { "label": "Props", "file_type": "code", @@ -41390,12 +44085,21 @@ "norm_label": "mailemptystate()", "id": "mail_mailemptystate_mailemptystate" }, + { + "label": "EditMailTitleSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/mail/EditMailTitleSheet.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "editmailtitlesheet.tsx", + "id": "apps_rebreak_native_components_mail_editmailtitlesheet_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/mail/EditMailTitleSheet.tsx", "source_location": "L8", - "community": 22, + "community": 53, "norm_label": "props", "id": "mail_editmailtitlesheet_props" }, @@ -41404,16 +44108,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/mail/EditMailTitleSheet.tsx", "source_location": "L16", - "community": 22, + "community": 53, "norm_label": "editmailtitlesheet()", "id": "mail_editmailtitlesheet_editmailtitlesheet" }, + { + "label": "PlanChangeSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L1", + "community": 7, + "norm_label": "planchangesheet.tsx", + "id": "apps_rebreak_native_components_plan_planchangesheet_tsx" + }, { "label": "ChangePreviewItem", "file_type": "code", "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", "source_location": "L18", - "community": 21, + "community": 7, "norm_label": "changepreviewitem", "id": "plan_planchangesheet_changepreviewitem" }, @@ -41422,7 +44135,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", "source_location": "L28", - "community": 21, + "community": 7, "norm_label": "changepreview", "id": "plan_planchangesheet_changepreview" }, @@ -41431,7 +44144,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", "source_location": "L37", - "community": 21, + "community": 7, "norm_label": "props", "id": "plan_planchangesheet_props" }, @@ -41440,7 +44153,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", "source_location": "L45", - "community": 21, + "community": 7, "norm_label": "plan_label", "id": "plan_planchangesheet_plan_label" }, @@ -41449,7 +44162,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", "source_location": "L51", - "community": 21, + "community": 7, "norm_label": "actionchip()", "id": "plan_planchangesheet_actionchip" }, @@ -41458,7 +44171,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", "source_location": "L69", - "community": 21, + "community": 7, "norm_label": "planchangesheet()", "id": "plan_planchangesheet_planchangesheet" }, @@ -41467,7 +44180,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", "source_location": "L165", - "community": 21, + "community": 7, "norm_label": "contentprops", "id": "plan_planchangesheet_contentprops" }, @@ -41476,16 +44189,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", "source_location": "L175", - "community": 21, + "community": 7, "norm_label": "sheetcontent()", "id": "plan_planchangesheet_sheetcontent" }, + { + "label": "VipSwapSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "vipswapsheet.tsx", + "id": "apps_rebreak_native_components_blocker_vipswapsheet_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", "source_location": "L10", - "community": 22, + "community": 53, "norm_label": "props", "id": "blocker_vipswapsheet_props" }, @@ -41494,7 +44216,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", "source_location": "L18", - "community": 22, + "community": 53, "norm_label": "isvipeligible()", "id": "blocker_vipswapsheet_isvipeligible" }, @@ -41503,7 +44225,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", "source_location": "L27", - "community": 22, + "community": 53, "norm_label": "vipswapsheet()", "id": "blocker_vipswapsheet_vipswapsheet" }, @@ -41512,10 +44234,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", "source_location": "L147", - "community": 22, + "community": 53, "norm_label": "swapcandidatetile()", "id": "blocker_vipswapsheet_swapcandidatetile" }, + { + "label": "LayerSwitchCard.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/LayerSwitchCard.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "layerswitchcard.tsx", + "id": "apps_rebreak_native_components_blocker_layerswitchcard_tsx" + }, { "label": "Props", "file_type": "code", @@ -41534,6 +44265,15 @@ "norm_label": "layerswitchcard()", "id": "blocker_layerswitchcard_layerswitchcard" }, + { + "label": "VipDomainList.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L1", + "community": 22, + "norm_label": "vipdomainlist.tsx", + "id": "apps_rebreak_native_components_blocker_vipdomainlist_tsx" + }, { "label": "VipCustomMeta", "file_type": "code", @@ -41633,30 +44373,30 @@ "norm_label": "vipcuratedtile()", "id": "blocker_vipdomainlist_vipcuratedtile" }, + { + "label": "ProtectionDetailsSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L1", + "community": 54, + "norm_label": "protectiondetailssheet.tsx", + "id": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", "source_location": "L20", - "community": 8, + "community": 54, "norm_label": "props", "id": "blocker_protectiondetailssheet_props" }, - { - "label": "StatsResponse", - "file_type": "code", - "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", - "source_location": "L30", - "community": 8, - "norm_label": "statsresponse", - "id": "blocker_protectiondetailssheet_statsresponse" - }, { "label": "ProtectionDetailsSheet()", "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", - "source_location": "L47", - "community": 8, + "source_location": "L36", + "community": 54, "norm_label": "protectiondetailssheet()", "id": "blocker_protectiondetailssheet_protectiondetailssheet" }, @@ -41664,8 +44404,8 @@ "label": "AnimatedCounter()", "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", - "source_location": "L283", - "community": 8, + "source_location": "L268", + "community": 54, "norm_label": "animatedcounter()", "id": "blocker_protectiondetailssheet_animatedcounter" }, @@ -41673,8 +44413,8 @@ "label": "DeltaBadge()", "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", - "source_location": "L322", - "community": 8, + "source_location": "L307", + "community": 54, "norm_label": "deltabadge()", "id": "blocker_protectiondetailssheet_deltabadge" }, @@ -41682,8 +44422,8 @@ "label": "KpiCard()", "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", - "source_location": "L372", - "community": 8, + "source_location": "L357", + "community": 54, "norm_label": "kpicard()", "id": "blocker_protectiondetailssheet_kpicard" }, @@ -41691,8 +44431,8 @@ "label": "LegendItem()", "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", - "source_location": "L422", - "community": 8, + "source_location": "L407", + "community": 54, "norm_label": "legenditem()", "id": "blocker_protectiondetailssheet_legenditem" }, @@ -41700,11 +44440,137 @@ "label": "FaqItem()", "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", - "source_location": "L444", - "community": 8, + "source_location": "L429", + "community": 54, "norm_label": "faqitem()", "id": "blocker_protectiondetailssheet_faqitem" }, + { + "label": "SetupFlows.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L1", + "community": 880, + "norm_label": "setupflows.tsx", + "id": "apps_rebreak_native_components_blocker_setupflows_tsx" + }, + { + "label": "SetupFlowProps", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L11", + "community": 880, + "norm_label": "setupflowprops", + "id": "blocker_setupflows_setupflowprops" + }, + { + "label": "IosUnsupervisedSetupFlow()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L25", + "community": 18, + "norm_label": "iosunsupervisedsetupflow()", + "id": "blocker_setupflows_iosunsupervisedsetupflow" + }, + { + "label": "SetupStep1()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L71", + "community": 880, + "norm_label": "setupstep1()", + "id": "blocker_setupflows_setupstep1" + }, + { + "label": "SetupStep2()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L115", + "community": 880, + "norm_label": "setupstep2()", + "id": "blocker_setupflows_setupstep2" + }, + { + "label": "SetupStep3()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L207", + "community": 880, + "norm_label": "setupstep3()", + "id": "blocker_setupflows_setupstep3" + }, + { + "label": "AndroidSetupFlowProps", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L264", + "community": 880, + "norm_label": "androidsetupflowprops", + "id": "blocker_setupflows_androidsetupflowprops" + }, + { + "label": "AndroidSetupFlow()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L283", + "community": 18, + "norm_label": "androidsetupflow()", + "id": "blocker_setupflows_androidsetupflow" + }, + { + "label": "AndroidStep1()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L344", + "community": 880, + "norm_label": "androidstep1()", + "id": "blocker_setupflows_androidstep1" + }, + { + "label": "AndroidStep2()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L395", + "community": 880, + "norm_label": "androidstep2()", + "id": "blocker_setupflows_androidstep2" + }, + { + "label": "AndroidStepBattery()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L466", + "community": 880, + "norm_label": "androidstepbattery()", + "id": "blocker_setupflows_androidstepbattery" + }, + { + "label": "AndroidStep3()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L527", + "community": 880, + "norm_label": "androidstep3()", + "id": "blocker_setupflows_androidstep3" + }, + { + "label": "SetupStepCard()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L582", + "community": 880, + "norm_label": "setupstepcard()", + "id": "blocker_setupflows_setupstepcard" + }, + { + "label": "AddDomainSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L1", + "community": 22, + "norm_label": "adddomainsheet.tsx", + "id": "apps_rebreak_native_components_blocker_adddomainsheet_tsx" + }, { "label": "Props", "file_type": "code", @@ -41750,12 +44616,21 @@ "norm_label": "previewcard()", "id": "blocker_adddomainsheet_previewcard" }, + { + "label": "ProtectionCard.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", + "source_location": "L1", + "community": 1030, + "norm_label": "protectioncard.tsx", + "id": "apps_rebreak_native_components_blocker_protectioncard_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", "source_location": "L7", - "community": 8, + "community": 1030, "norm_label": "props", "id": "blocker_protectioncard_props" }, @@ -41764,7 +44639,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", "source_location": "L16", - "community": 8, + "community": 1030, "norm_label": "protectioncard()", "id": "blocker_protectioncard_protectioncard" }, @@ -41773,7 +44648,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", "source_location": "L145", - "community": 8, + "community": 1030, "norm_label": "stat()", "id": "blocker_protectioncard_stat" }, @@ -41782,7 +44657,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", "source_location": "L167", - "community": 8, + "community": 1030, "norm_label": "formatcount()", "id": "blocker_protectioncard_formatcount" }, @@ -41791,7 +44666,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/CooldownBanner.tsx", "source_location": "L1", - "community": 8, + "community": 53, "norm_label": "cooldownbanner.tsx", "id": "apps_rebreak_native_components_blocker_cooldownbanner_tsx" }, @@ -41800,7 +44675,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/CooldownBanner.tsx", "source_location": "L7", - "community": 8, + "community": 53, "norm_label": "props", "id": "blocker_cooldownbanner_props" }, @@ -41809,16 +44684,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/CooldownBanner.tsx", "source_location": "L12", - "community": 8, + "community": 53, "norm_label": "cooldownbanner()", "id": "blocker_cooldownbanner_cooldownbanner" }, + { + "label": "DeactivationExplainerSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/DeactivationExplainerSheet.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "deactivationexplainersheet.tsx", + "id": "apps_rebreak_native_components_blocker_deactivationexplainersheet_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/DeactivationExplainerSheet.tsx", "source_location": "L9", - "community": 8, + "community": 53, "norm_label": "props", "id": "blocker_deactivationexplainersheet_props" }, @@ -41827,7 +44711,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/DeactivationExplainerSheet.tsx", "source_location": "L25", - "community": 8, + "community": 53, "norm_label": "deactivationexplainersheet()", "id": "blocker_deactivationexplainersheet_deactivationexplainersheet" }, @@ -41836,16 +44720,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/DeactivationExplainerSheet.tsx", "source_location": "L172", - "community": 8, + "community": 53, "norm_label": "bulletrow()", "id": "blocker_deactivationexplainersheet_bulletrow" }, + { + "label": "ProtectionLockedCard.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "protectionlockedcard.tsx", + "id": "apps_rebreak_native_components_blocker_protectionlockedcard_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", "source_location": "L7", - "community": 8, + "community": 53, "norm_label": "props", "id": "blocker_protectionlockedcard_props" }, @@ -41854,7 +44747,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", "source_location": "L22", - "community": 8, + "community": 53, "norm_label": "protectionlockedcard()", "id": "blocker_protectionlockedcard_protectionlockedcard" }, @@ -41863,7 +44756,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", "source_location": "L131", - "community": 8, + "community": 53, "norm_label": "stat()", "id": "blocker_protectionlockedcard_stat" }, @@ -41872,7 +44765,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", "source_location": "L141", - "community": 8, + "community": 53, "norm_label": "formatcount()", "id": "blocker_protectionlockedcard_formatcount" }, @@ -41921,6 +44814,15 @@ "norm_label": "domaingrid()", "id": "blocker_domaingrid_domaingrid" }, + { + "label": "DomainTilesGrid()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/DomainGrid.tsx", + "source_location": "L150", + "community": 22, + "norm_label": "domaintilesgrid()", + "id": "blocker_domaingrid_domaintilesgrid" + }, { "label": "DomainTile()", "file_type": "code", @@ -41930,6 +44832,15 @@ "norm_label": "domaintile()", "id": "blocker_domaingrid_domaintile" }, + { + "label": "SuggestCuratedSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L1", + "community": 22, + "norm_label": "suggestcuratedsheet.tsx", + "id": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx" + }, { "label": "Props", "file_type": "code", @@ -41953,7 +44864,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/common/HalfDonut.tsx", "source_location": "L1", - "community": 8, + "community": 54, "norm_label": "halfdonut.tsx", "id": "apps_rebreak_native_components_common_halfdonut_tsx" }, @@ -41962,7 +44873,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/common/HalfDonut.tsx", "source_location": "L6", - "community": 8, + "community": 54, "norm_label": "halfdonutsegment", "id": "common_halfdonut_halfdonutsegment" }, @@ -41971,7 +44882,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/common/HalfDonut.tsx", "source_location": "L8", - "community": 8, + "community": 54, "norm_label": "props", "id": "common_halfdonut_props" }, @@ -41980,7 +44891,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/common/HalfDonut.tsx", "source_location": "L20", - "community": 8, + "community": 54, "norm_label": "polar()", "id": "common_halfdonut_polar" }, @@ -41989,7 +44900,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/common/HalfDonut.tsx", "source_location": "L25", - "community": 8, + "community": 54, "norm_label": "arcpath()", "id": "common_halfdonut_arcpath" }, @@ -41998,16 +44909,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/common/HalfDonut.tsx", "source_location": "L32", - "community": 8, + "community": 54, "norm_label": "halfdonut()", "id": "common_halfdonut_halfdonut" }, + { + "label": "StreakSection.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L1", + "community": 34, + "norm_label": "streaksection.tsx", + "id": "apps_rebreak_native_components_profile_streaksection_tsx" + }, { "label": "CooldownEntry", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", - "source_location": "L8", - "community": 27, + "source_location": "L10", + "community": 34, "norm_label": "cooldownentry", "id": "profile_streaksection_cooldownentry" }, @@ -42015,8 +44935,8 @@ "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", - "source_location": "L17", - "community": 27, + "source_location": "L19", + "community": 34, "norm_label": "props", "id": "profile_streaksection_props" }, @@ -42024,8 +44944,8 @@ "label": "getMondayOfWeek()", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", - "source_location": "L29", - "community": 27, + "source_location": "L32", + "community": 34, "norm_label": "getmondayofweek()", "id": "profile_streaksection_getmondayofweek" }, @@ -42033,8 +44953,8 @@ "label": "buildWeekBuckets()", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", - "source_location": "L38", - "community": 27, + "source_location": "L41", + "community": 34, "norm_label": "buildweekbuckets()", "id": "profile_streaksection_buildweekbuckets" }, @@ -42042,8 +44962,8 @@ "label": "formatLastDate()", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", - "source_location": "L59", - "community": 27, + "source_location": "L62", + "community": 34, "norm_label": "formatlastdate()", "id": "profile_streaksection_formatlastdate" }, @@ -42051,8 +44971,8 @@ "label": "formatAvg()", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", - "source_location": "L73", - "community": 27, + "source_location": "L76", + "community": 34, "norm_label": "formatavg()", "id": "profile_streaksection_formatavg" }, @@ -42060,17 +44980,26 @@ "label": "StreakSection()", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", - "source_location": "L82", - "community": 27, + "source_location": "L85", + "community": 34, "norm_label": "streaksection()", "id": "profile_streaksection_streaksection" }, + { + "label": "UrgeStatsCard.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/UrgeStatsCard.tsx", + "source_location": "L1", + "community": 34, + "norm_label": "urgestatscard.tsx", + "id": "apps_rebreak_native_components_profile_urgestatscard_tsx" + }, { "label": "HelpedByEntry", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/UrgeStatsCard.tsx", "source_location": "L5", - "community": 27, + "community": 34, "norm_label": "helpedbyentry", "id": "profile_urgestatscard_helpedbyentry" }, @@ -42079,7 +45008,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/UrgeStatsCard.tsx", "source_location": "L11", - "community": 27, + "community": 34, "norm_label": "props", "id": "profile_urgestatscard_props" }, @@ -42088,7 +45017,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/UrgeStatsCard.tsx", "source_location": "L18", - "community": 27, + "community": 34, "norm_label": "urgestatscard()", "id": "profile_urgestatscard_urgestatscard" }, @@ -42097,7 +45026,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StatsBar.tsx", "source_location": "L1", - "community": 27, + "community": 34, "norm_label": "statsbar.tsx", "id": "apps_rebreak_native_components_profile_statsbar_tsx" }, @@ -42106,7 +45035,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StatsBar.tsx", "source_location": "L4", - "community": 27, + "community": 34, "norm_label": "props", "id": "profile_statsbar_props" }, @@ -42115,7 +45044,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StatsBar.tsx", "source_location": "L13", - "community": 27, + "community": 34, "norm_label": "cardprops", "id": "profile_statsbar_cardprops" }, @@ -42124,7 +45053,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StatsBar.tsx", "source_location": "L19", - "community": 27, + "community": 34, "norm_label": "statpill()", "id": "profile_statsbar_statpill" }, @@ -42133,16 +45062,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/StatsBar.tsx", "source_location": "L70", - "community": 27, + "community": 34, "norm_label": "statsbar()", "id": "profile_statsbar_statsbar" }, + { + "label": "CooldownPatternAnalysis.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L1", + "community": 34, + "norm_label": "cooldownpatternanalysis.tsx", + "id": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx" + }, { "label": "DE_STOP_WORDS", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L12", - "community": 27, + "community": 34, "norm_label": "de_stop_words", "id": "profile_cooldownpatternanalysis_de_stop_words" }, @@ -42151,7 +45089,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L30", - "community": 27, + "community": 34, "norm_label": "en_stop_words", "id": "profile_cooldownpatternanalysis_en_stop_words" }, @@ -42160,7 +45098,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L41", - "community": 27, + "community": 34, "norm_label": "weekday_keys", "id": "profile_cooldownpatternanalysis_weekday_keys" }, @@ -42169,7 +45107,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L54", - "community": 27, + "community": 34, "norm_label": "topword", "id": "profile_cooldownpatternanalysis_topword" }, @@ -42178,7 +45116,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L56", - "community": 27, + "community": 34, "norm_label": "buildhourbuckets()", "id": "profile_cooldownpatternanalysis_buildhourbuckets" }, @@ -42187,7 +45125,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L65", - "community": 27, + "community": 34, "norm_label": "buildweekdaybuckets()", "id": "profile_cooldownpatternanalysis_buildweekdaybuckets" }, @@ -42196,7 +45134,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L75", - "community": 27, + "community": 34, "norm_label": "extracttopwords()", "id": "profile_cooldownpatternanalysis_extracttopwords" }, @@ -42205,7 +45143,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L98", - "community": 27, + "community": 34, "norm_label": "cancelrate()", "id": "profile_cooldownpatternanalysis_cancelrate" }, @@ -42214,7 +45152,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L104", - "community": 27, + "community": 34, "norm_label": "barchartprops", "id": "profile_cooldownpatternanalysis_barchartprops" }, @@ -42223,16 +45161,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L111", - "community": 27, + "community": 34, "norm_label": "barchart()", "id": "profile_cooldownpatternanalysis_barchart" }, + { + "label": "SectionHeadingProps", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L158", + "community": 34, + "norm_label": "sectionheadingprops", + "id": "profile_cooldownpatternanalysis_sectionheadingprops" + }, { "label": "SectionHeading()", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L160", - "community": 27, + "community": 34, "norm_label": "sectionheading()", "id": "profile_cooldownpatternanalysis_sectionheading" }, @@ -42241,7 +45188,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L176", - "community": 27, + "community": 34, "norm_label": "props", "id": "profile_cooldownpatternanalysis_props" }, @@ -42250,16 +45197,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", "source_location": "L180", - "community": 27, + "community": 34, "norm_label": "cooldownpatternanalysis()", "id": "profile_cooldownpatternanalysis_cooldownpatternanalysis" }, + { + "label": "ProfileHeader.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L1", + "community": 93, + "norm_label": "profileheader.tsx", + "id": "apps_rebreak_native_components_profile_profileheader_tsx" + }, { "label": "GoogleIcon()", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", "source_location": "L10", - "community": 21, + "community": 93, "norm_label": "googleicon()", "id": "profile_profileheader_googleicon" }, @@ -42268,16 +45224,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", "source_location": "L21", - "community": 21, + "community": 93, "norm_label": "appleicon()", "id": "profile_profileheader_appleicon" }, + { + "label": "AuthProvider", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L29", + "community": 93, + "norm_label": "authprovider", + "id": "profile_profileheader_authprovider" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", "source_location": "L31", - "community": 21, + "community": 93, "norm_label": "props", "id": "profile_profileheader_props" }, @@ -42286,7 +45251,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", "source_location": "L45", - "community": 21, + "community": 93, "norm_label": "planlabel", "id": "profile_profileheader_planlabel" }, @@ -42295,7 +45260,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", "source_location": "L51", - "community": 21, + "community": 93, "norm_label": "plancolors", "id": "profile_profileheader_plancolors" }, @@ -42304,16 +45269,223 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", "source_location": "L58", - "community": 21, + "community": 93, "norm_label": "profileheader()", "id": "profile_profileheader_profileheader" }, + { + "label": "DemographicsAccordion.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L1", + "community": 27, + "norm_label": "demographicsaccordion.tsx", + "id": "apps_rebreak_native_components_profile_demographicsaccordion_tsx" + }, + { + "label": "BIRTH_YEAR_OPTIONS", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L19", + "community": 27, + "norm_label": "birth_year_options", + "id": "profile_demographicsaccordion_birth_year_options" + }, + { + "label": "Demographics", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L28", + "community": 27, + "norm_label": "demographics", + "id": "profile_demographicsaccordion_demographics" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L40", + "community": 27, + "norm_label": "props", + "id": "profile_demographicsaccordion_props" + }, + { + "label": "GENDER_OPTIONS", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L49", + "community": 27, + "norm_label": "gender_options", + "id": "profile_demographicsaccordion_gender_options" + }, + { + "label": "MARITAL_OPTIONS", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L55", + "community": 27, + "norm_label": "marital_options", + "id": "profile_demographicsaccordion_marital_options" + }, + { + "label": "EMPLOYMENT_STATUS_OPTIONS", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L64", + "community": 27, + "norm_label": "employment_status_options", + "id": "profile_demographicsaccordion_employment_status_options" + }, + { + "label": "INDUSTRY_OPTIONS", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L74", + "community": 27, + "norm_label": "industry_options", + "id": "profile_demographicsaccordion_industry_options" + }, + { + "label": "JOB_TENURE_OPTIONS", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L88", + "community": 27, + "norm_label": "job_tenure_options", + "id": "profile_demographicsaccordion_job_tenure_options" + }, + { + "label": "BUNDESLAND_OPTIONS", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L97", + "community": 27, + "norm_label": "bundesland_options", + "id": "profile_demographicsaccordion_bundesland_options" + }, + { + "label": "STATUS_WITH_SHIFT", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L116", + "community": 27, + "norm_label": "status_with_shift", + "id": "profile_demographicsaccordion_status_with_shift" + }, + { + "label": "STATUS_WITH_INDUSTRY", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L117", + "community": 27, + "norm_label": "status_with_industry", + "id": "profile_demographicsaccordion_status_with_industry" + }, + { + "label": "STATUS_WITH_TENURE", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L118", + "community": 27, + "norm_label": "status_with_tenure", + "id": "profile_demographicsaccordion_status_with_tenure" + }, + { + "label": "relevantFieldCount()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L120", + "community": 27, + "norm_label": "relevantfieldcount()", + "id": "profile_demographicsaccordion_relevantfieldcount" + }, + { + "label": "lookupLabel()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L142", + "community": 27, + "norm_label": "lookuplabel()", + "id": "profile_demographicsaccordion_lookuplabel" + }, + { + "label": "mockPersist()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L147", + "community": 27, + "norm_label": "mockpersist()", + "id": "profile_demographicsaccordion_mockpersist" + }, + { + "label": "DemographicsAccordion()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L149", + "community": 27, + "norm_label": "demographicsaccordion()", + "id": "profile_demographicsaccordion_demographicsaccordion" + }, + { + "label": "FieldRow()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L682", + "community": 27, + "norm_label": "fieldrow()", + "id": "profile_demographicsaccordion_fieldrow" + }, + { + "label": "SelectButton()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L753", + "community": 27, + "norm_label": "selectbutton()", + "id": "profile_demographicsaccordion_selectbutton" + }, + { + "label": "DigaMissionBanner.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L1", + "community": 7, + "norm_label": "digamissionbanner.tsx", + "id": "apps_rebreak_native_components_profile_digamissionbanner_tsx" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L6", + "community": 7, + "norm_label": "props", + "id": "profile_digamissionbanner_props" + }, + { + "label": "DigaMissionBanner()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L11", + "community": 7, + "norm_label": "digamissionbanner()", + "id": "profile_digamissionbanner_digamissionbanner" + }, + { + "label": "ApprovedDomainsList.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/profile/ApprovedDomainsList.tsx", + "source_location": "L1", + "community": 34, + "norm_label": "approveddomainslist.tsx", + "id": "apps_rebreak_native_components_profile_approveddomainslist_tsx" + }, { "label": "ApprovedDomain", "file_type": "code", "source_file": "apps/rebreak-native/components/profile/ApprovedDomainsList.tsx", "source_location": "L10", - "community": 27, + "community": 34, "norm_label": "approveddomain", "id": "profile_approveddomainslist_approveddomain" }, @@ -42322,7 +45494,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/ApprovedDomainsList.tsx", "source_location": "L15", - "community": 27, + "community": 34, "norm_label": "props", "id": "profile_approveddomainslist_props" }, @@ -42331,7 +45503,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/ApprovedDomainsList.tsx", "source_location": "L20", - "community": 27, + "community": 34, "norm_label": "approveddomainslist()", "id": "profile_approveddomainslist_approveddomainslist" }, @@ -42340,16 +45512,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/profile/ApprovedDomainsList.tsx", "source_location": "L123", - "community": 27, + "community": 34, "norm_label": "skeletonrow()", "id": "profile_approveddomainslist_skeletonrow" }, + { + "label": "LanguageIcon.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/icons/LanguageIcon.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "languageicon.tsx", + "id": "apps_rebreak_native_components_icons_languageicon_tsx" + }, { "label": "Props", "file_type": "code", "source_file": "apps/rebreak-native/components/icons/LanguageIcon.tsx", "source_location": "L9", - "community": 20, + "community": 18, "norm_label": "props", "id": "icons_languageicon_props" }, @@ -42358,7 +45539,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/icons/LanguageIcon.tsx", "source_location": "L14", - "community": 20, + "community": 18, "norm_label": "languageicon()", "id": "icons_languageicon_languageicon" }, @@ -42394,7 +45575,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", "source_location": "L25", - "community": 686, + "community": 865, "norm_label": "gametype", "id": "urge_urgegames_gametype" }, @@ -42412,7 +45593,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", "source_location": "L36", - "community": 568, + "community": 686, "norm_label": "gamepickergrid()", "id": "urge_urgegames_gamepickergrid" }, @@ -42493,7 +45674,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", "source_location": "L486", - "community": 686, + "community": 865, "norm_label": "memorygame()", "id": "urge_urgegames_memorygame" }, @@ -42524,6 +45705,15 @@ "norm_label": "tt_win_lines", "id": "urge_urgegames_tt_win_lines" }, + { + "label": "ttCheckWinner()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", + "source_location": "L668", + "community": 5, + "norm_label": "ttcheckwinner()", + "id": "urge_urgegames_ttcheckwinner" + }, { "label": "ttEmpty()", "file_type": "code", @@ -42556,7 +45746,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", "source_location": "L690", - "community": 686, + "community": 865, "norm_label": "tictactoegame()", "id": "urge_urgegames_tictactoegame" }, @@ -42569,6 +45759,15 @@ "norm_label": "tetris_speed_bases", "id": "urge_urgegames_tetris_speed_bases" }, + { + "label": "TETRIS_PIECES", + "file_type": "code", + "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", + "source_location": "L843", + "community": 5, + "norm_label": "tetris_pieces", + "id": "urge_urgegames_tetris_pieces" + }, { "label": "TetrisPiece", "file_type": "code", @@ -42641,6 +45840,15 @@ "norm_label": "scorecell()", "id": "urge_urgegames_scorecell" }, + { + "label": "InlineRatingDrawer.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/urge/InlineRatingDrawer.tsx", + "source_location": "L1", + "community": 437, + "norm_label": "inlineratingdrawer.tsx", + "id": "apps_rebreak_native_components_urge_inlineratingdrawer_tsx" + }, { "label": "InlineRatingDrawer()", "file_type": "code", @@ -42659,6 +45867,15 @@ "norm_label": "s", "id": "urge_inlineratingdrawer_s" }, + { + "label": "LlmProviderToggle.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/urge/LlmProviderToggle.tsx", + "source_location": "L1", + "community": 866, + "norm_label": "llmprovidertoggle.tsx", + "id": "apps_rebreak_native_components_urge_llmprovidertoggle_tsx" + }, { "label": "PROVIDERS", "file_type": "code", @@ -42682,7 +45899,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/GamePickerDrawer.tsx", "source_location": "L1", - "community": 568, + "community": 686, "norm_label": "gamepickerdrawer.tsx", "id": "apps_rebreak_native_components_urge_gamepickerdrawer_tsx" }, @@ -42691,7 +45908,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/GamePickerDrawer.tsx", "source_location": "L6", - "community": 568, + "community": 686, "norm_label": "props", "id": "urge_gamepickerdrawer_props" }, @@ -42700,7 +45917,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/GamePickerDrawer.tsx", "source_location": "L8", - "community": 568, + "community": 686, "norm_label": "gamepickerdrawer()", "id": "urge_gamepickerdrawer_gamepickerdrawer" }, @@ -42709,16 +45926,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/GamePickerDrawer.tsx", "source_location": "L34", - "community": 568, + "community": 686, "norm_label": "st", "id": "urge_gamepickerdrawer_st" }, + { + "label": "ShareSuccessDrawer.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/urge/ShareSuccessDrawer.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "sharesuccessdrawer.tsx", + "id": "apps_rebreak_native_components_urge_sharesuccessdrawer_tsx" + }, { "label": "ShareSuccessPayload", "file_type": "code", "source_file": "apps/rebreak-native/components/urge/ShareSuccessDrawer.tsx", "source_location": "L18", - "community": 8, + "community": 53, "norm_label": "sharesuccesspayload", "id": "urge_sharesuccessdrawer_sharesuccesspayload" }, @@ -42727,7 +45953,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/ShareSuccessDrawer.tsx", "source_location": "L26", - "community": 8, + "community": 53, "norm_label": "sharesuccessdrawer()", "id": "urge_sharesuccessdrawer_sharesuccessdrawer" }, @@ -42736,10 +45962,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/ShareSuccessDrawer.tsx", "source_location": "L146", - "community": 8, + "community": 53, "norm_label": "s", "id": "urge_sharesuccessdrawer_s" }, + { + "label": "SosFeedbackModal.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/urge/SosFeedbackModal.tsx", + "source_location": "L1", + "community": 437, + "norm_label": "sosfeedbackmodal.tsx", + "id": "apps_rebreak_native_components_urge_sosfeedbackmodal_tsx" + }, { "label": "SosFeedback", "file_type": "code", @@ -42781,7 +46016,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/UrgeStats.tsx", "source_location": "L1", - "community": 8, + "community": 53, "norm_label": "urgestats.tsx", "id": "apps_rebreak_native_components_urge_urgestats_tsx" }, @@ -42790,7 +46025,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/UrgeStats.tsx", "source_location": "L8", - "community": 8, + "community": 53, "norm_label": "emotion", "id": "urge_urgestats_emotion" }, @@ -42799,7 +46034,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/UrgeStats.tsx", "source_location": "L10", - "community": 8, + "community": 53, "norm_label": "urgelog", "id": "urge_urgestats_urgelog" }, @@ -42808,7 +46043,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/UrgeStats.tsx", "source_location": "L18", - "community": 8, + "community": 53, "norm_label": "weekday_labels", "id": "urge_urgestats_weekday_labels" }, @@ -42817,7 +46052,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/UrgeStats.tsx", "source_location": "L20", - "community": 8, + "community": 53, "norm_label": "emotionlabel()", "id": "urge_urgestats_emotionlabel" }, @@ -42826,7 +46061,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/UrgeStats.tsx", "source_location": "L32", - "community": 8, + "community": 53, "norm_label": "statcard()", "id": "urge_urgestats_statcard" }, @@ -42835,10 +46070,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/UrgeStats.tsx", "source_location": "L63", - "community": 8, + "community": 53, "norm_label": "urgestats()", "id": "urge_urgestats_urgestats" }, + { + "label": "MessageRow.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L1", + "community": 686, + "norm_label": "messagerow.tsx", + "id": "apps_rebreak_native_components_urge_messagerow_tsx" + }, { "label": "CardType", "file_type": "code", @@ -42857,6 +46101,15 @@ "norm_label": "sosmsg", "id": "urge_messagerow_sosmsg" }, + { + "label": "GameCard()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L12", + "community": 686, + "norm_label": "gamecard()", + "id": "urge_messagerow_gamecard" + }, { "label": "OvercomeCard()", "file_type": "code", @@ -42902,15 +46155,33 @@ "norm_label": "st", "id": "urge_messagerow_st" }, + { + "label": "TtsProviderToggle.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/urge/TtsProviderToggle.tsx", + "source_location": "L1", + "community": 872, + "norm_label": "ttsprovidertoggle.tsx", + "id": "apps_rebreak_native_components_urge_ttsprovidertoggle_tsx" + }, { "label": "PROVIDERS", "file_type": "code", "source_file": "apps/rebreak-native/components/urge/TtsProviderToggle.tsx", "source_location": "L4", - "community": 437, + "community": 872, "norm_label": "providers", "id": "urge_ttsprovidertoggle_providers" }, + { + "label": "TtsProviderToggle()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/urge/TtsProviderToggle.tsx", + "source_location": "L6", + "community": 872, + "norm_label": "ttsprovidertoggle()", + "id": "urge_ttsprovidertoggle_ttsprovidertoggle" + }, { "label": "InlineIndicators.tsx", "file_type": "code", @@ -42952,7 +46223,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", "source_location": "L1", - "community": 876, + "community": 437, "norm_label": "breathing.tsx", "id": "apps_rebreak_native_components_urge_breathing_tsx" }, @@ -42961,7 +46232,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", "source_location": "L7", - "community": 876, + "community": 437, "norm_label": "props", "id": "urge_breathing_props" }, @@ -42970,7 +46241,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", "source_location": "L9", - "community": 876, + "community": 437, "norm_label": "breathingcard()", "id": "urge_breathing_breathingcard" }, @@ -42979,7 +46250,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", "source_location": "L117", - "community": 876, + "community": 437, "norm_label": "breathingdrawer()", "id": "urge_breathing_breathingdrawer" }, @@ -42988,10 +46259,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", "source_location": "L134", - "community": 876, + "community": 437, "norm_label": "st", "id": "urge_breathing_st" }, + { + "label": "ScoreProgressBar.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/games/ScoreProgressBar.tsx", + "source_location": "L1", + "community": 5, + "norm_label": "scoreprogressbar.tsx", + "id": "apps_rebreak_native_components_games_scoreprogressbar_tsx" + }, { "label": "ScoreProgressBarProps", "file_type": "code", @@ -43010,12 +46290,21 @@ "norm_label": "scoreprogressbar()", "id": "games_scoreprogressbar_scoreprogressbar" }, + { + "label": "GameOverScreen.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L1", + "community": 7, + "norm_label": "gameoverscreen.tsx", + "id": "apps_rebreak_native_components_games_gameoverscreen_tsx" + }, { "label": "GameOverScreenProps", "file_type": "code", "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", "source_location": "L26", - "community": 286, + "community": 7, "norm_label": "gameoverscreenprops", "id": "games_gameoverscreen_gameoverscreenprops" }, @@ -43024,7 +46313,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", "source_location": "L37", - "community": 286, + "community": 7, "norm_label": "lyramsg()", "id": "games_gameoverscreen_lyramsg" }, @@ -43033,16 +46322,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", "source_location": "L50", - "community": 286, + "community": 7, "norm_label": "gameoverscreen()", "id": "games_gameoverscreen_gameoverscreen" }, + { + "label": "GameCard.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/games/GameCard.tsx", + "source_location": "L1", + "community": 865, + "norm_label": "gamecard.tsx", + "id": "apps_rebreak_native_components_games_gamecard_tsx" + }, { "label": "GameCardProps", "file_type": "code", "source_file": "apps/rebreak-native/components/games/GameCard.tsx", "source_location": "L9", - "community": 686, + "community": 865, "norm_label": "gamecardprops", "id": "games_gamecard_gamecardprops" }, @@ -43051,7 +46349,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/games/GameCard.tsx", "source_location": "L19", - "community": 686, + "community": 865, "norm_label": "gamecard()", "id": "games_gamecard_gamecard" }, @@ -43060,7 +46358,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/games/StarRating.tsx", "source_location": "L1", - "community": 441, + "community": 865, "norm_label": "starrating.tsx", "id": "apps_rebreak_native_components_games_starrating_tsx" }, @@ -43069,7 +46367,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/games/StarRating.tsx", "source_location": "L7", - "community": 441, + "community": 865, "norm_label": "starsize", "id": "games_starrating_starsize" }, @@ -43078,7 +46376,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/games/StarRating.tsx", "source_location": "L9", - "community": 441, + "community": 865, "norm_label": "sizemap", "id": "games_starrating_sizemap" }, @@ -43087,7 +46385,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/games/StarRating.tsx", "source_location": "L17", - "community": 441, + "community": 865, "norm_label": "starratingprops", "id": "games_starrating_starratingprops" }, @@ -43096,25 +46394,52 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/games/StarRating.tsx", "source_location": "L27", - "community": 441, + "community": 7, "norm_label": "starrating()", "id": "games_starrating_starrating" }, + { + "label": "GameRatingStars.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/games/GameRatingStars.tsx", + "source_location": "L1", + "community": 865, + "norm_label": "gameratingstars.tsx", + "id": "apps_rebreak_native_components_games_gameratingstars_tsx" + }, + { + "label": "GameRatingStarsProps", + "file_type": "code", + "source_file": "apps/rebreak-native/components/games/GameRatingStars.tsx", + "source_location": "L5", + "community": 865, + "norm_label": "gameratingstarsprops", + "id": "games_gameratingstars_gameratingstarsprops" + }, { "label": "GameRatingStars()", "file_type": "code", "source_file": "apps/rebreak-native/components/games/GameRatingStars.tsx", "source_location": "L10", - "community": 441, + "community": 865, "norm_label": "gameratingstars()", "id": "games_gameratingstars_gameratingstars" }, + { + "label": "HeaderDropdownMenu.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "headerdropdownmenu.tsx", + "id": "apps_rebreak_native_components_header_headerdropdownmenu_tsx" + }, { "label": "ItemKey", "file_type": "code", "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", "source_location": "L30", - "community": 20, + "community": 53, "norm_label": "itemkey", "id": "header_headerdropdownmenu_itemkey" }, @@ -43123,7 +46448,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", "source_location": "L32", - "community": 20, + "community": 53, "norm_label": "item", "id": "header_headerdropdownmenu_item" }, @@ -43132,7 +46457,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", "source_location": "L39", - "community": 20, + "community": 53, "norm_label": "props", "id": "header_headerdropdownmenu_props" }, @@ -43141,7 +46466,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", "source_location": "L45", - "community": 20, + "community": 53, "norm_label": "headerdropdownmenu()", "id": "header_headerdropdownmenu_headerdropdownmenu" }, @@ -43150,16 +46475,43 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", "source_location": "L267", - "community": 20, + "community": 53, "norm_label": "styles", "id": "header_headerdropdownmenu_styles" }, + { + "label": "PermissionConfirmSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "permissionconfirmsheet.tsx", + "id": "apps_rebreak_native_components_onboarding_permissionconfirmsheet_tsx" + }, + { + "label": "PermissionConfirmSheet()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", + "source_location": "L17", + "community": 53, + "norm_label": "permissionconfirmsheet()", + "id": "onboarding_permissionconfirmsheet_permissionconfirmsheet" + }, + { + "label": "SlideProgress.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/SlideProgress.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "slideprogress.tsx", + "id": "apps_rebreak_native_components_onboarding_slideprogress_tsx" + }, { "label": "SlideProgress()", "file_type": "code", "source_file": "apps/rebreak-native/components/onboarding/SlideProgress.tsx", "source_location": "L9", - "community": 8, + "community": 18, "norm_label": "slideprogress()", "id": "onboarding_slideprogress_slideprogress" }, @@ -43168,19 +46520,37 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/onboarding/SlideProgress.tsx", "source_location": "L56", - "community": 8, + "community": 18, "norm_label": "clamp01()", "id": "onboarding_slideprogress_clamp01" }, + { + "label": "ScreenshotPointer.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/ScreenshotPointer.tsx", + "source_location": "L1", + "community": 53, + "norm_label": "screenshotpointer.tsx", + "id": "apps_rebreak_native_components_onboarding_screenshotpointer_tsx" + }, { "label": "ScreenshotPointer()", "file_type": "code", "source_file": "apps/rebreak-native/components/onboarding/ScreenshotPointer.tsx", "source_location": "L28", - "community": 18, + "community": 53, "norm_label": "screenshotpointer()", "id": "onboarding_screenshotpointer_screenshotpointer" }, + { + "label": "OnboardingShell.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/OnboardingShell.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "onboardingshell.tsx", + "id": "apps_rebreak_native_components_onboarding_onboardingshell_tsx" + }, { "label": "OnboardingShell()", "file_type": "code", @@ -43244,6 +46614,15 @@ "norm_label": "ctabar()", "id": "onboarding_ctabar_ctabar" }, + { + "label": "LyraBubble.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "lyrabubble.tsx", + "id": "apps_rebreak_native_components_onboarding_lyrabubble_tsx" + }, { "label": "LyraBubble()", "file_type": "code", @@ -43253,6 +46632,15 @@ "norm_label": "lyrabubble()", "id": "onboarding_lyrabubble_lyrabubble" }, + { + "label": "NicknameSlide.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "nicknameslide.tsx", + "id": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx" + }, { "label": "CheckResult", "file_type": "code", @@ -43276,7 +46664,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/onboarding/slides/DoneSlide.tsx", "source_location": "L1", - "community": 95, + "community": 18, "norm_label": "doneslide.tsx", "id": "apps_rebreak_native_components_onboarding_slides_doneslide_tsx" }, @@ -43285,7 +46673,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/onboarding/slides/DoneSlide.tsx", "source_location": "L14", - "community": 95, + "community": 18, "norm_label": "onboarding_faq_ids", "id": "slides_doneslide_onboarding_faq_ids" }, @@ -43294,7 +46682,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/onboarding/slides/DoneSlide.tsx", "source_location": "L16", - "community": 95, + "community": 18, "norm_label": "doneslide()", "id": "slides_doneslide_doneslide" }, @@ -43303,7 +46691,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/onboarding/slides/DoneSlide.tsx", "source_location": "L140", - "community": 95, + "community": 18, "norm_label": "confetti_colors", "id": "slides_doneslide_confetti_colors" }, @@ -43312,10 +46700,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/onboarding/slides/DoneSlide.tsx", "source_location": "L142", - "community": 95, + "community": 18, "norm_label": "confettioverlay()", "id": "slides_doneslide_confettioverlay" }, + { + "label": "WelcomeSlide.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "welcomeslide.tsx", + "id": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx" + }, { "label": "LANGS", "file_type": "code", @@ -43325,6 +46722,15 @@ "norm_label": "langs", "id": "slides_welcomeslide_langs" }, + { + "label": "LanguagePills()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L22", + "community": 18, + "norm_label": "languagepills()", + "id": "slides_welcomeslide_languagepills" + }, { "label": "WelcomeSlide()", "file_type": "code", @@ -43343,6 +46749,42 @@ "norm_label": "bulletrow()", "id": "slides_welcomeslide_bulletrow" }, + { + "label": "ProtectionSlide.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "protectionslide.tsx", + "id": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx" + }, + { + "label": "ConfirmStep", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L24", + "community": 18, + "norm_label": "confirmstep", + "id": "slides_protectionslide_confirmstep" + }, + { + "label": "ProtectionSlide()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L40", + "community": 18, + "norm_label": "protectionslide()", + "id": "slides_protectionslide_protectionslide" + }, + { + "label": "DigaCodeSlide.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "digacodeslide.tsx", + "id": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx" + }, { "label": "RedeemError", "file_type": "code", @@ -43370,6 +46812,15 @@ "norm_label": "digacodeslide()", "id": "slides_digacodeslide_digacodeslide" }, + { + "label": "DigaChoiceSlide.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaChoiceSlide.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "digachoiceslide.tsx", + "id": "apps_rebreak_native_components_onboarding_slides_digachoiceslide_tsx" + }, { "label": "DigaChoiceSlide()", "file_type": "code", @@ -43451,6 +46902,15 @@ "norm_label": "plancard()", "id": "slides_planslide_plancard" }, + { + "label": "PrivacySlide.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/slides/PrivacySlide.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "privacyslide.tsx", + "id": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx" + }, { "label": "PrivacySlide()", "file_type": "code", @@ -43469,6 +46929,15 @@ "norm_label": "promiserow()", "id": "slides_privacyslide_promiserow" }, + { + "label": "PaymentSlide.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L1", + "community": 18, + "norm_label": "paymentslide.tsx", + "id": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx" + }, { "label": "PaymentSlide()", "file_type": "code", @@ -43479,76 +46948,292 @@ "id": "slides_paymentslide_paymentslide" }, { - "label": "AddMacSheet.tsx", + "label": "deviceIcon.ts", "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", + "source_file": "apps/rebreak-native/components/devices/deviceIcon.ts", + "source_location": "L1", + "community": 37, + "norm_label": "deviceicon.ts", + "id": "apps_rebreak_native_components_devices_deviceicon_ts" + }, + { + "label": "ICONS", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/deviceIcon.ts", + "source_location": "L7", + "community": 37, + "norm_label": "icons", + "id": "devices_deviceicon_icons" + }, + { + "label": "deviceImage()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/deviceIcon.ts", + "source_location": "L20", + "community": 37, + "norm_label": "deviceimage()", + "id": "devices_deviceicon_deviceimage" + }, + { + "label": "MagicSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L1", + "community": 37, + "norm_label": "magicsheet.tsx", + "id": "apps_rebreak_native_components_devices_magicsheet_tsx" + }, + { + "label": "PairResponse", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L21", + "community": 37, + "norm_label": "pairresponse", + "id": "devices_magicsheet_pairresponse" + }, + { + "label": "MagicDevice", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L27", + "community": 37, + "norm_label": "magicdevice", + "id": "devices_magicsheet_magicdevice" + }, + { + "label": "MagicInfo", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L37", + "community": 37, + "norm_label": "magicinfo", + "id": "devices_magicsheet_magicinfo" + }, + { + "label": "DesktopPlatform", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L46", + "community": 37, + "norm_label": "desktopplatform", + "id": "devices_magicsheet_desktopplatform" + }, + { + "label": "MagicSheet()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L52", + "community": 37, + "norm_label": "magicsheet()", + "id": "devices_magicsheet_magicsheet" + }, + { + "label": "cardStyle()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L392", + "community": 37, + "norm_label": "cardstyle()", + "id": "devices_magicsheet_cardstyle" + }, + { + "label": "SectionTitle()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L401", + "community": 37, + "norm_label": "sectiontitle()", + "id": "devices_magicsheet_sectiontitle" + }, + { + "label": "PrimaryButton()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L419", + "community": 37, + "norm_label": "primarybutton()", + "id": "devices_magicsheet_primarybutton" + }, + { + "label": "PlatformOption()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L456", + "community": 37, + "norm_label": "platformoption()", + "id": "devices_magicsheet_platformoption" + }, + { + "label": "formatRemaining()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L500", + "community": 37, + "norm_label": "formatremaining()", + "id": "devices_magicsheet_formatremaining" + }, + { + "label": "DeviceSlotDonut.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L1", + "community": 37, + "norm_label": "deviceslotdonut.tsx", + "id": "apps_rebreak_native_components_devices_deviceslotdonut_tsx" + }, + { + "label": "SlotSegment", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L14", + "community": 37, + "norm_label": "slotsegment", + "id": "devices_deviceslotdonut_slotsegment" + }, + { + "label": "polar()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L16", + "community": 37, + "norm_label": "polar()", + "id": "devices_deviceslotdonut_polar" + }, + { + "label": "arcPath()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L21", + "community": 37, + "norm_label": "arcpath()", + "id": "devices_deviceslotdonut_arcpath" + }, + { + "label": "DeviceSlotDonut()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L34", + "community": 37, + "norm_label": "deviceslotdonut()", + "id": "devices_deviceslotdonut_deviceslotdonut" + }, + { + "label": "DeviceStatusPill.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", + "source_location": "L1", + "community": 37, + "norm_label": "devicestatuspill.tsx", + "id": "apps_rebreak_native_components_devices_devicestatuspill_tsx" + }, + { + "label": "DeviceStatusKind", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", + "source_location": "L5", + "community": 37, + "norm_label": "devicestatuskind", + "id": "devices_devicestatuspill_devicestatuskind" + }, + { + "label": "DeviceStatusPill()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", + "source_location": "L14", + "community": 37, + "norm_label": "devicestatuspill()", + "id": "devices_devicestatuspill_devicestatuspill" + }, + { + "label": "DeviceDistributionBar.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L1", + "community": 37, + "norm_label": "devicedistributionbar.tsx", + "id": "apps_rebreak_native_components_devices_devicedistributionbar_tsx" + }, + { + "label": "DeviceDistributionBar()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L12", + "community": 37, + "norm_label": "devicedistributionbar()", + "id": "devices_devicedistributionbar_devicedistributionbar" + }, + { + "label": "Legend()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L89", + "community": 37, + "norm_label": "legend()", + "id": "devices_devicedistributionbar_legend" + }, + { + "label": "DeviceDetailSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L1", + "community": 54, + "norm_label": "devicedetailsheet.tsx", + "id": "apps_rebreak_native_components_devices_devicedetailsheet_tsx" + }, + { + "label": "DeviceDetail", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L15", + "community": 54, + "norm_label": "devicedetail", + "id": "devices_devicedetailsheet_devicedetail" + }, + { + "label": "fmtDate()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L26", + "community": 54, + "norm_label": "fmtdate()", + "id": "devices_devicedetailsheet_fmtdate" + }, + { + "label": "fmtLastSeen()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L34", + "community": 54, + "norm_label": "fmtlastseen()", + "id": "devices_devicedetailsheet_fmtlastseen" + }, + { + "label": "DeviceDetailSheet()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L55", + "community": 54, + "norm_label": "devicedetailsheet()", + "id": "devices_devicedetailsheet_devicedetailsheet" + }, + { + "label": "InfoRow()", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L224", + "community": 54, + "norm_label": "inforow()", + "id": "devices_devicedetailsheet_inforow" + }, + { + "label": "AddWindowsSheet.tsx", + "file_type": "code", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", "source_location": "L1", "community": 7, - "norm_label": "addmacsheet.tsx", - "id": "apps_rebreak_native_components_devices_addmacsheet_tsx" - }, - { - "label": "Step", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L24", - "community": 7, - "norm_label": "step", - "id": "devices_addmacsheet_step" - }, - { - "label": "StepItem", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L26", - "community": 7, - "norm_label": "stepitem", - "id": "devices_addmacsheet_stepitem" - }, - { - "label": "STEPS", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L32", - "community": 7, - "norm_label": "steps", - "id": "devices_addmacsheet_steps" - }, - { - "label": "AddMacSheet()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L39", - "community": 7, - "norm_label": "addmacsheet()", - "id": "devices_addmacsheet_addmacsheet" - }, - { - "label": "Step1LabelContent()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L155", - "community": 7, - "norm_label": "step1labelcontent()", - "id": "devices_addmacsheet_step1labelcontent" - }, - { - "label": "Step2OnboardingContent()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L210", - "community": 7, - "norm_label": "step2onboardingcontent()", - "id": "devices_addmacsheet_step2onboardingcontent" - }, - { - "label": "Step3SuccessContent()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L346", - "community": 7, - "norm_label": "step3successcontent()", - "id": "devices_addmacsheet_step3successcontent" + "norm_label": "addwindowssheet.tsx", + "id": "apps_rebreak_native_components_devices_addwindowssheet_tsx" }, { "label": "Step", @@ -43618,7 +47303,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/devices/DeviceProgressBar.tsx", "source_location": "L1", - "community": 7, + "community": 37, "norm_label": "deviceprogressbar.tsx", "id": "apps_rebreak_native_components_devices_deviceprogressbar_tsx" }, @@ -43627,7 +47312,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/components/devices/DeviceProgressBar.tsx", "source_location": "L6", - "community": 7, + "community": 37, "norm_label": "deviceprogressbarprops", "id": "devices_deviceprogressbar_deviceprogressbarprops" }, @@ -43635,20 +47320,56 @@ "label": "DeviceProgressBar()", "file_type": "code", "source_file": "apps/rebreak-native/components/devices/DeviceProgressBar.tsx", - "source_location": "L12", - "community": 7, + "source_location": "L14", + "community": 37, "norm_label": "deviceprogressbar()", "id": "devices_deviceprogressbar_deviceprogressbar" }, + { + "label": "useIncomingCalls.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L1", + "community": 288, + "norm_label": "useincomingcalls.ts", + "id": "apps_rebreak_native_hooks_useincomingcalls_ts" + }, + { + "label": "useIncomingCalls()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L14", + "community": 288, + "norm_label": "useincomingcalls()", + "id": "hooks_useincomingcalls_useincomingcalls" + }, + { + "label": "useMailTitleEdit.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useMailTitleEdit.ts", + "source_location": "L1", + "community": 53, + "norm_label": "usemailtitleedit.ts", + "id": "apps_rebreak_native_hooks_usemailtitleedit_ts" + }, { "label": "useMailTitleEdit()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailTitleEdit.ts", "source_location": "L4", - "community": 18, + "community": 53, "norm_label": "usemailtitleedit()", "id": "hooks_usemailtitleedit_usemailtitleedit" }, + { + "label": "useMailStatus.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useMailStatus.ts", + "source_location": "L1", + "community": 21, + "norm_label": "usemailstatus.ts", + "id": "apps_rebreak_native_hooks_usemailstatus_ts" + }, { "label": "MailAccount", "file_type": "code", @@ -43685,6 +47406,15 @@ "norm_label": "plan", "id": "hooks_usemailstatus_plan" }, + { + "label": "UseMailStatusReturn", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useMailStatus.ts", + "source_location": "L41", + "community": 21, + "norm_label": "usemailstatusreturn", + "id": "hooks_usemailstatus_usemailstatusreturn" + }, { "label": "deriveMaxAccounts()", "file_type": "code", @@ -43703,12 +47433,21 @@ "norm_label": "usemailstatus()", "id": "hooks_usemailstatus_usemailstatus" }, + { + "label": "useLastSeenBatch.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useLastSeenBatch.ts", + "source_location": "L1", + "community": 750, + "norm_label": "uselastseenbatch.ts", + "id": "apps_rebreak_native_hooks_uselastseenbatch_ts" + }, { "label": "LastSeenMap", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useLastSeenBatch.ts", "source_location": "L4", - "community": 18, + "community": 750, "norm_label": "lastseenmap", "id": "hooks_uselastseenbatch_lastseenmap" }, @@ -43717,25 +47456,70 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useLastSeenBatch.ts", "source_location": "L6", - "community": 18, + "community": 750, "norm_label": "uselastseenbatch()", "id": "hooks_uselastseenbatch_uselastseenbatch" }, + { + "label": "useUserPlan.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useUserPlan.ts", + "source_location": "L1", + "community": 37, + "norm_label": "useuserplan.ts", + "id": "apps_rebreak_native_hooks_useuserplan_ts" + }, { "label": "useUserPlan()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useUserPlan.ts", "source_location": "L15", - "community": 21, + "community": 37, "norm_label": "useuserplan()", "id": "hooks_useuserplan_useuserplan" }, + { + "label": "useDomainSubmissionRealtime.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", + "source_location": "L1", + "community": 53, + "norm_label": "usedomainsubmissionrealtime.ts", + "id": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts" + }, + { + "label": "useDomainSubmissionRealtime()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", + "source_location": "L14", + "community": 53, + "norm_label": "usedomainsubmissionrealtime()", + "id": "hooks_usedomainsubmissionrealtime_usedomainsubmissionrealtime" + }, + { + "label": "useMailConnect.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", + "source_location": "L1", + "community": 95, + "norm_label": "usemailconnect.ts", + "id": "apps_rebreak_native_hooks_usemailconnect_ts" + }, + { + "label": "MailProvider", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", + "source_location": "L4", + "community": 95, + "norm_label": "mailprovider", + "id": "hooks_usemailconnect_mailprovider" + }, { "label": "ConnectBody", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", "source_location": "L12", - "community": 21, + "community": 95, "norm_label": "connectbody", "id": "hooks_usemailconnect_connectbody" }, @@ -43744,7 +47528,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", "source_location": "L24", - "community": 21, + "community": 95, "norm_label": "connectresult", "id": "hooks_usemailconnect_connectresult" }, @@ -43753,7 +47537,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", "source_location": "L31", - "community": 21, + "community": 95, "norm_label": "usemailconnectreturn", "id": "hooks_usemailconnect_usemailconnectreturn" }, @@ -43762,7 +47546,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", "source_location": "L39", - "community": 21, + "community": 95, "norm_label": "provider_domain_map", "id": "hooks_usemailconnect_provider_domain_map" }, @@ -43771,7 +47555,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", "source_location": "L76", - "community": 21, + "community": 95, "norm_label": "detectprovider()", "id": "hooks_usemailconnect_detectprovider" }, @@ -43780,7 +47564,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", "source_location": "L87", - "community": 21, + "community": 95, "norm_label": "usemailconnect()", "id": "hooks_usemailconnect_usemailconnect" }, @@ -43789,7 +47573,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L1", - "community": 27, + "community": 34, "norm_label": "useprofiledata.ts", "id": "apps_rebreak_native_hooks_useprofiledata_ts" }, @@ -43798,7 +47582,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L6", - "community": 27, + "community": 34, "norm_label": "socialstats", "id": "hooks_useprofiledata_socialstats" }, @@ -43807,7 +47591,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L11", - "community": 27, + "community": 34, "norm_label": "approveddomainsdata", "id": "hooks_useprofiledata_approveddomainsdata" }, @@ -43816,7 +47600,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L16", - "community": 27, + "community": 34, "norm_label": "cooldownhistorydata", "id": "hooks_useprofiledata_cooldownhistorydata" }, @@ -43825,7 +47609,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L21", - "community": 27, + "community": 34, "norm_label": "sosinsightsdata", "id": "hooks_useprofiledata_sosinsightsdata" }, @@ -43834,7 +47618,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L27", - "community": 27, + "community": 34, "norm_label": "backendcooldownentry", "id": "hooks_useprofiledata_backendcooldownentry" }, @@ -43843,7 +47627,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L38", - "community": 27, + "community": 34, "norm_label": "formatduration()", "id": "hooks_useprofiledata_formatduration" }, @@ -43852,7 +47636,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L44", - "community": 27, + "community": 34, "norm_label": "formatstartedat()", "id": "hooks_useprofiledata_formatstartedat" }, @@ -43861,7 +47645,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L51", - "community": 27, + "community": 34, "norm_label": "mapcooldownentry()", "id": "hooks_useprofiledata_mapcooldownentry" }, @@ -43870,7 +47654,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L62", - "community": 27, + "community": 34, "norm_label": "usefetchonce()", "id": "hooks_useprofiledata_usefetchonce" }, @@ -43879,7 +47663,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L98", - "community": 27, + "community": 34, "norm_label": "usesocialstats()", "id": "hooks_useprofiledata_usesocialstats" }, @@ -43888,7 +47672,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L115", - "community": 27, + "community": 34, "norm_label": "useapproveddomains()", "id": "hooks_useprofiledata_useapproveddomains" }, @@ -43897,43 +47681,88 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L122", - "community": 27, + "community": 34, "norm_label": "usecooldownhistory()", "id": "hooks_useprofiledata_usecooldownhistory" }, + { + "label": "useCooldownHistoryFull()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useProfileData.ts", + "source_location": "L138", + "community": 34, + "norm_label": "usecooldownhistoryfull()", + "id": "hooks_useprofiledata_usecooldownhistoryfull" + }, { "label": "useSosInsights()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L147", - "community": 27, + "community": 34, "norm_label": "usesosinsights()", "id": "hooks_useprofiledata_usesosinsights" }, + { + "label": "Demographics", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useProfileData.ts", + "source_location": "L154", + "community": 34, + "norm_label": "demographics", + "id": "hooks_useprofiledata_demographics" + }, { "label": "DemographicsResponse", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", "source_location": "L166", - "community": 27, + "community": 34, "norm_label": "demographicsresponse", "id": "hooks_useprofiledata_demographicsresponse" }, + { + "label": "ProtectionCoverageData", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useProfileData.ts", + "source_location": "L171", + "community": 34, + "norm_label": "protectioncoveragedata", + "id": "hooks_useprofiledata_protectioncoveragedata" + }, + { + "label": "useProtectionCoverage()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useProfileData.ts", + "source_location": "L179", + "community": 34, + "norm_label": "useprotectioncoverage()", + "id": "hooks_useprofiledata_useprotectioncoverage" + }, { "label": "useDemographics()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProfileData.ts", - "source_location": "L171", - "community": 27, + "source_location": "L186", + "community": 34, "norm_label": "usedemographics()", "id": "hooks_useprofiledata_usedemographics" }, + { + "label": "useMailResults.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useMailResults.ts", + "source_location": "L1", + "community": 616, + "norm_label": "usemailresults.ts", + "id": "apps_rebreak_native_hooks_usemailresults_ts" + }, { "label": "MailBlockedItem", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailResults.ts", "source_location": "L4", - "community": 887, + "community": 616, "norm_label": "mailblockeditem", "id": "hooks_usemailresults_mailblockeditem" }, @@ -43942,7 +47771,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailResults.ts", "source_location": "L23", - "community": 887, + "community": 616, "norm_label": "mailresultsresponse", "id": "hooks_usemailresults_mailresultsresponse" }, @@ -43951,16 +47780,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailResults.ts", "source_location": "L35", - "community": 887, + "community": 616, "norm_label": "usemailresults()", "id": "hooks_usemailresults_usemailresults" }, + { + "label": "useBlocklistSync.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useBlocklistSync.ts", + "source_location": "L1", + "community": 17, + "norm_label": "useblocklistsync.ts", + "id": "apps_rebreak_native_hooks_useblocklistsync_ts" + }, { "label": "SyncResult", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useBlocklistSync.ts", "source_location": "L7", - "community": 18, + "community": 17, "norm_label": "syncresult", "id": "hooks_useblocklistsync_syncresult" }, @@ -43969,10 +47807,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useBlocklistSync.ts", "source_location": "L26", - "community": 18, + "community": 17, "norm_label": "useblocklistsync()", "id": "hooks_useblocklistsync_useblocklistsync" }, + { + "label": "useOnlineUsers.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L1", + "community": 750, + "norm_label": "useonlineusers.ts", + "id": "apps_rebreak_native_hooks_useonlineusers_ts" + }, { "label": "OnlinePresenceContext", "file_type": "code", @@ -44009,20 +47856,47 @@ "norm_label": "listeners", "id": "hooks_useonlineusers_listeners" }, + { + "label": "pendingRemoval", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L30", + "community": 750, + "norm_label": "pendingremoval", + "id": "hooks_useonlineusers_pendingremoval" + }, + { + "label": "clearPendingRemovals()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L32", + "community": 750, + "norm_label": "clearpendingremovals()", + "id": "hooks_useonlineusers_clearpendingremovals" + }, { "label": "notify()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", - "source_location": "L24", + "source_location": "L37", "community": 750, "norm_label": "notify()", "id": "hooks_useonlineusers_notify" }, + { + "label": "applyRawPresence()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L42", + "community": 750, + "norm_label": "applyrawpresence()", + "id": "hooks_useonlineusers_applyrawpresence" + }, { "label": "ensureChannel()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", - "source_location": "L29", + "source_location": "L74", "community": 750, "norm_label": "ensurechannel()", "id": "hooks_useonlineusers_ensurechannel" @@ -44031,7 +47905,7 @@ "label": "teardownChannel()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", - "source_location": "L51", + "source_location": "L94", "community": 750, "norm_label": "teardownchannel()", "id": "hooks_useonlineusers_teardownchannel" @@ -44040,7 +47914,7 @@ "label": "untrackSelf()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", - "source_location": "L60", + "source_location": "L104", "community": 750, "norm_label": "untrackself()", "id": "hooks_useonlineusers_untrackself" @@ -44049,7 +47923,7 @@ "label": "retrackSelf()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", - "source_location": "L64", + "source_location": "L108", "community": 750, "norm_label": "retrackself()", "id": "hooks_useonlineusers_retrackself" @@ -44058,34 +47932,79 @@ "label": "useOnlinePresenceNode()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", - "source_location": "L70", + "source_location": "L114", "community": 750, "norm_label": "useonlinepresencenode()", "id": "hooks_useonlineusers_useonlinepresencenode" }, + { + "label": "useMailDisconnect.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useMailDisconnect.ts", + "source_location": "L1", + "community": 21, + "norm_label": "usemaildisconnect.ts", + "id": "apps_rebreak_native_hooks_usemaildisconnect_ts" + }, + { + "label": "UseMailDisconnectReturn", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useMailDisconnect.ts", + "source_location": "L4", + "community": 21, + "norm_label": "usemaildisconnectreturn", + "id": "hooks_usemaildisconnect_usemaildisconnectreturn" + }, { "label": "useMailDisconnect()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailDisconnect.ts", "source_location": "L16", - "community": 18, + "community": 21, "norm_label": "usemaildisconnect()", "id": "hooks_usemaildisconnect_usemaildisconnect" }, + { + "label": "useCustomDomains.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L1", + "community": 22, + "norm_label": "usecustomdomains.ts", + "id": "apps_rebreak_native_hooks_usecustomdomains_ts" + }, + { + "label": "DomainStatus", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L6", + "community": 22, + "norm_label": "domainstatus", + "id": "hooks_usecustomdomains_domainstatus" + }, { "label": "EntryKind", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L7", + "source_location": "L8", "community": 22, "norm_label": "entrykind", "id": "hooks_usecustomdomains_entrykind" }, + { + "label": "CustomDomain", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L10", + "community": 22, + "norm_label": "customdomain", + "id": "hooks_usecustomdomains_customdomain" + }, { "label": "Plan", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L21", + "source_location": "L27", "community": 22, "norm_label": "plan", "id": "hooks_usecustomdomains_plan" @@ -44094,7 +48013,7 @@ "label": "AddDomainResult", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L32", + "source_location": "L38", "community": 22, "norm_label": "adddomainresult", "id": "hooks_usecustomdomains_adddomainresult" @@ -44103,7 +48022,7 @@ "label": "Tier", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L43", + "source_location": "L49", "community": 22, "norm_label": "tier", "id": "hooks_usecustomdomains_tier" @@ -44112,16 +48031,25 @@ "label": "deriveTier()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L53", + "source_location": "L59", "community": 22, "norm_label": "derivetier()", "id": "hooks_usecustomdomains_derivetier" }, + { + "label": "UseCustomDomainsReturn", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L77", + "community": 22, + "norm_label": "usecustomdomainsreturn", + "id": "hooks_usecustomdomains_usecustomdomainsreturn" + }, { "label": "normalizeDomain()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L95", + "source_location": "L106", "community": 22, "norm_label": "normalizedomain()", "id": "hooks_usecustomdomains_normalizedomain" @@ -44130,7 +48058,7 @@ "label": "isValidDomain()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L105", + "source_location": "L116", "community": 22, "norm_label": "isvaliddomain()", "id": "hooks_usecustomdomains_isvaliddomain" @@ -44139,8 +48067,8 @@ "label": "PUBLIC_EMAIL_DOMAINS", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L119", - "community": 4, + "source_location": "L130", + "community": 39, "norm_label": "public_email_domains", "id": "hooks_usecustomdomains_public_email_domains" }, @@ -44148,7 +48076,7 @@ "label": "isPublicEmailDomain()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L137", + "source_location": "L194", "community": 22, "norm_label": "ispublicemaildomain()", "id": "hooks_usecustomdomains_ispublicemaildomain" @@ -44157,11 +48085,20 @@ "label": "useCustomDomains()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L149", + "source_location": "L206", "community": 22, "norm_label": "usecustomdomains()", "id": "hooks_usecustomdomains_usecustomdomains" }, + { + "label": "useSnakeSounds.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useSnakeSounds.ts", + "source_location": "L1", + "community": 5, + "norm_label": "usesnakesounds.ts", + "id": "apps_rebreak_native_hooks_usesnakesounds_ts" + }, { "label": "useSnakeSounds()", "file_type": "code", @@ -44171,6 +48108,15 @@ "norm_label": "usesnakesounds()", "id": "hooks_usesnakesounds_usesnakesounds" }, + { + "label": "useWebContentDomains.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useWebContentDomains.ts", + "source_location": "L1", + "community": 22, + "norm_label": "usewebcontentdomains.ts", + "id": "apps_rebreak_native_hooks_usewebcontentdomains_ts" + }, { "label": "VIP_COUNTRIES", "file_type": "code", @@ -44230,7 +48176,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMe.ts", "source_location": "L4", - "community": 21, + "community": 37, "norm_label": "plan", "id": "hooks_useme_plan" }, @@ -44256,7 +48202,7 @@ "label": "listeners", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMe.ts", - "source_location": "L45", + "source_location": "L46", "community": 18, "norm_label": "listeners", "id": "hooks_useme_listeners" @@ -44265,7 +48211,7 @@ "label": "invalidateMe()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMe.ts", - "source_location": "L51", + "source_location": "L52", "community": 18, "norm_label": "invalidateme()", "id": "hooks_useme_invalidateme" @@ -44274,8 +48220,8 @@ "label": "useMe()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMe.ts", - "source_location": "L56", - "community": 27, + "source_location": "L57", + "community": 8, "norm_label": "useme()", "id": "hooks_useme_useme" }, @@ -44284,7 +48230,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProtectedDevicesRealtime.ts", "source_location": "L1", - "community": 7, + "community": 37, "norm_label": "useprotecteddevicesrealtime.ts", "id": "apps_rebreak_native_hooks_useprotecteddevicesrealtime_ts" }, @@ -44293,16 +48239,43 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProtectedDevicesRealtime.ts", "source_location": "L6", - "community": 7, + "community": 37, "norm_label": "onactivated", "id": "hooks_useprotecteddevicesrealtime_onactivated" }, + { + "label": "useProtectedDevicesRealtime()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useProtectedDevicesRealtime.ts", + "source_location": "L8", + "community": 37, + "norm_label": "useprotecteddevicesrealtime()", + "id": "hooks_useprotecteddevicesrealtime_useprotecteddevicesrealtime" + }, + { + "label": "useDmTyping.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useDmTyping.ts", + "source_location": "L1", + "community": 17, + "norm_label": "usedmtyping.ts", + "id": "apps_rebreak_native_hooks_usedmtyping_ts" + }, + { + "label": "useDmTyping()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useDmTyping.ts", + "source_location": "L26", + "community": 17, + "norm_label": "usedmtyping()", + "id": "hooks_usedmtyping_usedmtyping" + }, { "label": "usePushTokenRegistration.ts", "file_type": "code", "source_file": "apps/rebreak-native/hooks/usePushTokenRegistration.ts", "source_location": "L1", - "community": 29, + "community": 20, "norm_label": "usepushtokenregistration.ts", "id": "apps_rebreak_native_hooks_usepushtokenregistration_ts" }, @@ -44310,17 +48283,35 @@ "label": "lastRegisteredToken", "file_type": "code", "source_file": "apps/rebreak-native/hooks/usePushTokenRegistration.ts", - "source_location": "L21", - "community": 29, + "source_location": "L33", + "community": 20, "norm_label": "lastregisteredtoken", "id": "hooks_usepushtokenregistration_lastregisteredtoken" }, + { + "label": "lastRegisteredVoipToken", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/usePushTokenRegistration.ts", + "source_location": "L34", + "community": 20, + "norm_label": "lastregisteredvoiptoken", + "id": "hooks_usepushtokenregistration_lastregisteredvoiptoken" + }, + { + "label": "fetchVoipToken()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/usePushTokenRegistration.ts", + "source_location": "L37", + "community": 20, + "norm_label": "fetchvoiptoken()", + "id": "hooks_usepushtokenregistration_fetchvoiptoken" + }, { "label": "registerPushTokenWithBackend()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/usePushTokenRegistration.ts", - "source_location": "L23", - "community": 29, + "source_location": "L73", + "community": 20, "norm_label": "registerpushtokenwithbackend()", "id": "hooks_usepushtokenregistration_registerpushtokenwithbackend" }, @@ -44328,11 +48319,20 @@ "label": "unregisterPushTokenFromBackend()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/usePushTokenRegistration.ts", - "source_location": "L90", - "community": 29, + "source_location": "L177", + "community": 20, "norm_label": "unregisterpushtokenfrombackend()", "id": "hooks_usepushtokenregistration_unregisterpushtokenfrombackend" }, + { + "label": "usePushTokenRegistration()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/usePushTokenRegistration.ts", + "source_location": "L195", + "community": 20, + "norm_label": "usepushtokenregistration()", + "id": "hooks_usepushtokenregistration_usepushtokenregistration" + }, { "label": "useChatRealtime.ts", "file_type": "code", @@ -44360,6 +48360,15 @@ "norm_label": "useroomrealtime()", "id": "hooks_usechatrealtime_useroomrealtime" }, + { + "label": "useLastSeenHeartbeat.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useLastSeenHeartbeat.ts", + "source_location": "L1", + "community": 18, + "norm_label": "uselastseenheartbeat.ts", + "id": "apps_rebreak_native_hooks_uselastseenheartbeat_ts" + }, { "label": "ping()", "file_type": "code", @@ -44378,12 +48387,21 @@ "norm_label": "uselastseenheartbeat()", "id": "hooks_uselastseenheartbeat_uselastseenheartbeat" }, + { + "label": "useCommunityRealtime.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useCommunityRealtime.ts", + "source_location": "L1", + "community": 8, + "norm_label": "usecommunityrealtime.ts", + "id": "apps_rebreak_native_hooks_usecommunityrealtime_ts" + }, { "label": "useCommunityRealtime()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCommunityRealtime.ts", "source_location": "L17", - "community": 53, + "community": 8, "norm_label": "usecommunityrealtime()", "id": "hooks_usecommunityrealtime_usecommunityrealtime" }, @@ -44392,16 +48410,61 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCommunityRealtime.ts", "source_location": "L136", - "community": 53, + "community": 8, "norm_label": "patchpostinallqueries()", "id": "hooks_usecommunityrealtime_patchpostinallqueries" }, + { + "label": "useCallKeepEvents.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", + "source_location": "L1", + "community": 288, + "norm_label": "usecallkeepevents.ts", + "id": "apps_rebreak_native_hooks_usecallkeepevents_ts" + }, + { + "label": "useCallKeepEvents()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", + "source_location": "L30", + "community": 288, + "norm_label": "usecallkeepevents()", + "id": "hooks_usecallkeepevents_usecallkeepevents" + }, + { + "label": "useProtectionState.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L1", + "community": 110, + "norm_label": "useprotectionstate.ts", + "id": "apps_rebreak_native_hooks_useprotectionstate_ts" + }, + { + "label": "isProtectionActive()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L16", + "community": 110, + "norm_label": "isprotectionactive()", + "id": "hooks_useprotectionstate_isprotectionactive" + }, + { + "label": "resolveEventSource()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L20", + "community": 110, + "norm_label": "resolveeventsource()", + "id": "hooks_useprotectionstate_resolveeventsource" + }, { "label": "UseProtectionStateReturn", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", - "source_location": "L16", - "community": 18, + "source_location": "L25", + "community": 110, "norm_label": "useprotectionstatereturn", "id": "hooks_useprotectionstate_useprotectionstatereturn" }, @@ -44409,11 +48472,20 @@ "label": "useProtectionState()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", - "source_location": "L55", - "community": 18, + "source_location": "L64", + "community": 110, "norm_label": "useprotectionstate()", "id": "hooks_useprotectionstate_useprotectionstate" }, + { + "label": "useKeyboardHeight.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useKeyboardHeight.ts", + "source_location": "L1", + "community": 702, + "norm_label": "usekeyboardheight.ts", + "id": "apps_rebreak_native_hooks_usekeyboardheight_ts" + }, { "label": "useKeyboardHeight()", "file_type": "code", @@ -44423,6 +48495,15 @@ "norm_label": "usekeyboardheight()", "id": "hooks_usekeyboardheight_usekeyboardheight" }, + { + "label": "useMailStats.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L1", + "community": 21, + "norm_label": "usemailstats.ts", + "id": "apps_rebreak_native_hooks_usemailstats_ts" + }, { "label": "BlockedByDayEntry", "file_type": "code", @@ -44513,30 +48594,57 @@ "norm_label": "usemailstats()", "id": "hooks_usemailstats_usemailstats" }, + { + "label": "useFollowing.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useFollowing.ts", + "source_location": "L1", + "community": 750, + "norm_label": "usefollowing.ts", + "id": "apps_rebreak_native_hooks_usefollowing_ts" + }, { "label": "useFollowing()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useFollowing.ts", "source_location": "L5", - "community": 18, + "community": 750, "norm_label": "usefollowing()", "id": "hooks_usefollowing_usefollowing" }, + { + "label": "useMailInterval.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useMailInterval.ts", + "source_location": "L1", + "community": 21, + "norm_label": "usemailinterval.ts", + "id": "apps_rebreak_native_hooks_usemailinterval_ts" + }, { "label": "useMailInterval()", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useMailInterval.ts", "source_location": "L8", - "community": 18, + "community": 21, "norm_label": "usemailinterval()", "id": "hooks_usemailinterval_usemailinterval" }, + { + "label": "useCuratedSuggest.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useCuratedSuggest.ts", + "source_location": "L1", + "community": 22, + "norm_label": "usecuratedsuggest.ts", + "id": "apps_rebreak_native_hooks_usecuratedsuggest_ts" + }, { "label": "SuggestResult", "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCuratedSuggest.ts", "source_location": "L4", - "community": 18, + "community": 22, "norm_label": "suggestresult", "id": "hooks_usecuratedsuggest_suggestresult" }, @@ -44545,7 +48653,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCuratedSuggest.ts", "source_location": "L9", - "community": 18, + "community": 22, "norm_label": "suggeststate", "id": "hooks_usecuratedsuggest_suggeststate" }, @@ -44554,10 +48662,46 @@ "file_type": "code", "source_file": "apps/rebreak-native/hooks/useCuratedSuggest.ts", "source_location": "L11", - "community": 18, + "community": 22, "norm_label": "usecuratedsuggest()", "id": "hooks_usecuratedsuggest_usecuratedsuggest" }, + { + "label": "useUserDevicesRealtime.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useUserDevicesRealtime.ts", + "source_location": "L1", + "community": 37, + "norm_label": "useuserdevicesrealtime.ts", + "id": "apps_rebreak_native_hooks_useuserdevicesrealtime_ts" + }, + { + "label": "useUserDevicesRealtime()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useUserDevicesRealtime.ts", + "source_location": "L17", + "community": 37, + "norm_label": "useuserdevicesrealtime()", + "id": "hooks_useuserdevicesrealtime_useuserdevicesrealtime" + }, + { + "label": "useDeviceApprovalRealtime.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", + "source_location": "L1", + "community": 20, + "norm_label": "usedeviceapprovalrealtime.ts", + "id": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts" + }, + { + "label": "useDeviceApprovalRealtime()", + "file_type": "code", + "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", + "source_location": "L17", + "community": 20, + "norm_label": "usedeviceapprovalrealtime()", + "id": "hooks_usedeviceapprovalrealtime_usedeviceapprovalrealtime" + }, { "label": "build.gradle", "file_type": "code", @@ -44585,6 +48729,69 @@ "norm_label": "build.gradle", "id": "apps_rebreak_native_android_app_build_gradle" }, + { + "label": "google-services.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L1", + "community": 610, + "norm_label": "google-services.json", + "id": "apps_rebreak_native_android_app_google_services_json" + }, + { + "label": "project_info", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L2", + "community": 610, + "norm_label": "project_info", + "id": "app_google_services_project_info" + }, + { + "label": "project_number", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L3", + "community": 610, + "norm_label": "project_number", + "id": "app_google_services_project_info_project_number" + }, + { + "label": "project_id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L4", + "community": 610, + "norm_label": "project_id", + "id": "app_google_services_project_info_project_id" + }, + { + "label": "storage_bucket", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L5", + "community": 610, + "norm_label": "storage_bucket", + "id": "app_google_services_project_info_storage_bucket" + }, + { + "label": "client", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L7", + "community": 610, + "norm_label": "client", + "id": "app_google_services_client" + }, + { + "label": "configuration_version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L47", + "community": 610, + "norm_label": "configuration_version", + "id": "app_google_services_configuration_version" + }, { "label": "compile_commands.json", "file_type": "code", @@ -44630,6 +48837,15 @@ "norm_label": "compile_commands.json", "id": "apps_rebreak_native_android_app_cxx_tools_debug_armeabi_v7a_compile_commands_json" }, + { + "label": "compile_commands.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/tools/debug/x86/compile_commands.json", + "source_location": "L1", + "community": 852, + "norm_label": "compile_commands.json", + "id": "apps_rebreak_native_android_app_cxx_tools_debug_x86_compile_commands_json" + }, { "label": "compile_commands.json", "file_type": "code", @@ -44639,6 +48855,15 @@ "norm_label": "compile_commands.json", "id": "apps_rebreak_native_android_app_cxx_tools_debug_arm64_v8a_compile_commands_json" }, + { + "label": "compile_commands.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/tools/debug/x86_64/compile_commands.json", + "source_location": "L1", + "community": 853, + "norm_label": "compile_commands.json", + "id": "apps_rebreak_native_android_app_cxx_tools_debug_x86_64_compile_commands_json" + }, { "label": "compile_commands.json", "file_type": "code", @@ -44648,12 +48873,21 @@ "norm_label": "compile_commands.json", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_compile_commands_json" }, + { + "label": "android_gradle_build_mini.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L1", + "community": 568, + "norm_label": "android_gradle_build_mini.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json" + }, { "label": "buildFiles", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L2", - "community": 11, + "community": 568, "norm_label": "buildfiles", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_buildfiles" }, @@ -44662,7 +48896,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L22", - "community": 11, + "community": 568, "norm_label": "cleancommandscomponents", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_cleancommandscomponents" }, @@ -44671,7 +48905,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L30", - "community": 11, + "community": 568, "norm_label": "buildtargetscommandcomponents", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_buildtargetscommandcomponents" }, @@ -44680,7 +48914,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L36", - "community": 603, + "community": 568, "norm_label": "libraries", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries" }, @@ -44689,97 +48923,412 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L37", - "community": 603, + "community": 1163, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L38", + "community": 1163, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L39", + "community": 1163, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L40", + "community": 1163, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L41", + "community": 1163, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L47", - "community": 603, + "community": 568, "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L48", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L49", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L50", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L52", - "community": 603, + "community": 568, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L53", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L54", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L55", + "community": 568, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L56", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L62", - "community": 603, + "community": 568, "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L63", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L64", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L65", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, { "label": "appmodules::@6890427a1f51a3e7e1df", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L67", - "community": 603, + "community": 568, "norm_label": "appmodules::@6890427a1f51a3e7e1df", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L68", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L69", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L70", + "community": 568, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L71", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L85", - "community": 603, + "community": 568, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L86", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L87", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L88", + "community": 568, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L89", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L95", - "community": 603, + "community": 1164, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L96", + "community": 1164, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L97", + "community": 1164, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L98", + "community": 1164, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L99", + "community": 1164, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L105", - "community": 603, + "community": 568, "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L106", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L107", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L108", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L110", - "community": 603, + "community": 568, "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L111", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L112", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L113", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L115", - "community": 603, + "community": 568, "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L116", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L117", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L118", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, { "label": "core::@1b9a7d546b295b7d0867", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L120", - "community": 603, + "community": 568, "norm_label": "core::@1b9a7d546b295b7d0867", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" }, @@ -44788,7 +49337,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L121", - "community": 603, + "community": 568, "norm_label": "artifactname", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" }, @@ -44797,7 +49346,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L122", - "community": 603, + "community": 568, "norm_label": "abi", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" }, @@ -44806,7 +49355,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L123", - "community": 603, + "community": 568, "norm_label": "output", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" }, @@ -44815,7 +49364,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L124", - "community": 603, + "community": 568, "norm_label": "runtimefiles", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, @@ -44824,64 +49373,289 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L126", - "community": 603, + "community": 568, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L127", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L128", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L129", + "community": 568, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L130", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L136", - "community": 603, + "community": 568, "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L137", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L138", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L139", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L141", - "community": 603, + "community": 568, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L142", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L143", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L144", + "community": 568, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L145", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L151", - "community": 603, + "community": 568, "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L152", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L153", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L154", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L156", - "community": 603, + "community": 568, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L157", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L158", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L159", + "community": 568, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L160", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L166", - "community": 603, + "community": 568, "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L167", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L168", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L169", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L171", - "community": 603, + "community": 568, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L172", + "community": 568, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L173", + "community": 568, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L174", + "community": 568, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L175", + "community": 568, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "label": "prefab_config.json", "file_type": "code", @@ -44918,12 +49692,21 @@ "norm_label": "packages", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_prefab_config_json_armeabi_v7a_prefab_config_packages" }, + { + "label": "android_gradle_build.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L1", + "community": 888, + "norm_label": "android_gradle_build.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json" + }, { "label": "buildFiles", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L2", - "community": 11, + "community": 888, "norm_label": "buildfiles", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_buildfiles" }, @@ -44932,7 +49715,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L22", - "community": 11, + "community": 888, "norm_label": "cleancommandscomponents", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_cleancommandscomponents" }, @@ -44941,7 +49724,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L30", - "community": 11, + "community": 888, "norm_label": "buildtargetscommandcomponents", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_buildtargetscommandcomponents" }, @@ -44950,7 +49733,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L36", - "community": 11, + "community": 888, "norm_label": "libraries", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries" }, @@ -44959,16 +49742,52 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L37", - "community": 11, + "community": 120, "norm_label": "appmodules::@6890427a1f51a3e7e1df", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L38", + "community": 120, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L39", + "community": 120, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L40", + "community": 120, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L41", + "community": 120, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, { "label": "runtimeFiles", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L42", - "community": 11, + "community": 120, "norm_label": "runtimefiles", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, @@ -44981,6 +49800,15 @@ "norm_label": "core::@1b9a7d546b295b7d0867", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L57", + "community": 11, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, { "label": "abi", "file_type": "code", @@ -45004,7 +49832,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L60", - "community": 11, + "community": 120, "norm_label": "output", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, @@ -45013,19 +49841,109 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L62", - "community": 11, + "community": 120, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L63", + "community": 120, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L64", + "community": 120, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L65", + "community": 120, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L66", + "community": 120, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L67", + "community": 120, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, { "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L73", - "community": 11, + "community": 120, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L74", + "community": 120, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L75", + "community": 120, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L76", + "community": 120, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L77", + "community": 120, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L78", + "community": 120, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", @@ -45035,15 +49953,87 @@ "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L85", + "community": 11, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L86", + "community": 11, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L87", + "community": 11, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L89", - "community": 11, + "community": 1097, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L90", + "community": 1097, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L91", + "community": 1097, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L92", + "community": 1097, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L93", + "community": 1097, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L94", + "community": 1097, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", @@ -45053,6 +50043,33 @@ "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L101", + "community": 11, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L102", + "community": 11, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L103", + "community": 11, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", @@ -45062,15 +50079,87 @@ "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L106", + "community": 11, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L107", + "community": 11, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L108", + "community": 11, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L110", - "community": 11, + "community": 120, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L111", + "community": 120, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L112", + "community": 120, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L113", + "community": 120, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L114", + "community": 120, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L115", + "community": 120, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", @@ -45080,6 +50169,33 @@ "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L122", + "community": 11, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L123", + "community": 11, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L124", + "community": 11, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", @@ -45089,6 +50205,33 @@ "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L127", + "community": 11, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L128", + "community": 11, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L129", + "community": 11, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", @@ -45098,15 +50241,87 @@ "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L132", + "community": 11, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L133", + "community": 11, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L134", + "community": 11, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L136", - "community": 11, + "community": 120, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L137", + "community": 120, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L138", + "community": 120, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L139", + "community": 120, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L140", + "community": 120, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L141", + "community": 120, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", @@ -45116,24 +50331,141 @@ "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L148", + "community": 11, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L149", + "community": 11, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L150", + "community": 11, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L152", - "community": 11, + "community": 120, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L153", + "community": 120, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L154", + "community": 120, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L155", + "community": 120, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L156", + "community": 120, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L157", + "community": 120, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L163", - "community": 11, + "community": 1089, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L164", + "community": 1089, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L165", + "community": 1089, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L166", + "community": 1089, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L167", + "community": 1089, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L168", + "community": 1089, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", @@ -45143,21 +50475,93 @@ "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L175", + "community": 11, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L176", + "community": 11, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L177", + "community": 11, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L179", - "community": 11, + "community": 1099, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L180", + "community": 1099, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L181", + "community": 1099, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L182", + "community": 1099, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L183", + "community": 1099, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L184", + "community": 1099, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "label": "toolchains", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L191", - "community": 11, + "community": 888, "norm_label": "toolchains", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains" }, @@ -45170,12 +50574,30 @@ "norm_label": "toolchain", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "label": "cCompilerExecutable", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L193", + "community": 11, + "norm_label": "ccompilerexecutable", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchain_ccompilerexecutable" + }, + { + "label": "cppCompilerExecutable", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L194", + "community": 11, + "norm_label": "cppcompilerexecutable", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchain_cppcompilerexecutable" + }, { "label": "cFileExtensions", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L197", - "community": 11, + "community": 888, "norm_label": "cfileextensions", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_cfileextensions" }, @@ -45184,7 +50606,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", "source_location": "L198", - "community": 11, + "community": 888, "norm_label": "cppfileextensions", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_cppfileextensions" }, @@ -45260,6 +50682,15 @@ "norm_label": "main()", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" }, + { + "label": "directory-RNCSlider_autolinked_build-RelWithDebInfo-9692891af1777e76efd8.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-RelWithDebInfo-9692891af1777e76efd8.json", + "source_location": "L1", + "community": 105, + "norm_label": "directory-rncslider_autolinked_build-relwithdebinfo-9692891af1777e76efd8.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -45333,337 +50764,85 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_paths_source" }, { - "label": "target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", + "label": "cmakeFiles-v1-a8c19e26be3272af68dc.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", "source_location": "L1", - "community": 261, - "norm_label": "target-react_codegen_rncslider-relwithdebinfo-7e027e08701573a20062.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json" + "community": 580, + "norm_label": "cmakefiles-v1-a8c19e26be3272af68dc.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_a8c19e26be3272af68dc_json" }, { - "label": "artifacts", + "label": "inputs", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", "source_location": "L2", - "community": 261, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_artifacts" + "community": 580, + "norm_label": "inputs", + "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_inputs" }, { - "label": "backtrace", + "label": "kind", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L8", - "community": 261, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L9", - "community": 261, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L11", - "community": 261, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L20", - "community": 261, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L25", - "community": 261, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L68", - "community": 261, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L196", - "community": 261, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L197", - "community": 261, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L199", - "community": 261, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_link_commandfragments" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L226", - "community": 261, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L228", - "community": 261, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L231", - "community": 261, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L232", - "community": 261, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_nameondisk" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L334", + "community": 580, + "norm_label": "kind", + "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_kind" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L233", - "community": 261, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L335", + "community": 580, "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_paths" + "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L235", - "community": 261, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L337", + "community": 580, "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_paths_build" + "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L236", - "community": 261, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L338", + "community": 580, "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_paths_source" + "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths_source" }, { - "label": "sourceGroups", + "label": "version", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L238", - "community": 261, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_sourcegroups" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L340", + "community": 580, + "norm_label": "version", + "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version" }, { - "label": "sources", + "label": "major", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L256", - "community": 261, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_sources" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L342", + "community": 580, + "norm_label": "major", + "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version_major" }, { - "label": "type", + "label": "minor", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L313", - "community": 261, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_type" - }, - { - "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L1", - "community": 349, - "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-c15a0ac068e14c62c028.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L2", - "community": 349, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L26", - "community": 349, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L27", - "community": 349, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L29", - "community": 349, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L38", - "community": 349, - "norm_label": "files", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L43", - "community": 349, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L86", - "community": 349, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L201", - "community": 349, - "norm_label": "id", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L202", - "community": 349, - "norm_label": "name", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L203", - "community": 349, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L205", - "community": 349, - "norm_label": "build", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L206", - "community": 349, - "norm_label": "source", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L208", - "community": 349, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L224", - "community": 349, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L269", - "community": 349, - "norm_label": "type", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_type" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L343", + "community": 580, + "norm_label": "minor", + "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version_minor" }, { "label": "directory-rnsvg_autolinked_build-RelWithDebInfo-251c63907f461abe26aa.json", @@ -45747,202 +50926,13 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnsvg_autolinked_build_relwithdebinfo_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_relwithdebinfo_251c63907f461abe26aa_paths_source" }, { - "label": "target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", + "label": "directory-rnworklets_autolinked_build-RelWithDebInfo-c55782449035392fe125.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-RelWithDebInfo-c55782449035392fe125.json", "source_location": "L1", - "community": 203, - "norm_label": "target-react_codegen_rnkc-relwithdebinfo-d0a04fdffb4d7f64e092.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L2", - "community": 203, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L8", - "community": 203, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L9", - "community": 203, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L11", - "community": 203, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L21", - "community": 203, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L26", - "community": 203, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L75", - "community": 203, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L221", - "community": 203, - "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L222", - "community": 203, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L224", - "community": 203, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L250", - "community": 203, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L251", - "community": 203, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L253", - "community": 203, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L256", - "community": 203, - "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L257", - "community": 203, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L258", - "community": 203, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L260", - "community": 203, - "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L261", - "community": 203, - "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L263", - "community": 203, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L287", - "community": 203, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L380", - "community": 203, - "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_type" + "community": 102, + "norm_label": "directory-rnworklets_autolinked_build-relwithdebinfo-c55782449035392fe125.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json" }, { "label": "backtraceGraph", @@ -46016,6 +51006,15 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_paths_source" }, + { + "label": "directory-RNMmkvSpec_autolinked_build-RelWithDebInfo-0a577c6ddcdff9b1cd2d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-RelWithDebInfo-0a577c6ddcdff9b1cd2d.json", + "source_location": "L1", + "community": 98, + "norm_label": "directory-rnmmkvspec_autolinked_build-relwithdebinfo-0a577c6ddcdff9b1cd2d.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -46089,292 +51088,148 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_paths_source" }, { - "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L1", - "community": 347, - "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-2f8d7087022a99b1e968.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_json" + "community": 345, + "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-bb82e9ba1bf9429e5b4f.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L2", - "community": 347, + "community": 345, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_artifacts" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L26", - "community": 347, + "community": 345, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtrace" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L27", - "community": 347, + "community": 345, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtracegraph" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L29", - "community": 347, + "community": 345, "norm_label": "commands", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtracegraph_commands" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L38", - "community": 347, + "community": 345, "norm_label": "files", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtracegraph_files" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L43", - "community": 347, + "community": 345, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtracegraph_nodes" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L86", - "community": 347, + "community": 345, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_compilegroups" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L201", - "community": 347, + "community": 345, "norm_label": "id", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_id" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L202", - "community": 347, + "community": 345, "norm_label": "name", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_name" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L203", - "community": 347, + "community": 345, "norm_label": "paths", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_paths" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L205", - "community": 347, + "community": 345, "norm_label": "build", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_paths_build" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L206", - "community": 347, + "community": 345, "norm_label": "source", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_paths_source" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L208", - "community": 347, + "community": 345, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_sourcegroups" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L224", - "community": 347, + "community": 345, "norm_label": "sources", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_sources" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L269", - "community": 347, + "community": 345, "norm_label": "type", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_type" - }, - { - "label": "target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L1", - "community": 408, - "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-7a9bf42f1d7c37828470.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L2", - "community": 408, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L26", - "community": 408, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L27", - "community": 408, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L29", - "community": 408, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L38", - "community": 408, - "norm_label": "files", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L43", - "community": 408, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L86", - "community": 408, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L201", - "community": 408, - "norm_label": "id", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L202", - "community": 408, - "norm_label": "name", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L203", - "community": 408, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L205", - "community": 408, - "norm_label": "build", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L206", - "community": 408, - "norm_label": "source", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L208", - "community": 408, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L224", - "community": 408, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L269", - "community": 408, - "norm_label": "type", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_type" + "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_type" }, { "label": "target-core-RelWithDebInfo-76d1ae5e13d149560b72.json", @@ -46539,148 +51394,13 @@ "id": "reply_target_core_relwithdebinfo_76d1ae5e13d149560b72_type" }, { - "label": "target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", + "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build-RelWithDebInfo-3c4f354f8e9d2bc9c5a6.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-RelWithDebInfo-3c4f354f8e9d2bc9c5a6.json", "source_location": "L1", - "community": 410, - "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-b58bb68ba540fb44209f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L2", - "community": 410, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L26", - "community": 410, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L27", - "community": 410, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L29", - "community": 410, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L38", - "community": 410, - "norm_label": "files", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L43", - "community": 410, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L86", - "community": 410, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L201", - "community": 410, - "norm_label": "id", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L202", - "community": 410, - "norm_label": "name", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L203", - "community": 410, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L205", - "community": 410, - "norm_label": "build", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L206", - "community": 410, - "norm_label": "source", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L208", - "community": 410, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L224", - "community": 410, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L269", - "community": 410, - "norm_label": "type", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_type" + "community": 108, + "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build-relwithdebinfo-3c4f354f8e9d2bc9c5a6.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json" }, { "label": "backtraceGraph", @@ -46754,78 +51474,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_paths_source" }, - { - "label": "codemodel-v2-7585cfe8cf7d670ad3e4.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L1", - "community": 888, - "norm_label": "codemodel-v2-7585cfe8cf7d670ad3e4.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_7585cfe8cf7d670ad3e4_json" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L508", - "community": 888, - "norm_label": "kind", - "id": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L509", - "community": 888, - "norm_label": "paths", - "id": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L511", - "community": 888, - "norm_label": "build", - "id": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L512", - "community": 888, - "norm_label": "source", - "id": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L514", - "community": 888, - "norm_label": "version", - "id": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L516", - "community": 888, - "norm_label": "major", - "id": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L517", - "community": 888, - "norm_label": "minor", - "id": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_version_minor" - }, { "label": "directory-safeareacontext_autolinked_build-RelWithDebInfo-02cc5c5531c5c58ac73d.json", "file_type": "code", @@ -46907,6 +51555,15 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths_source" }, + { + "label": "directory-rnpicker_autolinked_build-RelWithDebInfo-aa9f04d4f6540efeba1f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-RelWithDebInfo-aa9f04d4f6540efeba1f.json", + "source_location": "L1", + "community": 100, + "norm_label": "directory-rnpicker_autolinked_build-relwithdebinfo-aa9f04d4f6540efeba1f.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -46980,481 +51637,904 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_paths_source" }, { - "label": "cache-v2-a84fed33aa44f65df44e.json", + "label": "target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-a84fed33aa44f65df44e.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L1", - "community": 643, - "norm_label": "cache-v2-a84fed33aa44f65df44e.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_a84fed33aa44f65df44e_json" - }, - { - "label": "entries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-a84fed33aa44f65df44e.json", - "source_location": "L2", - "community": 643, - "norm_label": "entries", - "id": "reply_cache_v2_a84fed33aa44f65df44e_entries" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-a84fed33aa44f65df44e.json", - "source_location": "L1669", - "community": 643, - "norm_label": "kind", - "id": "reply_cache_v2_a84fed33aa44f65df44e_kind" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-a84fed33aa44f65df44e.json", - "source_location": "L1670", - "community": 643, - "norm_label": "version", - "id": "reply_cache_v2_a84fed33aa44f65df44e_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-a84fed33aa44f65df44e.json", - "source_location": "L1672", - "community": 643, - "norm_label": "major", - "id": "reply_cache_v2_a84fed33aa44f65df44e_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-a84fed33aa44f65df44e.json", - "source_location": "L1673", - "community": 643, - "norm_label": "minor", - "id": "reply_cache_v2_a84fed33aa44f65df44e_version_minor" - }, - { - "label": "cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L1", - "community": 574, - "norm_label": "cmakefiles-v1-0d453c0b33b41a8968e1.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_0d453c0b33b41a8968e1_json" - }, - { - "label": "inputs", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L2", - "community": 574, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_inputs" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L989", - "community": 574, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L990", - "community": 574, - "norm_label": "paths", - "id": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L992", - "community": 574, - "norm_label": "build", - "id": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L993", - "community": 574, - "norm_label": "source", - "id": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L995", - "community": 574, - "norm_label": "version", - "id": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L997", - "community": 574, - "norm_label": "major", - "id": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L998", - "community": 574, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_version_minor" - }, - { - "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L1", - "community": 343, - "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-3f0296715882856d0bfd.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_json" + "community": 202, + "norm_label": "target-react_codegen_rnkc-relwithdebinfo-bd189f0fd15b94dd9ec1.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L2", - "community": 343, + "community": 202, "norm_label": "artifacts", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_artifacts" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L26", - "community": 343, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L27", - "community": 343, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L29", - "community": 343, - "norm_label": "commands", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L38", - "community": 343, - "norm_label": "files", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L43", - "community": 343, - "norm_label": "nodes", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L86", - "community": 343, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L201", - "community": 343, - "norm_label": "id", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L202", - "community": 343, - "norm_label": "name", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L203", - "community": 343, - "norm_label": "paths", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L205", - "community": 343, - "norm_label": "build", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L206", - "community": 343, - "norm_label": "source", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L208", - "community": 343, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L224", - "community": 343, - "norm_label": "sources", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L269", - "community": 343, - "norm_label": "type", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_type" - }, - { - "label": "target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L1", - "community": 220, - "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-81030293a49e551a6697.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L2", - "community": 220, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L8", - "community": 220, + "community": 202, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtrace" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L9", - "community": 220, + "community": 202, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtracegraph" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L11", - "community": 220, + "community": 202, "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtracegraph_commands" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L21", - "community": 220, + "community": 202, "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtracegraph_files" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L26", - "community": 220, + "community": 202, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtracegraph_nodes" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L75", - "community": 220, + "community": 202, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_compilegroups" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L224", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L221", + "community": 202, "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_id" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_id" }, { "label": "link", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L225", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L222", + "community": 202, "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link" }, { "label": "commandFragments", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L227", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L224", + "community": 202, "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link_commandfragments" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_commandfragments" }, { "label": "language", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L253", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L250", + "community": 202, "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link_language" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_language" }, { "label": "sysroot", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L254", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L251", + "community": 202, "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link_sysroot" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_sysroot" }, { "label": "path", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L256", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L253", + "community": 202, "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_sysroot_path" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L259", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L256", + "community": 202, "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_name" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_name" }, { "label": "nameOnDisk", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L260", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L257", + "community": 202, "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_nameondisk" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L261", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L258", + "community": 202, "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_paths" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L263", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L260", + "community": 202, "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_paths_build" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L264", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L261", + "community": 202, "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_paths_source" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L266", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L263", + "community": 202, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_sourcegroups" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L293", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L287", + "community": 202, "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_sources" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L404", - "community": 220, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L380", + "community": 202, "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_type" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_type" + }, + { + "label": "index-2026-06-15T11-04-29-0228.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L1", + "community": 158, + "norm_label": "index-2026-06-15t11-04-29-0228.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_index_2026_06_15t11_04_29_0228_json" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L2", + "community": 158, + "norm_label": "cmake", + "id": "reply_index_2026_06_15t11_04_29_0228_cmake" + }, + { + "label": "generator", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L4", + "community": 158, + "norm_label": "generator", + "id": "reply_index_2026_06_15t11_04_29_0228_cmake_generator" + }, + { + "label": "multiConfig", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L6", + "community": 158, + "norm_label": "multiconfig", + "id": "reply_index_2026_06_15t11_04_29_0228_generator_multiconfig" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L7", + "community": 158, + "norm_label": "name", + "id": "reply_index_2026_06_15t11_04_29_0228_generator_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L9", + "community": 158, + "norm_label": "paths", + "id": "reply_index_2026_06_15t11_04_29_0228_cmake_paths" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L11", + "community": 158, + "norm_label": "cmake", + "id": "reply_index_2026_06_15t11_04_29_0228_paths_cmake" + }, + { + "label": "cpack", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L12", + "community": 158, + "norm_label": "cpack", + "id": "reply_index_2026_06_15t11_04_29_0228_paths_cpack" + }, + { + "label": "ctest", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L13", + "community": 158, + "norm_label": "ctest", + "id": "reply_index_2026_06_15t11_04_29_0228_paths_ctest" + }, + { + "label": "root", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L14", + "community": 158, + "norm_label": "root", + "id": "reply_index_2026_06_15t11_04_29_0228_paths_root" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L16", + "community": 158, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_04_29_0228_cmake_version" + }, + { + "label": "isDirty", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L18", + "community": 158, + "norm_label": "isdirty", + "id": "reply_index_2026_06_15t11_04_29_0228_version_isdirty" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L19", + "community": 158, + "norm_label": "major", + "id": "reply_index_2026_06_15t11_04_29_0228_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L20", + "community": 158, + "norm_label": "minor", + "id": "reply_index_2026_06_15t11_04_29_0228_version_minor" + }, + { + "label": "patch", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L21", + "community": 158, + "norm_label": "patch", + "id": "reply_index_2026_06_15t11_04_29_0228_version_patch" + }, + { + "label": "string", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L22", + "community": 158, + "norm_label": "string", + "id": "reply_index_2026_06_15t11_04_29_0228_version_string" + }, + { + "label": "suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L23", + "community": 158, + "norm_label": "suffix", + "id": "reply_index_2026_06_15t11_04_29_0228_version_suffix" + }, + { + "label": "objects", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L26", + "community": 158, + "norm_label": "objects", + "id": "reply_index_2026_06_15t11_04_29_0228_objects" + }, + { + "label": "reply", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L56", + "community": 158, + "norm_label": "reply", + "id": "reply_index_2026_06_15t11_04_29_0228_reply" + }, + { + "label": "client-agp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L58", + "community": 158, + "norm_label": "client-agp", + "id": "reply_index_2026_06_15t11_04_29_0228_reply_client_agp" + }, + { + "label": "cache-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L60", + "community": 158, + "norm_label": "cache-v2", + "id": "reply_index_2026_06_15t11_04_29_0228_client_agp_cache_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L62", + "community": 158, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_04_29_0228_cache_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L63", + "community": 158, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_04_29_0228_cache_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L64", + "community": 158, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_04_29_0228_cache_v2_version" + }, + { + "label": "cmakeFiles-v1", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L70", + "community": 158, + "norm_label": "cmakefiles-v1", + "id": "reply_index_2026_06_15t11_04_29_0228_client_agp_cmakefiles_v1" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L72", + "community": 158, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_04_29_0228_cmakefiles_v1_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L73", + "community": 158, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_04_29_0228_cmakefiles_v1_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L74", + "community": 158, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_04_29_0228_cmakefiles_v1_version" + }, + { + "label": "codemodel-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L80", + "community": 158, + "norm_label": "codemodel-v2", + "id": "reply_index_2026_06_15t11_04_29_0228_client_agp_codemodel_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L82", + "community": 158, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_04_29_0228_codemodel_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L83", + "community": 158, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_04_29_0228_codemodel_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L84", + "community": 158, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_04_29_0228_codemodel_v2_version" + }, + { + "label": "target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L1", + "community": 154, + "norm_label": "target-react-native-mmkv-relwithdebinfo-9c69e7654f71fd767275.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L2", + "community": 154, + "norm_label": "artifacts", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L8", + "community": 154, + "norm_label": "backtrace", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L9", + "community": 154, + "norm_label": "backtracegraph", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L11", + "community": 154, + "norm_label": "commands", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L17", + "community": 154, + "norm_label": "files", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L21", + "community": 154, + "norm_label": "nodes", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L52", + "community": 154, + "norm_label": "compilegroups", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L161", + "community": 154, + "norm_label": "dependencies", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_dependencies" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L172", + "community": 154, + "norm_label": "id", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L173", + "community": 154, + "norm_label": "link", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L175", + "community": 154, + "norm_label": "commandfragments", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L217", + "community": 154, + "norm_label": "language", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L218", + "community": 154, + "norm_label": "sysroot", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L220", + "community": 154, + "norm_label": "path", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L223", + "community": 154, + "norm_label": "name", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L224", + "community": 154, + "norm_label": "nameondisk", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L225", + "community": 154, + "norm_label": "paths", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L227", + "community": 154, + "norm_label": "build", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L228", + "community": 154, + "norm_label": "source", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L230", + "community": 154, + "norm_label": "sourcegroups", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L255", + "community": 154, + "norm_label": "sources", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L318", + "community": 154, + "norm_label": "type", + "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_type" + }, + { + "label": "target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L1", + "community": 170, + "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-41730a4c1fe95cbae3d7.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L2", + "community": 170, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L8", + "community": 170, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L9", + "community": 170, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L11", + "community": 170, + "norm_label": "commands", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L20", + "community": 170, + "norm_label": "files", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L25", + "community": 170, + "norm_label": "nodes", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L74", + "community": 170, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L214", + "community": 170, + "norm_label": "id", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L215", + "community": 170, + "norm_label": "link", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L217", + "community": 170, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L243", + "community": 170, + "norm_label": "language", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L244", + "community": 170, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L246", + "community": 170, + "norm_label": "path", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L249", + "community": 170, + "norm_label": "name", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L250", + "community": 170, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L251", + "community": 170, + "norm_label": "paths", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L253", + "community": 170, + "norm_label": "build", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L254", + "community": 170, + "norm_label": "source", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L256", + "community": 170, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L274", + "community": 170, + "norm_label": "sources", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L331", + "community": 170, + "norm_label": "type", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_type" + }, + { + "label": "directory-rnreanimated_autolinked_build-RelWithDebInfo-f4aeae2d37b82d815393.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-RelWithDebInfo-f4aeae2d37b82d815393.json", + "source_location": "L1", + "community": 101, + "norm_label": "directory-rnreanimated_autolinked_build-relwithdebinfo-f4aeae2d37b82d815393.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json" }, { "label": "backtraceGraph", @@ -47528,798 +52608,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_paths_source" }, - { - "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L1", - "community": 173, - "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-b2b1d831d0fb03d9ca0e.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L2", - "community": 173, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L8", - "community": 173, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L9", - "community": 173, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L11", - "community": 173, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L20", - "community": 173, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L25", - "community": 173, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L74", - "community": 173, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L214", - "community": 173, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L215", - "community": 173, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L217", - "community": 173, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L243", - "community": 173, - "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L244", - "community": 173, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L246", - "community": 173, - "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L249", - "community": 173, - "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L250", - "community": 173, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L251", - "community": 173, - "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L253", - "community": 173, - "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L254", - "community": 173, - "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L256", - "community": 173, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L274", - "community": 173, - "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L331", - "community": 173, - "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_type" - }, - { - "label": "target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L1", - "community": 137, - "norm_label": "target-appmodules-relwithdebinfo-1164b1b125d10f1f8a35.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L2", - "community": 137, - "norm_label": "artifacts", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L8", - "community": 137, - "norm_label": "backtrace", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L9", - "community": 137, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L11", - "community": 137, - "norm_label": "commands", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L21", - "community": 137, - "norm_label": "files", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L34", - "community": 137, - "norm_label": "nodes", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L156", - "community": 137, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L481", - "community": 137, - "norm_label": "dependencies", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L552", - "community": 137, - "norm_label": "id", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L553", - "community": 137, - "norm_label": "link", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L555", - "community": 137, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L637", - "community": 137, - "norm_label": "language", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L638", - "community": 137, - "norm_label": "sysroot", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L640", - "community": 137, - "norm_label": "path", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L643", - "community": 137, - "norm_label": "name", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L644", - "community": 137, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L645", - "community": 137, - "norm_label": "paths", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L647", - "community": 137, - "norm_label": "build", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L648", - "community": 137, - "norm_label": "source", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L650", - "community": 137, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L723", - "community": 137, - "norm_label": "sources", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L1074", - "community": 137, - "norm_label": "type", - "id": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_type" - }, - { - "label": "target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L1", - "community": 231, - "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-62ff8343128d3ca621be.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L2", - "community": 231, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L8", - "community": 231, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L9", - "community": 231, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L11", - "community": 231, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L20", - "community": 231, - "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L25", - "community": 231, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L86", - "community": 231, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L232", - "community": 231, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L233", - "community": 231, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L235", - "community": 231, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L261", - "community": 231, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L262", - "community": 231, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L264", - "community": 231, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L267", - "community": 231, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L268", - "community": 231, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L269", - "community": 231, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L271", - "community": 231, - "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L272", - "community": 231, - "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L274", - "community": 231, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L294", - "community": 231, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L363", - "community": 231, - "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_type" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L2", - "community": 44, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L8", - "community": 44, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L9", - "community": 44, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L11", - "community": 44, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L19", - "community": 44, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L23", - "community": 44, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L60", - "community": 44, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L188", - "community": 44, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L189", - "community": 44, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L191", - "community": 44, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L217", - "community": 44, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L218", - "community": 44, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L220", - "community": 44, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L223", - "community": 44, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L224", - "community": 44, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L225", - "community": 44, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L227", - "community": 44, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L228", - "community": 44, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L230", - "community": 44, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L252", - "community": 44, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L333", - "community": 44, - "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_type" - }, { "label": "directory-rnscreens_autolinked_build-RelWithDebInfo-762995bc626882b56722.json", "file_type": "code", @@ -48401,6 +52689,753 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_paths_source" }, + { + "label": "target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L1", + "community": 409, + "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-9bde2ac1197f26ca02ee.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L2", + "community": 409, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L26", + "community": 409, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L27", + "community": 409, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L29", + "community": 409, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L38", + "community": 409, + "norm_label": "files", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L43", + "community": 409, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L86", + "community": 409, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L201", + "community": 409, + "norm_label": "id", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L202", + "community": 409, + "norm_label": "name", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L203", + "community": 409, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L205", + "community": 409, + "norm_label": "build", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L206", + "community": 409, + "norm_label": "source", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L208", + "community": 409, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L224", + "community": 409, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L269", + "community": 409, + "norm_label": "type", + "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_type" + }, + { + "label": "target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L1", + "community": 210, + "norm_label": "target-react_codegen_rnpicker-relwithdebinfo-035239ade8749d351f27.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L2", + "community": 210, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L8", + "community": 210, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L9", + "community": 210, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L11", + "community": 210, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L19", + "community": 210, + "norm_label": "files", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L23", + "community": 210, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L60", + "community": 210, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L188", + "community": 210, + "norm_label": "id", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L189", + "community": 210, + "norm_label": "link", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L191", + "community": 210, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L217", + "community": 210, + "norm_label": "language", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L218", + "community": 210, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L220", + "community": 210, + "norm_label": "path", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L223", + "community": 210, + "norm_label": "name", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L224", + "community": 210, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L225", + "community": 210, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L227", + "community": 210, + "norm_label": "build", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L228", + "community": 210, + "norm_label": "source", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L230", + "community": 210, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L252", + "community": 210, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L333", + "community": 210, + "norm_label": "type", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_type" + }, + { + "label": "target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L1", + "community": 193, + "norm_label": "target-react_codegen_rncslider-relwithdebinfo-e6e3efe80fe9023afafe.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L2", + "community": 193, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L8", + "community": 193, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L9", + "community": 193, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L11", + "community": 193, + "norm_label": "commands", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L20", + "community": 193, + "norm_label": "files", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L25", + "community": 193, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L68", + "community": 193, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L196", + "community": 193, + "norm_label": "id", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L197", + "community": 193, + "norm_label": "link", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L199", + "community": 193, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L225", + "community": 193, + "norm_label": "language", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L226", + "community": 193, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L228", + "community": 193, + "norm_label": "path", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L231", + "community": 193, + "norm_label": "name", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L232", + "community": 193, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L233", + "community": 193, + "norm_label": "paths", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L235", + "community": 193, + "norm_label": "build", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L236", + "community": 193, + "norm_label": "source", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L238", + "community": 193, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L256", + "community": 193, + "norm_label": "sources", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L313", + "community": 193, + "norm_label": "type", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_type" + }, + { + "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L1", + "community": 172, + "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-a2e90671f19b0eec910e.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L2", + "community": 172, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L8", + "community": 172, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L9", + "community": 172, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L11", + "community": 172, + "norm_label": "commands", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L20", + "community": 172, + "norm_label": "files", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L25", + "community": 172, + "norm_label": "nodes", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L74", + "community": 172, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L214", + "community": 172, + "norm_label": "id", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L215", + "community": 172, + "norm_label": "link", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L217", + "community": 172, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L243", + "community": 172, + "norm_label": "language", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L244", + "community": 172, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L246", + "community": 172, + "norm_label": "path", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L249", + "community": 172, + "norm_label": "name", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L250", + "community": 172, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L251", + "community": 172, + "norm_label": "paths", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L253", + "community": 172, + "norm_label": "build", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L254", + "community": 172, + "norm_label": "source", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L256", + "community": 172, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L274", + "community": 172, + "norm_label": "sources", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L331", + "community": 172, + "norm_label": "type", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_type" + }, + { + "label": "directory-rngesturehandler_codegen_autolinked_build-RelWithDebInfo-c1f265f99af0b94266ef.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-RelWithDebInfo-c1f265f99af0b94266ef.json", + "source_location": "L1", + "community": 97, + "norm_label": "directory-rngesturehandler_codegen_autolinked_build-relwithdebinfo-c1f265f99af0b94266ef.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -48473,6 +53508,204 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_paths_source" }, + { + "label": "cache-v2-8648f163dc6cddd234fb.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", + "source_location": "L1", + "community": 625, + "norm_label": "cache-v2-8648f163dc6cddd234fb.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_8648f163dc6cddd234fb_json" + }, + { + "label": "entries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", + "source_location": "L2", + "community": 625, + "norm_label": "entries", + "id": "reply_cache_v2_8648f163dc6cddd234fb_entries" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", + "source_location": "L1637", + "community": 625, + "norm_label": "kind", + "id": "reply_cache_v2_8648f163dc6cddd234fb_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", + "source_location": "L1638", + "community": 625, + "norm_label": "version", + "id": "reply_cache_v2_8648f163dc6cddd234fb_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", + "source_location": "L1640", + "community": 625, + "norm_label": "major", + "id": "reply_cache_v2_8648f163dc6cddd234fb_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", + "source_location": "L1641", + "community": 625, + "norm_label": "minor", + "id": "reply_cache_v2_8648f163dc6cddd234fb_version_minor" + }, + { + "label": "target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L1", + "community": 351, + "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-2d5f9eb4b8201bc08181.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L2", + "community": 351, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L26", + "community": 351, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L27", + "community": 351, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L29", + "community": 351, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L38", + "community": 351, + "norm_label": "files", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L43", + "community": 351, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L86", + "community": 351, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L201", + "community": 351, + "norm_label": "id", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L202", + "community": 351, + "norm_label": "name", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L203", + "community": 351, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L205", + "community": 351, + "norm_label": "build", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L206", + "community": 351, + "norm_label": "source", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L208", + "community": 351, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L224", + "community": 351, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L269", + "community": 351, + "norm_label": "type", + "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_type" + }, { "label": "directory-.-RelWithDebInfo-f5ebdc15457944623624.json", "file_type": "code", @@ -48635,6 +53868,303 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_paths_source" }, + { + "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L1", + "community": 342, + "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-0f66f383ac1ca074bbef.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L2", + "community": 342, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L26", + "community": 342, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L27", + "community": 342, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L29", + "community": 342, + "norm_label": "commands", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L38", + "community": 342, + "norm_label": "files", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L43", + "community": 342, + "norm_label": "nodes", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L86", + "community": 342, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L201", + "community": 342, + "norm_label": "id", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L202", + "community": 342, + "norm_label": "name", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L203", + "community": 342, + "norm_label": "paths", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L205", + "community": 342, + "norm_label": "build", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L206", + "community": 342, + "norm_label": "source", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L208", + "community": 342, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L224", + "community": 342, + "norm_label": "sources", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L269", + "community": 342, + "norm_label": "type", + "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_type" + }, + { + "label": "target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L1", + "community": 398, + "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-5cbc59763d41df54dfc2.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L2", + "community": 398, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L26", + "community": 398, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L27", + "community": 398, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L29", + "community": 398, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L38", + "community": 398, + "norm_label": "files", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L43", + "community": 398, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L86", + "community": 398, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L201", + "community": 398, + "norm_label": "id", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L202", + "community": 398, + "norm_label": "name", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L203", + "community": 398, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L205", + "community": 398, + "norm_label": "build", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L206", + "community": 398, + "norm_label": "source", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L208", + "community": 398, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L224", + "community": 398, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L269", + "community": 398, + "norm_label": "type", + "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_type" + }, + { + "label": "directory-TrueSheetSpec_autolinked_build-RelWithDebInfo-6f8e1947845121968926.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-RelWithDebInfo-6f8e1947845121968926.json", + "source_location": "L1", + "community": 103, + "norm_label": "directory-truesheetspec_autolinked_build-relwithdebinfo-6f8e1947845121968926.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -48707,6 +54237,15 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths_source" }, + { + "label": "directory-RNMenuViewSpec_autolinked_build-RelWithDebInfo-db93909da8ac45d348e4.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-RelWithDebInfo-db93909da8ac45d348e4.json", + "source_location": "L1", + "community": 107, + "norm_label": "directory-rnmenuviewspec_autolinked_build-relwithdebinfo-db93909da8ac45d348e4.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -48779,294 +54318,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_paths_source" }, - { - "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L1", - "community": 344, - "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-761b4c9035c9fa703dad.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L2", - "community": 344, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L26", - "community": 344, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L27", - "community": 344, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L29", - "community": 344, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L38", - "community": 344, - "norm_label": "files", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L43", - "community": 344, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L86", - "community": 344, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L201", - "community": 344, - "norm_label": "id", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L202", - "community": 344, - "norm_label": "name", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L203", - "community": 344, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L205", - "community": 344, - "norm_label": "build", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L206", - "community": 344, - "norm_label": "source", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L208", - "community": 344, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L224", - "community": 344, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L269", - "community": 344, - "norm_label": "type", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_type" - }, - { - "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L1", - "community": 403, - "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-c40d979839e6f9538be5.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L2", - "community": 403, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L26", - "community": 403, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L27", - "community": 403, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L29", - "community": 403, - "norm_label": "commands", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L38", - "community": 403, - "norm_label": "files", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L43", - "community": 403, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L86", - "community": 403, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L201", - "community": 403, - "norm_label": "id", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L202", - "community": 403, - "norm_label": "name", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L203", - "community": 403, - "norm_label": "paths", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L205", - "community": 403, - "norm_label": "build", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L206", - "community": 403, - "norm_label": "source", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L208", - "community": 403, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L224", - "community": 403, - "norm_label": "sources", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L269", - "community": 403, - "norm_label": "type", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_type" - }, { "label": "directory-lottiereactnative_autolinked_build-RelWithDebInfo-b03690d896f7026a177d.json", "file_type": "code", @@ -49148,6 +54399,438 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_paths_source" }, + { + "label": "target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L1", + "community": 229, + "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-09d8b25328ee8de9b7e2.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L2", + "community": 229, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L8", + "community": 229, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L9", + "community": 229, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L11", + "community": 229, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L20", + "community": 229, + "norm_label": "files", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L25", + "community": 229, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L86", + "community": 229, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L232", + "community": 229, + "norm_label": "id", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L233", + "community": 229, + "norm_label": "link", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L235", + "community": 229, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L261", + "community": 229, + "norm_label": "language", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L262", + "community": 229, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L264", + "community": 229, + "norm_label": "path", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L267", + "community": 229, + "norm_label": "name", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L268", + "community": 229, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L269", + "community": 229, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L271", + "community": 229, + "norm_label": "build", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L272", + "community": 229, + "norm_label": "source", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L274", + "community": 229, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L294", + "community": 229, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L363", + "community": 229, + "norm_label": "type", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_type" + }, + { + "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L1", + "community": 350, + "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-d65a426276bffa7e7673.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L2", + "community": 350, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L26", + "community": 350, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L27", + "community": 350, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L29", + "community": 350, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L38", + "community": 350, + "norm_label": "files", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L43", + "community": 350, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L86", + "community": 350, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L201", + "community": 350, + "norm_label": "id", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L202", + "community": 350, + "norm_label": "name", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L203", + "community": 350, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L205", + "community": 350, + "norm_label": "build", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L206", + "community": 350, + "norm_label": "source", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L208", + "community": 350, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L224", + "community": 350, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L269", + "community": 350, + "norm_label": "type", + "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_type" + }, + { + "label": "codemodel-v2-35ffecf8081b17d4bb74.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L1", + "community": 585, + "norm_label": "codemodel-v2-35ffecf8081b17d4bb74.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_35ffecf8081b17d4bb74_json" + }, + { + "label": "configurations", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L2", + "community": 585, + "norm_label": "configurations", + "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_configurations" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L508", + "community": 585, + "norm_label": "kind", + "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L509", + "community": 585, + "norm_label": "paths", + "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L511", + "community": 585, + "norm_label": "build", + "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L512", + "community": 585, + "norm_label": "source", + "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L514", + "community": 585, + "norm_label": "version", + "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L516", + "community": 585, + "norm_label": "major", + "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L517", + "community": 585, + "norm_label": "minor", + "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_version_minor" + }, + { + "label": "directory-rnasyncstorage_autolinked_build-RelWithDebInfo-ec755c3cd9003338013f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-RelWithDebInfo-ec755c3cd9003338013f.json", + "source_location": "L1", + "community": 104, + "norm_label": "directory-rnasyncstorage_autolinked_build-relwithdebinfo-ec755c3cd9003338013f.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -49221,148 +54904,355 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_paths_source" }, { - "label": "target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L1", - "community": 346, - "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-7c91a223c7b982fc7cb5.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_json" + "community": 402, + "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-1ffa26502c77c9d186df.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L2", - "community": 346, + "community": 402, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_artifacts" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L26", - "community": 346, + "community": 402, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtrace" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L27", - "community": 346, + "community": 402, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtracegraph" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L29", - "community": 346, + "community": 402, "norm_label": "commands", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtracegraph_commands" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L38", - "community": 346, + "community": 402, "norm_label": "files", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtracegraph_files" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L43", - "community": 346, + "community": 402, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtracegraph_nodes" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L86", - "community": 346, + "community": 402, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_compilegroups" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L201", - "community": 346, + "community": 402, "norm_label": "id", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_id" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L202", - "community": 346, + "community": 402, "norm_label": "name", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_name" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L203", - "community": 346, + "community": 402, "norm_label": "paths", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_paths" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L205", - "community": 346, + "community": 402, "norm_label": "build", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_paths_build" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L206", - "community": 346, + "community": 402, "norm_label": "source", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_paths_source" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L208", - "community": 346, + "community": 402, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_sourcegroups" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L224", - "community": 346, + "community": 402, "norm_label": "sources", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_sources" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L269", - "community": 346, + "community": 402, "norm_label": "type", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_type" + "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_type" + }, + { + "label": "target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L1", + "community": 218, + "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-1b18659d65735f6230bf.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L2", + "community": 218, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L8", + "community": 218, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L9", + "community": 218, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L11", + "community": 218, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L21", + "community": 218, + "norm_label": "files", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L26", + "community": 218, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L75", + "community": 218, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L224", + "community": 218, + "norm_label": "id", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L225", + "community": 218, + "norm_label": "link", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L227", + "community": 218, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L253", + "community": 218, + "norm_label": "language", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L254", + "community": 218, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L256", + "community": 218, + "norm_label": "path", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L259", + "community": 218, + "norm_label": "name", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L260", + "community": 218, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L261", + "community": 218, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L263", + "community": 218, + "norm_label": "build", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L264", + "community": 218, + "norm_label": "source", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L266", + "community": 218, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L293", + "community": 218, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L404", + "community": 218, + "norm_label": "type", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_type" + }, + { + "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build.core-RelWithDebInfo-a9f6f6c634eac5fe0705.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-RelWithDebInfo-a9f6f6c634eac5fe0705.json", + "source_location": "L1", + "community": 99, + "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build.core-relwithdebinfo-a9f6f6c634eac5fe0705.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json" }, { "label": "backtraceGraph", @@ -49437,625 +55327,364 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_paths_source" }, { - "label": "target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", + "label": "target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", "source_location": "L1", - "community": 171, - "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-aeb4ff894972fe27a37f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json" + "community": 141, + "norm_label": "target-appmodules-relwithdebinfo-90f1d67427533d3ecf21.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", "source_location": "L2", - "community": 171, + "community": 141, "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_artifacts" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", "source_location": "L8", - "community": 171, + "community": 141, "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtrace" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", "source_location": "L9", - "community": 171, + "community": 141, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtracegraph" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", "source_location": "L11", - "community": 171, + "community": 141, "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtracegraph_commands" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L20", - "community": 171, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L21", + "community": 141, "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtracegraph_files" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L25", - "community": 171, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L34", + "community": 141, "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtracegraph_nodes" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L74", - "community": 171, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L156", + "community": 141, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L214", - "community": 171, - "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L215", - "community": 171, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L217", - "community": 171, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L243", - "community": 171, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L244", - "community": 171, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L246", - "community": 171, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L249", - "community": 171, - "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L250", - "community": 171, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L251", - "community": 171, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L253", - "community": 171, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L254", - "community": 171, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L256", - "community": 171, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L274", - "community": 171, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L331", - "community": 171, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_type" - }, - { - "label": "index-2026-05-31T05-24-36-0391.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L1", - "community": 114, - "norm_label": "index-2026-05-31t05-24-36-0391.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_index_2026_05_31t05_24_36_0391_json" - }, - { - "label": "cmake", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L2", - "community": 114, - "norm_label": "cmake", - "id": "reply_index_2026_05_31t05_24_36_0391_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L4", - "community": 114, - "norm_label": "generator", - "id": "reply_index_2026_05_31t05_24_36_0391_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L6", - "community": 114, - "norm_label": "multiconfig", - "id": "reply_index_2026_05_31t05_24_36_0391_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L7", - "community": 114, - "norm_label": "name", - "id": "reply_index_2026_05_31t05_24_36_0391_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L9", - "community": 114, - "norm_label": "paths", - "id": "reply_index_2026_05_31t05_24_36_0391_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L12", - "community": 114, - "norm_label": "cpack", - "id": "reply_index_2026_05_31t05_24_36_0391_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L13", - "community": 114, - "norm_label": "ctest", - "id": "reply_index_2026_05_31t05_24_36_0391_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L14", - "community": 114, - "norm_label": "root", - "id": "reply_index_2026_05_31t05_24_36_0391_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L16", - "community": 114, - "norm_label": "version", - "id": "reply_index_2026_05_31t05_24_36_0391_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L18", - "community": 114, - "norm_label": "isdirty", - "id": "reply_index_2026_05_31t05_24_36_0391_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L19", - "community": 114, - "norm_label": "major", - "id": "reply_index_2026_05_31t05_24_36_0391_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L20", - "community": 114, - "norm_label": "minor", - "id": "reply_index_2026_05_31t05_24_36_0391_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L21", - "community": 114, - "norm_label": "patch", - "id": "reply_index_2026_05_31t05_24_36_0391_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L22", - "community": 114, - "norm_label": "string", - "id": "reply_index_2026_05_31t05_24_36_0391_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L23", - "community": 114, - "norm_label": "suffix", - "id": "reply_index_2026_05_31t05_24_36_0391_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L26", - "community": 114, - "norm_label": "objects", - "id": "reply_index_2026_05_31t05_24_36_0391_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L56", - "community": 114, - "norm_label": "reply", - "id": "reply_index_2026_05_31t05_24_36_0391_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L58", - "community": 114, - "norm_label": "client-agp", - "id": "reply_index_2026_05_31t05_24_36_0391_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L60", - "community": 114, - "norm_label": "cache-v2", - "id": "reply_index_2026_05_31t05_24_36_0391_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L62", - "community": 114, - "norm_label": "jsonfile", - "id": "reply_index_2026_05_31t05_24_36_0391_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L63", - "community": 114, - "norm_label": "kind", - "id": "reply_index_2026_05_31t05_24_36_0391_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L70", - "community": 114, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_05_31t05_24_36_0391_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L80", - "community": 114, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_05_31t05_24_36_0391_client_agp_codemodel_v2" - }, - { - "label": "target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L1", - "community": 152, - "norm_label": "target-react-native-mmkv-relwithdebinfo-8bab04952cc5f7514030.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L2", - "community": 152, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L8", - "community": 152, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L9", - "community": 152, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L11", - "community": 152, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L17", - "community": 152, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L21", - "community": 152, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L52", - "community": 152, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_compilegroups" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_compilegroups" }, { "label": "dependencies", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L161", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L481", + "community": 141, "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_dependencies" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_dependencies" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L172", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L552", + "community": 141, "norm_label": "id", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_id" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_id" }, { "label": "link", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L173", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L553", + "community": 141, "norm_label": "link", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link" }, { "label": "commandFragments", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L175", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L555", + "community": 141, "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link_commandfragments" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_commandfragments" }, { "label": "language", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L217", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L637", + "community": 141, "norm_label": "language", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link_language" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_language" }, { "label": "sysroot", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L218", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L638", + "community": 141, "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link_sysroot" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_sysroot" }, { "label": "path", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L220", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L640", + "community": 141, "norm_label": "path", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_sysroot_path" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L223", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L643", + "community": 141, "norm_label": "name", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_name" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_name" }, { "label": "nameOnDisk", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L224", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L644", + "community": 141, "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_nameondisk" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L225", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L645", + "community": 141, "norm_label": "paths", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_paths" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L227", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L647", + "community": 141, "norm_label": "build", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_paths_build" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L228", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L648", + "community": 141, "norm_label": "source", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_paths_source" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L230", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L650", + "community": 141, "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_sourcegroups" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L255", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L723", + "community": 141, "norm_label": "sources", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_sources" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L318", - "community": 152, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L1074", + "community": 141, "norm_label": "type", - "id": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_type" + "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_type" + }, + { + "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L1", + "community": 348, + "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-774dcf0d41483311e403.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L2", + "community": 348, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L26", + "community": 348, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L27", + "community": 348, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L29", + "community": 348, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L38", + "community": 348, + "norm_label": "files", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L43", + "community": 348, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L86", + "community": 348, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L201", + "community": 348, + "norm_label": "id", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L202", + "community": 348, + "norm_label": "name", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L203", + "community": 348, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L205", + "community": 348, + "norm_label": "build", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L206", + "community": 348, + "norm_label": "source", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L208", + "community": 348, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L224", + "community": 348, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L269", + "community": 348, + "norm_label": "type", + "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_type" + }, + { + "label": "directory-RNCTabView_autolinked_build-RelWithDebInfo-b7a7f29ab6b37dd5df56.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-RelWithDebInfo-b7a7f29ab6b37dd5df56.json", + "source_location": "L1", + "community": 106, + "norm_label": "directory-rnctabview_autolinked_build-relwithdebinfo-b7a7f29ab6b37dd5df56.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json" }, { "label": "backtraceGraph", @@ -50143,7 +55772,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L1", - "community": 92, + "community": 1039, "norm_label": "android_gradle_build_mini.json", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json" }, @@ -50152,234 +55781,774 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L2", - "community": 92, + "community": 1039, "norm_label": "buildfiles", - "id": "x86_android_gradle_build_mini_buildfiles" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildfiles" }, { "label": "cleanCommandsComponents", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L22", - "community": 92, + "community": 1039, "norm_label": "cleancommandscomponents", - "id": "x86_android_gradle_build_mini_cleancommandscomponents" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_cleancommandscomponents" }, { "label": "buildTargetsCommandComponents", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L30", - "community": 92, + "community": 1039, "norm_label": "buildtargetscommandcomponents", - "id": "x86_android_gradle_build_mini_buildtargetscommandcomponents" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildtargetscommandcomponents" }, { "label": "libraries", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L36", - "community": 92, + "community": 243, "norm_label": "libraries", - "id": "x86_android_gradle_build_mini_libraries" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries" }, { "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L37", - "community": 92, + "community": 1178, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L38", + "community": 1178, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L39", + "community": 1178, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L40", + "community": 1178, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L41", + "community": 1178, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L47", - "community": 92, + "community": 1288, "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L48", + "community": 1288, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L49", + "community": 1288, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L50", + "community": 1288, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L52", - "community": 92, + "community": 1182, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L53", + "community": 1182, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L54", + "community": 1182, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L55", + "community": 1182, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L56", + "community": 1182, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L62", - "community": 92, + "community": 243, "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L63", + "community": 243, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L64", + "community": 243, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L65", + "community": 243, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" }, { "label": "appmodules::@6890427a1f51a3e7e1df", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L67", - "community": 92, + "community": 1176, "norm_label": "appmodules::@6890427a1f51a3e7e1df", - "id": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L68", + "community": 1176, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L69", + "community": 1176, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L70", + "community": 1176, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L71", + "community": 1176, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L85", - "community": 92, + "community": 1183, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L86", + "community": 1183, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L87", + "community": 1183, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L88", + "community": 1183, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L89", + "community": 1183, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L95", - "community": 92, + "community": 1181, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L96", + "community": 1181, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L97", + "community": 1181, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L98", + "community": 1181, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L99", + "community": 1181, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L105", - "community": 92, + "community": 243, "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L106", + "community": 243, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L107", + "community": 243, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L108", + "community": 243, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L110", - "community": 92, + "community": 1278, "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L111", + "community": 1278, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L112", + "community": 1278, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L113", + "community": 1278, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L115", - "community": 92, + "community": 1291, "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L116", + "community": 1291, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L117", + "community": 1291, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L118", + "community": 1291, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" }, { "label": "core::@1b9a7d546b295b7d0867", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L120", - "community": 92, + "community": 1177, "norm_label": "core::@1b9a7d546b295b7d0867", - "id": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" }, { "label": "artifactName", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L121", - "community": 92, + "community": 1177, "norm_label": "artifactname", - "id": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" }, { "label": "abi", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L122", - "community": 92, + "community": 1177, "norm_label": "abi", - "id": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" }, { "label": "output", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L123", - "community": 92, + "community": 1177, "norm_label": "output", - "id": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" }, { "label": "runtimeFiles", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L124", - "community": 92, + "community": 1177, "norm_label": "runtimefiles", - "id": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, { "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L126", - "community": 92, + "community": 1184, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "id": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L127", + "community": 1184, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L128", + "community": 1184, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L129", + "community": 1184, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L130", + "community": 1184, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L136", - "community": 92, + "community": 1289, "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L137", + "community": 1289, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L138", + "community": 1289, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L139", + "community": 1289, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L141", - "community": 92, + "community": 1180, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L142", + "community": 1180, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L143", + "community": 1180, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L144", + "community": 1180, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L145", + "community": 1180, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L151", - "community": 92, + "community": 243, "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L152", + "community": 243, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L153", + "community": 243, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L154", + "community": 243, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L156", - "community": 92, + "community": 1179, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L157", + "community": 1179, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L158", + "community": 1179, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L159", + "community": 1179, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L160", + "community": 1179, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L166", - "community": 92, + "community": 243, "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L167", + "community": 243, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L168", + "community": 243, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L169", + "community": 243, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", "source_location": "L171", - "community": 92, + "community": 243, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L172", + "community": 243, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L173", + "community": 243, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L174", + "community": 243, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L175", + "community": 243, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" }, { "label": "prefab_config.json", @@ -50397,7 +56566,7 @@ "source_location": "L2", "community": 674, "norm_label": "enabled", - "id": "x86_prefab_config_enabled" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_prefab_config_json_x86_prefab_config_enabled" }, { "label": "prefabPath", @@ -50406,7 +56575,7 @@ "source_location": "L3", "community": 674, "norm_label": "prefabpath", - "id": "x86_prefab_config_prefabpath" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_prefab_config_json_x86_prefab_config_prefabpath" }, { "label": "packages", @@ -50415,14 +56584,14 @@ "source_location": "L4", "community": 674, "norm_label": "packages", - "id": "x86_prefab_config_packages" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_prefab_config_json_x86_prefab_config_packages" }, { "label": "android_gradle_build.json", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L1", - "community": 64, + "community": 594, "norm_label": "android_gradle_build.json", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json" }, @@ -50431,288 +56600,909 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L2", - "community": 64, + "community": 594, "norm_label": "buildfiles", - "id": "x86_android_gradle_build_buildfiles" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_buildfiles" }, { "label": "cleanCommandsComponents", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L22", - "community": 64, + "community": 594, "norm_label": "cleancommandscomponents", - "id": "x86_android_gradle_build_cleancommandscomponents" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_cleancommandscomponents" }, { "label": "buildTargetsCommandComponents", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L30", - "community": 64, + "community": 594, "norm_label": "buildtargetscommandcomponents", - "id": "x86_android_gradle_build_buildtargetscommandcomponents" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_buildtargetscommandcomponents" }, { "label": "libraries", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L36", - "community": 64, + "community": 220, "norm_label": "libraries", - "id": "x86_android_gradle_build_libraries" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries" }, { "label": "appmodules::@6890427a1f51a3e7e1df", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L37", - "community": 64, + "community": 1108, "norm_label": "appmodules::@6890427a1f51a3e7e1df", - "id": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L38", + "community": 1108, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L39", + "community": 1108, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L40", + "community": 1108, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L41", + "community": 1108, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" }, { "label": "runtimeFiles", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L42", - "community": 64, + "community": 1108, "norm_label": "runtimefiles", - "id": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, { "label": "core::@1b9a7d546b295b7d0867", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L56", - "community": 64, + "community": 1175, "norm_label": "core::@1b9a7d546b295b7d0867", - "id": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L57", + "community": 1175, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" }, { "label": "abi", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L58", - "community": 64, + "community": 1175, "norm_label": "abi", - "id": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" }, { "label": "artifactName", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L59", - "community": 64, + "community": 1175, "norm_label": "artifactname", - "id": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" }, { "label": "output", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L60", - "community": 64, + "community": 1175, "norm_label": "output", - "id": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, { "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L62", - "community": 64, + "community": 1116, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "id": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L63", + "community": 1116, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L64", + "community": 1116, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L65", + "community": 1116, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L66", + "community": 1116, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L67", + "community": 1116, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" }, { "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L73", - "community": 64, + "community": 1109, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", - "id": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L74", + "community": 1109, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L75", + "community": 1109, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L76", + "community": 1109, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L77", + "community": 1109, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L78", + "community": 1109, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L84", - "community": 64, + "community": 220, "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", - "id": "x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L85", + "community": 220, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L86", + "community": 220, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L87", + "community": 220, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L89", - "community": 64, + "community": 1110, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", - "id": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L90", + "community": 1110, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L91", + "community": 1110, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L92", + "community": 1110, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L93", + "community": 1110, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L94", + "community": 1110, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L100", - "community": 64, + "community": 220, "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", - "id": "x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L101", + "community": 220, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L102", + "community": 220, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L103", + "community": 220, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L105", - "community": 64, + "community": 220, "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", - "id": "x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L106", + "community": 220, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L107", + "community": 220, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L108", + "community": 220, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L110", - "community": 64, + "community": 1115, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", - "id": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L111", + "community": 1115, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L112", + "community": 1115, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L113", + "community": 1115, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L114", + "community": 1115, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L115", + "community": 1115, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L121", - "community": 64, + "community": 1276, "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "id": "x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L122", + "community": 1276, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L123", + "community": 1276, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L124", + "community": 1276, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L126", - "community": 64, + "community": 220, "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "id": "x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L127", + "community": 220, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L128", + "community": 220, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L129", + "community": 220, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L131", - "community": 64, + "community": 1287, "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "id": "x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L132", + "community": 1287, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L133", + "community": 1287, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L134", + "community": 1287, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L136", - "community": 64, + "community": 1111, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "id": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L137", + "community": 1111, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L138", + "community": 1111, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L139", + "community": 1111, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L140", + "community": 1111, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L141", + "community": 1111, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L147", - "community": 64, + "community": 220, "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "id": "x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L148", + "community": 220, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L149", + "community": 220, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L150", + "community": 220, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L152", - "community": 64, + "community": 1112, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "id": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L153", + "community": 1112, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L154", + "community": 1112, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L155", + "community": 1112, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L156", + "community": 1112, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L157", + "community": 1112, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L163", - "community": 64, + "community": 1113, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "id": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L164", + "community": 1113, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L165", + "community": 1113, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L166", + "community": 1113, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L167", + "community": 1113, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L168", + "community": 1113, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L174", - "community": 64, + "community": 220, "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "id": "x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L175", + "community": 220, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L176", + "community": 220, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L177", + "community": 220, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L179", - "community": 64, + "community": 1114, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "id": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L180", + "community": 1114, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L181", + "community": 1114, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L182", + "community": 1114, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L183", + "community": 1114, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L184", + "community": 1114, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" }, { "label": "toolchains", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L191", - "community": 64, + "community": 594, "norm_label": "toolchains", - "id": "x86_android_gradle_build_toolchains" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_toolchains" }, { "label": "toolchain", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L192", - "community": 64, + "community": 594, "norm_label": "toolchain", - "id": "x86_android_gradle_build_toolchains_toolchain" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" }, { "label": "cCompilerExecutable", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L193", - "community": 11, + "community": 594, "norm_label": "ccompilerexecutable", - "id": "x86_android_gradle_build_toolchain_ccompilerexecutable" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_ccompilerexecutable" }, { "label": "cppCompilerExecutable", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L194", - "community": 64, + "community": 594, "norm_label": "cppcompilerexecutable", - "id": "x86_android_gradle_build_toolchain_cppcompilerexecutable" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_cppcompilerexecutable" }, { "label": "cFileExtensions", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L197", - "community": 64, + "community": 594, "norm_label": "cfileextensions", - "id": "x86_android_gradle_build_cfileextensions" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_cfileextensions" }, { "label": "cppFileExtensions", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", "source_location": "L198", - "community": 64, + "community": 594, "norm_label": "cppfileextensions", - "id": "x86_android_gradle_build_cppfileextensions" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_cppfileextensions" }, { "label": "foo.cpp", @@ -50868,202 +57658,148 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_paths_source" }, { - "label": "cache-v2-9b549d88107f9e144618.json", + "label": "target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-9b549d88107f9e144618.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L1", - "community": 626, - "norm_label": "cache-v2-9b549d88107f9e144618.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_9b549d88107f9e144618_json" - }, - { - "label": "entries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-9b549d88107f9e144618.json", - "source_location": "L2", - "community": 626, - "norm_label": "entries", - "id": "reply_cache_v2_9b549d88107f9e144618_entries" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-9b549d88107f9e144618.json", - "source_location": "L1669", - "community": 626, - "norm_label": "kind", - "id": "reply_cache_v2_9b549d88107f9e144618_kind" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-9b549d88107f9e144618.json", - "source_location": "L1670", - "community": 626, - "norm_label": "version", - "id": "reply_cache_v2_9b549d88107f9e144618_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-9b549d88107f9e144618.json", - "source_location": "L1672", - "community": 626, - "norm_label": "major", - "id": "reply_cache_v2_9b549d88107f9e144618_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-9b549d88107f9e144618.json", - "source_location": "L1673", - "community": 626, - "norm_label": "minor", - "id": "reply_cache_v2_9b549d88107f9e144618_version_minor" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "source_location": "L1", - "community": 376, - "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-b55af302461fba65035b.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json" + "community": 381, + "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-d6affdef9367841e3dd4.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L2", - "community": 376, + "community": 381, "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_artifacts" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L26", - "community": 376, + "community": 381, "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtrace" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L27", - "community": 376, + "community": 381, "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L29", - "community": 376, + "community": 381, "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L38", - "community": 376, + "community": 381, "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L43", - "community": 376, + "community": 381, "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L86", - "community": 376, + "community": 381, "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L201", - "community": 376, + "community": 381, "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_id" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L202", - "community": 376, + "community": 381, "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_name" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L203", - "community": 376, + "community": 381, "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L205", - "community": 376, + "community": 381, "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_build" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L206", - "community": 376, + "community": 381, "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_source" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L208", - "community": 376, + "community": 381, "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L224", - "community": 376, + "community": 381, "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sources" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L269", - "community": 376, + "community": 381, "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_type" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" }, { "label": "directory-rnsvg_autolinked_build-RelWithDebInfo-251c63907f461abe26aa.json", @@ -51227,204 +57963,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_paths_source" }, - { - "label": "target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L1", - "community": 191, - "norm_label": "target-react_codegen_rncslider-relwithdebinfo-5593112053988a2b7335.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L2", - "community": 191, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L8", - "community": 191, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L9", - "community": 191, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L11", - "community": 191, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L20", - "community": 191, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L25", - "community": 191, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L68", - "community": 191, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L196", - "community": 191, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L197", - "community": 191, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L199", - "community": 191, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L225", - "community": 191, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L226", - "community": 191, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L228", - "community": 191, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L231", - "community": 191, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L232", - "community": 191, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L233", - "community": 191, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L235", - "community": 191, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L236", - "community": 191, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L238", - "community": 191, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L256", - "community": 191, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L313", - "community": 191, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_type" - }, { "label": "directory-RNMmkvSpec_autolinked_build-RelWithDebInfo-0a577c6ddcdff9b1cd2d.json", "file_type": "code", @@ -51507,202 +58045,553 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_paths_source" }, { - "label": "target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", + "label": "cache-v2-3b89f69fafffe1536555.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", "source_location": "L1", - "community": 178, - "norm_label": "target-react_codegen_rnkc-relwithdebinfo-9f83f062c3fdea7cc04f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json" + "community": 642, + "norm_label": "cache-v2-3b89f69fafffe1536555.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_3b89f69fafffe1536555_json" + }, + { + "label": "entries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", + "source_location": "L2", + "community": 642, + "norm_label": "entries", + "id": "reply_cache_v2_3b89f69fafffe1536555_entries" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", + "source_location": "L1637", + "community": 642, + "norm_label": "kind", + "id": "reply_cache_v2_3b89f69fafffe1536555_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", + "source_location": "L1638", + "community": 642, + "norm_label": "version", + "id": "reply_cache_v2_3b89f69fafffe1536555_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", + "source_location": "L1640", + "community": 642, + "norm_label": "major", + "id": "reply_cache_v2_3b89f69fafffe1536555_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", + "source_location": "L1641", + "community": 642, + "norm_label": "minor", + "id": "reply_cache_v2_3b89f69fafffe1536555_version_minor" + }, + { + "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L1", + "community": 374, + "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-35735e55a58552e74540.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "source_location": "L2", - "community": 178, + "community": 374, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_artifacts" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L8", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L26", + "community": 374, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtrace" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L9", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L27", + "community": 374, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L11", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L29", + "community": 374, "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L21", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L38", + "community": 374, "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L26", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L43", + "community": 374, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L75", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L86", + "community": 374, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L221", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L201", + "community": 374, "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L222", - "community": 178, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L224", - "community": 178, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L250", - "community": 178, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L251", - "community": 178, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L253", - "community": 178, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_sysroot_path" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L256", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L202", + "community": 374, "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L257", - "community": 178, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_nameondisk" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L258", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L203", + "community": 374, "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_paths" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L260", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L205", + "community": 374, "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_paths_build" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L261", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L206", + "community": 374, "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_paths_source" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L263", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L208", + "community": 374, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L287", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L224", + "community": 374, "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_sources" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L380", - "community": 178, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L269", + "community": 374, "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_type" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" + }, + { + "label": "target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L1", + "community": 382, + "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-3a82b655e8d5b3c1b8d3.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L2", + "community": 382, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L26", + "community": 382, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L27", + "community": 382, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L29", + "community": 382, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L38", + "community": 382, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L43", + "community": 382, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L86", + "community": 382, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L201", + "community": 382, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L202", + "community": 382, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L203", + "community": 382, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L205", + "community": 382, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L206", + "community": 382, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L208", + "community": 382, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L224", + "community": 382, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L269", + "community": 382, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" + }, + { + "label": "target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L1", + "community": 142, + "norm_label": "target-appmodules-relwithdebinfo-b884683c9c9cafb1595f.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L2", + "community": 142, + "norm_label": "artifacts", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L8", + "community": 142, + "norm_label": "backtrace", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L9", + "community": 142, + "norm_label": "backtracegraph", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L11", + "community": 142, + "norm_label": "commands", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L21", + "community": 142, + "norm_label": "files", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L34", + "community": 142, + "norm_label": "nodes", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L156", + "community": 142, + "norm_label": "compilegroups", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L481", + "community": 142, + "norm_label": "dependencies", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_dependencies" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L552", + "community": 142, + "norm_label": "id", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L553", + "community": 142, + "norm_label": "link", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L555", + "community": 142, + "norm_label": "commandfragments", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L637", + "community": 142, + "norm_label": "language", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L638", + "community": 142, + "norm_label": "sysroot", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L640", + "community": 142, + "norm_label": "path", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L643", + "community": 142, + "norm_label": "name", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L644", + "community": 142, + "norm_label": "nameondisk", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L645", + "community": 142, + "norm_label": "paths", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L647", + "community": 142, + "norm_label": "build", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L648", + "community": 142, + "norm_label": "source", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L650", + "community": 142, + "norm_label": "sourcegroups", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L723", + "community": 142, + "norm_label": "sources", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L1074", + "community": 142, + "norm_label": "type", + "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_type" }, { "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build-RelWithDebInfo-3c4f354f8e9d2bc9c5a6.json", @@ -51866,6 +58755,150 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths_source" }, + { + "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L1", + "community": 377, + "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-b5a7f3ec52e98de02751.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L2", + "community": 377, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L26", + "community": 377, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L27", + "community": 377, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L29", + "community": 377, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L38", + "community": 377, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L43", + "community": 377, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L86", + "community": 377, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L201", + "community": 377, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L202", + "community": 377, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L203", + "community": 377, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L205", + "community": 377, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L206", + "community": 377, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L208", + "community": 377, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L224", + "community": 377, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L269", + "community": 377, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" + }, { "label": "directory-rnpicker_autolinked_build-RelWithDebInfo-aa9f04d4f6540efeba1f.json", "file_type": "code", @@ -51948,976 +58981,715 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_paths_source" }, { - "label": "target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "label": "cmakeFiles-v1-485a9b36f12a59f57849.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", "source_location": "L1", - "community": 380, - "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-783b787ef2803f4cb98f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json" + "community": 547, + "norm_label": "cmakefiles-v1-485a9b36f12a59f57849.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_485a9b36f12a59f57849_json" }, { - "label": "artifacts", + "label": "inputs", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", "source_location": "L2", - "community": 380, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_artifacts" + "community": 547, + "norm_label": "inputs", + "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_inputs" }, { - "label": "backtrace", + "label": "kind", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L26", - "community": 380, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L27", - "community": 380, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L29", - "community": 380, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L38", - "community": 380, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L43", - "community": 380, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L86", - "community": 380, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L201", - "community": 380, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L202", - "community": 380, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_name" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L334", + "community": 547, + "norm_label": "kind", + "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_kind" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L203", - "community": 380, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L335", + "community": 547, "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths" + "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L205", - "community": 380, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L337", + "community": 547, "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_build" + "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L206", - "community": 380, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L338", + "community": 547, "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_source" + "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths_source" }, { - "label": "sourceGroups", + "label": "version", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L208", - "community": 380, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sourcegroups" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L340", + "community": 547, + "norm_label": "version", + "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_version" }, { - "label": "sources", + "label": "major", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L224", - "community": 380, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sources" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L342", + "community": 547, + "norm_label": "major", + "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_version_major" }, { - "label": "type", + "label": "minor", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L269", - "community": 380, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_type" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L343", + "community": 547, + "norm_label": "minor", + "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_version_minor" }, { - "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", + "label": "index-2026-06-15T11-05-07-0332.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L1", - "community": 369, - "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-a88b0fde8aaa9b96e396.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json" + "community": 161, + "norm_label": "index-2026-06-15t11-05-07-0332.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_06_15t11_05_07_0332_json" }, { - "label": "artifacts", + "label": "cmake", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L2", - "community": 369, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_artifacts" + "community": 161, + "norm_label": "cmake", + "id": "reply_index_2026_06_15t11_05_07_0332_cmake" }, { - "label": "backtrace", + "label": "generator", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L26", - "community": 369, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtrace" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L4", + "community": 161, + "norm_label": "generator", + "id": "reply_index_2026_06_15t11_05_07_0332_cmake_generator" }, { - "label": "backtraceGraph", + "label": "multiConfig", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L27", - "community": 369, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L29", - "community": 369, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L38", - "community": 369, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L43", - "community": 369, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L86", - "community": 369, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L201", - "community": 369, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_id" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L6", + "community": 161, + "norm_label": "multiconfig", + "id": "reply_index_2026_06_15t11_05_07_0332_generator_multiconfig" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L202", - "community": 369, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L7", + "community": 161, "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_name" + "id": "reply_index_2026_06_15t11_05_07_0332_generator_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L203", - "community": 369, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L205", - "community": 369, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L206", - "community": 369, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L208", - "community": 369, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L224", - "community": 369, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L269", - "community": 369, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_type" - }, - { - "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L1", - "community": 371, - "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-c3bf487b1e08b4be60fb.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L2", - "community": 371, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L26", - "community": 371, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L27", - "community": 371, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L29", - "community": 371, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L38", - "community": 371, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L43", - "community": 371, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L86", - "community": 371, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L201", - "community": 371, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L202", - "community": 371, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L203", - "community": 371, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L205", - "community": 371, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L206", - "community": 371, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L208", - "community": 371, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L224", - "community": 371, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L269", - "community": 371, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_type" - }, - { - "label": "target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L1", - "community": 213, - "norm_label": "target-react_codegen_rnpicker-relwithdebinfo-ddb533ebf64436d98857.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L2", - "community": 213, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L8", - "community": 213, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L9", - "community": 213, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtracegraph" + "community": 161, + "norm_label": "paths", + "id": "reply_index_2026_06_15t11_05_07_0332_cmake_paths" }, { - "label": "commands", + "label": "cmake", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L11", - "community": 213, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtracegraph_commands" + "community": 161, + "norm_label": "cmake", + "id": "reply_index_2026_06_15t11_05_07_0332_paths_cmake" }, { - "label": "files", + "label": "cpack", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L12", + "community": 161, + "norm_label": "cpack", + "id": "reply_index_2026_06_15t11_05_07_0332_paths_cpack" + }, + { + "label": "ctest", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L13", + "community": 161, + "norm_label": "ctest", + "id": "reply_index_2026_06_15t11_05_07_0332_paths_ctest" + }, + { + "label": "root", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L14", + "community": 161, + "norm_label": "root", + "id": "reply_index_2026_06_15t11_05_07_0332_paths_root" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L16", + "community": 161, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_05_07_0332_cmake_version" + }, + { + "label": "isDirty", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L18", + "community": 161, + "norm_label": "isdirty", + "id": "reply_index_2026_06_15t11_05_07_0332_version_isdirty" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L19", - "community": 213, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtracegraph_files" + "community": 161, + "norm_label": "major", + "id": "reply_index_2026_06_15t11_05_07_0332_version_major" }, { - "label": "nodes", + "label": "minor", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L23", - "community": 213, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L60", - "community": 213, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L188", - "community": 213, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L189", - "community": 213, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L191", - "community": 213, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L217", - "community": 213, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L218", - "community": 213, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L220", - "community": 213, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L223", - "community": 213, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L224", - "community": 213, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L225", - "community": 213, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L227", - "community": 213, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L228", - "community": 213, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L230", - "community": 213, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L252", - "community": 213, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L333", - "community": 213, - "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_type" - }, - { - "label": "target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L1", - "community": 243, - "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-875df741a9ae80886083.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L2", - "community": 243, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L8", - "community": 243, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L9", - "community": 243, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L11", - "community": 243, - "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L20", - "community": 243, - "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtracegraph_files" + "community": 161, + "norm_label": "minor", + "id": "reply_index_2026_06_15t11_05_07_0332_version_minor" }, { - "label": "nodes", + "label": "patch", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L25", - "community": 243, - "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtracegraph_nodes" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L21", + "community": 161, + "norm_label": "patch", + "id": "reply_index_2026_06_15t11_05_07_0332_version_patch" }, { - "label": "compileGroups", + "label": "string", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L22", + "community": 161, + "norm_label": "string", + "id": "reply_index_2026_06_15t11_05_07_0332_version_string" + }, + { + "label": "suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L23", + "community": 161, + "norm_label": "suffix", + "id": "reply_index_2026_06_15t11_05_07_0332_version_suffix" + }, + { + "label": "objects", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L26", + "community": 161, + "norm_label": "objects", + "id": "reply_index_2026_06_15t11_05_07_0332_objects" + }, + { + "label": "reply", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L56", + "community": 161, + "norm_label": "reply", + "id": "reply_index_2026_06_15t11_05_07_0332_reply" + }, + { + "label": "client-agp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L58", + "community": 161, + "norm_label": "client-agp", + "id": "reply_index_2026_06_15t11_05_07_0332_reply_client_agp" + }, + { + "label": "cache-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L60", + "community": 161, + "norm_label": "cache-v2", + "id": "reply_index_2026_06_15t11_05_07_0332_client_agp_cache_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L62", + "community": 161, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_05_07_0332_cache_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L63", + "community": 161, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_05_07_0332_cache_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L64", + "community": 161, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_05_07_0332_cache_v2_version" + }, + { + "label": "cmakeFiles-v1", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L70", + "community": 161, + "norm_label": "cmakefiles-v1", + "id": "reply_index_2026_06_15t11_05_07_0332_client_agp_cmakefiles_v1" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L72", + "community": 161, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_05_07_0332_cmakefiles_v1_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L73", + "community": 161, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_05_07_0332_cmakefiles_v1_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L74", - "community": 243, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_compilegroups" + "community": 161, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_05_07_0332_cmakefiles_v1_version" }, { - "label": "id", + "label": "codemodel-v2", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L214", - "community": 243, - "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_id" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L80", + "community": 161, + "norm_label": "codemodel-v2", + "id": "reply_index_2026_06_15t11_05_07_0332_client_agp_codemodel_v2" }, { - "label": "link", + "label": "jsonFile", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L215", - "community": 243, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L82", + "community": 161, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_05_07_0332_codemodel_v2_jsonfile" }, { - "label": "commandFragments", + "label": "kind", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L217", - "community": 243, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link_commandfragments" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L83", + "community": 161, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_05_07_0332_codemodel_v2_kind" }, { - "label": "language", + "label": "version", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L243", - "community": 243, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link_language" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L84", + "community": 161, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_05_07_0332_codemodel_v2_version" }, { - "label": "sysroot", + "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L244", - "community": 243, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L246", - "community": 243, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L249", - "community": 243, - "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L250", - "community": 243, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L251", - "community": 243, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L253", - "community": 243, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L254", - "community": 243, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L256", - "community": 243, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L274", - "community": 243, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L331", - "community": 243, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_type" - }, - { - "label": "target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", "source_location": "L1", - "community": 383, - "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-c6dacbf2b66ab4212c3f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json" + "community": 252, + "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-756e8dab5fe64dee57e9.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", "source_location": "L2", - "community": 383, + "community": 252, "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_artifacts" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L26", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L8", + "community": 252, "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtrace" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L27", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L9", + "community": 252, "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L29", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L11", + "community": 252, "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_commands" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L38", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L20", + "community": 252, "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_files" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L43", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L25", + "community": 252, "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_nodes" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L86", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L74", + "community": 252, "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_compilegroups" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L201", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L214", + "community": 252, "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_id" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L215", + "community": 252, + "norm_label": "link", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L217", + "community": 252, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L243", + "community": 252, + "norm_label": "language", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L244", + "community": 252, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L246", + "community": 252, + "norm_label": "path", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L202", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L249", + "community": 252, "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_name" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L250", + "community": 252, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L203", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L251", + "community": 252, "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L205", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L253", + "community": 252, "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_build" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L206", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L254", + "community": 252, "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_source" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L208", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L256", + "community": 252, "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sourcegroups" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L224", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L274", + "community": 252, "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sources" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L269", - "community": 383, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L331", + "community": 252, "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_type" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_type" + }, + { + "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L1", + "community": 378, + "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-624c0f7309976a111d6b.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L2", + "community": 378, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L26", + "community": 378, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L27", + "community": 378, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L29", + "community": 378, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L38", + "community": 378, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L43", + "community": 378, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L86", + "community": 378, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L201", + "community": 378, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L202", + "community": 378, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L203", + "community": 378, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L205", + "community": 378, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L206", + "community": 378, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L208", + "community": 378, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L224", + "community": 378, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L269", + "community": 378, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" }, { "label": "directory-rnreanimated_autolinked_build-RelWithDebInfo-f4aeae2d37b82d815393.json", @@ -53000,6 +59772,546 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_paths_source" }, + { + "label": "target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L1", + "community": 224, + "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-d795b03caa27679dfe6b.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L2", + "community": 224, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L8", + "community": 224, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L9", + "community": 224, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L11", + "community": 224, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L21", + "community": 224, + "norm_label": "files", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L26", + "community": 224, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L75", + "community": 224, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L224", + "community": 224, + "norm_label": "id", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L225", + "community": 224, + "norm_label": "link", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L227", + "community": 224, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L253", + "community": 224, + "norm_label": "language", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L254", + "community": 224, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L256", + "community": 224, + "norm_label": "path", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L259", + "community": 224, + "norm_label": "name", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L260", + "community": 224, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L261", + "community": 224, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L263", + "community": 224, + "norm_label": "build", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L264", + "community": 224, + "norm_label": "source", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L266", + "community": 224, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L293", + "community": 224, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L404", + "community": 224, + "norm_label": "type", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_type" + }, + { + "label": "target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L1", + "community": 373, + "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-3046d2f30176023af473.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L2", + "community": 373, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L26", + "community": 373, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L27", + "community": 373, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L29", + "community": 373, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L38", + "community": 373, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L43", + "community": 373, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L86", + "community": 373, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L201", + "community": 373, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L202", + "community": 373, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L203", + "community": 373, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L205", + "community": 373, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L206", + "community": 373, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L208", + "community": 373, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L224", + "community": 373, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L269", + "community": 373, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" + }, + { + "label": "target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L1", + "community": 188, + "norm_label": "target-react_codegen_rncslider-relwithdebinfo-023b0f15c1737910854b.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L2", + "community": 188, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L8", + "community": 188, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L9", + "community": 188, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L11", + "community": 188, + "norm_label": "commands", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L20", + "community": 188, + "norm_label": "files", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L25", + "community": 188, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L68", + "community": 188, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L196", + "community": 188, + "norm_label": "id", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L197", + "community": 188, + "norm_label": "link", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L199", + "community": 188, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L225", + "community": 188, + "norm_label": "language", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L226", + "community": 188, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L228", + "community": 188, + "norm_label": "path", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L231", + "community": 188, + "norm_label": "name", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L232", + "community": 188, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L233", + "community": 188, + "norm_label": "paths", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L235", + "community": 188, + "norm_label": "build", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L236", + "community": 188, + "norm_label": "source", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L238", + "community": 188, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L256", + "community": 188, + "norm_label": "sources", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L313", + "community": 188, + "norm_label": "type", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_type" + }, { "label": "directory-rnscreens_autolinked_build-RelWithDebInfo-762995bc626882b56722.json", "file_type": "code", @@ -53081,231 +60393,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_paths_source" }, - { - "label": "codemodel-v2-91ae33d65a989137d5c2.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L1", - "community": 592, - "norm_label": "codemodel-v2-91ae33d65a989137d5c2.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_91ae33d65a989137d5c2_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L2", - "community": 592, - "norm_label": "configurations", - "id": "reply_codemodel_v2_91ae33d65a989137d5c2_configurations" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L508", - "community": 592, - "norm_label": "kind", - "id": "reply_codemodel_v2_91ae33d65a989137d5c2_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L509", - "community": 592, - "norm_label": "paths", - "id": "reply_codemodel_v2_91ae33d65a989137d5c2_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L511", - "community": 592, - "norm_label": "build", - "id": "reply_codemodel_v2_91ae33d65a989137d5c2_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L512", - "community": 592, - "norm_label": "source", - "id": "reply_codemodel_v2_91ae33d65a989137d5c2_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L514", - "community": 592, - "norm_label": "version", - "id": "reply_codemodel_v2_91ae33d65a989137d5c2_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L516", - "community": 592, - "norm_label": "major", - "id": "reply_codemodel_v2_91ae33d65a989137d5c2_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L517", - "community": 592, - "norm_label": "minor", - "id": "reply_codemodel_v2_91ae33d65a989137d5c2_version_minor" - }, - { - "label": "target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L1", - "community": 372, - "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-17769a498b63a0b8916a.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L2", - "community": 372, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L26", - "community": 372, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L27", - "community": 372, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L29", - "community": 372, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L38", - "community": 372, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L43", - "community": 372, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L86", - "community": 372, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L201", - "community": 372, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L202", - "community": 372, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L203", - "community": 372, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L205", - "community": 372, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L206", - "community": 372, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L208", - "community": 372, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L224", - "community": 372, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L269", - "community": 372, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_type" - }, { "label": "target-core-RelWithDebInfo-44525bde40684b04103a.json", "file_type": "code", @@ -53468,204 +60555,6 @@ "norm_label": "type", "id": "reply_target_core_relwithdebinfo_44525bde40684b04103a_type" }, - { - "label": "target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L1", - "community": 223, - "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-a3ac91bcf91c4f696c1d.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L2", - "community": 223, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L8", - "community": 223, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L9", - "community": 223, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L11", - "community": 223, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L21", - "community": 223, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L26", - "community": 223, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L75", - "community": 223, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L224", - "community": 223, - "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L225", - "community": 223, - "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L227", - "community": 223, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L253", - "community": 223, - "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L254", - "community": 223, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L256", - "community": 223, - "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L259", - "community": 223, - "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L260", - "community": 223, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L261", - "community": 223, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L263", - "community": 223, - "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L264", - "community": 223, - "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L266", - "community": 223, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L293", - "community": 223, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L404", - "community": 223, - "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_type" - }, { "label": "directory-rngesturehandler_codegen_autolinked_build-RelWithDebInfo-c1f265f99af0b94266ef.json", "file_type": "code", @@ -53910,202 +60799,148 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_paths_source" }, { - "label": "target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", + "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", "source_location": "L1", - "community": 179, - "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-4ccbfe22531435a1d6a0.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json" + "community": 368, + "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-761aa90ee7b8f54ed322.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", "source_location": "L2", - "community": 179, + "community": 368, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_artifacts" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L8", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L26", + "community": 368, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtrace" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L9", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L27", + "community": 368, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L11", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L29", + "community": 368, "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L20", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L38", + "community": 368, "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L25", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L43", + "community": 368, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", "source_location": "L86", - "community": 179, + "community": 368, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L232", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L201", + "community": 368, "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L233", - "community": 179, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L235", - "community": 179, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L261", - "community": 179, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L262", - "community": 179, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L264", - "community": 179, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_sysroot_path" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L267", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L202", + "community": 368, "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L268", - "community": 179, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_nameondisk" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L269", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L203", + "community": 368, "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_paths" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L271", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L205", + "community": 368, "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_paths_build" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L272", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L206", + "community": 368, "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_paths_source" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L274", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L208", + "community": 368, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L294", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L224", + "community": 368, "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_sources" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L363", - "community": 179, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L269", + "community": 368, "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_type" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" }, { "label": "directory-TrueSheetSpec_autolinked_build-RelWithDebInfo-6f8e1947845121968926.json", @@ -54188,357 +61023,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths_source" }, - { - "label": "target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L1", - "community": 150, - "norm_label": "target-react-native-mmkv-relwithdebinfo-547916dc745557765960.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L2", - "community": 150, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L8", - "community": 150, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L9", - "community": 150, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L11", - "community": 150, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L17", - "community": 150, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L21", - "community": 150, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L52", - "community": 150, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L161", - "community": 150, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L172", - "community": 150, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L173", - "community": 150, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L175", - "community": 150, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L217", - "community": 150, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L218", - "community": 150, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L220", - "community": 150, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L223", - "community": 150, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L224", - "community": 150, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L225", - "community": 150, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L227", - "community": 150, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L228", - "community": 150, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L230", - "community": 150, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L255", - "community": 150, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L318", - "community": 150, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_type" - }, - { - "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L1", - "community": 375, - "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-dcd60b6ebf62595102c9.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L2", - "community": 375, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L26", - "community": 375, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L27", - "community": 375, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L29", - "community": 375, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L38", - "community": 375, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L43", - "community": 375, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L86", - "community": 375, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L201", - "community": 375, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L202", - "community": 375, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L203", - "community": 375, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L205", - "community": 375, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L206", - "community": 375, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L208", - "community": 375, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L224", - "community": 375, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L269", - "community": 375, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_type" - }, { "label": "directory-RNMenuViewSpec_autolinked_build-RelWithDebInfo-db93909da8ac45d348e4.json", "file_type": "code", @@ -54702,148 +61186,85 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_paths_source" }, { - "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", + "label": "codemodel-v2-643ed375e1d78f8a2f97.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", "source_location": "L1", - "community": 379, - "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-99f19b3aecb3d8407f1d.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json" + "community": 588, + "norm_label": "codemodel-v2-643ed375e1d78f8a2f97.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_643ed375e1d78f8a2f97_json" }, { - "label": "artifacts", + "label": "configurations", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", "source_location": "L2", - "community": 379, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_artifacts" + "community": 588, + "norm_label": "configurations", + "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_configurations" }, { - "label": "backtrace", + "label": "kind", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L26", - "community": 379, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L27", - "community": 379, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L29", - "community": 379, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L38", - "community": 379, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L43", - "community": 379, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L86", - "community": 379, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L201", - "community": 379, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L202", - "community": 379, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_name" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L508", + "community": 588, + "norm_label": "kind", + "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_kind" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L203", - "community": 379, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L509", + "community": 588, "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths" + "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L205", - "community": 379, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L511", + "community": 588, "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_build" + "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L206", - "community": 379, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L512", + "community": 588, "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_source" + "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths_source" }, { - "label": "sourceGroups", + "label": "version", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L208", - "community": 379, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sourcegroups" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L514", + "community": 588, + "norm_label": "version", + "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_version" }, { - "label": "sources", + "label": "major", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L224", - "community": 379, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sources" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L516", + "community": 588, + "norm_label": "major", + "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_version_major" }, { - "label": "type", + "label": "minor", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L269", - "community": 379, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_type" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L517", + "community": 588, + "norm_label": "minor", + "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_version_minor" }, { "label": "directory-rnasyncstorage_autolinked_build-RelWithDebInfo-ec755c3cd9003338013f.json", @@ -54927,508 +61348,751 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_paths_source" }, { - "label": "cmakeFiles-v1-129c0c5aecc77bb73625.json", + "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", "source_location": "L1", - "community": 575, - "norm_label": "cmakefiles-v1-129c0c5aecc77bb73625.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_129c0c5aecc77bb73625_json" - }, - { - "label": "inputs", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L2", - "community": 575, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_129c0c5aecc77bb73625_inputs" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L989", - "community": 575, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_129c0c5aecc77bb73625_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L990", - "community": 575, - "norm_label": "paths", - "id": "reply_cmakefiles_v1_129c0c5aecc77bb73625_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L992", - "community": 575, - "norm_label": "build", - "id": "reply_cmakefiles_v1_129c0c5aecc77bb73625_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L993", - "community": 575, - "norm_label": "source", - "id": "reply_cmakefiles_v1_129c0c5aecc77bb73625_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L995", - "community": 575, - "norm_label": "version", - "id": "reply_cmakefiles_v1_129c0c5aecc77bb73625_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L997", - "community": 575, - "norm_label": "major", - "id": "reply_cmakefiles_v1_129c0c5aecc77bb73625_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L998", - "community": 575, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_129c0c5aecc77bb73625_version_minor" - }, - { - "label": "target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L1", - "community": 128, - "norm_label": "target-appmodules-relwithdebinfo-9b44cc3228f1b1438d13.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json" + "community": 370, + "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-6873ea71be6dda08995d.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", "source_location": "L2", - "community": 128, + "community": 370, "norm_label": "artifacts", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_artifacts" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L8", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L26", + "community": 370, "norm_label": "backtrace", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtrace" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L9", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L27", + "community": 370, "norm_label": "backtracegraph", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L11", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L29", + "community": 370, "norm_label": "commands", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L21", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L38", + "community": 370, "norm_label": "files", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L34", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L43", + "community": 370, "norm_label": "nodes", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L156", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L86", + "community": 370, "norm_label": "compilegroups", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L481", - "community": 128, - "norm_label": "dependencies", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_dependencies" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L552", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L201", + "community": 370, "norm_label": "id", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L553", - "community": 128, - "norm_label": "link", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L555", - "community": 128, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L637", - "community": 128, - "norm_label": "language", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L638", - "community": 128, - "norm_label": "sysroot", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L640", - "community": 128, - "norm_label": "path", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_sysroot_path" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L643", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L202", + "community": 370, "norm_label": "name", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L644", - "community": 128, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_nameondisk" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L645", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L203", + "community": 370, "norm_label": "paths", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_paths" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L647", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L205", + "community": 370, "norm_label": "build", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_paths_build" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L648", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L206", + "community": 370, "norm_label": "source", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_paths_source" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L650", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L208", + "community": 370, "norm_label": "sourcegroups", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L723", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L224", + "community": 370, "norm_label": "sources", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_sources" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L1074", - "community": 128, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L269", + "community": 370, "norm_label": "type", - "id": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_type" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" }, { - "label": "index-2026-05-31T05-25-45-0198.json", + "label": "target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", "source_location": "L1", - "community": 115, - "norm_label": "index-2026-05-31t05-25-45-0198.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_05_31t05_25_45_0198_json" + "community": 149, + "norm_label": "target-react-native-mmkv-relwithdebinfo-3361afac133c048fc79c.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json" }, { - "label": "cmake", + "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", "source_location": "L2", - "community": 115, - "norm_label": "cmake", - "id": "reply_index_2026_05_31t05_25_45_0198_cmake" + "community": 149, + "norm_label": "artifacts", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_artifacts" }, { - "label": "generator", + "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L4", - "community": 115, - "norm_label": "generator", - "id": "reply_index_2026_05_31t05_25_45_0198_cmake_generator" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L8", + "community": 149, + "norm_label": "backtrace", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtrace" }, { - "label": "multiConfig", + "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L6", - "community": 115, - "norm_label": "multiconfig", - "id": "reply_index_2026_05_31t05_25_45_0198_generator_multiconfig" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L9", + "community": 149, + "norm_label": "backtracegraph", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L11", + "community": 149, + "norm_label": "commands", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L17", + "community": 149, + "norm_label": "files", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L21", + "community": 149, + "norm_label": "nodes", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L52", + "community": 149, + "norm_label": "compilegroups", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L161", + "community": 149, + "norm_label": "dependencies", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_dependencies" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L172", + "community": 149, + "norm_label": "id", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L173", + "community": 149, + "norm_label": "link", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L175", + "community": 149, + "norm_label": "commandfragments", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L217", + "community": 149, + "norm_label": "language", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L218", + "community": 149, + "norm_label": "sysroot", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L220", + "community": 149, + "norm_label": "path", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L7", - "community": 115, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L223", + "community": 149, "norm_label": "name", - "id": "reply_index_2026_05_31t05_25_45_0198_generator_name" + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L224", + "community": 149, + "norm_label": "nameondisk", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L9", - "community": 115, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L225", + "community": 149, "norm_label": "paths", - "id": "reply_index_2026_05_31t05_25_45_0198_cmake_paths" + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths" }, { - "label": "cpack", + "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L12", - "community": 115, - "norm_label": "cpack", - "id": "reply_index_2026_05_31t05_25_45_0198_paths_cpack" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L227", + "community": 149, + "norm_label": "build", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths_build" }, { - "label": "ctest", + "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L13", - "community": 115, - "norm_label": "ctest", - "id": "reply_index_2026_05_31t05_25_45_0198_paths_ctest" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L228", + "community": 149, + "norm_label": "source", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths_source" }, { - "label": "root", + "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L14", - "community": 115, - "norm_label": "root", - "id": "reply_index_2026_05_31t05_25_45_0198_paths_root" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L230", + "community": 149, + "norm_label": "sourcegroups", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sourcegroups" }, { - "label": "version", + "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L16", - "community": 115, - "norm_label": "version", - "id": "reply_index_2026_05_31t05_25_45_0198_cmake_version" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L255", + "community": 149, + "norm_label": "sources", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sources" }, { - "label": "isDirty", + "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L18", - "community": 115, - "norm_label": "isdirty", - "id": "reply_index_2026_05_31t05_25_45_0198_version_isdirty" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L318", + "community": 149, + "norm_label": "type", + "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_type" }, { - "label": "major", + "label": "target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L1", + "community": 211, + "norm_label": "target-react_codegen_rnpicker-relwithdebinfo-0eac2fe2559fd7bb5ea3.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L2", + "community": 211, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L8", + "community": 211, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L9", + "community": 211, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L11", + "community": 211, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", "source_location": "L19", - "community": 115, - "norm_label": "major", - "id": "reply_index_2026_05_31t05_25_45_0198_version_major" + "community": 211, + "norm_label": "files", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_files" }, { - "label": "minor", + "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L20", - "community": 115, - "norm_label": "minor", - "id": "reply_index_2026_05_31t05_25_45_0198_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L21", - "community": 115, - "norm_label": "patch", - "id": "reply_index_2026_05_31t05_25_45_0198_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L22", - "community": 115, - "norm_label": "string", - "id": "reply_index_2026_05_31t05_25_45_0198_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", "source_location": "L23", - "community": 115, - "norm_label": "suffix", - "id": "reply_index_2026_05_31t05_25_45_0198_version_suffix" + "community": 211, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_nodes" }, { - "label": "objects", + "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L26", - "community": 115, - "norm_label": "objects", - "id": "reply_index_2026_05_31t05_25_45_0198_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L56", - "community": 115, - "norm_label": "reply", - "id": "reply_index_2026_05_31t05_25_45_0198_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L58", - "community": 115, - "norm_label": "client-agp", - "id": "reply_index_2026_05_31t05_25_45_0198_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", "source_location": "L60", - "community": 115, - "norm_label": "cache-v2", - "id": "reply_index_2026_05_31t05_25_45_0198_client_agp_cache_v2" + "community": 211, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_compilegroups" }, { - "label": "jsonFile", + "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L62", - "community": 115, - "norm_label": "jsonfile", - "id": "reply_index_2026_05_31t05_25_45_0198_cache_v2_jsonfile" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L188", + "community": 211, + "norm_label": "id", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_id" }, { - "label": "kind", + "label": "link", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L63", - "community": 115, - "norm_label": "kind", - "id": "reply_index_2026_05_31t05_25_45_0198_cache_v2_kind" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L189", + "community": 211, + "norm_label": "link", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link" }, { - "label": "cmakeFiles-v1", + "label": "commandFragments", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L70", - "community": 115, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_05_31t05_25_45_0198_client_agp_cmakefiles_v1" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L191", + "community": 211, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_commandfragments" }, { - "label": "codemodel-v2", + "label": "language", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L80", - "community": 115, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_05_31t05_25_45_0198_client_agp_codemodel_v2" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L217", + "community": 211, + "norm_label": "language", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L218", + "community": 211, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L220", + "community": 211, + "norm_label": "path", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L223", + "community": 211, + "norm_label": "name", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L224", + "community": 211, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L225", + "community": 211, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L227", + "community": 211, + "norm_label": "build", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L228", + "community": 211, + "norm_label": "source", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L230", + "community": 211, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L252", + "community": 211, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L333", + "community": 211, + "norm_label": "type", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_type" + }, + { + "label": "target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L1", + "community": 241, + "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-4a22e4e05af9cc8ccf52.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L2", + "community": 241, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L8", + "community": 241, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L9", + "community": 241, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L11", + "community": 241, + "norm_label": "commands", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L20", + "community": 241, + "norm_label": "files", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L25", + "community": 241, + "norm_label": "nodes", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L74", + "community": 241, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L214", + "community": 241, + "norm_label": "id", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L215", + "community": 241, + "norm_label": "link", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L217", + "community": 241, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L243", + "community": 241, + "norm_label": "language", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L244", + "community": 241, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L246", + "community": 241, + "norm_label": "path", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L249", + "community": 241, + "norm_label": "name", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L250", + "community": 241, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L251", + "community": 241, + "norm_label": "paths", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L253", + "community": 241, + "norm_label": "build", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L254", + "community": 241, + "norm_label": "source", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L256", + "community": 241, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L274", + "community": 241, + "norm_label": "sources", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L331", + "community": 241, + "norm_label": "type", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_type" }, { "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build.core-RelWithDebInfo-a9f6f6c634eac5fe0705.json", @@ -55511,6 +62175,204 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_paths_source" }, + { + "label": "target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L1", + "community": 230, + "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-1cc71c4e2ece3a8f1252.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L2", + "community": 230, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L8", + "community": 230, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L9", + "community": 230, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L11", + "community": 230, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L20", + "community": 230, + "norm_label": "files", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L25", + "community": 230, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L86", + "community": 230, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L232", + "community": 230, + "norm_label": "id", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L233", + "community": 230, + "norm_label": "link", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L235", + "community": 230, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L261", + "community": 230, + "norm_label": "language", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L262", + "community": 230, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L264", + "community": 230, + "norm_label": "path", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L267", + "community": 230, + "norm_label": "name", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L268", + "community": 230, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L269", + "community": 230, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L271", + "community": 230, + "norm_label": "build", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L272", + "community": 230, + "norm_label": "source", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L274", + "community": 230, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L294", + "community": 230, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L363", + "community": 230, + "norm_label": "type", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_type" + }, { "label": "directory-RNCTabView_autolinked_build-RelWithDebInfo-b7a7f29ab6b37dd5df56.json", "file_type": "code", @@ -55593,202 +62455,202 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_paths_source" }, { - "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "label": "target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "source_location": "L1", - "community": 251, - "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-4ed27e87d18d56a07c0f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json" + "community": 200, + "norm_label": "target-react_codegen_rnkc-relwithdebinfo-7a7110ae8252d6b7db7e.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "source_location": "L2", - "community": 251, + "community": 200, "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_artifacts" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "source_location": "L8", - "community": 251, + "community": 200, "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtrace" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "source_location": "L9", - "community": 251, + "community": 200, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtracegraph" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "source_location": "L11", - "community": 251, + "community": 200, "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtracegraph_commands" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L20", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L21", + "community": 200, "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtracegraph_files" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L25", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L26", + "community": 200, "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtracegraph_nodes" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L74", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L75", + "community": 200, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_compilegroups" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L214", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L221", + "community": 200, "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_id" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_id" }, { "label": "link", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L215", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L222", + "community": 200, "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link" }, { "label": "commandFragments", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L217", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L224", + "community": 200, "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link_commandfragments" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_commandfragments" }, { "label": "language", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L243", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L250", + "community": 200, "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link_language" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_language" }, { "label": "sysroot", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L244", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L251", + "community": 200, "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link_sysroot" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_sysroot" }, { "label": "path", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L246", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L253", + "community": 200, "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_sysroot_path" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L249", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L256", + "community": 200, "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_name" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_name" }, { "label": "nameOnDisk", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L250", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L257", + "community": 200, "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_nameondisk" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L251", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L258", + "community": 200, "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_paths" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L253", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L260", + "community": 200, "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_paths_build" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L254", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L261", + "community": 200, "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_paths_source" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L256", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L263", + "community": 200, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_sourcegroups" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L274", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L287", + "community": 200, "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_sources" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L331", - "community": 251, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L380", + "community": 200, "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_type" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_type" }, { "label": "compile_commands.json", @@ -55849,28 +62711,127 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L37", - "community": 90, + "community": 1156, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L38", + "community": 1156, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L39", + "community": 1156, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L40", + "community": 1156, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L41", + "community": 1156, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L47", - "community": 90, + "community": 1269, "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L48", + "community": 1269, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L49", + "community": 1269, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L50", + "community": 1269, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L52", - "community": 90, + "community": 1161, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L53", + "community": 1161, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L54", + "community": 1161, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L55", + "community": 1161, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L56", + "community": 1161, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", @@ -55880,66 +62841,282 @@ "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L63", + "community": 90, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L64", + "community": 90, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L65", + "community": 90, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, { "label": "appmodules::@6890427a1f51a3e7e1df", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L67", - "community": 90, + "community": 1155, "norm_label": "appmodules::@6890427a1f51a3e7e1df", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L68", + "community": 1155, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L69", + "community": 1155, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L70", + "community": 1155, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L71", + "community": 1155, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L85", - "community": 90, + "community": 1162, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L86", + "community": 1162, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L87", + "community": 1162, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L88", + "community": 1162, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L89", + "community": 1162, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L95", - "community": 90, + "community": 1160, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L96", + "community": 1160, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L97", + "community": 1160, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L98", + "community": 1160, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L99", + "community": 1160, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L105", - "community": 90, + "community": 1277, "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L106", + "community": 1277, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L107", + "community": 1277, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L108", + "community": 1277, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L110", - "community": 90, + "community": 1006, "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L111", + "community": 1006, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L112", + "community": 1006, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L113", + "community": 1006, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L115", - "community": 90, + "community": 1006, "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L116", + "community": 1006, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L117", + "community": 1006, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L118", + "community": 1006, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, { "label": "core::@1b9a7d546b295b7d0867", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L120", - "community": 90, + "community": 1095, "norm_label": "core::@1b9a7d546b295b7d0867", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" }, @@ -55948,7 +63125,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L121", - "community": 90, + "community": 1005, "norm_label": "artifactname", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" }, @@ -55957,7 +63134,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L122", - "community": 90, + "community": 1095, "norm_label": "abi", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" }, @@ -55966,7 +63143,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L123", - "community": 90, + "community": 1096, "norm_label": "output", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" }, @@ -55975,7 +63152,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L124", - "community": 90, + "community": 1006, "norm_label": "runtimefiles", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, @@ -55984,64 +63161,289 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L126", - "community": 90, + "community": 1096, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L127", + "community": 1096, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L128", + "community": 1096, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L129", + "community": 1096, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L130", + "community": 1096, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L136", - "community": 90, + "community": 1005, "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L137", + "community": 1005, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L138", + "community": 1005, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L139", + "community": 1005, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L141", - "community": 90, + "community": 1159, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L142", + "community": 1159, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L143", + "community": 1159, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L144", + "community": 1159, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L145", + "community": 1159, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L151", - "community": 90, + "community": 1095, "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L152", + "community": 1095, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L153", + "community": 1095, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L154", + "community": 1095, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L156", - "community": 90, + "community": 1157, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L157", + "community": 1157, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L158", + "community": 1157, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L159", + "community": 1157, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L160", + "community": 1157, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L166", - "community": 90, + "community": 1005, "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L167", + "community": 1005, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L168", + "community": 1005, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L169", + "community": 1005, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", "source_location": "L171", - "community": 90, + "community": 1158, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L172", + "community": 1158, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L173", + "community": 1158, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L174", + "community": 1158, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L175", + "community": 1158, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "label": "prefab_config.json", "file_type": "code", @@ -56119,7 +63521,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L36", - "community": 59, + "community": 1004, "norm_label": "libraries", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries" }, @@ -56128,16 +63530,52 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L37", - "community": 59, + "community": 942, "norm_label": "appmodules::@6890427a1f51a3e7e1df", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L38", + "community": 942, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L39", + "community": 942, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L40", + "community": 942, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L41", + "community": 942, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, { "label": "runtimeFiles", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L42", - "community": 59, + "community": 942, "norm_label": "runtimefiles", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, @@ -56146,16 +63584,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L56", - "community": 59, + "community": 1004, "norm_label": "core::@1b9a7d546b295b7d0867", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L57", + "community": 1004, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, { "label": "abi", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L58", - "community": 59, + "community": 1003, "norm_label": "abi", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_abi" }, @@ -56164,7 +63611,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L59", - "community": 59, + "community": 1037, "norm_label": "artifactname", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" }, @@ -56173,7 +63620,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L60", - "community": 59, + "community": 942, "norm_label": "output", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, @@ -56182,145 +63629,721 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L62", - "community": 59, + "community": 1094, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L63", + "community": 1094, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L64", + "community": 1094, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L65", + "community": 1094, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L66", + "community": 1094, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L67", + "community": 1094, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, { "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L73", - "community": 59, + "community": 1088, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L74", + "community": 1088, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L75", + "community": 1088, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L76", + "community": 1088, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L77", + "community": 1088, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L78", + "community": 1088, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L84", - "community": 59, + "community": 1275, "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L85", + "community": 1275, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L86", + "community": 1275, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L87", + "community": 1275, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L89", - "community": 59, + "community": 942, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L90", + "community": 942, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L91", + "community": 942, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L92", + "community": 942, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L93", + "community": 942, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L94", + "community": 942, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L100", - "community": 59, + "community": 959, "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L101", + "community": 959, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L102", + "community": 959, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L103", + "community": 959, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L105", - "community": 59, + "community": 959, "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L106", + "community": 959, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L107", + "community": 959, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L108", + "community": 959, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L110", - "community": 59, + "community": 1093, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L111", + "community": 1093, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L112", + "community": 1093, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L113", + "community": 1093, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L114", + "community": 1093, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L115", + "community": 1093, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L121", - "community": 59, + "community": 1037, "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L122", + "community": 1037, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L123", + "community": 1037, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L124", + "community": 1037, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L126", - "community": 59, + "community": 1037, "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L127", + "community": 1037, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L128", + "community": 1037, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L129", + "community": 1037, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L131", - "community": 59, + "community": 1003, "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L132", + "community": 1003, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L133", + "community": 1003, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L134", + "community": 1003, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L136", - "community": 59, + "community": 1090, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L137", + "community": 1090, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L138", + "community": 1090, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L139", + "community": 1090, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L140", + "community": 1090, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L141", + "community": 1090, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L147", - "community": 59, + "community": 1004, "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L148", + "community": 1004, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L149", + "community": 1004, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L150", + "community": 1004, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L152", - "community": 59, + "community": 1091, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L153", + "community": 1091, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L154", + "community": 1091, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L155", + "community": 1091, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L156", + "community": 1091, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L157", + "community": 1091, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L163", - "community": 59, + "community": 1092, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L164", + "community": 1092, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L165", + "community": 1092, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L166", + "community": 1092, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L167", + "community": 1092, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L168", + "community": 1092, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L174", - "community": 59, + "community": 1003, "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L175", + "community": 1003, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L176", + "community": 1003, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L177", + "community": 1003, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L179", - "community": 59, + "community": 1082, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L180", + "community": 1082, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L181", + "community": 1082, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L182", + "community": 1082, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L183", + "community": 1082, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L184", + "community": 1082, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "label": "toolchains", "file_type": "code", @@ -56335,7 +64358,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L192", - "community": 59, + "community": 959, "norm_label": "toolchain", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, @@ -56344,7 +64367,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L193", - "community": 59, + "community": 959, "norm_label": "ccompilerexecutable", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchain_ccompilerexecutable" }, @@ -56353,7 +64376,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", "source_location": "L194", - "community": 59, + "community": 959, "norm_label": "cppcompilerexecutable", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchain_cppcompilerexecutable" }, @@ -56529,553 +64552,346 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_paths_source" }, { - "label": "target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", + "label": "target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L1", - "community": 139, - "norm_label": "target-appmodules-relwithdebinfo-3df17d2a4952aca1dbdc.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json" + "community": 339, + "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-d6affdef9367841e3dd4.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L2", - "community": 139, + "community": 339, "norm_label": "artifacts", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_artifacts" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L8", - "community": 139, - "norm_label": "backtrace", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L9", - "community": 139, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L11", - "community": 139, - "norm_label": "commands", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L21", - "community": 139, - "norm_label": "files", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L34", - "community": 139, - "norm_label": "nodes", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L156", - "community": 139, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L481", - "community": 139, - "norm_label": "dependencies", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L552", - "community": 139, - "norm_label": "id", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L553", - "community": 139, - "norm_label": "link", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L555", - "community": 139, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L637", - "community": 139, - "norm_label": "language", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L638", - "community": 139, - "norm_label": "sysroot", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L640", - "community": 139, - "norm_label": "path", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L643", - "community": 139, - "norm_label": "name", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L644", - "community": 139, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L645", - "community": 139, - "norm_label": "paths", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L647", - "community": 139, - "norm_label": "build", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L648", - "community": 139, - "norm_label": "source", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L650", - "community": 139, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L723", - "community": 139, - "norm_label": "sources", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L1074", - "community": 139, - "norm_label": "type", - "id": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_type" - }, - { - "label": "target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L1", - "community": 212, - "norm_label": "target-react_codegen_rnpicker-relwithdebinfo-4bf3b2df000b6d559b68.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L2", - "community": 212, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L8", - "community": 212, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L9", - "community": 212, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L11", - "community": 212, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L19", - "community": 212, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L23", - "community": 212, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L60", - "community": 212, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L188", - "community": 212, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L189", - "community": 212, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L191", - "community": 212, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L217", - "community": 212, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L218", - "community": 212, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L220", - "community": 212, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L223", - "community": 212, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L224", - "community": 212, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L225", - "community": 212, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L227", - "community": 212, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L228", - "community": 212, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L230", - "community": 212, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L252", - "community": 212, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L333", - "community": 212, - "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_type" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "source_location": "L1", - "community": 334, - "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-b55af302461fba65035b.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "source_location": "L2", - "community": 334, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L26", - "community": 334, + "community": 339, "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtrace" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L27", - "community": 334, + "community": 339, "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L29", - "community": 334, + "community": 339, "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L38", - "community": 334, + "community": 339, "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L43", - "community": 334, + "community": 339, "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L86", - "community": 334, + "community": 339, "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L201", - "community": 334, + "community": 339, "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_id" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L202", - "community": 334, + "community": 339, "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_name" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L203", - "community": 334, + "community": 339, "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L205", - "community": 334, + "community": 339, "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_build" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L206", - "community": 334, + "community": 339, "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_source" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L208", - "community": 334, + "community": 339, "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L224", - "community": 334, + "community": 339, "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sources" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L269", - "community": 334, + "community": 339, "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_type" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" + }, + { + "label": "target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L1", + "community": 168, + "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-ae8048632b75365076d6.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L2", + "community": 168, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L8", + "community": 168, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L9", + "community": 168, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L11", + "community": 168, + "norm_label": "commands", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L20", + "community": 168, + "norm_label": "files", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L25", + "community": 168, + "norm_label": "nodes", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L74", + "community": 168, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L214", + "community": 168, + "norm_label": "id", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L215", + "community": 168, + "norm_label": "link", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L217", + "community": 168, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L243", + "community": 168, + "norm_label": "language", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L244", + "community": 168, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L246", + "community": 168, + "norm_label": "path", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L249", + "community": 168, + "norm_label": "name", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L250", + "community": 168, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L251", + "community": 168, + "norm_label": "paths", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L253", + "community": 168, + "norm_label": "build", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L254", + "community": 168, + "norm_label": "source", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L256", + "community": 168, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L274", + "community": 168, + "norm_label": "sources", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L331", + "community": 168, + "norm_label": "type", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_type" }, { "label": "directory-rnsvg_autolinked_build-RelWithDebInfo-251c63907f461abe26aa.json", @@ -57321,400 +65137,292 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_paths_source" }, { - "label": "target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", + "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "source_location": "L1", - "community": 192, - "norm_label": "target-react_codegen_rncslider-relwithdebinfo-702414eceed68e2cf916.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json" + "community": 332, + "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-35735e55a58552e74540.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "source_location": "L2", - "community": 192, + "community": 332, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_artifacts" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L8", - "community": 192, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L9", - "community": 192, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L11", - "community": 192, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L20", - "community": 192, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L25", - "community": 192, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L68", - "community": 192, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L196", - "community": 192, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L197", - "community": 192, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L199", - "community": 192, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L225", - "community": 192, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L226", - "community": 192, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L228", - "community": 192, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L231", - "community": 192, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L232", - "community": 192, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L233", - "community": 192, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L235", - "community": 192, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L236", - "community": 192, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L238", - "community": 192, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L256", - "community": 192, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L313", - "community": 192, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_type" - }, - { - "label": "target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L1", - "community": 166, - "norm_label": "target-react_codegen_rnkc-relwithdebinfo-56c2f06531043a91461b.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L2", - "community": 166, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L8", - "community": 166, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L9", - "community": 166, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L11", - "community": 166, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L21", - "community": 166, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "source_location": "L26", - "community": 166, + "community": 332, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L27", + "community": 332, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L29", + "community": 332, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L38", + "community": 332, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L43", + "community": 332, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L75", - "community": 166, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L86", + "community": 332, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L221", - "community": 166, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L201", + "community": 332, "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L222", - "community": 166, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L224", - "community": 166, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L250", - "community": 166, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L251", - "community": 166, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L253", - "community": 166, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_sysroot_path" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L256", - "community": 166, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L202", + "community": 332, "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L257", - "community": 166, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_nameondisk" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L258", - "community": 166, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L203", + "community": 332, "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_paths" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L260", - "community": 166, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L205", + "community": 332, "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_paths_build" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L261", - "community": 166, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L206", + "community": 332, "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_paths_source" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L263", - "community": 166, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L208", + "community": 332, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L287", - "community": 166, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L224", + "community": 332, "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_sources" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L380", - "community": 166, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L269", + "community": 332, "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_type" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" + }, + { + "label": "target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L1", + "community": 340, + "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-3a82b655e8d5b3c1b8d3.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L2", + "community": 340, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L26", + "community": 340, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L27", + "community": 340, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L29", + "community": 340, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L38", + "community": 340, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L43", + "community": 340, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L86", + "community": 340, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L201", + "community": 340, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L202", + "community": 340, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L203", + "community": 340, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L205", + "community": 340, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L206", + "community": 340, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L208", + "community": 340, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L224", + "community": 340, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L269", + "community": 340, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" }, { "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build-RelWithDebInfo-3c4f354f8e9d2bc9c5a6.json", @@ -57797,6 +65505,573 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_paths_source" }, + { + "label": "index-2026-06-15T11-03-51-0162.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L1", + "community": 152, + "norm_label": "index-2026-06-15t11-03-51-0162.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_06_15t11_03_51_0162_json" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L2", + "community": 152, + "norm_label": "cmake", + "id": "reply_index_2026_06_15t11_03_51_0162_cmake" + }, + { + "label": "generator", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L4", + "community": 152, + "norm_label": "generator", + "id": "reply_index_2026_06_15t11_03_51_0162_cmake_generator" + }, + { + "label": "multiConfig", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L6", + "community": 152, + "norm_label": "multiconfig", + "id": "reply_index_2026_06_15t11_03_51_0162_generator_multiconfig" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L7", + "community": 152, + "norm_label": "name", + "id": "reply_index_2026_06_15t11_03_51_0162_generator_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L9", + "community": 152, + "norm_label": "paths", + "id": "reply_index_2026_06_15t11_03_51_0162_cmake_paths" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L11", + "community": 152, + "norm_label": "cmake", + "id": "reply_index_2026_06_15t11_03_51_0162_paths_cmake" + }, + { + "label": "cpack", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L12", + "community": 152, + "norm_label": "cpack", + "id": "reply_index_2026_06_15t11_03_51_0162_paths_cpack" + }, + { + "label": "ctest", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L13", + "community": 152, + "norm_label": "ctest", + "id": "reply_index_2026_06_15t11_03_51_0162_paths_ctest" + }, + { + "label": "root", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L14", + "community": 152, + "norm_label": "root", + "id": "reply_index_2026_06_15t11_03_51_0162_paths_root" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L16", + "community": 152, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_03_51_0162_cmake_version" + }, + { + "label": "isDirty", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L18", + "community": 152, + "norm_label": "isdirty", + "id": "reply_index_2026_06_15t11_03_51_0162_version_isdirty" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L19", + "community": 152, + "norm_label": "major", + "id": "reply_index_2026_06_15t11_03_51_0162_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L20", + "community": 152, + "norm_label": "minor", + "id": "reply_index_2026_06_15t11_03_51_0162_version_minor" + }, + { + "label": "patch", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L21", + "community": 152, + "norm_label": "patch", + "id": "reply_index_2026_06_15t11_03_51_0162_version_patch" + }, + { + "label": "string", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L22", + "community": 152, + "norm_label": "string", + "id": "reply_index_2026_06_15t11_03_51_0162_version_string" + }, + { + "label": "suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L23", + "community": 152, + "norm_label": "suffix", + "id": "reply_index_2026_06_15t11_03_51_0162_version_suffix" + }, + { + "label": "objects", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L26", + "community": 152, + "norm_label": "objects", + "id": "reply_index_2026_06_15t11_03_51_0162_objects" + }, + { + "label": "reply", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L56", + "community": 152, + "norm_label": "reply", + "id": "reply_index_2026_06_15t11_03_51_0162_reply" + }, + { + "label": "client-agp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L58", + "community": 152, + "norm_label": "client-agp", + "id": "reply_index_2026_06_15t11_03_51_0162_reply_client_agp" + }, + { + "label": "cache-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L60", + "community": 152, + "norm_label": "cache-v2", + "id": "reply_index_2026_06_15t11_03_51_0162_client_agp_cache_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L62", + "community": 152, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_03_51_0162_cache_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L63", + "community": 152, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_03_51_0162_cache_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L64", + "community": 152, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_03_51_0162_cache_v2_version" + }, + { + "label": "cmakeFiles-v1", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L70", + "community": 152, + "norm_label": "cmakefiles-v1", + "id": "reply_index_2026_06_15t11_03_51_0162_client_agp_cmakefiles_v1" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L72", + "community": 152, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_03_51_0162_cmakefiles_v1_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L73", + "community": 152, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_03_51_0162_cmakefiles_v1_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L74", + "community": 152, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_03_51_0162_cmakefiles_v1_version" + }, + { + "label": "codemodel-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L80", + "community": 152, + "norm_label": "codemodel-v2", + "id": "reply_index_2026_06_15t11_03_51_0162_client_agp_codemodel_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L82", + "community": 152, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_03_51_0162_codemodel_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L83", + "community": 152, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_03_51_0162_codemodel_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L84", + "community": 152, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_03_51_0162_codemodel_v2_version" + }, + { + "label": "target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L1", + "community": 214, + "norm_label": "target-react_codegen_rnpicker-relwithdebinfo-e58058e408bce1d698d0.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L2", + "community": 214, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L8", + "community": 214, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L9", + "community": 214, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L11", + "community": 214, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L19", + "community": 214, + "norm_label": "files", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L23", + "community": 214, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L60", + "community": 214, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L188", + "community": 214, + "norm_label": "id", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L189", + "community": 214, + "norm_label": "link", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L191", + "community": 214, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L217", + "community": 214, + "norm_label": "language", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L218", + "community": 214, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L220", + "community": 214, + "norm_label": "path", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L223", + "community": 214, + "norm_label": "name", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L224", + "community": 214, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L225", + "community": 214, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L227", + "community": 214, + "norm_label": "build", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L228", + "community": 214, + "norm_label": "source", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L230", + "community": 214, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L252", + "community": 214, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L333", + "community": 214, + "norm_label": "type", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_type" + }, + { + "label": "codemodel-v2-8e20c562927808c1169a.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L1", + "community": 591, + "norm_label": "codemodel-v2-8e20c562927808c1169a.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_8e20c562927808c1169a_json" + }, + { + "label": "configurations", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L2", + "community": 591, + "norm_label": "configurations", + "id": "reply_codemodel_v2_8e20c562927808c1169a_configurations" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L508", + "community": 591, + "norm_label": "kind", + "id": "reply_codemodel_v2_8e20c562927808c1169a_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L509", + "community": 591, + "norm_label": "paths", + "id": "reply_codemodel_v2_8e20c562927808c1169a_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L511", + "community": 591, + "norm_label": "build", + "id": "reply_codemodel_v2_8e20c562927808c1169a_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L512", + "community": 591, + "norm_label": "source", + "id": "reply_codemodel_v2_8e20c562927808c1169a_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L514", + "community": 591, + "norm_label": "version", + "id": "reply_codemodel_v2_8e20c562927808c1169a_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L516", + "community": 591, + "norm_label": "major", + "id": "reply_codemodel_v2_8e20c562927808c1169a_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L517", + "community": 591, + "norm_label": "minor", + "id": "reply_codemodel_v2_8e20c562927808c1169a_version_minor" + }, { "label": "directory-safeareacontext_autolinked_build-RelWithDebInfo-02cc5c5531c5c58ac73d.json", "file_type": "code", @@ -57878,6 +66153,150 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths_source" }, + { + "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L1", + "community": 335, + "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-b5a7f3ec52e98de02751.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L2", + "community": 335, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L26", + "community": 335, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L27", + "community": 335, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L29", + "community": 335, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L38", + "community": 335, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L43", + "community": 335, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L86", + "community": 335, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L201", + "community": 335, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L202", + "community": 335, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L203", + "community": 335, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L205", + "community": 335, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L206", + "community": 335, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L208", + "community": 335, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L224", + "community": 335, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L269", + "community": 335, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" + }, { "label": "directory-rnpicker_autolinked_build-RelWithDebInfo-aa9f04d4f6540efeba1f.json", "file_type": "code", @@ -57960,292 +66379,202 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_paths_source" }, { - "label": "target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "label": "target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", "source_location": "L1", - "community": 338, - "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-783b787ef2803f4cb98f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json" + "community": 167, + "norm_label": "target-react_codegen_rnkc-relwithdebinfo-99f7a94d24f92bba496f.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", "source_location": "L2", - "community": 338, + "community": 167, "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_artifacts" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L26", - "community": 338, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L8", + "community": 167, "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtrace" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L27", - "community": 338, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L9", + "community": 167, "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L29", - "community": 338, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L11", + "community": 167, "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_commands" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L38", - "community": 338, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L21", + "community": 167, "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_files" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L43", - "community": 338, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L86", - "community": 338, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L201", - "community": 338, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L202", - "community": 338, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L203", - "community": 338, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L205", - "community": 338, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L206", - "community": 338, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L208", - "community": 338, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L224", - "community": 338, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L269", - "community": 338, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_type" - }, - { - "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L1", - "community": 327, - "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-a88b0fde8aaa9b96e396.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L2", - "community": 327, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", "source_location": "L26", - "community": 327, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L27", - "community": 327, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L29", - "community": 327, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L38", - "community": 327, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L43", - "community": 327, + "community": 167, "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_nodes" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L86", - "community": 327, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L75", + "community": 167, "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_compilegroups" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L201", - "community": 327, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L221", + "community": 167, "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_id" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L222", + "community": 167, + "norm_label": "link", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L224", + "community": 167, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L250", + "community": 167, + "norm_label": "language", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L251", + "community": 167, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L253", + "community": 167, + "norm_label": "path", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L202", - "community": 327, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L256", + "community": 167, "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_name" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L257", + "community": 167, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L203", - "community": 327, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L258", + "community": 167, "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L205", - "community": 327, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L260", + "community": 167, "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_build" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L206", - "community": 327, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L261", + "community": 167, "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_source" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L208", - "community": 327, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L263", + "community": 167, "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sourcegroups" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L224", - "community": 327, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L287", + "community": 167, "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sources" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L269", - "community": 327, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L380", + "community": 167, "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_type" + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_type" }, { "label": "target-core-RelWithDebInfo-8cb2abbbb712ee0d6beb.json", @@ -58410,499 +66739,148 @@ "id": "reply_target_core_relwithdebinfo_8cb2abbbb712ee0d6beb_type" }, { - "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L1", - "community": 329, - "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-c3bf487b1e08b4be60fb.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json" + "community": 336, + "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-624c0f7309976a111d6b.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L2", - "community": 329, + "community": 336, "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_artifacts" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L26", - "community": 329, + "community": 336, "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtrace" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L27", - "community": 329, + "community": 336, "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L29", - "community": 329, + "community": 336, "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L38", - "community": 329, + "community": 336, "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L43", - "community": 329, + "community": 336, "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L86", - "community": 329, + "community": 336, "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L201", - "community": 329, + "community": 336, "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_id" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L202", - "community": 329, + "community": 336, "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_name" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L203", - "community": 329, + "community": 336, "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L205", - "community": 329, + "community": 336, "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_build" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L206", - "community": 329, + "community": 336, "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_source" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L208", - "community": 329, + "community": 336, "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L224", - "community": 329, + "community": 336, "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sources" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L269", - "community": 329, + "community": 336, "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_type" - }, - { - "label": "target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L1", - "community": 341, - "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-c6dacbf2b66ab4212c3f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L2", - "community": 341, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L26", - "community": 341, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L27", - "community": 341, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L29", - "community": 341, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L38", - "community": 341, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L43", - "community": 341, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L86", - "community": 341, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L201", - "community": 341, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L202", - "community": 341, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L203", - "community": 341, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L205", - "community": 341, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L206", - "community": 341, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L208", - "community": 341, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L224", - "community": 341, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L269", - "community": 341, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_type" - }, - { - "label": "target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L1", - "community": 127, - "norm_label": "target-react-native-mmkv-relwithdebinfo-3b578fc4e47bae96599d.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L2", - "community": 127, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L8", - "community": 127, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L9", - "community": 127, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L11", - "community": 127, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L17", - "community": 127, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L21", - "community": 127, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L52", - "community": 127, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L161", - "community": 127, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L172", - "community": 127, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L173", - "community": 127, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L175", - "community": 127, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L217", - "community": 127, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L218", - "community": 127, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L220", - "community": 127, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L223", - "community": 127, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L224", - "community": 127, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L225", - "community": 127, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L227", - "community": 127, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L228", - "community": 127, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L230", - "community": 127, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L255", - "community": 127, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L318", - "community": 127, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_type" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" }, { "label": "directory-rnreanimated_autolinked_build-RelWithDebInfo-f4aeae2d37b82d815393.json", @@ -58985,6 +66963,150 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_paths_source" }, + { + "label": "target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L1", + "community": 331, + "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-3046d2f30176023af473.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L2", + "community": 331, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L26", + "community": 331, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L27", + "community": 331, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L29", + "community": 331, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L38", + "community": 331, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L43", + "community": 331, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L86", + "community": 331, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L201", + "community": 331, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L202", + "community": 331, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L203", + "community": 331, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L205", + "community": 331, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L206", + "community": 331, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L208", + "community": 331, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L224", + "community": 331, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L269", + "community": 331, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" + }, { "label": "directory-rnscreens_autolinked_build-RelWithDebInfo-762995bc626882b56722.json", "file_type": "code", @@ -59067,346 +67189,409 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_paths_source" }, { - "label": "target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", + "label": "target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L1", - "community": 330, - "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-17769a498b63a0b8916a.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json" + "community": 234, + "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-f009a631b35a39bb6492.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L2", - "community": 330, + "community": 234, "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_artifacts" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L26", - "community": 330, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L27", - "community": 330, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L29", - "community": 330, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L38", - "community": 330, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L43", - "community": 330, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L86", - "community": 330, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L201", - "community": 330, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L202", - "community": 330, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L203", - "community": 330, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L205", - "community": 330, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L206", - "community": 330, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L208", - "community": 330, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L224", - "community": 330, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L269", - "community": 330, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_type" - }, - { - "label": "target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L1", - "community": 242, - "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-7cae36bd4e781c442a80.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L2", - "community": 242, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L8", - "community": 242, + "community": 234, "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtrace" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L9", - "community": 242, + "community": 234, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtracegraph" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L11", - "community": 242, + "community": 234, "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtracegraph_commands" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L20", - "community": 242, + "community": 234, "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtracegraph_files" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L25", - "community": 242, + "community": 234, "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtracegraph_nodes" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L74", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L86", + "community": 234, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_compilegroups" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L214", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L232", + "community": 234, "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_id" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_id" }, { "label": "link", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L215", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L233", + "community": 234, "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link" }, { "label": "commandFragments", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L217", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L235", + "community": 234, "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link_commandfragments" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_commandfragments" }, { "label": "language", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L243", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L261", + "community": 234, "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link_language" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_language" }, { "label": "sysroot", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L244", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L262", + "community": 234, "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link_sysroot" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_sysroot" }, { "label": "path", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L246", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L264", + "community": 234, "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_sysroot_path" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L249", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L267", + "community": 234, "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_name" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_name" }, { "label": "nameOnDisk", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L250", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L268", + "community": 234, "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_nameondisk" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L251", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L269", + "community": 234, "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_paths" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L253", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L271", + "community": 234, "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_paths_build" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L254", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L272", + "community": 234, "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_paths_source" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L256", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L274", + "community": 234, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_sourcegroups" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L274", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L294", + "community": 234, "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_sources" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L331", - "community": 242, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L363", + "community": 234, "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_type" + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_type" + }, + { + "label": "target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L1", + "community": 140, + "norm_label": "target-appmodules-relwithdebinfo-6b37fa57db06e85fbe7b.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L2", + "community": 140, + "norm_label": "artifacts", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L8", + "community": 140, + "norm_label": "backtrace", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L9", + "community": 140, + "norm_label": "backtracegraph", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L11", + "community": 140, + "norm_label": "commands", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L21", + "community": 140, + "norm_label": "files", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L34", + "community": 140, + "norm_label": "nodes", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L156", + "community": 140, + "norm_label": "compilegroups", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L481", + "community": 140, + "norm_label": "dependencies", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_dependencies" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L552", + "community": 140, + "norm_label": "id", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L553", + "community": 140, + "norm_label": "link", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L555", + "community": 140, + "norm_label": "commandfragments", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L637", + "community": 140, + "norm_label": "language", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L638", + "community": 140, + "norm_label": "sysroot", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L640", + "community": 140, + "norm_label": "path", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L643", + "community": 140, + "norm_label": "name", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L644", + "community": 140, + "norm_label": "nameondisk", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L645", + "community": 140, + "norm_label": "paths", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L647", + "community": 140, + "norm_label": "build", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L648", + "community": 140, + "norm_label": "source", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L650", + "community": 140, + "norm_label": "sourcegroups", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L723", + "community": 140, + "norm_label": "sources", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L1074", + "community": 140, + "norm_label": "type", + "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_type" }, { "label": "directory-rngesturehandler_codegen_autolinked_build-RelWithDebInfo-c1f265f99af0b94266ef.json", @@ -59570,204 +67755,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_relwithdebinfo_f5ebdc15457944623624_json_reply_directory_relwithdebinfo_f5ebdc15457944623624_paths_source" }, - { - "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L1", - "community": 169, - "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-094978a583d2e46bfa16.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L2", - "community": 169, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L8", - "community": 169, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L9", - "community": 169, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L11", - "community": 169, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L20", - "community": 169, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L25", - "community": 169, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L74", - "community": 169, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L214", - "community": 169, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L215", - "community": 169, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L217", - "community": 169, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L243", - "community": 169, - "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L244", - "community": 169, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L246", - "community": 169, - "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L249", - "community": 169, - "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L250", - "community": 169, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L251", - "community": 169, - "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L253", - "community": 169, - "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L254", - "community": 169, - "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L256", - "community": 169, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L274", - "community": 169, - "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L331", - "community": 169, - "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_type" - }, { "label": "directory-RNKC_autolinked_build-RelWithDebInfo-9b81a6f2831b76917207.json", "file_type": "code", @@ -59849,6 +67836,348 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_paths_source" }, + { + "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L1", + "community": 253, + "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-e419e9f4a27f44ec1113.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L2", + "community": 253, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L8", + "community": 253, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L9", + "community": 253, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L11", + "community": 253, + "norm_label": "commands", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L20", + "community": 253, + "norm_label": "files", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L25", + "community": 253, + "norm_label": "nodes", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L74", + "community": 253, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L214", + "community": 253, + "norm_label": "id", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L215", + "community": 253, + "norm_label": "link", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L217", + "community": 253, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L243", + "community": 253, + "norm_label": "language", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L244", + "community": 253, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L246", + "community": 253, + "norm_label": "path", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L249", + "community": 253, + "norm_label": "name", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L250", + "community": 253, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L251", + "community": 253, + "norm_label": "paths", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L253", + "community": 253, + "norm_label": "build", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L254", + "community": 253, + "norm_label": "source", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L256", + "community": 253, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L274", + "community": 253, + "norm_label": "sources", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L331", + "community": 253, + "norm_label": "type", + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_type" + }, + { + "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L1", + "community": 326, + "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-761aa90ee7b8f54ed322.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L2", + "community": 326, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L26", + "community": 326, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L27", + "community": 326, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L29", + "community": 326, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L38", + "community": 326, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L43", + "community": 326, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L86", + "community": 326, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L201", + "community": 326, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L202", + "community": 326, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L203", + "community": 326, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L205", + "community": 326, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L206", + "community": 326, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L208", + "community": 326, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L224", + "community": 326, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L269", + "community": 326, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" + }, { "label": "directory-TrueSheetSpec_autolinked_build-RelWithDebInfo-6f8e1947845121968926.json", "file_type": "code", @@ -59930,150 +68259,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths_source" }, - { - "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L1", - "community": 333, - "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-dcd60b6ebf62595102c9.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L2", - "community": 333, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L26", - "community": 333, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L27", - "community": 333, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L29", - "community": 333, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L38", - "community": 333, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L43", - "community": 333, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L86", - "community": 333, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L201", - "community": 333, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L202", - "community": 333, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L203", - "community": 333, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L205", - "community": 333, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L206", - "community": 333, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L208", - "community": 333, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L224", - "community": 333, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L269", - "community": 333, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_type" - }, { "label": "directory-RNMenuViewSpec_autolinked_build-RelWithDebInfo-db93909da8ac45d348e4.json", "file_type": "code", @@ -60237,544 +68422,346 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_paths_source" }, { - "label": "target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", + "label": "cache-v2-f812530a1b3e79fa59d4.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", "source_location": "L1", - "community": 232, - "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-6fbb9af1da0a75e2a5e9.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json" + "community": 646, + "norm_label": "cache-v2-f812530a1b3e79fa59d4.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_f812530a1b3e79fa59d4_json" + }, + { + "label": "entries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", + "source_location": "L2", + "community": 646, + "norm_label": "entries", + "id": "reply_cache_v2_f812530a1b3e79fa59d4_entries" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", + "source_location": "L1637", + "community": 646, + "norm_label": "kind", + "id": "reply_cache_v2_f812530a1b3e79fa59d4_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", + "source_location": "L1638", + "community": 646, + "norm_label": "version", + "id": "reply_cache_v2_f812530a1b3e79fa59d4_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", + "source_location": "L1640", + "community": 646, + "norm_label": "major", + "id": "reply_cache_v2_f812530a1b3e79fa59d4_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", + "source_location": "L1641", + "community": 646, + "norm_label": "minor", + "id": "reply_cache_v2_f812530a1b3e79fa59d4_version_minor" + }, + { + "label": "target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L1", + "community": 155, + "norm_label": "target-react-native-mmkv-relwithdebinfo-ffa13dadb04eb843fbd0.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L2", - "community": 232, + "community": 155, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_artifacts" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L8", - "community": 232, + "community": 155, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtrace" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L9", - "community": 232, + "community": 155, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtracegraph" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L11", - "community": 232, + "community": 155, "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtracegraph_commands" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L20", - "community": 232, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L17", + "community": 155, "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtracegraph_files" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L25", - "community": 232, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L86", - "community": 232, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L232", - "community": 232, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L233", - "community": 232, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L235", - "community": 232, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L261", - "community": 232, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L262", - "community": 232, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L264", - "community": 232, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L267", - "community": 232, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L268", - "community": 232, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L269", - "community": 232, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L271", - "community": 232, - "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L272", - "community": 232, - "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L274", - "community": 232, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L294", - "community": 232, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L363", - "community": 232, - "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_type" - }, - { - "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L1", - "community": 337, - "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-99f19b3aecb3d8407f1d.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L2", - "community": 337, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L26", - "community": 337, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L27", - "community": 337, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L29", - "community": 337, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L38", - "community": 337, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L43", - "community": 337, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L86", - "community": 337, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L201", - "community": 337, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L202", - "community": 337, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L203", - "community": 337, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L205", - "community": 337, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L206", - "community": 337, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L208", - "community": 337, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L224", - "community": 337, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L269", - "community": 337, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_type" - }, - { - "label": "target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L1", - "community": 225, - "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-d7ff03859e1641486266.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L2", - "community": 225, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L8", - "community": 225, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L9", - "community": 225, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L11", - "community": 225, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L21", - "community": 225, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L26", - "community": 225, + "community": 155, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtracegraph_nodes" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L75", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L52", + "community": 155, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_compilegroups" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L161", + "community": 155, + "norm_label": "dependencies", + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_dependencies" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L224", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L172", + "community": 155, "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_id" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_id" }, { "label": "link", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L225", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L173", + "community": 155, "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link" }, { "label": "commandFragments", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L227", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L175", + "community": 155, "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link_commandfragments" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_commandfragments" }, { "label": "language", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L253", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L217", + "community": 155, "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link_language" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_language" }, { "label": "sysroot", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L254", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L218", + "community": 155, "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link_sysroot" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_sysroot" }, { "label": "path", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L256", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L220", + "community": 155, "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_sysroot_path" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L259", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L223", + "community": 155, "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_name" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_name" }, { "label": "nameOnDisk", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L260", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L224", + "community": 155, "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_nameondisk" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L261", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L225", + "community": 155, "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_paths" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L263", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L227", + "community": 155, "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_paths_build" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L264", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L228", + "community": 155, "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_paths_source" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L266", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L230", + "community": 155, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_sourcegroups" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L293", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L255", + "community": 155, "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_sources" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L404", - "community": 225, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L318", + "community": 155, "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_type" + "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_type" + }, + { + "label": "cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L1", + "community": 576, + "norm_label": "cmakefiles-v1-3da4b9b5e24eda56edf6.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_3da4b9b5e24eda56edf6_json" + }, + { + "label": "inputs", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L2", + "community": 576, + "norm_label": "inputs", + "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_inputs" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L334", + "community": 576, + "norm_label": "kind", + "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L335", + "community": 576, + "norm_label": "paths", + "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L337", + "community": 576, + "norm_label": "build", + "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L338", + "community": 576, + "norm_label": "source", + "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L340", + "community": 576, + "norm_label": "version", + "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L342", + "community": 576, + "norm_label": "major", + "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L343", + "community": 576, + "norm_label": "minor", + "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version_minor" }, { "label": "directory-rnasyncstorage_autolinked_build-RelWithDebInfo-ec755c3cd9003338013f.json", @@ -60858,166 +68845,346 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_paths_source" }, { - "label": "codemodel-v2-caf8ae24fdb8188a8261.json", + "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", "source_location": "L1", - "community": 594, - "norm_label": "codemodel-v2-caf8ae24fdb8188a8261.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_caf8ae24fdb8188a8261_json" + "community": 328, + "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-6873ea71be6dda08995d.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json" }, { - "label": "configurations", + "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", "source_location": "L2", - "community": 594, - "norm_label": "configurations", - "id": "reply_codemodel_v2_caf8ae24fdb8188a8261_configurations" + "community": 328, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" }, { - "label": "kind", + "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L508", - "community": 594, - "norm_label": "kind", - "id": "reply_codemodel_v2_caf8ae24fdb8188a8261_kind" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L26", + "community": 328, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L27", + "community": 328, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L29", + "community": 328, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L38", + "community": 328, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L43", + "community": 328, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L86", + "community": 328, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L201", + "community": 328, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L202", + "community": 328, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L509", - "community": 594, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L203", + "community": 328, "norm_label": "paths", - "id": "reply_codemodel_v2_caf8ae24fdb8188a8261_paths" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L511", - "community": 594, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L205", + "community": 328, "norm_label": "build", - "id": "reply_codemodel_v2_caf8ae24fdb8188a8261_paths_build" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L512", - "community": 594, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L206", + "community": 328, "norm_label": "source", - "id": "reply_codemodel_v2_caf8ae24fdb8188a8261_paths_source" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" }, { - "label": "version", + "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L514", - "community": 594, - "norm_label": "version", - "id": "reply_codemodel_v2_caf8ae24fdb8188a8261_version" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L208", + "community": 328, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" }, { - "label": "major", + "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L516", - "community": 594, - "norm_label": "major", - "id": "reply_codemodel_v2_caf8ae24fdb8188a8261_version_major" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L224", + "community": 328, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" }, { - "label": "minor", + "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L517", - "community": 594, - "norm_label": "minor", - "id": "reply_codemodel_v2_caf8ae24fdb8188a8261_version_minor" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L269", + "community": 328, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" }, { - "label": "cmakeFiles-v1-a61943fe06b646ac85ba.json", + "label": "target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", "source_location": "L1", - "community": 579, - "norm_label": "cmakefiles-v1-a61943fe06b646ac85ba.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_a61943fe06b646ac85ba_json" + "community": 219, + "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-3f95b36b4b5d35aee85d.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json" }, { - "label": "inputs", + "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", "source_location": "L2", - "community": 579, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_a61943fe06b646ac85ba_inputs" + "community": 219, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_artifacts" }, { - "label": "kind", + "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L989", - "community": 579, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_a61943fe06b646ac85ba_kind" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L8", + "community": 219, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L9", + "community": 219, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L11", + "community": 219, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L21", + "community": 219, + "norm_label": "files", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L26", + "community": 219, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L75", + "community": 219, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L224", + "community": 219, + "norm_label": "id", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L225", + "community": 219, + "norm_label": "link", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L227", + "community": 219, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L253", + "community": 219, + "norm_label": "language", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L254", + "community": 219, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L256", + "community": 219, + "norm_label": "path", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L259", + "community": 219, + "norm_label": "name", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L260", + "community": 219, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L990", - "community": 579, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L261", + "community": 219, "norm_label": "paths", - "id": "reply_cmakefiles_v1_a61943fe06b646ac85ba_paths" + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L992", - "community": 579, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L263", + "community": 219, "norm_label": "build", - "id": "reply_cmakefiles_v1_a61943fe06b646ac85ba_paths_build" + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L993", - "community": 579, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L264", + "community": 219, "norm_label": "source", - "id": "reply_cmakefiles_v1_a61943fe06b646ac85ba_paths_source" + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths_source" }, { - "label": "version", + "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L995", - "community": 579, - "norm_label": "version", - "id": "reply_cmakefiles_v1_a61943fe06b646ac85ba_version" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L266", + "community": 219, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sourcegroups" }, { - "label": "major", + "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L997", - "community": 579, - "norm_label": "major", - "id": "reply_cmakefiles_v1_a61943fe06b646ac85ba_version_major" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L293", + "community": 219, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sources" }, { - "label": "minor", + "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L998", - "community": 579, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_a61943fe06b646ac85ba_version_minor" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L404", + "community": 219, + "norm_label": "type", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_type" }, { "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build.core-RelWithDebInfo-a9f6f6c634eac5fe0705.json", @@ -61100,60 +69267,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_paths_source" }, - { - "label": "cache-v2-197d05e41dcf254ddb4c.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-197d05e41dcf254ddb4c.json", - "source_location": "L1", - "community": 639, - "norm_label": "cache-v2-197d05e41dcf254ddb4c.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_197d05e41dcf254ddb4c_json" - }, - { - "label": "entries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-197d05e41dcf254ddb4c.json", - "source_location": "L2", - "community": 639, - "norm_label": "entries", - "id": "reply_cache_v2_197d05e41dcf254ddb4c_entries" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-197d05e41dcf254ddb4c.json", - "source_location": "L1669", - "community": 639, - "norm_label": "kind", - "id": "reply_cache_v2_197d05e41dcf254ddb4c_kind" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-197d05e41dcf254ddb4c.json", - "source_location": "L1670", - "community": 639, - "norm_label": "version", - "id": "reply_cache_v2_197d05e41dcf254ddb4c_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-197d05e41dcf254ddb4c.json", - "source_location": "L1672", - "community": 639, - "norm_label": "major", - "id": "reply_cache_v2_197d05e41dcf254ddb4c_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-197d05e41dcf254ddb4c.json", - "source_location": "L1673", - "community": 639, - "norm_label": "minor", - "id": "reply_cache_v2_197d05e41dcf254ddb4c_version_minor" - }, { "label": "directory-RNCTabView_autolinked_build-RelWithDebInfo-b7a7f29ab6b37dd5df56.json", "file_type": "code", @@ -61236,220 +69349,202 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_paths_source" }, { - "label": "index-2026-05-31T05-23-12-0961.json", + "label": "target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", "source_location": "L1", - "community": 113, - "norm_label": "index-2026-05-31t05-23-12-0961.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_05_31t05_23_12_0961_json" + "community": 187, + "norm_label": "target-react_codegen_rncslider-relwithdebinfo-0104da303d202fcc2123.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json" }, { - "label": "cmake", + "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", "source_location": "L2", - "community": 113, - "norm_label": "cmake", - "id": "reply_index_2026_05_31t05_23_12_0961_cmake" + "community": 187, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_artifacts" }, { - "label": "generator", + "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L4", - "community": 113, - "norm_label": "generator", - "id": "reply_index_2026_05_31t05_23_12_0961_cmake_generator" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L8", + "community": 187, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtrace" }, { - "label": "multiConfig", + "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L6", - "community": 113, - "norm_label": "multiconfig", - "id": "reply_index_2026_05_31t05_23_12_0961_generator_multiconfig" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L9", + "community": 187, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L11", + "community": 187, + "norm_label": "commands", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L20", + "community": 187, + "norm_label": "files", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L25", + "community": 187, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L68", + "community": 187, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L196", + "community": 187, + "norm_label": "id", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L197", + "community": 187, + "norm_label": "link", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L199", + "community": 187, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L225", + "community": 187, + "norm_label": "language", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L226", + "community": 187, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L228", + "community": 187, + "norm_label": "path", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L7", - "community": 113, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L231", + "community": 187, "norm_label": "name", - "id": "reply_index_2026_05_31t05_23_12_0961_generator_name" + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L232", + "community": 187, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L9", - "community": 113, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L233", + "community": 187, "norm_label": "paths", - "id": "reply_index_2026_05_31t05_23_12_0961_cmake_paths" + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths" }, { - "label": "cpack", + "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L12", - "community": 113, - "norm_label": "cpack", - "id": "reply_index_2026_05_31t05_23_12_0961_paths_cpack" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L235", + "community": 187, + "norm_label": "build", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths_build" }, { - "label": "ctest", + "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L13", - "community": 113, - "norm_label": "ctest", - "id": "reply_index_2026_05_31t05_23_12_0961_paths_ctest" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L236", + "community": 187, + "norm_label": "source", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths_source" }, { - "label": "root", + "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L14", - "community": 113, - "norm_label": "root", - "id": "reply_index_2026_05_31t05_23_12_0961_paths_root" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L238", + "community": 187, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sourcegroups" }, { - "label": "version", + "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L16", - "community": 113, - "norm_label": "version", - "id": "reply_index_2026_05_31t05_23_12_0961_cmake_version" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L256", + "community": 187, + "norm_label": "sources", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sources" }, { - "label": "isDirty", + "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L18", - "community": 113, - "norm_label": "isdirty", - "id": "reply_index_2026_05_31t05_23_12_0961_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L19", - "community": 113, - "norm_label": "major", - "id": "reply_index_2026_05_31t05_23_12_0961_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L20", - "community": 113, - "norm_label": "minor", - "id": "reply_index_2026_05_31t05_23_12_0961_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L21", - "community": 113, - "norm_label": "patch", - "id": "reply_index_2026_05_31t05_23_12_0961_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L22", - "community": 113, - "norm_label": "string", - "id": "reply_index_2026_05_31t05_23_12_0961_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L23", - "community": 113, - "norm_label": "suffix", - "id": "reply_index_2026_05_31t05_23_12_0961_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L26", - "community": 113, - "norm_label": "objects", - "id": "reply_index_2026_05_31t05_23_12_0961_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L56", - "community": 113, - "norm_label": "reply", - "id": "reply_index_2026_05_31t05_23_12_0961_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L58", - "community": 113, - "norm_label": "client-agp", - "id": "reply_index_2026_05_31t05_23_12_0961_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L60", - "community": 113, - "norm_label": "cache-v2", - "id": "reply_index_2026_05_31t05_23_12_0961_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L62", - "community": 113, - "norm_label": "jsonfile", - "id": "reply_index_2026_05_31t05_23_12_0961_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L63", - "community": 113, - "norm_label": "kind", - "id": "reply_index_2026_05_31t05_23_12_0961_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L70", - "community": 113, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_05_31t05_23_12_0961_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L80", - "community": 113, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_05_31t05_23_12_0961_client_agp_codemodel_v2" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L313", + "community": 187, + "norm_label": "type", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_type" }, { "label": "compile_commands.json", @@ -61465,7 +69560,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L1", - "community": 91, + "community": 1038, "norm_label": "android_gradle_build_mini.json", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json" }, @@ -61474,234 +69569,774 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L2", - "community": 91, + "community": 1038, "norm_label": "buildfiles", - "id": "x86_64_android_gradle_build_mini_buildfiles" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildfiles" }, { "label": "cleanCommandsComponents", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L22", - "community": 91, + "community": 1038, "norm_label": "cleancommandscomponents", - "id": "x86_64_android_gradle_build_mini_cleancommandscomponents" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_cleancommandscomponents" }, { "label": "buildTargetsCommandComponents", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L30", - "community": 91, + "community": 1038, "norm_label": "buildtargetscommandcomponents", - "id": "x86_64_android_gradle_build_mini_buildtargetscommandcomponents" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildtargetscommandcomponents" }, { "label": "libraries", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L36", - "community": 91, + "community": 242, "norm_label": "libraries", - "id": "x86_64_android_gradle_build_mini_libraries" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries" }, { "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L37", - "community": 91, + "community": 1168, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L38", + "community": 1168, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L39", + "community": 1168, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L40", + "community": 1168, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L41", + "community": 1168, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L47", - "community": 91, + "community": 1283, "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L48", + "community": 1283, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L49", + "community": 1283, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L50", + "community": 1283, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L52", - "community": 91, + "community": 1172, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L53", + "community": 1172, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L54", + "community": 1172, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L55", + "community": 1172, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L56", + "community": 1172, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L62", - "community": 91, + "community": 242, "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L63", + "community": 242, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L64", + "community": 242, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L65", + "community": 242, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" }, { "label": "appmodules::@6890427a1f51a3e7e1df", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L67", - "community": 91, + "community": 1166, "norm_label": "appmodules::@6890427a1f51a3e7e1df", - "id": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L68", + "community": 1166, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L69", + "community": 1166, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L70", + "community": 1166, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L71", + "community": 1166, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L85", - "community": 91, + "community": 1173, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L86", + "community": 1173, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L87", + "community": 1173, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L88", + "community": 1173, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L89", + "community": 1173, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L95", - "community": 91, + "community": 1171, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L96", + "community": 1171, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L97", + "community": 1171, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L98", + "community": 1171, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L99", + "community": 1171, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L105", - "community": 91, + "community": 242, "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L106", + "community": 242, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L107", + "community": 242, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L108", + "community": 242, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L110", - "community": 91, + "community": 1282, "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L111", + "community": 1282, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L112", + "community": 1282, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L113", + "community": 1282, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L115", - "community": 91, + "community": 1285, "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L116", + "community": 1285, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L117", + "community": 1285, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L118", + "community": 1285, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" }, { "label": "core::@1b9a7d546b295b7d0867", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L120", - "community": 91, + "community": 1167, "norm_label": "core::@1b9a7d546b295b7d0867", - "id": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" }, { "label": "artifactName", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L121", - "community": 91, + "community": 1167, "norm_label": "artifactname", - "id": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" }, { "label": "abi", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L122", - "community": 91, + "community": 1167, "norm_label": "abi", - "id": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" }, { "label": "output", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L123", - "community": 91, + "community": 1167, "norm_label": "output", - "id": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" }, { "label": "runtimeFiles", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L124", - "community": 91, + "community": 1167, "norm_label": "runtimefiles", - "id": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, { "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L126", - "community": 91, + "community": 1174, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "id": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L127", + "community": 1174, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L128", + "community": 1174, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L129", + "community": 1174, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L130", + "community": 1174, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L136", - "community": 91, + "community": 242, "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L137", + "community": 242, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L138", + "community": 242, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L139", + "community": 242, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L141", - "community": 91, + "community": 1170, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L142", + "community": 1170, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L143", + "community": 1170, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L144", + "community": 1170, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L145", + "community": 1170, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L151", - "community": 91, + "community": 242, "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L152", + "community": 242, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L153", + "community": 242, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L154", + "community": 242, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L156", - "community": 91, + "community": 1169, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L157", + "community": 1169, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L158", + "community": 1169, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L159", + "community": 1169, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L160", + "community": 1169, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L166", - "community": 91, + "community": 1284, "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L167", + "community": 1284, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L168", + "community": 1284, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L169", + "community": 1284, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L171", - "community": 91, + "community": 242, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L172", + "community": 242, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L173", + "community": 242, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L174", + "community": 242, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L175", + "community": 242, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" }, { "label": "prefab_config.json", @@ -61719,7 +70354,7 @@ "source_location": "L2", "community": 694, "norm_label": "enabled", - "id": "x86_64_prefab_config_enabled" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_prefab_config_json_x86_64_prefab_config_enabled" }, { "label": "prefabPath", @@ -61728,7 +70363,7 @@ "source_location": "L3", "community": 694, "norm_label": "prefabpath", - "id": "x86_64_prefab_config_prefabpath" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_prefab_config_json_x86_64_prefab_config_prefabpath" }, { "label": "packages", @@ -61737,14 +70372,14 @@ "source_location": "L4", "community": 694, "norm_label": "packages", - "id": "x86_64_prefab_config_packages" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_prefab_config_json_x86_64_prefab_config_packages" }, { "label": "android_gradle_build.json", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L1", - "community": 61, + "community": 592, "norm_label": "android_gradle_build.json", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json" }, @@ -61753,288 +70388,909 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L2", - "community": 61, + "community": 592, "norm_label": "buildfiles", - "id": "x86_64_android_gradle_build_buildfiles" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildfiles" }, { "label": "cleanCommandsComponents", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L22", - "community": 61, + "community": 592, "norm_label": "cleancommandscomponents", - "id": "x86_64_android_gradle_build_cleancommandscomponents" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cleancommandscomponents" }, { "label": "buildTargetsCommandComponents", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L30", - "community": 61, + "community": 592, "norm_label": "buildtargetscommandcomponents", - "id": "x86_64_android_gradle_build_buildtargetscommandcomponents" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildtargetscommandcomponents" }, { "label": "libraries", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L36", - "community": 61, + "community": 232, "norm_label": "libraries", - "id": "x86_64_android_gradle_build_libraries" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries" }, { "label": "appmodules::@6890427a1f51a3e7e1df", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L37", - "community": 61, + "community": 1100, "norm_label": "appmodules::@6890427a1f51a3e7e1df", - "id": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L38", + "community": 1100, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L39", + "community": 1100, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L40", + "community": 1100, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L41", + "community": 1100, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" }, { "label": "runtimeFiles", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L42", - "community": 61, + "community": 1100, "norm_label": "runtimefiles", - "id": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, { "label": "core::@1b9a7d546b295b7d0867", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L56", - "community": 61, + "community": 1165, "norm_label": "core::@1b9a7d546b295b7d0867", - "id": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L57", + "community": 1165, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" }, { "label": "abi", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L58", - "community": 61, + "community": 1165, "norm_label": "abi", - "id": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" }, { "label": "artifactName", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L59", - "community": 61, + "community": 1165, "norm_label": "artifactname", - "id": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" }, { "label": "output", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L60", - "community": 61, + "community": 1165, "norm_label": "output", - "id": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, { "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L62", - "community": 61, + "community": 1107, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "id": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L63", + "community": 1107, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L64", + "community": 1107, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L65", + "community": 1107, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L66", + "community": 1107, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L67", + "community": 1107, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" }, { "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L73", - "community": 61, + "community": 1101, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L74", + "community": 1101, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L75", + "community": 1101, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L76", + "community": 1101, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L77", + "community": 1101, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L78", + "community": 1101, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L84", - "community": 61, + "community": 1271, "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L85", + "community": 1271, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L86", + "community": 1271, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L87", + "community": 1271, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L89", - "community": 61, + "community": 1102, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L90", + "community": 1102, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L91", + "community": 1102, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L92", + "community": 1102, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L93", + "community": 1102, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L94", + "community": 1102, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L100", - "community": 61, + "community": 1280, "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L101", + "community": 1280, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L102", + "community": 1280, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L103", + "community": 1280, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L105", - "community": 61, + "community": 1281, "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L106", + "community": 1281, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L107", + "community": 1281, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L108", + "community": 1281, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L110", - "community": 61, + "community": 1106, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", - "id": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L111", + "community": 1106, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L112", + "community": 1106, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L113", + "community": 1106, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L114", + "community": 1106, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L115", + "community": 1106, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L121", - "community": 61, + "community": 232, "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "id": "x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L122", + "community": 232, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L123", + "community": 232, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L124", + "community": 232, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L126", - "community": 61, + "community": 232, "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L127", + "community": 232, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L128", + "community": 232, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L129", + "community": 232, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L131", - "community": 61, + "community": 1279, "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L132", + "community": 1279, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L133", + "community": 1279, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L134", + "community": 1279, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L136", - "community": 61, + "community": 1103, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L137", + "community": 1103, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L138", + "community": 1103, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L139", + "community": 1103, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L140", + "community": 1103, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L141", + "community": 1103, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L147", - "community": 61, + "community": 232, "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L148", + "community": 232, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L149", + "community": 232, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L150", + "community": 232, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L152", - "community": 61, + "community": 1104, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L153", + "community": 1104, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L154", + "community": 1104, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L155", + "community": 1104, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L156", + "community": 1104, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L157", + "community": 1104, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L163", - "community": 61, + "community": 1105, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L164", + "community": 1105, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L165", + "community": 1105, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L166", + "community": 1105, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L167", + "community": 1105, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L168", + "community": 1105, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L174", - "community": 61, + "community": 232, "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "id": "x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L175", + "community": 232, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L176", + "community": 232, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L177", + "community": 232, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L179", - "community": 61, + "community": 232, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "id": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L180", + "community": 232, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L181", + "community": 232, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L182", + "community": 232, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L183", + "community": 232, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L184", + "community": 232, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" }, { "label": "toolchains", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L191", - "community": 61, + "community": 592, "norm_label": "toolchains", - "id": "x86_64_android_gradle_build_toolchains" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains" }, { "label": "toolchain", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L192", - "community": 61, + "community": 592, "norm_label": "toolchain", - "id": "x86_64_android_gradle_build_toolchains_toolchain" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" }, { "label": "cCompilerExecutable", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L193", - "community": 61, + "community": 592, "norm_label": "ccompilerexecutable", - "id": "x86_64_android_gradle_build_toolchain_ccompilerexecutable" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_ccompilerexecutable" }, { "label": "cppCompilerExecutable", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L194", - "community": 61, + "community": 592, "norm_label": "cppcompilerexecutable", - "id": "x86_64_android_gradle_build_toolchain_cppcompilerexecutable" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_cppcompilerexecutable" }, { "label": "cFileExtensions", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L197", - "community": 61, + "community": 592, "norm_label": "cfileextensions", - "id": "x86_64_android_gradle_build_cfileextensions" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cfileextensions" }, { "label": "cppFileExtensions", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", "source_location": "L198", - "community": 61, + "community": 592, "norm_label": "cppfileextensions", - "id": "x86_64_android_gradle_build_cppfileextensions" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cppfileextensions" }, { "label": "foo.cpp", @@ -62190,553 +71446,346 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_paths_source" }, { - "label": "target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", + "label": "target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L1", - "community": 222, - "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-97c1d13dc56a2b5dd4a5.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json" + "community": 365, + "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-d6affdef9367841e3dd4.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L2", - "community": 222, + "community": 365, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_artifacts" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L8", - "community": 222, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L9", - "community": 222, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L11", - "community": 222, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L21", - "community": 222, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L26", - "community": 222, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L75", - "community": 222, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L224", - "community": 222, - "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L225", - "community": 222, - "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L227", - "community": 222, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L253", - "community": 222, - "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L254", - "community": 222, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L256", - "community": 222, - "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L259", - "community": 222, - "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L260", - "community": 222, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L261", - "community": 222, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L263", - "community": 222, - "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L264", - "community": 222, - "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L266", - "community": 222, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L293", - "community": 222, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L404", - "community": 222, - "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_type" - }, - { - "label": "target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L1", - "community": 143, - "norm_label": "target-appmodules-relwithdebinfo-d98999562b10c56d2157.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L2", - "community": 143, - "norm_label": "artifacts", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L8", - "community": 143, + "community": 365, "norm_label": "backtrace", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtrace" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L9", - "community": 143, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L11", - "community": 143, - "norm_label": "commands", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L21", - "community": 143, - "norm_label": "files", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L34", - "community": 143, - "norm_label": "nodes", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L156", - "community": 143, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L481", - "community": 143, - "norm_label": "dependencies", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L552", - "community": 143, - "norm_label": "id", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L553", - "community": 143, - "norm_label": "link", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L555", - "community": 143, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L637", - "community": 143, - "norm_label": "language", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L638", - "community": 143, - "norm_label": "sysroot", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L640", - "community": 143, - "norm_label": "path", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L643", - "community": 143, - "norm_label": "name", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L644", - "community": 143, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L645", - "community": 143, - "norm_label": "paths", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L647", - "community": 143, - "norm_label": "build", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L648", - "community": 143, - "norm_label": "source", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L650", - "community": 143, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L723", - "community": 143, - "norm_label": "sources", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L1074", - "community": 143, - "norm_label": "type", - "id": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_type" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "source_location": "L1", - "community": 360, - "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-b55af302461fba65035b.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "source_location": "L2", - "community": 360, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "source_location": "L26", - "community": 360, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L27", - "community": 360, + "community": 365, "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L29", - "community": 360, + "community": 365, "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L38", - "community": 360, + "community": 365, "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L43", - "community": 360, + "community": 365, "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L86", - "community": 360, + "community": 365, "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L201", - "community": 360, + "community": 365, "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_id" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L202", - "community": 360, + "community": 365, "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_name" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L203", - "community": 360, + "community": 365, "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L205", - "community": 360, + "community": 365, "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_build" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L206", - "community": 360, + "community": 365, "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_source" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L208", - "community": 360, + "community": 365, "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L224", - "community": 360, + "community": 365, "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sources" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L269", - "community": 360, + "community": 365, "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_type" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" + }, + { + "label": "target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L1", + "community": 221, + "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-947df43e7a7f8f8b6489.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L2", + "community": 221, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L8", + "community": 221, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L9", + "community": 221, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L11", + "community": 221, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L21", + "community": 221, + "norm_label": "files", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L26", + "community": 221, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L75", + "community": 221, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L224", + "community": 221, + "norm_label": "id", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L225", + "community": 221, + "norm_label": "link", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L227", + "community": 221, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L253", + "community": 221, + "norm_label": "language", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L254", + "community": 221, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L256", + "community": 221, + "norm_label": "path", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L259", + "community": 221, + "norm_label": "name", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L260", + "community": 221, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L261", + "community": 221, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L263", + "community": 221, + "norm_label": "build", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L264", + "community": 221, + "norm_label": "source", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L266", + "community": 221, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L293", + "community": 221, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L404", + "community": 221, + "norm_label": "type", + "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_type" }, { "label": "directory-rnsvg_autolinked_build-RelWithDebInfo-251c63907f461abe26aa.json", @@ -62819,213 +71868,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_relwithdebinfo_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_relwithdebinfo_251c63907f461abe26aa_paths_source" }, - { - "label": "target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L1", - "community": 151, - "norm_label": "target-react-native-mmkv-relwithdebinfo-851185f527fbd80f6cbd.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L2", - "community": 151, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L8", - "community": 151, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L9", - "community": 151, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L11", - "community": 151, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L17", - "community": 151, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L21", - "community": 151, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L52", - "community": 151, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L161", - "community": 151, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L172", - "community": 151, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L173", - "community": 151, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L175", - "community": 151, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L217", - "community": 151, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L218", - "community": 151, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L220", - "community": 151, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L223", - "community": 151, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L224", - "community": 151, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L225", - "community": 151, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L227", - "community": 151, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L228", - "community": 151, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L230", - "community": 151, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L255", - "community": 151, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L318", - "community": 151, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_type" - }, { "label": "directory-rnworklets_autolinked_build-RelWithDebInfo-c55782449035392fe125.json", "file_type": "code", @@ -63107,6 +71949,213 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_paths_source" }, + { + "label": "target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L1", + "community": 138, + "norm_label": "target-appmodules-relwithdebinfo-36fd1c7c3566de281012.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L2", + "community": 138, + "norm_label": "artifacts", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L8", + "community": 138, + "norm_label": "backtrace", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L9", + "community": 138, + "norm_label": "backtracegraph", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L11", + "community": 138, + "norm_label": "commands", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L21", + "community": 138, + "norm_label": "files", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L34", + "community": 138, + "norm_label": "nodes", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L156", + "community": 138, + "norm_label": "compilegroups", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L481", + "community": 138, + "norm_label": "dependencies", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_dependencies" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L552", + "community": 138, + "norm_label": "id", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L553", + "community": 138, + "norm_label": "link", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L555", + "community": 138, + "norm_label": "commandfragments", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L637", + "community": 138, + "norm_label": "language", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L638", + "community": 138, + "norm_label": "sysroot", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L640", + "community": 138, + "norm_label": "path", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L643", + "community": 138, + "norm_label": "name", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L644", + "community": 138, + "norm_label": "nameondisk", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L645", + "community": 138, + "norm_label": "paths", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L647", + "community": 138, + "norm_label": "build", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L648", + "community": 138, + "norm_label": "source", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L650", + "community": 138, + "norm_label": "sourcegroups", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L723", + "community": 138, + "norm_label": "sources", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L1074", + "community": 138, + "norm_label": "type", + "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_type" + }, { "label": "directory-RNMmkvSpec_autolinked_build-RelWithDebInfo-0a577c6ddcdff9b1cd2d.json", "file_type": "code", @@ -63189,202 +72238,346 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_paths_source" }, { - "label": "target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", + "label": "cache-v2-136ec41dc33c7a3203da.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", "source_location": "L1", - "community": 44, - "norm_label": "target-react_codegen_rnpicker-relwithdebinfo-c6083b4d7791b0ac5f92.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json" + "community": 638, + "norm_label": "cache-v2-136ec41dc33c7a3203da.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_136ec41dc33c7a3203da_json" + }, + { + "label": "entries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", + "source_location": "L2", + "community": 638, + "norm_label": "entries", + "id": "reply_cache_v2_136ec41dc33c7a3203da_entries" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", + "source_location": "L1637", + "community": 638, + "norm_label": "kind", + "id": "reply_cache_v2_136ec41dc33c7a3203da_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", + "source_location": "L1638", + "community": 638, + "norm_label": "version", + "id": "reply_cache_v2_136ec41dc33c7a3203da_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", + "source_location": "L1640", + "community": 638, + "norm_label": "major", + "id": "reply_cache_v2_136ec41dc33c7a3203da_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", + "source_location": "L1641", + "community": 638, + "norm_label": "minor", + "id": "reply_cache_v2_136ec41dc33c7a3203da_version_minor" + }, + { + "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L1", + "community": 358, + "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-35735e55a58552e74540.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "source_location": "L2", - "community": 44, + "community": 358, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_artifacts" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L8", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L26", + "community": 358, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtrace" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L9", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L27", + "community": 358, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L11", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L29", + "community": 358, "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L19", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L38", + "community": 358, "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L23", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L43", + "community": 358, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L60", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L86", + "community": 358, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L188", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L201", + "community": 358, "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L189", - "community": 44, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L191", - "community": 44, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L217", - "community": 44, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L218", - "community": 44, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L220", - "community": 44, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_sysroot_path" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L223", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L202", + "community": 358, "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L224", - "community": 44, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_nameondisk" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L225", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L203", + "community": 358, "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_paths" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L227", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L205", + "community": 358, "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_paths_build" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L228", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L206", + "community": 358, "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_paths_source" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L230", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L208", + "community": 358, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L252", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L224", + "community": 358, "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_sources" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L333", - "community": 44, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L269", + "community": 358, "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_type" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" + }, + { + "label": "target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L1", + "community": 366, + "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-3a82b655e8d5b3c1b8d3.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L2", + "community": 366, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L26", + "community": 366, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L27", + "community": 366, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L29", + "community": 366, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L38", + "community": 366, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L43", + "community": 366, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L86", + "community": 366, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L201", + "community": 366, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L202", + "community": 366, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L203", + "community": 366, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L205", + "community": 366, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L206", + "community": 366, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L208", + "community": 366, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L224", + "community": 366, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L269", + "community": 366, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" }, { "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build-RelWithDebInfo-3c4f354f8e9d2bc9c5a6.json", @@ -63548,6 +72741,348 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths_source" }, + { + "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L1", + "community": 361, + "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-b5a7f3ec52e98de02751.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L2", + "community": 361, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L26", + "community": 361, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L27", + "community": 361, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L29", + "community": 361, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L38", + "community": 361, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L43", + "community": 361, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L86", + "community": 361, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L201", + "community": 361, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L202", + "community": 361, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L203", + "community": 361, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L205", + "community": 361, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L206", + "community": 361, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L208", + "community": 361, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L224", + "community": 361, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L269", + "community": 361, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" + }, + { + "label": "target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L1", + "community": 204, + "norm_label": "target-react_codegen_rnkc-relwithdebinfo-ef1b0a2289a4d334e654.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L2", + "community": 204, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L8", + "community": 204, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L9", + "community": 204, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L11", + "community": 204, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L21", + "community": 204, + "norm_label": "files", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L26", + "community": 204, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L75", + "community": 204, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L221", + "community": 204, + "norm_label": "id", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L222", + "community": 204, + "norm_label": "link", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L224", + "community": 204, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L250", + "community": 204, + "norm_label": "language", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L251", + "community": 204, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L253", + "community": 204, + "norm_label": "path", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L256", + "community": 204, + "norm_label": "name", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L257", + "community": 204, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L258", + "community": 204, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L260", + "community": 204, + "norm_label": "build", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L261", + "community": 204, + "norm_label": "source", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L263", + "community": 204, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L287", + "community": 204, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L380", + "community": 204, + "norm_label": "type", + "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_type" + }, { "label": "directory-rnpicker_autolinked_build-RelWithDebInfo-aa9f04d4f6540efeba1f.json", "file_type": "code", @@ -63630,1075 +73165,436 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_paths_source" }, { - "label": "target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "label": "target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", "source_location": "L1", - "community": 364, - "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-783b787ef2803f4cb98f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json" + "community": 153, + "norm_label": "target-react-native-mmkv-relwithdebinfo-90459e824d266082398f.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", "source_location": "L2", - "community": 364, + "community": 153, "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_artifacts" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L26", - "community": 364, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L27", - "community": 364, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L29", - "community": 364, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L38", - "community": 364, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L43", - "community": 364, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L86", - "community": 364, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L201", - "community": 364, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L202", - "community": 364, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L203", - "community": 364, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L205", - "community": 364, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L206", - "community": 364, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L208", - "community": 364, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L224", - "community": 364, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L269", - "community": 364, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_type" - }, - { - "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L1", - "community": 353, - "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-a88b0fde8aaa9b96e396.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L2", - "community": 353, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L26", - "community": 353, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L27", - "community": 353, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L29", - "community": 353, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L38", - "community": 353, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L43", - "community": 353, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L86", - "community": 353, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L201", - "community": 353, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L202", - "community": 353, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L203", - "community": 353, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L205", - "community": 353, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L206", - "community": 353, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L208", - "community": 353, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L224", - "community": 353, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L269", - "community": 353, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_type" - }, - { - "label": "codemodel-v2-e1cfc1b5f83b8c2122de.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L1", - "community": 595, - "norm_label": "codemodel-v2-e1cfc1b5f83b8c2122de.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_e1cfc1b5f83b8c2122de_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L2", - "community": 595, - "norm_label": "configurations", - "id": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_configurations" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L508", - "community": 595, - "norm_label": "kind", - "id": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L509", - "community": 595, - "norm_label": "paths", - "id": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L511", - "community": 595, - "norm_label": "build", - "id": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L512", - "community": 595, - "norm_label": "source", - "id": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L514", - "community": 595, - "norm_label": "version", - "id": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L516", - "community": 595, - "norm_label": "major", - "id": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L517", - "community": 595, - "norm_label": "minor", - "id": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_version_minor" - }, - { - "label": "target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L1", - "community": 201, - "norm_label": "target-react_codegen_rnkc-relwithdebinfo-7f4d9cb43183a3cc17e2.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L2", - "community": 201, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", "source_location": "L8", - "community": 201, + "community": 153, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtrace" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", "source_location": "L9", - "community": 201, + "community": 153, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtracegraph" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", "source_location": "L11", - "community": 201, + "community": 153, "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtracegraph_commands" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L21", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L17", + "community": 153, "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtracegraph_files" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L26", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L21", + "community": 153, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtracegraph_nodes" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L75", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L52", + "community": 153, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_compilegroups" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L161", + "community": 153, + "norm_label": "dependencies", + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_dependencies" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L221", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L172", + "community": 153, "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_id" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_id" }, { "label": "link", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L222", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L173", + "community": 153, "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link" }, { "label": "commandFragments", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L224", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L175", + "community": 153, "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link_commandfragments" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_commandfragments" }, { "label": "language", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L250", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L217", + "community": 153, "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link_language" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_language" }, { "label": "sysroot", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L251", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L218", + "community": 153, "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link_sysroot" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_sysroot" }, { "label": "path", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L253", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L220", + "community": 153, "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_sysroot_path" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L256", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L223", + "community": 153, "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_name" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_name" }, { "label": "nameOnDisk", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L257", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L224", + "community": 153, "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_nameondisk" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L258", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L225", + "community": 153, "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_paths" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L260", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L227", + "community": 153, "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_paths_build" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L261", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L228", + "community": 153, "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_paths_source" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L263", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L230", + "community": 153, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_sourcegroups" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L287", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L255", + "community": 153, "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_sources" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L380", - "community": 201, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L318", + "community": 153, "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_type" + "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_type" }, { - "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L1", - "community": 355, - "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-c3bf487b1e08b4be60fb.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json" + "community": 362, + "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-624c0f7309976a111d6b.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L2", - "community": 355, + "community": 362, "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_artifacts" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L26", - "community": 355, + "community": 362, "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtrace" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L27", - "community": 355, + "community": 362, "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L29", - "community": 355, + "community": 362, "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L38", - "community": 355, + "community": 362, "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L43", - "community": 355, + "community": 362, "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L86", - "community": 355, + "community": 362, "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L201", - "community": 355, + "community": 362, "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_id" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L202", - "community": 355, + "community": 362, "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_name" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L203", - "community": 355, + "community": 362, "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L205", - "community": 355, + "community": 362, "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_build" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L206", - "community": 355, + "community": 362, "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_source" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L208", - "community": 355, + "community": 362, "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L224", - "community": 355, + "community": 362, "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sources" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L269", - "community": 355, + "community": 362, "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_type" + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" }, { - "label": "index-2026-05-31T05-26-33-0141.json", + "label": "cmakeFiles-v1-db0aa9d3fd185d7a8472.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", "source_location": "L1", - "community": 116, - "norm_label": "index-2026-05-31t05-26-33-0141.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_05_31t05_26_33_0141_json" + "community": 528, + "norm_label": "cmakefiles-v1-db0aa9d3fd185d7a8472.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_db0aa9d3fd185d7a8472_json" }, { - "label": "cmake", + "label": "inputs", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", "source_location": "L2", - "community": 116, - "norm_label": "cmake", - "id": "reply_index_2026_05_31t05_26_33_0141_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L4", - "community": 116, - "norm_label": "generator", - "id": "reply_index_2026_05_31t05_26_33_0141_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L6", - "community": 116, - "norm_label": "multiconfig", - "id": "reply_index_2026_05_31t05_26_33_0141_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L7", - "community": 116, - "norm_label": "name", - "id": "reply_index_2026_05_31t05_26_33_0141_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L9", - "community": 116, - "norm_label": "paths", - "id": "reply_index_2026_05_31t05_26_33_0141_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L12", - "community": 116, - "norm_label": "cpack", - "id": "reply_index_2026_05_31t05_26_33_0141_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L13", - "community": 116, - "norm_label": "ctest", - "id": "reply_index_2026_05_31t05_26_33_0141_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L14", - "community": 116, - "norm_label": "root", - "id": "reply_index_2026_05_31t05_26_33_0141_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L16", - "community": 116, - "norm_label": "version", - "id": "reply_index_2026_05_31t05_26_33_0141_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L18", - "community": 116, - "norm_label": "isdirty", - "id": "reply_index_2026_05_31t05_26_33_0141_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L19", - "community": 116, - "norm_label": "major", - "id": "reply_index_2026_05_31t05_26_33_0141_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L20", - "community": 116, - "norm_label": "minor", - "id": "reply_index_2026_05_31t05_26_33_0141_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L21", - "community": 116, - "norm_label": "patch", - "id": "reply_index_2026_05_31t05_26_33_0141_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L22", - "community": 116, - "norm_label": "string", - "id": "reply_index_2026_05_31t05_26_33_0141_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L23", - "community": 116, - "norm_label": "suffix", - "id": "reply_index_2026_05_31t05_26_33_0141_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L26", - "community": 116, - "norm_label": "objects", - "id": "reply_index_2026_05_31t05_26_33_0141_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L56", - "community": 116, - "norm_label": "reply", - "id": "reply_index_2026_05_31t05_26_33_0141_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L58", - "community": 116, - "norm_label": "client-agp", - "id": "reply_index_2026_05_31t05_26_33_0141_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L60", - "community": 116, - "norm_label": "cache-v2", - "id": "reply_index_2026_05_31t05_26_33_0141_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L62", - "community": 116, - "norm_label": "jsonfile", - "id": "reply_index_2026_05_31t05_26_33_0141_cache_v2_jsonfile" + "community": 528, + "norm_label": "inputs", + "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_inputs" }, { "label": "kind", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L63", - "community": 116, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L334", + "community": 528, "norm_label": "kind", - "id": "reply_index_2026_05_31t05_26_33_0141_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L70", - "community": 116, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_05_31t05_26_33_0141_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L80", - "community": 116, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_05_31t05_26_33_0141_client_agp_codemodel_v2" - }, - { - "label": "target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L1", - "community": 367, - "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-c6dacbf2b66ab4212c3f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L2", - "community": 367, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L26", - "community": 367, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L27", - "community": 367, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L29", - "community": 367, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L38", - "community": 367, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L43", - "community": 367, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L86", - "community": 367, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L201", - "community": 367, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L202", - "community": 367, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_name" + "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_kind" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L203", - "community": 367, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L335", + "community": 528, "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths" + "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L205", - "community": 367, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L337", + "community": 528, "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_build" + "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L206", - "community": 367, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L338", + "community": 528, "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_source" + "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths_source" }, { - "label": "sourceGroups", + "label": "version", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L208", - "community": 367, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sourcegroups" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L340", + "community": 528, + "norm_label": "version", + "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version" }, { - "label": "sources", + "label": "major", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L224", - "community": 367, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sources" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L342", + "community": 528, + "norm_label": "major", + "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version_major" }, { - "label": "type", + "label": "minor", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L269", - "community": 367, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_type" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L343", + "community": 528, + "norm_label": "minor", + "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version_minor" }, { "label": "directory-rnreanimated_autolinked_build-RelWithDebInfo-f4aeae2d37b82d815393.json", @@ -64782,58 +73678,544 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_paths_source" }, { - "label": "cache-v2-1fec8b41d90463460acf.json", + "label": "target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-1fec8b41d90463460acf.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", "source_location": "L1", - "community": 641, - "norm_label": "cache-v2-1fec8b41d90463460acf.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_1fec8b41d90463460acf_json" + "community": 189, + "norm_label": "target-react_codegen_rncslider-relwithdebinfo-10b2e5ae065f5f2ee5bf.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json" }, { - "label": "entries", + "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-1fec8b41d90463460acf.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", "source_location": "L2", - "community": 641, - "norm_label": "entries", - "id": "reply_cache_v2_1fec8b41d90463460acf_entries" + "community": 189, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_artifacts" }, { - "label": "kind", + "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-1fec8b41d90463460acf.json", - "source_location": "L1669", - "community": 641, - "norm_label": "kind", - "id": "reply_cache_v2_1fec8b41d90463460acf_kind" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L8", + "community": 189, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtrace" }, { - "label": "version", + "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-1fec8b41d90463460acf.json", - "source_location": "L1670", - "community": 641, - "norm_label": "version", - "id": "reply_cache_v2_1fec8b41d90463460acf_version" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L9", + "community": 189, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph" }, { - "label": "major", + "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-1fec8b41d90463460acf.json", - "source_location": "L1672", - "community": 641, - "norm_label": "major", - "id": "reply_cache_v2_1fec8b41d90463460acf_version_major" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L11", + "community": 189, + "norm_label": "commands", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_commands" }, { - "label": "minor", + "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-1fec8b41d90463460acf.json", - "source_location": "L1673", - "community": 641, - "norm_label": "minor", - "id": "reply_cache_v2_1fec8b41d90463460acf_version_minor" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L20", + "community": 189, + "norm_label": "files", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L25", + "community": 189, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L68", + "community": 189, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L196", + "community": 189, + "norm_label": "id", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L197", + "community": 189, + "norm_label": "link", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L199", + "community": 189, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L225", + "community": 189, + "norm_label": "language", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L226", + "community": 189, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L228", + "community": 189, + "norm_label": "path", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L231", + "community": 189, + "norm_label": "name", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L232", + "community": 189, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L233", + "community": 189, + "norm_label": "paths", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L235", + "community": 189, + "norm_label": "build", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L236", + "community": 189, + "norm_label": "source", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L238", + "community": 189, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L256", + "community": 189, + "norm_label": "sources", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L313", + "community": 189, + "norm_label": "type", + "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_type" + }, + { + "label": "target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L1", + "community": 357, + "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-3046d2f30176023af473.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L2", + "community": 357, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L26", + "community": 357, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L27", + "community": 357, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L29", + "community": 357, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L38", + "community": 357, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L43", + "community": 357, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L86", + "community": 357, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L201", + "community": 357, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L202", + "community": 357, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L203", + "community": 357, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L205", + "community": 357, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L206", + "community": 357, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L208", + "community": 357, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L224", + "community": 357, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L269", + "community": 357, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" + }, + { + "label": "target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L1", + "community": 175, + "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-9e89a5d1817a7db86940.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L2", + "community": 175, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L8", + "community": 175, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L9", + "community": 175, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L11", + "community": 175, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L20", + "community": 175, + "norm_label": "files", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L25", + "community": 175, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L86", + "community": 175, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L232", + "community": 175, + "norm_label": "id", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L233", + "community": 175, + "norm_label": "link", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L235", + "community": 175, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L261", + "community": 175, + "norm_label": "language", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L262", + "community": 175, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L264", + "community": 175, + "norm_label": "path", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L267", + "community": 175, + "norm_label": "name", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L268", + "community": 175, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L269", + "community": 175, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L271", + "community": 175, + "norm_label": "build", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L272", + "community": 175, + "norm_label": "source", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L274", + "community": 175, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L294", + "community": 175, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L363", + "community": 175, + "norm_label": "type", + "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_type" }, { "label": "directory-rnscreens_autolinked_build-RelWithDebInfo-762995bc626882b56722.json", @@ -64916,627 +74298,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_paths_source" }, - { - "label": "target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L1", - "community": 233, - "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-d6f9499649ac342a31fd.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L2", - "community": 233, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L8", - "community": 233, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L9", - "community": 233, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L11", - "community": 233, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L20", - "community": 233, - "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L25", - "community": 233, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L86", - "community": 233, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L232", - "community": 233, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L233", - "community": 233, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L235", - "community": 233, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L261", - "community": 233, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L262", - "community": 233, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L264", - "community": 233, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L267", - "community": 233, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L268", - "community": 233, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L269", - "community": 233, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L271", - "community": 233, - "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L272", - "community": 233, - "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L274", - "community": 233, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L294", - "community": 233, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L363", - "community": 233, - "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_type" - }, - { - "label": "target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L1", - "community": 244, - "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-8e872147887829662f7f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L2", - "community": 244, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L8", - "community": 244, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L9", - "community": 244, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L11", - "community": 244, - "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L20", - "community": 244, - "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L25", - "community": 244, - "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L74", - "community": 244, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L214", - "community": 244, - "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L215", - "community": 244, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L217", - "community": 244, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L243", - "community": 244, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L244", - "community": 244, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L246", - "community": 244, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L249", - "community": 244, - "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L250", - "community": 244, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L251", - "community": 244, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L253", - "community": 244, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L254", - "community": 244, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L256", - "community": 244, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L274", - "community": 244, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L331", - "community": 244, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_type" - }, - { - "label": "cmakeFiles-v1-4da1ff542da032203569.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L1", - "community": 577, - "norm_label": "cmakefiles-v1-4da1ff542da032203569.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_4da1ff542da032203569_json" - }, - { - "label": "inputs", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L2", - "community": 577, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_4da1ff542da032203569_inputs" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L989", - "community": 577, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_4da1ff542da032203569_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L990", - "community": 577, - "norm_label": "paths", - "id": "reply_cmakefiles_v1_4da1ff542da032203569_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L992", - "community": 577, - "norm_label": "build", - "id": "reply_cmakefiles_v1_4da1ff542da032203569_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L993", - "community": 577, - "norm_label": "source", - "id": "reply_cmakefiles_v1_4da1ff542da032203569_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L995", - "community": 577, - "norm_label": "version", - "id": "reply_cmakefiles_v1_4da1ff542da032203569_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L997", - "community": 577, - "norm_label": "major", - "id": "reply_cmakefiles_v1_4da1ff542da032203569_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L998", - "community": 577, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_4da1ff542da032203569_version_minor" - }, - { - "label": "target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L1", - "community": 356, - "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-17769a498b63a0b8916a.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L2", - "community": 356, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L26", - "community": 356, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L27", - "community": 356, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L29", - "community": 356, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L38", - "community": 356, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L43", - "community": 356, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L86", - "community": 356, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L201", - "community": 356, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L202", - "community": 356, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L203", - "community": 356, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L205", - "community": 356, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L206", - "community": 356, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L208", - "community": 356, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L224", - "community": 356, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L269", - "community": 356, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_type" - }, { "label": "target-core-RelWithDebInfo-4fd3162b80cc9b1208a9.json", "file_type": "code", @@ -65861,204 +74622,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_relwithdebinfo_f5ebdc15457944623624_json_reply_directory_relwithdebinfo_f5ebdc15457944623624_paths_source" }, - { - "label": "target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L1", - "community": 190, - "norm_label": "target-react_codegen_rncslider-relwithdebinfo-1d00597f775afff4b854.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L2", - "community": 190, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L8", - "community": 190, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L9", - "community": 190, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L11", - "community": 190, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L20", - "community": 190, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L25", - "community": 190, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L68", - "community": 190, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L196", - "community": 190, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L197", - "community": 190, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L199", - "community": 190, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L225", - "community": 190, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L226", - "community": 190, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L228", - "community": 190, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L231", - "community": 190, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L232", - "community": 190, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L233", - "community": 190, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L235", - "community": 190, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L236", - "community": 190, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L238", - "community": 190, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L256", - "community": 190, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L313", - "community": 190, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_type" - }, { "label": "directory-RNKC_autolinked_build-RelWithDebInfo-9b81a6f2831b76917207.json", "file_type": "code", @@ -66140,6 +74703,150 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_paths_source" }, + { + "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L1", + "community": 352, + "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-761aa90ee7b8f54ed322.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L2", + "community": 352, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L26", + "community": 352, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L27", + "community": 352, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L29", + "community": 352, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L38", + "community": 352, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L43", + "community": 352, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L86", + "community": 352, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L201", + "community": 352, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L202", + "community": 352, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L203", + "community": 352, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L205", + "community": 352, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L206", + "community": 352, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L208", + "community": 352, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L224", + "community": 352, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L269", + "community": 352, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" + }, { "label": "directory-TrueSheetSpec_autolinked_build-RelWithDebInfo-6f8e1947845121968926.json", "file_type": "code", @@ -66221,150 +74928,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths_source" }, - { - "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L1", - "community": 359, - "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-dcd60b6ebf62595102c9.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L2", - "community": 359, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L26", - "community": 359, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L27", - "community": 359, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L29", - "community": 359, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L38", - "community": 359, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L43", - "community": 359, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L86", - "community": 359, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L201", - "community": 359, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L202", - "community": 359, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L203", - "community": 359, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L205", - "community": 359, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L206", - "community": 359, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L208", - "community": 359, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L224", - "community": 359, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L269", - "community": 359, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_type" - }, { "label": "directory-RNMenuViewSpec_autolinked_build-RelWithDebInfo-db93909da8ac45d348e4.json", "file_type": "code", @@ -66446,6 +75009,87 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_paths_source" }, + { + "label": "codemodel-v2-7e70a705d613236caeec.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L1", + "community": 590, + "norm_label": "codemodel-v2-7e70a705d613236caeec.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_7e70a705d613236caeec_json" + }, + { + "label": "configurations", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L2", + "community": 590, + "norm_label": "configurations", + "id": "reply_codemodel_v2_7e70a705d613236caeec_configurations" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L508", + "community": 590, + "norm_label": "kind", + "id": "reply_codemodel_v2_7e70a705d613236caeec_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L509", + "community": 590, + "norm_label": "paths", + "id": "reply_codemodel_v2_7e70a705d613236caeec_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L511", + "community": 590, + "norm_label": "build", + "id": "reply_codemodel_v2_7e70a705d613236caeec_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L512", + "community": 590, + "norm_label": "source", + "id": "reply_codemodel_v2_7e70a705d613236caeec_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L514", + "community": 590, + "norm_label": "version", + "id": "reply_codemodel_v2_7e70a705d613236caeec_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L516", + "community": 590, + "norm_label": "major", + "id": "reply_codemodel_v2_7e70a705d613236caeec_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L517", + "community": 590, + "norm_label": "minor", + "id": "reply_codemodel_v2_7e70a705d613236caeec_version_minor" + }, { "label": "directory-lottiereactnative_autolinked_build-RelWithDebInfo-b03690d896f7026a177d.json", "file_type": "code", @@ -66528,148 +75172,292 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_paths_source" }, { - "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", + "label": "index-2026-06-15T11-05-43-0458.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", "source_location": "L1", - "community": 363, - "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-99f19b3aecb3d8407f1d.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json" + "community": 159, + "norm_label": "index-2026-06-15t11-05-43-0458.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_06_15t11_05_43_0458_json" }, { - "label": "artifacts", + "label": "cmake", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", "source_location": "L2", - "community": 363, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_artifacts" + "community": 159, + "norm_label": "cmake", + "id": "reply_index_2026_06_15t11_05_43_0458_cmake" }, { - "label": "backtrace", + "label": "generator", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L26", - "community": 363, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtrace" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L4", + "community": 159, + "norm_label": "generator", + "id": "reply_index_2026_06_15t11_05_43_0458_cmake_generator" }, { - "label": "backtraceGraph", + "label": "multiConfig", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L27", - "community": 363, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L29", - "community": 363, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L38", - "community": 363, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L43", - "community": 363, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L86", - "community": 363, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L201", - "community": 363, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_id" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L6", + "community": 159, + "norm_label": "multiconfig", + "id": "reply_index_2026_06_15t11_05_43_0458_generator_multiconfig" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L202", - "community": 363, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L7", + "community": 159, "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_name" + "id": "reply_index_2026_06_15t11_05_43_0458_generator_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L203", - "community": 363, + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L9", + "community": 159, "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths" + "id": "reply_index_2026_06_15t11_05_43_0458_cmake_paths" }, { - "label": "build", + "label": "cmake", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L205", - "community": 363, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_build" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L11", + "community": 159, + "norm_label": "cmake", + "id": "reply_index_2026_06_15t11_05_43_0458_paths_cmake" }, { - "label": "source", + "label": "cpack", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L206", - "community": 363, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_source" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L12", + "community": 159, + "norm_label": "cpack", + "id": "reply_index_2026_06_15t11_05_43_0458_paths_cpack" }, { - "label": "sourceGroups", + "label": "ctest", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L208", - "community": 363, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sourcegroups" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L13", + "community": 159, + "norm_label": "ctest", + "id": "reply_index_2026_06_15t11_05_43_0458_paths_ctest" }, { - "label": "sources", + "label": "root", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L224", - "community": 363, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sources" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L14", + "community": 159, + "norm_label": "root", + "id": "reply_index_2026_06_15t11_05_43_0458_paths_root" }, { - "label": "type", + "label": "version", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L269", - "community": 363, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_type" + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L16", + "community": 159, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_05_43_0458_cmake_version" + }, + { + "label": "isDirty", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L18", + "community": 159, + "norm_label": "isdirty", + "id": "reply_index_2026_06_15t11_05_43_0458_version_isdirty" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L19", + "community": 159, + "norm_label": "major", + "id": "reply_index_2026_06_15t11_05_43_0458_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L20", + "community": 159, + "norm_label": "minor", + "id": "reply_index_2026_06_15t11_05_43_0458_version_minor" + }, + { + "label": "patch", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L21", + "community": 159, + "norm_label": "patch", + "id": "reply_index_2026_06_15t11_05_43_0458_version_patch" + }, + { + "label": "string", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L22", + "community": 159, + "norm_label": "string", + "id": "reply_index_2026_06_15t11_05_43_0458_version_string" + }, + { + "label": "suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L23", + "community": 159, + "norm_label": "suffix", + "id": "reply_index_2026_06_15t11_05_43_0458_version_suffix" + }, + { + "label": "objects", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L26", + "community": 159, + "norm_label": "objects", + "id": "reply_index_2026_06_15t11_05_43_0458_objects" + }, + { + "label": "reply", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L56", + "community": 159, + "norm_label": "reply", + "id": "reply_index_2026_06_15t11_05_43_0458_reply" + }, + { + "label": "client-agp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L58", + "community": 159, + "norm_label": "client-agp", + "id": "reply_index_2026_06_15t11_05_43_0458_reply_client_agp" + }, + { + "label": "cache-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L60", + "community": 159, + "norm_label": "cache-v2", + "id": "reply_index_2026_06_15t11_05_43_0458_client_agp_cache_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L62", + "community": 159, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_05_43_0458_cache_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L63", + "community": 159, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_05_43_0458_cache_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L64", + "community": 159, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_05_43_0458_cache_v2_version" + }, + { + "label": "cmakeFiles-v1", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L70", + "community": 159, + "norm_label": "cmakefiles-v1", + "id": "reply_index_2026_06_15t11_05_43_0458_client_agp_cmakefiles_v1" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L72", + "community": 159, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_05_43_0458_cmakefiles_v1_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L73", + "community": 159, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_05_43_0458_cmakefiles_v1_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L74", + "community": 159, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_05_43_0458_cmakefiles_v1_version" + }, + { + "label": "codemodel-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L80", + "community": 159, + "norm_label": "codemodel-v2", + "id": "reply_index_2026_06_15t11_05_43_0458_client_agp_codemodel_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L82", + "community": 159, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_15t11_05_43_0458_codemodel_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L83", + "community": 159, + "norm_label": "kind", + "id": "reply_index_2026_06_15t11_05_43_0458_codemodel_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L84", + "community": 159, + "norm_label": "version", + "id": "reply_index_2026_06_15t11_05_43_0458_codemodel_v2_version" }, { "label": "directory-rnasyncstorage_autolinked_build-RelWithDebInfo-ec755c3cd9003338013f.json", @@ -66752,6 +75540,348 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_paths_source" }, + { + "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L1", + "community": 354, + "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-6873ea71be6dda08995d.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L2", + "community": 354, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L26", + "community": 354, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L27", + "community": 354, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L29", + "community": 354, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L38", + "community": 354, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L43", + "community": 354, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L86", + "community": 354, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L201", + "community": 354, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L202", + "community": 354, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L203", + "community": 354, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L205", + "community": 354, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L206", + "community": 354, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L208", + "community": 354, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L224", + "community": 354, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L269", + "community": 354, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" + }, + { + "label": "target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L1", + "community": 245, + "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-9e4eb7f1a03c976f24b0.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L2", + "community": 245, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L8", + "community": 245, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L9", + "community": 245, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L11", + "community": 245, + "norm_label": "commands", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L20", + "community": 245, + "norm_label": "files", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L25", + "community": 245, + "norm_label": "nodes", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L74", + "community": 245, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L214", + "community": 245, + "norm_label": "id", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L215", + "community": 245, + "norm_label": "link", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L217", + "community": 245, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L243", + "community": 245, + "norm_label": "language", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L244", + "community": 245, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L246", + "community": 245, + "norm_label": "path", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L249", + "community": 245, + "norm_label": "name", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L250", + "community": 245, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L251", + "community": 245, + "norm_label": "paths", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L253", + "community": 245, + "norm_label": "build", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L254", + "community": 245, + "norm_label": "source", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L256", + "community": 245, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L274", + "community": 245, + "norm_label": "sources", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L331", + "community": 245, + "norm_label": "type", + "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_type" + }, { "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build.core-RelWithDebInfo-a9f6f6c634eac5fe0705.json", "file_type": "code", @@ -66834,202 +75964,202 @@ "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_paths_source" }, { - "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L1", - "community": 177, - "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-3bf954f99049ff22d109.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json" + "community": 176, + "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-1996a841f833afa9259b.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L2", - "community": 177, + "community": 176, "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_artifacts" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L8", - "community": 177, + "community": 176, "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtrace" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L9", - "community": 177, + "community": 176, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtracegraph" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L11", - "community": 177, + "community": 176, "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtracegraph_commands" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L20", - "community": 177, + "community": 176, "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtracegraph_files" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L25", - "community": 177, + "community": 176, "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtracegraph_nodes" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L74", - "community": 177, + "community": 176, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_compilegroups" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L214", - "community": 177, + "community": 176, "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_id" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_id" }, { "label": "link", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L215", - "community": 177, + "community": 176, "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link" }, { "label": "commandFragments", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L217", - "community": 177, + "community": 176, "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link_commandfragments" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_commandfragments" }, { "label": "language", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L243", - "community": 177, + "community": 176, "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link_language" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_language" }, { "label": "sysroot", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L244", - "community": 177, + "community": 176, "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link_sysroot" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_sysroot" }, { "label": "path", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L246", - "community": 177, + "community": 176, "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_sysroot_path" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L249", - "community": 177, + "community": 176, "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_name" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_name" }, { "label": "nameOnDisk", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L250", - "community": 177, + "community": 176, "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_nameondisk" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L251", - "community": 177, + "community": 176, "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_paths" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L253", - "community": 177, + "community": 176, "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_paths_build" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L254", - "community": 177, + "community": 176, "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_paths_source" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L256", - "community": 177, + "community": 176, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_sourcegroups" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L274", - "community": 177, + "community": 176, "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_sources" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L331", - "community": 177, + "community": 176, "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_type" + "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_type" }, { "label": "directory-RNCTabView_autolinked_build-RelWithDebInfo-b7a7f29ab6b37dd5df56.json", @@ -67112,6 +76242,204 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_paths_source" }, + { + "label": "target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L1", + "community": 174, + "norm_label": "target-react_codegen_rnpicker-relwithdebinfo-aac301ad76305131bd97.json", + "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L2", + "community": 174, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L8", + "community": 174, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L9", + "community": 174, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L11", + "community": 174, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L19", + "community": 174, + "norm_label": "files", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L23", + "community": 174, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L60", + "community": 174, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L188", + "community": 174, + "norm_label": "id", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L189", + "community": 174, + "norm_label": "link", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L191", + "community": 174, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L217", + "community": 174, + "norm_label": "language", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L218", + "community": 174, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L220", + "community": 174, + "norm_label": "path", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L223", + "community": 174, + "norm_label": "name", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L224", + "community": 174, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L225", + "community": 174, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L227", + "community": 174, + "norm_label": "build", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L228", + "community": 174, + "norm_label": "source", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L230", + "community": 174, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L252", + "community": 174, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L333", + "community": 174, + "norm_label": "type", + "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_type" + }, { "label": "compile_commands.json", "file_type": "code", @@ -67171,73 +76499,334 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L37", - "community": 87, + "community": 1131, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L38", + "community": 1131, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L39", + "community": 1131, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L40", + "community": 1131, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L41", + "community": 1131, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L47", - "community": 87, + "community": 1066, "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L48", + "community": 1066, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L49", + "community": 1066, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L50", + "community": 1066, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L52", - "community": 87, + "community": 1136, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L53", + "community": 1136, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L54", + "community": 1136, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L55", + "community": 1136, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L56", + "community": 1136, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L62", - "community": 87, + "community": 990, "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L63", + "community": 990, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L64", + "community": 990, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L65", + "community": 990, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, { "label": "appmodules::@6890427a1f51a3e7e1df", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L67", - "community": 87, + "community": 1065, "norm_label": "appmodules::@6890427a1f51a3e7e1df", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L68", + "community": 1065, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L69", + "community": 1065, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L70", + "community": 1065, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L71", + "community": 1065, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L85", - "community": 87, + "community": 1137, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L86", + "community": 1137, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L87", + "community": 1137, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L88", + "community": 1137, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L89", + "community": 1137, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L95", - "community": 87, + "community": 1135, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L96", + "community": 1135, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L97", + "community": 1135, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L98", + "community": 1135, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L99", + "community": 1135, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L105", - "community": 87, + "community": 1265, "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L106", + "community": 1265, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L107", + "community": 1265, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L108", + "community": 1265, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", @@ -67247,21 +76836,75 @@ "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L111", + "community": 87, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L112", + "community": 87, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L113", + "community": 87, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L115", - "community": 87, + "community": 449, "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L116", + "community": 449, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L117", + "community": 449, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L118", + "community": 449, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, { "label": "core::@1b9a7d546b295b7d0867", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L120", - "community": 87, + "community": 641, "norm_label": "core::@1b9a7d546b295b7d0867", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" }, @@ -67270,7 +76913,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L121", - "community": 87, + "community": 990, "norm_label": "artifactname", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" }, @@ -67279,7 +76922,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L122", - "community": 87, + "community": 641, "norm_label": "abi", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" }, @@ -67288,7 +76931,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L123", - "community": 87, + "community": 1065, "norm_label": "output", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" }, @@ -67297,7 +76940,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L124", - "community": 87, + "community": 1066, "norm_label": "runtimefiles", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, @@ -67306,64 +76949,289 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L126", - "community": 87, + "community": 1138, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L127", + "community": 1138, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L128", + "community": 1138, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L129", + "community": 1138, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L130", + "community": 1138, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L136", - "community": 87, + "community": 990, "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L137", + "community": 990, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L138", + "community": 990, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L139", + "community": 990, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L141", - "community": 87, + "community": 1134, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L142", + "community": 1134, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L143", + "community": 1134, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L144", + "community": 1134, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L145", + "community": 1134, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L151", - "community": 87, + "community": 1066, "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L152", + "community": 1066, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L153", + "community": 1066, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L154", + "community": 1066, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L156", - "community": 87, + "community": 1132, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L157", + "community": 1132, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L158", + "community": 1132, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L159", + "community": 1132, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L160", + "community": 1132, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L166", - "community": 87, + "community": 641, "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L167", + "community": 641, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L168", + "community": 641, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L169", + "community": 641, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", "source_location": "L171", - "community": 87, + "community": 1133, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L172", + "community": 1133, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L173", + "community": 1133, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L174", + "community": 1133, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L175", + "community": 1133, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "label": "prefab_config.json", "file_type": "code", @@ -67441,7 +77309,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L36", - "community": 57, + "community": 1034, "norm_label": "libraries", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries" }, @@ -67450,16 +77318,52 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L37", - "community": 57, + "community": 939, "norm_label": "appmodules::@6890427a1f51a3e7e1df", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L38", + "community": 939, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L39", + "community": 939, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L40", + "community": 939, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L41", + "community": 939, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, { "label": "runtimeFiles", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L42", - "community": 57, + "community": 939, "norm_label": "runtimefiles", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, @@ -67468,16 +77372,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L56", - "community": 57, + "community": 1034, "norm_label": "core::@1b9a7d546b295b7d0867", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L57", + "community": 1034, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, { "label": "abi", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L58", - "community": 57, + "community": 988, "norm_label": "abi", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_abi" }, @@ -67486,7 +77399,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L59", - "community": 57, + "community": 989, "norm_label": "artifactname", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" }, @@ -67495,7 +77408,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L60", - "community": 57, + "community": 939, "norm_label": "output", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, @@ -67504,145 +77417,721 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L62", - "community": 57, + "community": 1064, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L63", + "community": 1064, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L64", + "community": 1064, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L65", + "community": 1064, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L66", + "community": 1064, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L67", + "community": 1064, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, { "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L73", - "community": 57, + "community": 1058, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L74", + "community": 1058, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L75", + "community": 1058, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L76", + "community": 1058, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L77", + "community": 1058, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L78", + "community": 1058, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L84", - "community": 57, + "community": 988, "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L85", + "community": 988, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L86", + "community": 988, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L87", + "community": 988, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L89", - "community": 57, + "community": 1059, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L90", + "community": 1059, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L91", + "community": 1059, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L92", + "community": 1059, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L93", + "community": 1059, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L94", + "community": 1059, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L100", - "community": 57, + "community": 957, "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L101", + "community": 957, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L102", + "community": 957, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L103", + "community": 957, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L105", - "community": 57, + "community": 1262, "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L106", + "community": 1262, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L107", + "community": 1262, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L108", + "community": 1262, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L110", - "community": 57, + "community": 1063, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L111", + "community": 1063, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L112", + "community": 1063, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L113", + "community": 1063, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L114", + "community": 1063, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L115", + "community": 1063, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L121", - "community": 57, + "community": 988, "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L122", + "community": 988, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L123", + "community": 988, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L124", + "community": 988, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L126", - "community": 57, + "community": 1034, "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L127", + "community": 1034, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L128", + "community": 1034, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L129", + "community": 1034, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L131", - "community": 57, + "community": 989, "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L132", + "community": 989, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L133", + "community": 989, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L134", + "community": 989, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L136", - "community": 57, + "community": 1060, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L137", + "community": 1060, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L138", + "community": 1060, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L139", + "community": 1060, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L140", + "community": 1060, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L141", + "community": 1060, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L147", - "community": 57, + "community": 989, "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L148", + "community": 989, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L149", + "community": 989, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L150", + "community": 989, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L152", - "community": 57, + "community": 1061, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L153", + "community": 1061, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L154", + "community": 1061, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L155", + "community": 1061, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L156", + "community": 1061, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L157", + "community": 1061, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L163", - "community": 57, + "community": 939, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L164", + "community": 939, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L165", + "community": 939, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L166", + "community": 939, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L167", + "community": 939, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L168", + "community": 939, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L174", - "community": 57, + "community": 957, "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L175", + "community": 957, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L176", + "community": 957, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L177", + "community": 957, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L179", - "community": 57, + "community": 1062, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L180", + "community": 1062, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L181", + "community": 1062, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L182", + "community": 1062, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L183", + "community": 1062, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L184", + "community": 1062, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "label": "toolchains", "file_type": "code", @@ -67657,7 +78146,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L192", - "community": 57, + "community": 957, "norm_label": "toolchain", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, @@ -67666,7 +78155,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L193", - "community": 57, + "community": 957, "norm_label": "ccompilerexecutable", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchain_ccompilerexecutable" }, @@ -67675,7 +78164,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", "source_location": "L194", - "community": 57, + "community": 957, "norm_label": "cppcompilerexecutable", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchain_cppcompilerexecutable" }, @@ -67769,6 +78258,294 @@ "norm_label": "main()", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" }, + { + "label": "cmakeFiles-v1-3bc501df0f7b3202d590.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L1", + "community": 992, + "norm_label": "cmakefiles-v1-3bc501df0f7b3202d590.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_3bc501df0f7b3202d590_json" + }, + { + "label": "inputs", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L2", + "community": 992, + "norm_label": "inputs", + "id": "reply_cmakefiles_v1_3bc501df0f7b3202d590_inputs" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L334", + "community": 992, + "norm_label": "kind", + "id": "reply_cmakefiles_v1_3bc501df0f7b3202d590_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L335", + "community": 992, + "norm_label": "paths", + "id": "reply_cmakefiles_v1_3bc501df0f7b3202d590_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L337", + "community": 992, + "norm_label": "build", + "id": "reply_cmakefiles_v1_3bc501df0f7b3202d590_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L338", + "community": 992, + "norm_label": "source", + "id": "reply_cmakefiles_v1_3bc501df0f7b3202d590_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L340", + "community": 992, + "norm_label": "version", + "id": "reply_cmakefiles_v1_3bc501df0f7b3202d590_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L342", + "community": 992, + "norm_label": "major", + "id": "reply_cmakefiles_v1_3bc501df0f7b3202d590_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L343", + "community": 992, + "norm_label": "minor", + "id": "reply_cmakefiles_v1_3bc501df0f7b3202d590_version_minor" + }, + { + "label": "target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L1", + "community": 249, + "norm_label": "target-react_codegen_truesheetspec-debug-a014b96283b54de98f8f.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L2", + "community": 249, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L8", + "community": 249, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L9", + "community": 249, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L11", + "community": 249, + "norm_label": "commands", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L20", + "community": 249, + "norm_label": "files", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L25", + "community": 249, + "norm_label": "nodes", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L74", + "community": 249, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L214", + "community": 249, + "norm_label": "id", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L215", + "community": 249, + "norm_label": "link", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L217", + "community": 249, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L243", + "community": 249, + "norm_label": "language", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L244", + "community": 249, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L246", + "community": 249, + "norm_label": "path", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L249", + "community": 249, + "norm_label": "name", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L250", + "community": 249, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L251", + "community": 249, + "norm_label": "paths", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L253", + "community": 249, + "norm_label": "build", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L254", + "community": 249, + "norm_label": "source", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L256", + "community": 249, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L274", + "community": 249, + "norm_label": "sources", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L331", + "community": 249, + "norm_label": "type", + "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_type" + }, + { + "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L1", + "community": 108, + "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build-debug-3c4f354f8e9d2bc9c5a6.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -67841,6 +78618,159 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_source" }, + { + "label": "target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L1", + "community": 407, + "norm_label": "target-react_codegen_rnreanimated-debug-7e8660ff859985ff561f.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L2", + "community": 407, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L26", + "community": 407, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L27", + "community": 407, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L29", + "community": 407, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L38", + "community": 407, + "norm_label": "files", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L43", + "community": 407, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L86", + "community": 407, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L201", + "community": 407, + "norm_label": "id", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L202", + "community": 407, + "norm_label": "name", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L203", + "community": 407, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L205", + "community": 407, + "norm_label": "build", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L206", + "community": 407, + "norm_label": "source", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L208", + "community": 407, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L224", + "community": 407, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L269", + "community": 407, + "norm_label": "type", + "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_type" + }, + { + "label": "directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L1", + "community": 98, + "norm_label": "directory-rnmmkvspec_autolinked_build-debug-0a577c6ddcdff9b1cd2d.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -67995,148 +78925,211 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_source" }, { - "label": "target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", + "label": "target-appmodules-Debug-ac22e26f182615285111.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", "source_location": "L1", - "community": 396, - "norm_label": "target-react_codegen_rnctabview-debug-21bb48212073c2556ee9.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_json" + "community": 136, + "norm_label": "target-appmodules-debug-ac22e26f182615285111.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", "source_location": "L2", - "community": 396, + "community": 136, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_artifacts" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L26", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L8", + "community": 136, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtrace" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L27", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L9", + "community": 136, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtracegraph" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L29", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L11", + "community": 136, "norm_label": "commands", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtracegraph_commands" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L38", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L21", + "community": 136, "norm_label": "files", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtracegraph_files" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L43", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L34", + "community": 136, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtracegraph_nodes" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L86", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L156", + "community": 136, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_compilegroups" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L481", + "community": 136, + "norm_label": "dependencies", + "id": "reply_target_appmodules_debug_ac22e26f182615285111_dependencies" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L201", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L552", + "community": 136, "norm_label": "id", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_id" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L553", + "community": 136, + "norm_label": "link", + "id": "reply_target_appmodules_debug_ac22e26f182615285111_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L555", + "community": 136, + "norm_label": "commandfragments", + "id": "reply_target_appmodules_debug_ac22e26f182615285111_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L637", + "community": 136, + "norm_label": "language", + "id": "reply_target_appmodules_debug_ac22e26f182615285111_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L638", + "community": 136, + "norm_label": "sysroot", + "id": "reply_target_appmodules_debug_ac22e26f182615285111_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L640", + "community": 136, + "norm_label": "path", + "id": "reply_target_appmodules_debug_ac22e26f182615285111_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L202", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L643", + "community": 136, "norm_label": "name", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_name" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L644", + "community": 136, + "norm_label": "nameondisk", + "id": "reply_target_appmodules_debug_ac22e26f182615285111_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L203", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L645", + "community": 136, "norm_label": "paths", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_paths" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L205", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L647", + "community": 136, "norm_label": "build", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_paths_build" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L206", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L648", + "community": 136, "norm_label": "source", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_paths_source" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L208", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L650", + "community": 136, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_sourcegroups" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L224", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L723", + "community": 136, "norm_label": "sources", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_sources" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L269", - "community": 396, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L1074", + "community": 136, "norm_label": "type", - "id": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_type" + "id": "reply_target_appmodules_debug_ac22e26f182615285111_type" }, { "label": "directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", @@ -68301,148 +79294,355 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_source" }, { - "label": "target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "label": "target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L1", - "community": 309, - "norm_label": "target-react_codegen_rnworklets-debug-5305bfb8a569aab0f2ba.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_json" + "community": 65, + "norm_label": "target-react_codegen_rnworklets-debug-2a16a654860f2c4660e9.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L2", - "community": 309, + "community": 65, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_artifacts" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L26", - "community": 309, + "community": 65, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtrace" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L27", - "community": 309, + "community": 65, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtracegraph" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L29", - "community": 309, + "community": 65, "norm_label": "commands", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtracegraph_commands" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L38", - "community": 309, + "community": 65, "norm_label": "files", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtracegraph_files" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L43", - "community": 309, + "community": 65, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtracegraph_nodes" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L86", - "community": 309, + "community": 65, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_compilegroups" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L201", - "community": 309, + "community": 65, "norm_label": "id", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_id" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L202", - "community": 309, + "community": 65, "norm_label": "name", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_name" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L203", - "community": 309, + "community": 65, "norm_label": "paths", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_paths" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L205", - "community": 309, + "community": 65, "norm_label": "build", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_paths_build" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L206", - "community": 309, + "community": 65, "norm_label": "source", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_paths_source" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L208", - "community": 309, + "community": 65, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_sourcegroups" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L224", - "community": 309, + "community": 65, "norm_label": "sources", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_sources" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L269", - "community": 309, + "community": 65, "norm_label": "type", - "id": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_type" + "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_type" + }, + { + "label": "target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L1", + "community": 198, + "norm_label": "target-react_codegen_rnkc-debug-9d1b45f70c1ef994795c.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L2", + "community": 198, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L8", + "community": 198, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L9", + "community": 198, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L11", + "community": 198, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L21", + "community": 198, + "norm_label": "files", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L26", + "community": 198, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L75", + "community": 198, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L221", + "community": 198, + "norm_label": "id", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L222", + "community": 198, + "norm_label": "link", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L224", + "community": 198, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L250", + "community": 198, + "norm_label": "language", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L251", + "community": 198, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L253", + "community": 198, + "norm_label": "path", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L256", + "community": 198, + "norm_label": "name", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L257", + "community": 198, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L258", + "community": 198, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L260", + "community": 198, + "norm_label": "build", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L261", + "community": 198, + "norm_label": "source", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L263", + "community": 198, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L287", + "community": 198, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L380", + "community": 198, + "norm_label": "type", + "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_type" + }, + { + "label": "directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L1", + "community": 100, + "norm_label": "directory-rnpicker_autolinked_build-debug-aa9f04d4f6540efeba1f.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json" }, { "label": "backtraceGraph", @@ -68516,6 +79716,15 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_source" }, + { + "label": "directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L1", + "community": 97, + "norm_label": "directory-rngesturehandler_codegen_autolinked_build-debug-c1f265f99af0b94266ef.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -68589,1120 +79798,841 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_source" }, { - "label": "target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "label": "target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L1", - "community": 393, - "norm_label": "target-react_codegen_lottiereactnative-debug-53f60d36640545bd8809.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_json" + "community": 304, + "norm_label": "target-react_codegen_rnasyncstorage-debug-895dc7d142aed87947f3.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L2", - "community": 393, + "community": 304, "norm_label": "artifacts", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_artifacts" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L26", - "community": 393, + "community": 304, "norm_label": "backtrace", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtrace" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L27", - "community": 393, + "community": 304, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtracegraph" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L29", - "community": 393, + "community": 304, "norm_label": "commands", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtracegraph_commands" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L38", - "community": 393, + "community": 304, "norm_label": "files", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtracegraph_files" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L43", - "community": 393, + "community": 304, "norm_label": "nodes", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtracegraph_nodes" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L86", - "community": 393, + "community": 304, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_compilegroups" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L201", - "community": 393, + "community": 304, "norm_label": "id", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_id" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L202", - "community": 393, + "community": 304, "norm_label": "name", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_name" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L203", - "community": 393, + "community": 304, "norm_label": "paths", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_paths" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L205", - "community": 393, + "community": 304, "norm_label": "build", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_paths_build" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L206", - "community": 393, + "community": 304, "norm_label": "source", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_paths_source" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L208", - "community": 393, + "community": 304, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_sourcegroups" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L224", - "community": 393, + "community": 304, "norm_label": "sources", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_sources" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L269", - "community": 393, + "community": 304, "norm_label": "type", - "id": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_type" + "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_type" }, { - "label": "codemodel-v2-57c0ffda423c61a385f6.json", + "label": "target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L1", - "community": 586, - "norm_label": "codemodel-v2-57c0ffda423c61a385f6.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_57c0ffda423c61a385f6_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L2", - "community": 586, - "norm_label": "configurations", - "id": "reply_codemodel_v2_57c0ffda423c61a385f6_configurations" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L508", - "community": 586, - "norm_label": "kind", - "id": "reply_codemodel_v2_57c0ffda423c61a385f6_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L509", - "community": 586, - "norm_label": "paths", - "id": "reply_codemodel_v2_57c0ffda423c61a385f6_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L511", - "community": 586, - "norm_label": "build", - "id": "reply_codemodel_v2_57c0ffda423c61a385f6_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L512", - "community": 586, - "norm_label": "source", - "id": "reply_codemodel_v2_57c0ffda423c61a385f6_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L514", - "community": 586, - "norm_label": "version", - "id": "reply_codemodel_v2_57c0ffda423c61a385f6_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L516", - "community": 586, - "norm_label": "major", - "id": "reply_codemodel_v2_57c0ffda423c61a385f6_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L517", - "community": 586, - "norm_label": "minor", - "id": "reply_codemodel_v2_57c0ffda423c61a385f6_version_minor" - }, - { - "label": "target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L1", - "community": 235, - "norm_label": "target-react_codegen_safeareacontext-debug-868d039563fd314f2fe7.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json" + "community": 185, + "norm_label": "target-react_codegen_rncslider-debug-c0e5d4a34e94cb657c85.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L2", - "community": 235, + "community": 185, "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_artifacts" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L8", - "community": 235, + "community": 185, "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtrace" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L9", - "community": 235, + "community": 185, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtracegraph" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L11", - "community": 235, + "community": 185, "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtracegraph_commands" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L20", - "community": 235, + "community": 185, "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtracegraph_files" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L25", - "community": 235, + "community": 185, "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtracegraph_nodes" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L74", - "community": 235, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L68", + "community": 185, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_compilegroups" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L214", - "community": 235, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L196", + "community": 185, "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_id" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_id" }, { "label": "link", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L215", - "community": 235, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L197", + "community": 185, "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link" }, { "label": "commandFragments", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L217", - "community": 235, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L199", + "community": 185, "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link_commandfragments" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_commandfragments" }, { "label": "language", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L243", - "community": 235, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L225", + "community": 185, "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link_language" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_language" }, { "label": "sysroot", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L244", - "community": 235, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L226", + "community": 185, "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link_sysroot" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_sysroot" }, { "label": "path", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L246", - "community": 235, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L228", + "community": 185, "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_sysroot_path" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L249", - "community": 235, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L231", + "community": 185, "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_name" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_name" }, { "label": "nameOnDisk", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L250", - "community": 235, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L251", - "community": 235, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L253", - "community": 235, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L254", - "community": 235, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L256", - "community": 235, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L274", - "community": 235, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L331", - "community": 235, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_type" - }, - { - "label": "target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L1", - "community": 399, - "norm_label": "target-react_codegen_rngesturehandler_codegen-debug-2730a0cb09512602a95e.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L2", - "community": 399, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L26", - "community": 399, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L27", - "community": 399, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L29", - "community": 399, - "norm_label": "commands", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L38", - "community": 399, - "norm_label": "files", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L43", - "community": 399, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L86", - "community": 399, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L201", - "community": 399, - "norm_label": "id", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L202", - "community": 399, - "norm_label": "name", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L203", - "community": 399, - "norm_label": "paths", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L205", - "community": 399, - "norm_label": "build", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L206", - "community": 399, - "norm_label": "source", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L208", - "community": 399, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L224", - "community": 399, - "norm_label": "sources", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L269", - "community": 399, - "norm_label": "type", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_type" - }, - { - "label": "target-appmodules-Debug-2689bf47ebc3433386c8.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L1", - "community": 133, - "norm_label": "target-appmodules-debug-2689bf47ebc3433386c8.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L2", - "community": 133, - "norm_label": "artifacts", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L8", - "community": 133, - "norm_label": "backtrace", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L9", - "community": 133, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L11", - "community": 133, - "norm_label": "commands", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L21", - "community": 133, - "norm_label": "files", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L34", - "community": 133, - "norm_label": "nodes", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L156", - "community": 133, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L481", - "community": 133, - "norm_label": "dependencies", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L552", - "community": 133, - "norm_label": "id", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L553", - "community": 133, - "norm_label": "link", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L555", - "community": 133, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L637", - "community": 133, - "norm_label": "language", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L638", - "community": 133, - "norm_label": "sysroot", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L640", - "community": 133, - "norm_label": "path", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L643", - "community": 133, - "norm_label": "name", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L644", - "community": 133, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L645", - "community": 133, - "norm_label": "paths", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L647", - "community": 133, - "norm_label": "build", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L648", - "community": 133, - "norm_label": "source", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L650", - "community": 133, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L723", - "community": 133, - "norm_label": "sources", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L1074", - "community": 133, - "norm_label": "type", - "id": "reply_target_appmodules_debug_2689bf47ebc3433386c8_type" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L1", - "community": 404, - "norm_label": "target-react_codegen_rnmenuviewspec-debug-b609dbc23d6111353bfd.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L2", - "community": 404, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L26", - "community": 404, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L27", - "community": 404, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L29", - "community": 404, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L38", - "community": 404, - "norm_label": "files", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L43", - "community": 404, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L86", - "community": 404, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L201", - "community": 404, - "norm_label": "id", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L202", - "community": 404, - "norm_label": "name", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L203", - "community": 404, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L205", - "community": 404, - "norm_label": "build", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L206", - "community": 404, - "norm_label": "source", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L208", - "community": 404, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L224", - "community": 404, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L269", - "community": 404, - "norm_label": "type", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_type" - }, - { - "label": "target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L1", - "community": 165, - "norm_label": "target-react_codegen_rnsvg-debug-04cf2c7b88f9447168c4.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L2", - "community": 165, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L8", - "community": 165, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L9", - "community": 165, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L11", - "community": 165, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L20", - "community": 165, - "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L25", - "community": 165, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L86", - "community": 165, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L232", - "community": 165, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L233", - "community": 165, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L235", - "community": 165, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L261", - "community": 165, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L262", - "community": 165, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L264", - "community": 165, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L267", - "community": 165, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L268", - "community": 165, + "community": 185, "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_nameondisk" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L269", - "community": 165, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L233", + "community": 185, "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_paths" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L271", - "community": 165, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L235", + "community": 185, "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_paths_build" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L272", - "community": 165, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L236", + "community": 185, "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_paths_source" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L274", - "community": 165, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L238", + "community": 185, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_sourcegroups" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L294", - "community": 165, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L256", + "community": 185, "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_sources" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L363", - "community": 165, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L313", + "community": 185, "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_type" + "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_type" + }, + { + "label": "target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L1", + "community": 217, + "norm_label": "target-react_codegen_rnscreens-debug-b76fd80767ed2c49ea98.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L2", + "community": 217, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L8", + "community": 217, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L9", + "community": 217, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L11", + "community": 217, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L21", + "community": 217, + "norm_label": "files", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L26", + "community": 217, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L75", + "community": 217, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L224", + "community": 217, + "norm_label": "id", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L225", + "community": 217, + "norm_label": "link", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L227", + "community": 217, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L253", + "community": 217, + "norm_label": "language", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L254", + "community": 217, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L256", + "community": 217, + "norm_label": "path", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L259", + "community": 217, + "norm_label": "name", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L260", + "community": 217, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L261", + "community": 217, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L263", + "community": 217, + "norm_label": "build", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L264", + "community": 217, + "norm_label": "source", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L266", + "community": 217, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L293", + "community": 217, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L404", + "community": 217, + "norm_label": "type", + "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_type" + }, + { + "label": "target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L1", + "community": 305, + "norm_label": "target-react_codegen_rnctabview-debug-978bc2ed187b2749e3cb.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L2", + "community": 305, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L26", + "community": 305, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L27", + "community": 305, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L29", + "community": 305, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L38", + "community": 305, + "norm_label": "files", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L43", + "community": 305, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L86", + "community": 305, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L201", + "community": 305, + "norm_label": "id", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L202", + "community": 305, + "norm_label": "name", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L203", + "community": 305, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L205", + "community": 305, + "norm_label": "build", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L206", + "community": 305, + "norm_label": "source", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L208", + "community": 305, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L224", + "community": 305, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L269", + "community": 305, + "norm_label": "type", + "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_type" + }, + { + "label": "target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L1", + "community": 303, + "norm_label": "target-react_codegen_lottiereactnative-debug-21f507e9ffa9e81130e7.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L2", + "community": 303, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L26", + "community": 303, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L27", + "community": 303, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L29", + "community": 303, + "norm_label": "commands", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L38", + "community": 303, + "norm_label": "files", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L43", + "community": 303, + "norm_label": "nodes", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L86", + "community": 303, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L201", + "community": 303, + "norm_label": "id", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L202", + "community": 303, + "norm_label": "name", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L203", + "community": 303, + "norm_label": "paths", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L205", + "community": 303, + "norm_label": "build", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L206", + "community": 303, + "norm_label": "source", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L208", + "community": 303, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L224", + "community": 303, + "norm_label": "sources", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L269", + "community": 303, + "norm_label": "type", + "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_type" + }, + { + "label": "directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L1", + "community": 105, + "norm_label": "directory-rncslider_autolinked_build-debug-9692891af1777e76efd8.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json" }, { "label": "backtraceGraph", @@ -69776,222 +80706,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_source" }, - { - "label": "index-2026-05-31T05-36-24-0273.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L1", - "community": 118, - "norm_label": "index-2026-05-31t05-36-24-0273.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_index_2026_05_31t05_36_24_0273_json" - }, - { - "label": "cmake", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L2", - "community": 118, - "norm_label": "cmake", - "id": "reply_index_2026_05_31t05_36_24_0273_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L4", - "community": 118, - "norm_label": "generator", - "id": "reply_index_2026_05_31t05_36_24_0273_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L6", - "community": 118, - "norm_label": "multiconfig", - "id": "reply_index_2026_05_31t05_36_24_0273_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L7", - "community": 118, - "norm_label": "name", - "id": "reply_index_2026_05_31t05_36_24_0273_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L9", - "community": 118, - "norm_label": "paths", - "id": "reply_index_2026_05_31t05_36_24_0273_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L12", - "community": 118, - "norm_label": "cpack", - "id": "reply_index_2026_05_31t05_36_24_0273_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L13", - "community": 118, - "norm_label": "ctest", - "id": "reply_index_2026_05_31t05_36_24_0273_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L14", - "community": 118, - "norm_label": "root", - "id": "reply_index_2026_05_31t05_36_24_0273_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L16", - "community": 118, - "norm_label": "version", - "id": "reply_index_2026_05_31t05_36_24_0273_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L18", - "community": 118, - "norm_label": "isdirty", - "id": "reply_index_2026_05_31t05_36_24_0273_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L19", - "community": 118, - "norm_label": "major", - "id": "reply_index_2026_05_31t05_36_24_0273_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L20", - "community": 118, - "norm_label": "minor", - "id": "reply_index_2026_05_31t05_36_24_0273_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L21", - "community": 118, - "norm_label": "patch", - "id": "reply_index_2026_05_31t05_36_24_0273_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L22", - "community": 118, - "norm_label": "string", - "id": "reply_index_2026_05_31t05_36_24_0273_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L23", - "community": 118, - "norm_label": "suffix", - "id": "reply_index_2026_05_31t05_36_24_0273_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L26", - "community": 118, - "norm_label": "objects", - "id": "reply_index_2026_05_31t05_36_24_0273_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L56", - "community": 118, - "norm_label": "reply", - "id": "reply_index_2026_05_31t05_36_24_0273_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L58", - "community": 118, - "norm_label": "client-agp", - "id": "reply_index_2026_05_31t05_36_24_0273_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L60", - "community": 118, - "norm_label": "cache-v2", - "id": "reply_index_2026_05_31t05_36_24_0273_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L62", - "community": 118, - "norm_label": "jsonfile", - "id": "reply_index_2026_05_31t05_36_24_0273_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L63", - "community": 118, - "norm_label": "kind", - "id": "reply_index_2026_05_31t05_36_24_0273_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L70", - "community": 118, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_05_31t05_36_24_0273_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L80", - "community": 118, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_05_31t05_36_24_0273_client_agp_codemodel_v2" - }, { "label": "target-core-Debug-f3f5c86f651f420142d8.json", "file_type": "code", @@ -70154,6 +80868,726 @@ "norm_label": "type", "id": "reply_target_core_debug_f3f5c86f651f420142d8_type" }, + { + "label": "index-2026-06-10T07-37-32-0706.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L1", + "community": 146, + "norm_label": "index-2026-06-10t07-37-32-0706.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_index_2026_06_10t07_37_32_0706_json" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L2", + "community": 146, + "norm_label": "cmake", + "id": "reply_index_2026_06_10t07_37_32_0706_cmake" + }, + { + "label": "generator", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L4", + "community": 146, + "norm_label": "generator", + "id": "reply_index_2026_06_10t07_37_32_0706_cmake_generator" + }, + { + "label": "multiConfig", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L6", + "community": 146, + "norm_label": "multiconfig", + "id": "reply_index_2026_06_10t07_37_32_0706_generator_multiconfig" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L7", + "community": 146, + "norm_label": "name", + "id": "reply_index_2026_06_10t07_37_32_0706_generator_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L9", + "community": 146, + "norm_label": "paths", + "id": "reply_index_2026_06_10t07_37_32_0706_cmake_paths" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L11", + "community": 146, + "norm_label": "cmake", + "id": "reply_index_2026_06_10t07_37_32_0706_paths_cmake" + }, + { + "label": "cpack", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L12", + "community": 146, + "norm_label": "cpack", + "id": "reply_index_2026_06_10t07_37_32_0706_paths_cpack" + }, + { + "label": "ctest", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L13", + "community": 146, + "norm_label": "ctest", + "id": "reply_index_2026_06_10t07_37_32_0706_paths_ctest" + }, + { + "label": "root", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L14", + "community": 146, + "norm_label": "root", + "id": "reply_index_2026_06_10t07_37_32_0706_paths_root" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L16", + "community": 146, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_32_0706_cmake_version" + }, + { + "label": "isDirty", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L18", + "community": 146, + "norm_label": "isdirty", + "id": "reply_index_2026_06_10t07_37_32_0706_version_isdirty" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L19", + "community": 146, + "norm_label": "major", + "id": "reply_index_2026_06_10t07_37_32_0706_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L20", + "community": 146, + "norm_label": "minor", + "id": "reply_index_2026_06_10t07_37_32_0706_version_minor" + }, + { + "label": "patch", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L21", + "community": 146, + "norm_label": "patch", + "id": "reply_index_2026_06_10t07_37_32_0706_version_patch" + }, + { + "label": "string", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L22", + "community": 146, + "norm_label": "string", + "id": "reply_index_2026_06_10t07_37_32_0706_version_string" + }, + { + "label": "suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L23", + "community": 146, + "norm_label": "suffix", + "id": "reply_index_2026_06_10t07_37_32_0706_version_suffix" + }, + { + "label": "objects", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L26", + "community": 146, + "norm_label": "objects", + "id": "reply_index_2026_06_10t07_37_32_0706_objects" + }, + { + "label": "reply", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L56", + "community": 146, + "norm_label": "reply", + "id": "reply_index_2026_06_10t07_37_32_0706_reply" + }, + { + "label": "client-agp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L58", + "community": 146, + "norm_label": "client-agp", + "id": "reply_index_2026_06_10t07_37_32_0706_reply_client_agp" + }, + { + "label": "cache-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L60", + "community": 146, + "norm_label": "cache-v2", + "id": "reply_index_2026_06_10t07_37_32_0706_client_agp_cache_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L62", + "community": 146, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_32_0706_cache_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L63", + "community": 146, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_32_0706_cache_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L64", + "community": 146, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_32_0706_cache_v2_version" + }, + { + "label": "cmakeFiles-v1", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L70", + "community": 146, + "norm_label": "cmakefiles-v1", + "id": "reply_index_2026_06_10t07_37_32_0706_client_agp_cmakefiles_v1" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L72", + "community": 146, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_32_0706_cmakefiles_v1_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L73", + "community": 146, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_32_0706_cmakefiles_v1_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L74", + "community": 146, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_32_0706_cmakefiles_v1_version" + }, + { + "label": "codemodel-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L80", + "community": 146, + "norm_label": "codemodel-v2", + "id": "reply_index_2026_06_10t07_37_32_0706_client_agp_codemodel_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L82", + "community": 146, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_32_0706_codemodel_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L83", + "community": 146, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_32_0706_codemodel_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L84", + "community": 146, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_32_0706_codemodel_v2_version" + }, + { + "label": "codemodel-v2-78739d8f0218d174c329.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L1", + "community": 589, + "norm_label": "codemodel-v2-78739d8f0218d174c329.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_78739d8f0218d174c329_json" + }, + { + "label": "configurations", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L2", + "community": 589, + "norm_label": "configurations", + "id": "reply_codemodel_v2_78739d8f0218d174c329_configurations" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L508", + "community": 589, + "norm_label": "kind", + "id": "reply_codemodel_v2_78739d8f0218d174c329_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L509", + "community": 589, + "norm_label": "paths", + "id": "reply_codemodel_v2_78739d8f0218d174c329_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L511", + "community": 589, + "norm_label": "build", + "id": "reply_codemodel_v2_78739d8f0218d174c329_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L512", + "community": 589, + "norm_label": "source", + "id": "reply_codemodel_v2_78739d8f0218d174c329_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L514", + "community": 589, + "norm_label": "version", + "id": "reply_codemodel_v2_78739d8f0218d174c329_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L516", + "community": 589, + "norm_label": "major", + "id": "reply_codemodel_v2_78739d8f0218d174c329_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L517", + "community": 589, + "norm_label": "minor", + "id": "reply_codemodel_v2_78739d8f0218d174c329_version_minor" + }, + { + "label": "target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L1", + "community": 401, + "norm_label": "target-react_codegen_rngesturehandler_codegen-debug-dc037f825c32ff148389.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L2", + "community": 401, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L26", + "community": 401, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L27", + "community": 401, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L29", + "community": 401, + "norm_label": "commands", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L38", + "community": 401, + "norm_label": "files", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L43", + "community": 401, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L86", + "community": 401, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L201", + "community": 401, + "norm_label": "id", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L202", + "community": 401, + "norm_label": "name", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L203", + "community": 401, + "norm_label": "paths", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L205", + "community": 401, + "norm_label": "build", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L206", + "community": 401, + "norm_label": "source", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L208", + "community": 401, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L224", + "community": 401, + "norm_label": "sources", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L269", + "community": 401, + "norm_label": "type", + "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_type" + }, + { + "label": "target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L1", + "community": 238, + "norm_label": "target-react_codegen_safeareacontext-debug-a88a8899d3c615ba9bc1.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L2", + "community": 238, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L8", + "community": 238, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L9", + "community": 238, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L11", + "community": 238, + "norm_label": "commands", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L20", + "community": 238, + "norm_label": "files", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L25", + "community": 238, + "norm_label": "nodes", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L74", + "community": 238, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L214", + "community": 238, + "norm_label": "id", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L215", + "community": 238, + "norm_label": "link", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L217", + "community": 238, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L243", + "community": 238, + "norm_label": "language", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L244", + "community": 238, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L246", + "community": 238, + "norm_label": "path", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L249", + "community": 238, + "norm_label": "name", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L250", + "community": 238, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L251", + "community": 238, + "norm_label": "paths", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L253", + "community": 238, + "norm_label": "build", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L254", + "community": 238, + "norm_label": "source", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L256", + "community": 238, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L274", + "community": 238, + "norm_label": "sources", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L331", + "community": 238, + "norm_label": "type", + "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_type" + }, + { + "label": "directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L1", + "community": 102, + "norm_label": "directory-rnworklets_autolinked_build-debug-c55782449035392fe125.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -70226,6 +81660,15 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_source" }, + { + "label": "directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L1", + "community": 101, + "norm_label": "directory-rnreanimated_autolinked_build-debug-f4aeae2d37b82d815393.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -70380,211 +81823,13 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_source" }, { - "label": "target-react-native-mmkv-Debug-059a4490c54c336b1751.json", + "label": "directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", "source_location": "L1", - "community": 144, - "norm_label": "target-react-native-mmkv-debug-059a4490c54c336b1751.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L2", - "community": 144, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L8", - "community": 144, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L9", - "community": 144, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L11", - "community": 144, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L17", - "community": 144, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L21", - "community": 144, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L52", - "community": 144, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L161", - "community": 144, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L172", - "community": 144, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L173", - "community": 144, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L175", - "community": 144, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L217", - "community": 144, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L218", - "community": 144, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L220", - "community": 144, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L223", - "community": 144, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L224", - "community": 144, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L225", - "community": 144, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L227", - "community": 144, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L228", - "community": 144, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L230", - "community": 144, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L255", - "community": 144, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L318", - "community": 144, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_type" + "community": 103, + "norm_label": "directory-truesheetspec_autolinked_build-debug-6f8e1947845121968926.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json" }, { "label": "backtraceGraph", @@ -70658,6 +81903,159 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_source" }, + { + "label": "target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L1", + "community": 307, + "norm_label": "target-react_codegen_rnmmkvspec-debug-fb5d7e06169843d297ff.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L2", + "community": 307, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L26", + "community": 307, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L27", + "community": 307, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L29", + "community": 307, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L38", + "community": 307, + "norm_label": "files", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L43", + "community": 307, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L86", + "community": 307, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L201", + "community": 307, + "norm_label": "id", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L202", + "community": 307, + "norm_label": "name", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L203", + "community": 307, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L205", + "community": 307, + "norm_label": "build", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L206", + "community": 307, + "norm_label": "source", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L208", + "community": 307, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L224", + "community": 307, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L269", + "community": 307, + "norm_label": "type", + "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_type" + }, + { + "label": "directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L1", + "community": 106, + "norm_label": "directory-rnctabview_autolinked_build-debug-b7a7f29ab6b37dd5df56.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -70731,742 +82129,418 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_source" }, { - "label": "cache-v2-19d5fbd3a1d69ce33a14.json", + "label": "target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-19d5fbd3a1d69ce33a14.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L1", - "community": 640, - "norm_label": "cache-v2-19d5fbd3a1d69ce33a14.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cache_v2_19d5fbd3a1d69ce33a14_json" - }, - { - "label": "entries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-19d5fbd3a1d69ce33a14.json", - "source_location": "L2", - "community": 640, - "norm_label": "entries", - "id": "reply_cache_v2_19d5fbd3a1d69ce33a14_entries" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-19d5fbd3a1d69ce33a14.json", - "source_location": "L1669", - "community": 640, - "norm_label": "kind", - "id": "reply_cache_v2_19d5fbd3a1d69ce33a14_kind" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-19d5fbd3a1d69ce33a14.json", - "source_location": "L1670", - "community": 640, - "norm_label": "version", - "id": "reply_cache_v2_19d5fbd3a1d69ce33a14_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-19d5fbd3a1d69ce33a14.json", - "source_location": "L1672", - "community": 640, - "norm_label": "major", - "id": "reply_cache_v2_19d5fbd3a1d69ce33a14_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-19d5fbd3a1d69ce33a14.json", - "source_location": "L1673", - "community": 640, - "norm_label": "minor", - "id": "reply_cache_v2_19d5fbd3a1d69ce33a14_version_minor" - }, - { - "label": "target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L1", - "community": 308, - "norm_label": "target-react_codegen_rnreanimated-debug-001c89a38d21a9663cc2.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_json" + "community": 125, + "norm_label": "target-react-native-mmkv-debug-f81c8c71554c0da97627.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L2", - "community": 308, + "community": 125, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_artifacts" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L26", - "community": 308, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L27", - "community": 308, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L29", - "community": 308, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L38", - "community": 308, - "norm_label": "files", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L43", - "community": 308, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L86", - "community": 308, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L201", - "community": 308, - "norm_label": "id", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L202", - "community": 308, - "norm_label": "name", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L203", - "community": 308, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L205", - "community": 308, - "norm_label": "build", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L206", - "community": 308, - "norm_label": "source", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L208", - "community": 308, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L224", - "community": 308, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L269", - "community": 308, - "norm_label": "type", - "id": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_type" - }, - { - "label": "target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L1", - "community": 163, - "norm_label": "target-react_codegen_rncslider-debug-9e30f057c84c2ce6255d.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L2", - "community": 163, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L8", - "community": 163, + "community": 125, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtrace" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L9", - "community": 163, + "community": 125, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtracegraph" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L11", - "community": 163, + "community": 125, "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtracegraph_commands" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L20", - "community": 163, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L17", + "community": 125, "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtracegraph_files" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L25", - "community": 163, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L21", + "community": 125, "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtracegraph_nodes" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L68", - "community": 163, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L52", + "community": 125, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_compilegroups" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L161", + "community": 125, + "norm_label": "dependencies", + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_dependencies" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L196", - "community": 163, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L172", + "community": 125, "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_id" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_id" }, { "label": "link", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L197", - "community": 163, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L173", + "community": 125, "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link" }, { "label": "commandFragments", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L199", - "community": 163, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L175", + "community": 125, "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link_commandfragments" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_commandfragments" }, { "label": "language", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L225", - "community": 163, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L226", - "community": 163, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L228", - "community": 163, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L231", - "community": 163, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L232", - "community": 163, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L233", - "community": 163, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L235", - "community": 163, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L236", - "community": 163, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L238", - "community": 163, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L256", - "community": 163, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L313", - "community": 163, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_type" - }, - { - "label": "target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L1", - "community": 246, - "norm_label": "target-react_codegen_truesheetspec-debug-00afd857e88a19332184.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L2", - "community": 246, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L8", - "community": 246, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L9", - "community": 246, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L11", - "community": 246, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L20", - "community": 246, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L25", - "community": 246, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L74", - "community": 246, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L214", - "community": 246, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L215", - "community": 246, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L217", - "community": 246, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L243", - "community": 246, + "community": 125, "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link_language" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_language" }, { "label": "sysroot", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L244", - "community": 246, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L218", + "community": 125, "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link_sysroot" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_sysroot" }, { "label": "path", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L246", - "community": 246, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L220", + "community": 125, "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_sysroot_path" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L249", - "community": 246, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L223", + "community": 125, "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_name" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_name" }, { "label": "nameOnDisk", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L250", - "community": 246, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L224", + "community": 125, "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_nameondisk" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L251", - "community": 246, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L225", + "community": 125, "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_paths" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L253", - "community": 246, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L227", + "community": 125, "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_paths_build" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L254", - "community": 246, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L228", + "community": 125, "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_paths_source" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L256", - "community": 246, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L230", + "community": 125, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_sourcegroups" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L274", - "community": 246, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L255", + "community": 125, "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_sources" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L331", - "community": 246, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L318", + "community": 125, "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_type" + "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_type" }, { - "label": "target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", + "label": "target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", "source_location": "L1", - "community": 406, - "norm_label": "target-react_codegen_rnmmkvspec-debug-4451dc23b9829f9363b7.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_json" + "community": 209, + "norm_label": "target-react_codegen_rnpicker-debug-a62c41b307e140690515.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", "source_location": "L2", - "community": 406, + "community": 209, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_artifacts" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L26", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L8", + "community": 209, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtrace" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L27", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L9", + "community": 209, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtracegraph" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L29", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L11", + "community": 209, "norm_label": "commands", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtracegraph_commands" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L38", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L19", + "community": 209, "norm_label": "files", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtracegraph_files" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L43", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L23", + "community": 209, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtracegraph_nodes" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L86", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L60", + "community": 209, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_compilegroups" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L201", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L188", + "community": 209, "norm_label": "id", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_id" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L189", + "community": 209, + "norm_label": "link", + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L191", + "community": 209, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L217", + "community": 209, + "norm_label": "language", + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L218", + "community": 209, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L220", + "community": 209, + "norm_label": "path", + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L202", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L223", + "community": 209, "norm_label": "name", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_name" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L224", + "community": 209, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L203", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L225", + "community": 209, "norm_label": "paths", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_paths" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L205", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L227", + "community": 209, "norm_label": "build", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_paths_build" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L206", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L228", + "community": 209, "norm_label": "source", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_paths_source" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L208", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L230", + "community": 209, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_sourcegroups" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L224", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L252", + "community": 209, "norm_label": "sources", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_sources" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L269", - "community": 406, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L333", + "community": 209, "norm_label": "type", - "id": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_type" + "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_type" + }, + { + "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L1", + "community": 99, + "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build.core-debug-a9f6f6c634eac5fe0705.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json" }, { "label": "backtraceGraph", @@ -71622,346 +82696,13 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_source" }, { - "label": "target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", + "label": "directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", "source_location": "L1", - "community": 395, - "norm_label": "target-react_codegen_rnasyncstorage-debug-1e3b6b035132a391ac65.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L2", - "community": 395, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L26", - "community": 395, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L27", - "community": 395, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L29", - "community": 395, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L38", - "community": 395, - "norm_label": "files", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L43", - "community": 395, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L86", - "community": 395, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L201", - "community": 395, - "norm_label": "id", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L202", - "community": 395, - "norm_label": "name", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L203", - "community": 395, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L205", - "community": 395, - "norm_label": "build", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L206", - "community": 395, - "norm_label": "source", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L208", - "community": 395, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L224", - "community": 395, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L269", - "community": 395, - "norm_label": "type", - "id": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_type" - }, - { - "label": "target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L1", - "community": 194, - "norm_label": "target-react_codegen_rnkc-debug-17ecc52c05ff12137d37.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L2", - "community": 194, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L8", - "community": 194, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L9", - "community": 194, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L11", - "community": 194, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L21", - "community": 194, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L26", - "community": 194, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L75", - "community": 194, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L221", - "community": 194, - "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L222", - "community": 194, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L224", - "community": 194, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L250", - "community": 194, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L251", - "community": 194, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L253", - "community": 194, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L256", - "community": 194, - "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L257", - "community": 194, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L258", - "community": 194, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L260", - "community": 194, - "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L261", - "community": 194, - "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L263", - "community": 194, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L287", - "community": 194, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L380", - "community": 194, - "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_type" + "community": 104, + "norm_label": "directory-rnasyncstorage_autolinked_build-debug-ec755c3cd9003338013f.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json" }, { "label": "backtraceGraph", @@ -72035,6 +82776,213 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_source" }, + { + "label": "cache-v2-413c978a0ddd8111285e.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-413c978a0ddd8111285e.json", + "source_location": "L1", + "community": 1067, + "norm_label": "cache-v2-413c978a0ddd8111285e.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cache_v2_413c978a0ddd8111285e_json" + }, + { + "label": "entries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-413c978a0ddd8111285e.json", + "source_location": "L2", + "community": 1067, + "norm_label": "entries", + "id": "reply_cache_v2_413c978a0ddd8111285e_entries" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-413c978a0ddd8111285e.json", + "source_location": "L1637", + "community": 1067, + "norm_label": "kind", + "id": "reply_cache_v2_413c978a0ddd8111285e_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-413c978a0ddd8111285e.json", + "source_location": "L1638", + "community": 1067, + "norm_label": "version", + "id": "reply_cache_v2_413c978a0ddd8111285e_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-413c978a0ddd8111285e.json", + "source_location": "L1640", + "community": 1067, + "norm_label": "major", + "id": "reply_cache_v2_413c978a0ddd8111285e_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-413c978a0ddd8111285e.json", + "source_location": "L1641", + "community": 1067, + "norm_label": "minor", + "id": "reply_cache_v2_413c978a0ddd8111285e_version_minor" + }, + { + "label": "target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L1", + "community": 306, + "norm_label": "target-react_codegen_rnmenuviewspec-debug-5cb825d124bc4ba2b5e7.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L2", + "community": 306, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L26", + "community": 306, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L27", + "community": 306, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L29", + "community": 306, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L38", + "community": 306, + "norm_label": "files", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L43", + "community": 306, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L86", + "community": 306, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L201", + "community": 306, + "norm_label": "id", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L202", + "community": 306, + "norm_label": "name", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L203", + "community": 306, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L205", + "community": 306, + "norm_label": "build", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L206", + "community": 306, + "norm_label": "source", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L208", + "community": 306, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L224", + "community": 306, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L269", + "community": 306, + "norm_label": "type", + "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_type" + }, + { + "label": "directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L1", + "community": 107, + "norm_label": "directory-rnmenuviewspec_autolinked_build-debug-db93909da8ac45d348e4.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json" + }, { "label": "backtraceGraph", "file_type": "code", @@ -72108,283 +83056,202 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_source" }, { - "label": "cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", + "label": "target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", "source_location": "L1", - "community": 583, - "norm_label": "cmakefiles-v1-d89d7e5c2fc4bf0ae3de.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_json" - }, - { - "label": "inputs", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L2", - "community": 583, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_inputs" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L989", - "community": 583, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L990", - "community": 583, - "norm_label": "paths", - "id": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L992", - "community": 583, - "norm_label": "build", - "id": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L993", - "community": 583, - "norm_label": "source", - "id": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L995", - "community": 583, - "norm_label": "version", - "id": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L997", - "community": 583, - "norm_label": "major", - "id": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L998", - "community": 583, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_version_minor" - }, - { - "label": "target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L1", - "community": 164, - "norm_label": "target-react_codegen_rnscreens-debug-34ee2e4d4ed2bc10de0e.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json" + "community": 42, + "norm_label": "target-react_codegen_rnsvg-debug-ee8d8261a73e470b3a32.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", "source_location": "L2", - "community": 164, + "community": 42, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_artifacts" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", "source_location": "L8", - "community": 164, + "community": 42, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtrace" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", "source_location": "L9", - "community": 164, + "community": 42, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtracegraph" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", "source_location": "L11", - "community": 164, + "community": 42, "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtracegraph_commands" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L21", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L20", + "community": 42, "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtracegraph_files" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L26", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L25", + "community": 42, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtracegraph_nodes" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L75", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L86", + "community": 42, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_compilegroups" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L224", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L232", + "community": 42, "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_id" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_id" }, { "label": "link", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L225", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L233", + "community": 42, "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link" }, { "label": "commandFragments", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L227", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L235", + "community": 42, "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link_commandfragments" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_commandfragments" }, { "label": "language", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L253", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L261", + "community": 42, "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link_language" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_language" }, { "label": "sysroot", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L254", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L262", + "community": 42, "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link_sysroot" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_sysroot" }, { "label": "path", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L256", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L264", + "community": 42, "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_sysroot_path" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L259", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L267", + "community": 42, "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_name" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_name" }, { "label": "nameOnDisk", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L260", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L268", + "community": 42, "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_nameondisk" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L261", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L269", + "community": 42, "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_paths" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L263", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L271", + "community": 42, "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_paths_build" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L264", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L272", + "community": 42, "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_paths_source" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L266", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L274", + "community": 42, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_sourcegroups" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L293", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L294", + "community": 42, "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_sources" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L404", - "community": 164, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L363", + "community": 42, "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_type" + "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_type" }, { "label": "directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", @@ -72468,202 +83335,6898 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_source" }, { - "label": "target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", + "label": "compile_commands.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/compile_commands.json", "source_location": "L1", - "community": 206, - "norm_label": "target-react_codegen_rnpicker-debug-308cc6380a417a29bd8c.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json" + "community": 854, + "norm_label": "compile_commands.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_compile_commands_json" + }, + { + "label": "android_gradle_build_mini.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L1", + "community": 89, + "norm_label": "android_gradle_build_mini.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json" + }, + { + "label": "buildFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L2", + "community": 89, + "norm_label": "buildfiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildfiles" + }, + { + "label": "cleanCommandsComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L22", + "community": 89, + "norm_label": "cleancommandscomponents", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_cleancommandscomponents" + }, + { + "label": "buildTargetsCommandComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L30", + "community": 89, + "norm_label": "buildtargetscommandcomponents", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildtargetscommandcomponents" + }, + { + "label": "libraries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L36", + "community": 89, + "norm_label": "libraries", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries" + }, + { + "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L37", + "community": 1147, + "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L38", + "community": 1147, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L39", + "community": 1147, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L40", + "community": 1147, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L41", + "community": 1147, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L47", + "community": 1001, + "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L48", + "community": 1001, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L49", + "community": 1001, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L50", + "community": 1001, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, + { + "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L52", + "community": 1152, + "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L53", + "community": 1152, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L54", + "community": 1152, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L55", + "community": 1152, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L56", + "community": 1152, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L62", + "community": 1273, + "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L63", + "community": 1273, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L64", + "community": 1273, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L65", + "community": 1273, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, + { + "label": "appmodules::@6890427a1f51a3e7e1df", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L67", + "community": 1085, + "norm_label": "appmodules::@6890427a1f51a3e7e1df", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L68", + "community": 1085, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L69", + "community": 1085, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L70", + "community": 1085, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L71", + "community": 1085, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L85", + "community": 1153, + "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L86", + "community": 1153, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L87", + "community": 1153, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L88", + "community": 1153, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L89", + "community": 1153, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L95", + "community": 1151, + "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L96", + "community": 1151, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L97", + "community": 1151, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L98", + "community": 1151, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L99", + "community": 1151, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L105", + "community": 1274, + "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L106", + "community": 1274, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L107", + "community": 1274, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L108", + "community": 1274, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, + { + "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L110", + "community": 89, + "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L111", + "community": 89, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L112", + "community": 89, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L113", + "community": 89, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, + { + "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L115", + "community": 1086, + "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L116", + "community": 1086, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L117", + "community": 1086, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L118", + "community": 1086, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, + { + "label": "core::@1b9a7d546b295b7d0867", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L120", + "community": 1086, + "norm_label": "core::@1b9a7d546b295b7d0867", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L121", + "community": 1000, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L122", + "community": 1086, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L123", + "community": 1154, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L124", + "community": 1001, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L126", + "community": 1154, + "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L127", + "community": 1154, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L128", + "community": 1154, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L129", + "community": 1154, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L130", + "community": 1154, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L136", + "community": 1000, + "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L137", + "community": 1000, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L138", + "community": 1000, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L139", + "community": 1000, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, + { + "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L141", + "community": 1150, + "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L142", + "community": 1150, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L143", + "community": 1150, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L144", + "community": 1150, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L145", + "community": 1150, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L151", + "community": 1001, + "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L152", + "community": 1001, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L153", + "community": 1001, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L154", + "community": 1001, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, + { + "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L156", + "community": 1148, + "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L157", + "community": 1148, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L158", + "community": 1148, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L159", + "community": 1148, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L160", + "community": 1148, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L166", + "community": 1000, + "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L167", + "community": 1000, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L168", + "community": 1000, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L169", + "community": 1000, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, + { + "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L171", + "community": 1149, + "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L172", + "community": 1149, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L173", + "community": 1149, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L174", + "community": 1149, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L175", + "community": 1149, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "label": "prefab_config.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", + "source_location": "L1", + "community": 671, + "norm_label": "prefab_config.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json" + }, + { + "label": "enabled", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", + "source_location": "L2", + "community": 671, + "norm_label": "enabled", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_enabled" + }, + { + "label": "prefabPath", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", + "source_location": "L3", + "community": 671, + "norm_label": "prefabpath", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_prefabpath" + }, + { + "label": "packages", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", + "source_location": "L4", + "community": 671, + "norm_label": "packages", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_packages" + }, + { + "label": "android_gradle_build.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L1", + "community": 888, + "norm_label": "android_gradle_build.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json" + }, + { + "label": "buildFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L2", + "community": 888, + "norm_label": "buildfiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_buildfiles" + }, + { + "label": "cleanCommandsComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L22", + "community": 888, + "norm_label": "cleancommandscomponents", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cleancommandscomponents" + }, + { + "label": "buildTargetsCommandComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L30", + "community": 888, + "norm_label": "buildtargetscommandcomponents", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_buildtargetscommandcomponents" + }, + { + "label": "libraries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L36", + "community": 1036, + "norm_label": "libraries", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries" + }, + { + "label": "appmodules::@6890427a1f51a3e7e1df", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L37", + "community": 941, + "norm_label": "appmodules::@6890427a1f51a3e7e1df", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L38", + "community": 941, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L39", + "community": 941, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L40", + "community": 941, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L41", + "community": 941, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L42", + "community": 941, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "label": "core::@1b9a7d546b295b7d0867", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L56", + "community": 1036, + "norm_label": "core::@1b9a7d546b295b7d0867", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L57", + "community": 1036, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L58", + "community": 998, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L59", + "community": 977, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L60", + "community": 941, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L62", + "community": 1084, + "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L63", + "community": 1084, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L64", + "community": 1084, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L65", + "community": 1084, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L66", + "community": 1084, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L67", + "community": 1084, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L73", + "community": 1078, + "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L74", + "community": 1078, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L75", + "community": 1078, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L76", + "community": 1078, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L77", + "community": 1078, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L78", + "community": 1078, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L84", + "community": 998, + "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L85", + "community": 998, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L86", + "community": 998, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L87", + "community": 998, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L89", + "community": 1079, + "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L90", + "community": 1079, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L91", + "community": 1079, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L92", + "community": 1079, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L93", + "community": 1079, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L94", + "community": 1079, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L100", + "community": 1254, + "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L101", + "community": 1254, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L102", + "community": 1254, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L103", + "community": 1254, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L105", + "community": 977, + "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L106", + "community": 977, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L107", + "community": 977, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L108", + "community": 977, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L110", + "community": 1083, + "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L111", + "community": 1083, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L112", + "community": 1083, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L113", + "community": 1083, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L114", + "community": 1083, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L115", + "community": 1083, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L121", + "community": 998, + "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L122", + "community": 998, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L123", + "community": 998, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L124", + "community": 998, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L126", + "community": 1036, + "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L127", + "community": 1036, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L128", + "community": 1036, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L129", + "community": 1036, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L131", + "community": 1268, + "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L132", + "community": 1268, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L133", + "community": 1268, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L134", + "community": 1268, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L136", + "community": 1080, + "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L137", + "community": 1080, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L138", + "community": 1080, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L139", + "community": 1080, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L140", + "community": 1080, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L141", + "community": 1080, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L147", + "community": 1018, + "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L148", + "community": 1018, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L149", + "community": 1018, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L150", + "community": 1018, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L152", + "community": 1081, + "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L153", + "community": 1081, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L154", + "community": 1081, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L155", + "community": 1081, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L156", + "community": 1081, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L157", + "community": 1081, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L163", + "community": 941, + "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L164", + "community": 941, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L165", + "community": 941, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L166", + "community": 941, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L167", + "community": 941, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L168", + "community": 941, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L174", + "community": 977, + "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L175", + "community": 977, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L176", + "community": 977, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L177", + "community": 977, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L179", + "community": 971, + "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L180", + "community": 971, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L181", + "community": 971, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L182", + "community": 971, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L183", + "community": 971, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L184", + "community": 971, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "label": "toolchains", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L191", + "community": 1018, + "norm_label": "toolchains", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L192", + "community": 1018, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "label": "cCompilerExecutable", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L193", + "community": 1018, + "norm_label": "ccompilerexecutable", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_ccompilerexecutable" + }, + { + "label": "cppCompilerExecutable", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L194", + "community": 1018, + "norm_label": "cppcompilerexecutable", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_cppcompilerexecutable" + }, + { + "label": "cFileExtensions", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L197", + "community": 888, + "norm_label": "cfileextensions", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cfileextensions" + }, + { + "label": "cppFileExtensions", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L198", + "community": 888, + "norm_label": "cppfileextensions", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cppfileextensions" + }, + { + "label": "foo.cpp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", + "source_location": "L1", + "community": 728, + "norm_label": "foo.cpp", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_foo_cpp" + }, + { + "label": "foo()", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", + "source_location": "L1", + "community": 728, + "norm_label": "foo()", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_foo_cpp_src_foo_foo" + }, + { + "label": "main.cpp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", + "source_location": "L1", + "community": 729, + "norm_label": "main.cpp", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_main_cpp" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", + "source_location": "L3", + "community": 729, + "norm_label": "main()", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_main_cpp_src_main_main" + }, + { + "label": "CMakeCCompilerId.c", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", + "source_location": "L1", + "community": 726, + "norm_label": "cmakeccompilerid.c", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", + "source_location": "L771", + "community": 726, + "norm_label": "main()", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c_compileridc_cmakeccompilerid_main" + }, + { + "label": "CMakeCXXCompilerId.cpp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", + "source_location": "L1", + "community": 727, + "norm_label": "cmakecxxcompilerid.cpp", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", + "source_location": "L767", + "community": 727, + "norm_label": "main()", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" + }, + { + "label": "target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L1", + "community": 323, + "norm_label": "target-react_codegen_rnmmkvspec-debug-ef9b9bcc9f5e0f77ea1b.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", "source_location": "L2", - "community": 206, + "community": 323, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_artifacts" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L8", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L26", + "community": 323, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtrace" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L9", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L27", + "community": 323, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L11", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L29", + "community": 323, "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L19", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L38", + "community": 323, "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L23", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L43", + "community": 323, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L60", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L86", + "community": 323, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L188", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L201", + "community": 323, "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L189", - "community": 206, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L191", - "community": 206, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L217", - "community": 206, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L218", - "community": 206, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L220", - "community": 206, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_sysroot_path" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L223", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L202", + "community": 323, "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L224", - "community": 206, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_nameondisk" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L225", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L203", + "community": 323, "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_paths" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L227", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L205", + "community": 323, "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_paths_build" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L228", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L206", + "community": 323, "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_paths_source" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L230", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L208", + "community": 323, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L252", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L224", + "community": 323, "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_sources" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L333", - "community": 206, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L269", + "community": 323, "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_type" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" + }, + { + "label": "index-2026-06-10T07-37-34-0327.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L1", + "community": 151, + "norm_label": "index-2026-06-10t07-37-34-0327.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_index_2026_06_10t07_37_34_0327_json" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L2", + "community": 151, + "norm_label": "cmake", + "id": "reply_index_2026_06_10t07_37_34_0327_cmake" + }, + { + "label": "generator", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L4", + "community": 151, + "norm_label": "generator", + "id": "reply_index_2026_06_10t07_37_34_0327_cmake_generator" + }, + { + "label": "multiConfig", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L6", + "community": 151, + "norm_label": "multiconfig", + "id": "reply_index_2026_06_10t07_37_34_0327_generator_multiconfig" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L7", + "community": 151, + "norm_label": "name", + "id": "reply_index_2026_06_10t07_37_34_0327_generator_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L9", + "community": 151, + "norm_label": "paths", + "id": "reply_index_2026_06_10t07_37_34_0327_cmake_paths" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L11", + "community": 151, + "norm_label": "cmake", + "id": "reply_index_2026_06_10t07_37_34_0327_paths_cmake" + }, + { + "label": "cpack", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L12", + "community": 151, + "norm_label": "cpack", + "id": "reply_index_2026_06_10t07_37_34_0327_paths_cpack" + }, + { + "label": "ctest", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L13", + "community": 151, + "norm_label": "ctest", + "id": "reply_index_2026_06_10t07_37_34_0327_paths_ctest" + }, + { + "label": "root", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L14", + "community": 151, + "norm_label": "root", + "id": "reply_index_2026_06_10t07_37_34_0327_paths_root" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L16", + "community": 151, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_34_0327_cmake_version" + }, + { + "label": "isDirty", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L18", + "community": 151, + "norm_label": "isdirty", + "id": "reply_index_2026_06_10t07_37_34_0327_version_isdirty" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L19", + "community": 151, + "norm_label": "major", + "id": "reply_index_2026_06_10t07_37_34_0327_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L20", + "community": 151, + "norm_label": "minor", + "id": "reply_index_2026_06_10t07_37_34_0327_version_minor" + }, + { + "label": "patch", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L21", + "community": 151, + "norm_label": "patch", + "id": "reply_index_2026_06_10t07_37_34_0327_version_patch" + }, + { + "label": "string", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L22", + "community": 151, + "norm_label": "string", + "id": "reply_index_2026_06_10t07_37_34_0327_version_string" + }, + { + "label": "suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L23", + "community": 151, + "norm_label": "suffix", + "id": "reply_index_2026_06_10t07_37_34_0327_version_suffix" + }, + { + "label": "objects", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L26", + "community": 151, + "norm_label": "objects", + "id": "reply_index_2026_06_10t07_37_34_0327_objects" + }, + { + "label": "reply", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L56", + "community": 151, + "norm_label": "reply", + "id": "reply_index_2026_06_10t07_37_34_0327_reply" + }, + { + "label": "client-agp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L58", + "community": 151, + "norm_label": "client-agp", + "id": "reply_index_2026_06_10t07_37_34_0327_reply_client_agp" + }, + { + "label": "cache-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L60", + "community": 151, + "norm_label": "cache-v2", + "id": "reply_index_2026_06_10t07_37_34_0327_client_agp_cache_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L62", + "community": 151, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_34_0327_cache_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L63", + "community": 151, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_34_0327_cache_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L64", + "community": 151, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_34_0327_cache_v2_version" + }, + { + "label": "cmakeFiles-v1", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L70", + "community": 151, + "norm_label": "cmakefiles-v1", + "id": "reply_index_2026_06_10t07_37_34_0327_client_agp_cmakefiles_v1" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L72", + "community": 151, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_34_0327_cmakefiles_v1_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L73", + "community": 151, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_34_0327_cmakefiles_v1_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L74", + "community": 151, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_34_0327_cmakefiles_v1_version" + }, + { + "label": "codemodel-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L80", + "community": 151, + "norm_label": "codemodel-v2", + "id": "reply_index_2026_06_10t07_37_34_0327_client_agp_codemodel_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L82", + "community": 151, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_34_0327_codemodel_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L83", + "community": 151, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_34_0327_codemodel_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L84", + "community": 151, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_34_0327_codemodel_v2_version" + }, + { + "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L1", + "community": 108, + "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build-debug-3c4f354f8e9d2bc9c5a6.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L2", + "community": 108, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L4", + "community": 108, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L5", + "community": 108, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L6", + "community": 108, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L8", + "community": 108, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L9", + "community": 108, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L11", + "community": 108, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L12", + "community": 108, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_source" + }, + { + "label": "directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L1", + "community": 98, + "norm_label": "directory-rnmmkvspec_autolinked_build-debug-0a577c6ddcdff9b1cd2d.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L2", + "community": 98, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L4", + "community": 98, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L5", + "community": 98, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L6", + "community": 98, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L8", + "community": 98, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L9", + "community": 98, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L11", + "community": 98, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L12", + "community": 98, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_source" + }, + { + "label": "target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L1", + "community": 184, + "norm_label": "target-react_codegen_rncslider-debug-62d6096eceabc965868b.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L2", + "community": 184, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L8", + "community": 184, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L9", + "community": 184, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L11", + "community": 184, + "norm_label": "commands", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L20", + "community": 184, + "norm_label": "files", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L25", + "community": 184, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L68", + "community": 184, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L196", + "community": 184, + "norm_label": "id", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L197", + "community": 184, + "norm_label": "link", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L199", + "community": 184, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L225", + "community": 184, + "norm_label": "language", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L226", + "community": 184, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L228", + "community": 184, + "norm_label": "path", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L231", + "community": 184, + "norm_label": "name", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L232", + "community": 184, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L233", + "community": 184, + "norm_label": "paths", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L235", + "community": 184, + "norm_label": "build", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L236", + "community": 184, + "norm_label": "source", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L238", + "community": 184, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L256", + "community": 184, + "norm_label": "sources", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L313", + "community": 184, + "norm_label": "type", + "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_type" + }, + { + "label": "directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L1", + "community": 502, + "norm_label": "directory-rnsvg_autolinked_build-debug-251c63907f461abe26aa.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L2", + "community": 502, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L4", + "community": 502, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L5", + "community": 502, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L6", + "community": 502, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L8", + "community": 502, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L9", + "community": 502, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L11", + "community": 502, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L12", + "community": 502, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_source" + }, + { + "label": "directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L1", + "community": 499, + "norm_label": "directory-lottiereactnative_autolinked_build-debug-b03690d896f7026a177d.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L2", + "community": 499, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L4", + "community": 499, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L5", + "community": 499, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L6", + "community": 499, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L8", + "community": 499, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L9", + "community": 499, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L11", + "community": 499, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L12", + "community": 499, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_source" + }, + { + "label": "directory-.-Debug-f5ebdc15457944623624.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L1", + "community": 498, + "norm_label": "directory-.-debug-f5ebdc15457944623624.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L2", + "community": 498, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L4", + "community": 498, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L5", + "community": 498, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L6", + "community": 498, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L8", + "community": 498, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L9", + "community": 498, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L11", + "community": 498, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L12", + "community": 498, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_source" + }, + { + "label": "directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L1", + "community": 100, + "norm_label": "directory-rnpicker_autolinked_build-debug-aa9f04d4f6540efeba1f.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L2", + "community": 100, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L4", + "community": 100, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L5", + "community": 100, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L6", + "community": 100, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L8", + "community": 100, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L9", + "community": 100, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L11", + "community": 100, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L12", + "community": 100, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_source" + }, + { + "label": "directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L1", + "community": 97, + "norm_label": "directory-rngesturehandler_codegen_autolinked_build-debug-c1f265f99af0b94266ef.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L2", + "community": 97, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L4", + "community": 97, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L5", + "community": 97, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L6", + "community": 97, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L8", + "community": 97, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L9", + "community": 97, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L11", + "community": 97, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L12", + "community": 97, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_source" + }, + { + "label": "target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L1", + "community": 208, + "norm_label": "target-react_codegen_rnpicker-debug-8c1a47d79fecf1ba4fb6.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L2", + "community": 208, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L8", + "community": 208, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L9", + "community": 208, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L11", + "community": 208, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L19", + "community": 208, + "norm_label": "files", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L23", + "community": 208, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L60", + "community": 208, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L188", + "community": 208, + "norm_label": "id", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L189", + "community": 208, + "norm_label": "link", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L191", + "community": 208, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L217", + "community": 208, + "norm_label": "language", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L218", + "community": 208, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L220", + "community": 208, + "norm_label": "path", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L223", + "community": 208, + "norm_label": "name", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L224", + "community": 208, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L225", + "community": 208, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L227", + "community": 208, + "norm_label": "build", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L228", + "community": 208, + "norm_label": "source", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L230", + "community": 208, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L252", + "community": 208, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L333", + "community": 208, + "norm_label": "type", + "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_type" + }, + { + "label": "target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L1", + "community": 237, + "norm_label": "target-react_codegen_safeareacontext-debug-a74c90381a3bbea62adf.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L2", + "community": 237, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L8", + "community": 237, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L9", + "community": 237, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L11", + "community": 237, + "norm_label": "commands", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L20", + "community": 237, + "norm_label": "files", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L25", + "community": 237, + "norm_label": "nodes", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L74", + "community": 237, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L214", + "community": 237, + "norm_label": "id", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L215", + "community": 237, + "norm_label": "link", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L217", + "community": 237, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L243", + "community": 237, + "norm_label": "language", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L244", + "community": 237, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L246", + "community": 237, + "norm_label": "path", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L249", + "community": 237, + "norm_label": "name", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L250", + "community": 237, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L251", + "community": 237, + "norm_label": "paths", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L253", + "community": 237, + "norm_label": "build", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L254", + "community": 237, + "norm_label": "source", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L256", + "community": 237, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L274", + "community": 237, + "norm_label": "sources", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L331", + "community": 237, + "norm_label": "type", + "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_type" + }, + { + "label": "target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L1", + "community": 228, + "norm_label": "target-react_codegen_rnsvg-debug-f277be611a2f8ccc0ce9.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L2", + "community": 228, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L8", + "community": 228, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L9", + "community": 228, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L11", + "community": 228, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L20", + "community": 228, + "norm_label": "files", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L25", + "community": 228, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L86", + "community": 228, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L232", + "community": 228, + "norm_label": "id", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L233", + "community": 228, + "norm_label": "link", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L235", + "community": 228, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L261", + "community": 228, + "norm_label": "language", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L262", + "community": 228, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L264", + "community": 228, + "norm_label": "path", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L267", + "community": 228, + "norm_label": "name", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L268", + "community": 228, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L269", + "community": 228, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L271", + "community": 228, + "norm_label": "build", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L272", + "community": 228, + "norm_label": "source", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L274", + "community": 228, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L294", + "community": 228, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L363", + "community": 228, + "norm_label": "type", + "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_type" + }, + { + "label": "directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L1", + "community": 105, + "norm_label": "directory-rncslider_autolinked_build-debug-9692891af1777e76efd8.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L2", + "community": 105, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L4", + "community": 105, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L5", + "community": 105, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L6", + "community": 105, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L8", + "community": 105, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L9", + "community": 105, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L11", + "community": 105, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L12", + "community": 105, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_source" + }, + { + "label": "codemodel-v2-5d522f9ba5866b363040.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L1", + "community": 587, + "norm_label": "codemodel-v2-5d522f9ba5866b363040.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_codemodel_v2_5d522f9ba5866b363040_json" + }, + { + "label": "configurations", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L2", + "community": 587, + "norm_label": "configurations", + "id": "reply_codemodel_v2_5d522f9ba5866b363040_configurations" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L508", + "community": 587, + "norm_label": "kind", + "id": "reply_codemodel_v2_5d522f9ba5866b363040_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L509", + "community": 587, + "norm_label": "paths", + "id": "reply_codemodel_v2_5d522f9ba5866b363040_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L511", + "community": 587, + "norm_label": "build", + "id": "reply_codemodel_v2_5d522f9ba5866b363040_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L512", + "community": 587, + "norm_label": "source", + "id": "reply_codemodel_v2_5d522f9ba5866b363040_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L514", + "community": 587, + "norm_label": "version", + "id": "reply_codemodel_v2_5d522f9ba5866b363040_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L516", + "community": 587, + "norm_label": "major", + "id": "reply_codemodel_v2_5d522f9ba5866b363040_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L517", + "community": 587, + "norm_label": "minor", + "id": "reply_codemodel_v2_5d522f9ba5866b363040_version_minor" + }, + { + "label": "target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L1", + "community": 320, + "norm_label": "target-react_codegen_rnctabview-debug-06b5fac189d4c1b8bd14.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L2", + "community": 320, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L26", + "community": 320, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L27", + "community": 320, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L29", + "community": 320, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L38", + "community": 320, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L43", + "community": 320, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L86", + "community": 320, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L201", + "community": 320, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L202", + "community": 320, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L203", + "community": 320, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L205", + "community": 320, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L206", + "community": 320, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L208", + "community": 320, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L224", + "community": 320, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L269", + "community": 320, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" + }, + { + "label": "target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L1", + "community": 325, + "norm_label": "target-react_codegen_rnworklets-debug-aff294105f916fb22711.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L2", + "community": 325, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L26", + "community": 325, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L27", + "community": 325, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L29", + "community": 325, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L38", + "community": 325, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L43", + "community": 325, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L86", + "community": 325, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L201", + "community": 325, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L202", + "community": 325, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L203", + "community": 325, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L205", + "community": 325, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L206", + "community": 325, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L208", + "community": 325, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L224", + "community": 325, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L269", + "community": 325, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" + }, + { + "label": "target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L1", + "community": 322, + "norm_label": "target-react_codegen_rnmenuviewspec-debug-b6f81a68b0bec81bef04.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L2", + "community": 322, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L26", + "community": 322, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L27", + "community": 322, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L29", + "community": 322, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L38", + "community": 322, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L43", + "community": 322, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L86", + "community": 322, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L201", + "community": 322, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L202", + "community": 322, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L203", + "community": 322, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L205", + "community": 322, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L206", + "community": 322, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L208", + "community": 322, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L224", + "community": 322, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L269", + "community": 322, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" + }, + { + "label": "target-core-Debug-0104d26b141981fee9b4.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L1", + "community": 280, + "norm_label": "target-core-debug-0104d26b141981fee9b4.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json" + }, + { + "label": "archive", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L2", + "community": 280, + "norm_label": "archive", + "id": "reply_target_core_debug_0104d26b141981fee9b4_archive" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L3", + "community": 280, + "norm_label": "artifacts", + "id": "reply_target_core_debug_0104d26b141981fee9b4_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L9", + "community": 280, + "norm_label": "backtrace", + "id": "reply_target_core_debug_0104d26b141981fee9b4_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L10", + "community": 280, + "norm_label": "backtracegraph", + "id": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L12", + "community": 280, + "norm_label": "commands", + "id": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L19", + "community": 280, + "norm_label": "files", + "id": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L23", + "community": 280, + "norm_label": "nodes", + "id": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L54", + "community": 280, + "norm_label": "compilegroups", + "id": "reply_target_core_debug_0104d26b141981fee9b4_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L149", + "community": 280, + "norm_label": "id", + "id": "reply_target_core_debug_0104d26b141981fee9b4_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L150", + "community": 280, + "norm_label": "name", + "id": "reply_target_core_debug_0104d26b141981fee9b4_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L151", + "community": 280, + "norm_label": "nameondisk", + "id": "reply_target_core_debug_0104d26b141981fee9b4_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L152", + "community": 280, + "norm_label": "paths", + "id": "reply_target_core_debug_0104d26b141981fee9b4_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L154", + "community": 280, + "norm_label": "build", + "id": "reply_target_core_debug_0104d26b141981fee9b4_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L155", + "community": 280, + "norm_label": "source", + "id": "reply_target_core_debug_0104d26b141981fee9b4_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L157", + "community": 280, + "norm_label": "sourcegroups", + "id": "reply_target_core_debug_0104d26b141981fee9b4_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L240", + "community": 280, + "norm_label": "sources", + "id": "reply_target_core_debug_0104d26b141981fee9b4_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L588", + "community": 280, + "norm_label": "type", + "id": "reply_target_core_debug_0104d26b141981fee9b4_type" + }, + { + "label": "directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L1", + "community": 102, + "norm_label": "directory-rnworklets_autolinked_build-debug-c55782449035392fe125.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L2", + "community": 102, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L4", + "community": 102, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L5", + "community": 102, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L6", + "community": 102, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L8", + "community": 102, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L9", + "community": 102, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L11", + "community": 102, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L12", + "community": 102, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_source" + }, + { + "label": "directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L1", + "community": 101, + "norm_label": "directory-rnreanimated_autolinked_build-debug-f4aeae2d37b82d815393.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L2", + "community": 101, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L4", + "community": 101, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L5", + "community": 101, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L6", + "community": 101, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L8", + "community": 101, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L9", + "community": 101, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L11", + "community": 101, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L12", + "community": 101, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_source" + }, + { + "label": "directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L1", + "community": 501, + "norm_label": "directory-rnscreens_autolinked_build-debug-762995bc626882b56722.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L2", + "community": 501, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L4", + "community": 501, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L5", + "community": 501, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L6", + "community": 501, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L8", + "community": 501, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L9", + "community": 501, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L11", + "community": 501, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L12", + "community": 501, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_source" + }, + { + "label": "directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L1", + "community": 103, + "norm_label": "directory-truesheetspec_autolinked_build-debug-6f8e1947845121968926.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L2", + "community": 103, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L4", + "community": 103, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L5", + "community": 103, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L6", + "community": 103, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L8", + "community": 103, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L9", + "community": 103, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L11", + "community": 103, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L12", + "community": 103, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_source" + }, + { + "label": "target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L1", + "community": 321, + "norm_label": "target-react_codegen_rngesturehandler_codegen-debug-9adbf8bf4a7da1436434.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L2", + "community": 321, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L26", + "community": 321, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L27", + "community": 321, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L29", + "community": 321, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L38", + "community": 321, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L43", + "community": 321, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L86", + "community": 321, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L201", + "community": 321, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L202", + "community": 321, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L203", + "community": 321, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L205", + "community": 321, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L206", + "community": 321, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L208", + "community": 321, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L224", + "community": 321, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L269", + "community": 321, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" + }, + { + "label": "cache-v2-426904c6bb457015ed95.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-426904c6bb457015ed95.json", + "source_location": "L1", + "community": 1087, + "norm_label": "cache-v2-426904c6bb457015ed95.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cache_v2_426904c6bb457015ed95_json" + }, + { + "label": "entries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-426904c6bb457015ed95.json", + "source_location": "L2", + "community": 1087, + "norm_label": "entries", + "id": "reply_cache_v2_426904c6bb457015ed95_entries" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-426904c6bb457015ed95.json", + "source_location": "L1637", + "community": 1087, + "norm_label": "kind", + "id": "reply_cache_v2_426904c6bb457015ed95_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-426904c6bb457015ed95.json", + "source_location": "L1638", + "community": 1087, + "norm_label": "version", + "id": "reply_cache_v2_426904c6bb457015ed95_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-426904c6bb457015ed95.json", + "source_location": "L1640", + "community": 1087, + "norm_label": "major", + "id": "reply_cache_v2_426904c6bb457015ed95_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-426904c6bb457015ed95.json", + "source_location": "L1641", + "community": 1087, + "norm_label": "minor", + "id": "reply_cache_v2_426904c6bb457015ed95_version_minor" + }, + { + "label": "directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L1", + "community": 106, + "norm_label": "directory-rnctabview_autolinked_build-debug-b7a7f29ab6b37dd5df56.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L2", + "community": 106, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L4", + "community": 106, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L5", + "community": 106, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L6", + "community": 106, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L8", + "community": 106, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L9", + "community": 106, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L11", + "community": 106, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L12", + "community": 106, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_source" + }, + { + "label": "target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L1", + "community": 147, + "norm_label": "target-react-native-mmkv-debug-a1dd8906b38c697a0d66.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L2", + "community": 147, + "norm_label": "artifacts", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L8", + "community": 147, + "norm_label": "backtrace", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L9", + "community": 147, + "norm_label": "backtracegraph", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L11", + "community": 147, + "norm_label": "commands", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L17", + "community": 147, + "norm_label": "files", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L21", + "community": 147, + "norm_label": "nodes", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L52", + "community": 147, + "norm_label": "compilegroups", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L161", + "community": 147, + "norm_label": "dependencies", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_dependencies" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L172", + "community": 147, + "norm_label": "id", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L173", + "community": 147, + "norm_label": "link", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L175", + "community": 147, + "norm_label": "commandfragments", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L217", + "community": 147, + "norm_label": "language", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L218", + "community": 147, + "norm_label": "sysroot", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L220", + "community": 147, + "norm_label": "path", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L223", + "community": 147, + "norm_label": "name", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L224", + "community": 147, + "norm_label": "nameondisk", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L225", + "community": 147, + "norm_label": "paths", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L227", + "community": 147, + "norm_label": "build", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L228", + "community": 147, + "norm_label": "source", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L230", + "community": 147, + "norm_label": "sourcegroups", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L255", + "community": 147, + "norm_label": "sources", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L318", + "community": 147, + "norm_label": "type", + "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_type" + }, + { + "label": "target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L1", + "community": 216, + "norm_label": "target-react_codegen_rnscreens-debug-880d5254bdabac99020f.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L2", + "community": 216, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L8", + "community": 216, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L9", + "community": 216, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L11", + "community": 216, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L21", + "community": 216, + "norm_label": "files", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L26", + "community": 216, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L75", + "community": 216, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L224", + "community": 216, + "norm_label": "id", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L225", + "community": 216, + "norm_label": "link", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L227", + "community": 216, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L253", + "community": 216, + "norm_label": "language", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L254", + "community": 216, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L256", + "community": 216, + "norm_label": "path", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L259", + "community": 216, + "norm_label": "name", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L260", + "community": 216, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L261", + "community": 216, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L263", + "community": 216, + "norm_label": "build", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L264", + "community": 216, + "norm_label": "source", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L266", + "community": 216, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L293", + "community": 216, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L404", + "community": 216, + "norm_label": "type", + "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_type" + }, + { + "label": "target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L1", + "community": 135, + "norm_label": "target-appmodules-debug-5e6fe30af5e7089b253f.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L2", + "community": 135, + "norm_label": "artifacts", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L8", + "community": 135, + "norm_label": "backtrace", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L9", + "community": 135, + "norm_label": "backtracegraph", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L11", + "community": 135, + "norm_label": "commands", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L21", + "community": 135, + "norm_label": "files", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L34", + "community": 135, + "norm_label": "nodes", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L156", + "community": 135, + "norm_label": "compilegroups", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L481", + "community": 135, + "norm_label": "dependencies", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_dependencies" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L552", + "community": 135, + "norm_label": "id", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L553", + "community": 135, + "norm_label": "link", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L555", + "community": 135, + "norm_label": "commandfragments", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L637", + "community": 135, + "norm_label": "language", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L638", + "community": 135, + "norm_label": "sysroot", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L640", + "community": 135, + "norm_label": "path", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L643", + "community": 135, + "norm_label": "name", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L644", + "community": 135, + "norm_label": "nameondisk", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L645", + "community": 135, + "norm_label": "paths", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L647", + "community": 135, + "norm_label": "build", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L648", + "community": 135, + "norm_label": "source", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L650", + "community": 135, + "norm_label": "sourcegroups", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L723", + "community": 135, + "norm_label": "sources", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L1074", + "community": 135, + "norm_label": "type", + "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_type" + }, + { + "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L1", + "community": 99, + "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build.core-debug-a9f6f6c634eac5fe0705.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L2", + "community": 99, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L4", + "community": 99, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L5", + "community": 99, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L6", + "community": 99, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L8", + "community": 99, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L9", + "community": 99, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L11", + "community": 99, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L12", + "community": 99, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_source" + }, + { + "label": "target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L1", + "community": 318, + "norm_label": "target-react_codegen_lottiereactnative-debug-5cbd8a8add4d52eb7aec.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L2", + "community": 318, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L26", + "community": 318, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L27", + "community": 318, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L29", + "community": 318, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L38", + "community": 318, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L43", + "community": 318, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L86", + "community": 318, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L201", + "community": 318, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L202", + "community": 318, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L203", + "community": 318, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L205", + "community": 318, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L206", + "community": 318, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L208", + "community": 318, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L224", + "community": 318, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L269", + "community": 318, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" + }, + { + "label": "directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L1", + "community": 503, + "norm_label": "directory-safeareacontext_autolinked_build-debug-02cc5c5531c5c58ac73d.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L2", + "community": 503, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L4", + "community": 503, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L5", + "community": 503, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L6", + "community": 503, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L8", + "community": 503, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L9", + "community": 503, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L11", + "community": 503, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L12", + "community": 503, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_source" + }, + { + "label": "cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L1", + "community": 1002, + "norm_label": "cmakefiles-v1-9ffbf57ffc7efc839cd4.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_json" + }, + { + "label": "inputs", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L2", + "community": 1002, + "norm_label": "inputs", + "id": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_inputs" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L334", + "community": 1002, + "norm_label": "kind", + "id": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L335", + "community": 1002, + "norm_label": "paths", + "id": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L337", + "community": 1002, + "norm_label": "build", + "id": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L338", + "community": 1002, + "norm_label": "source", + "id": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L340", + "community": 1002, + "norm_label": "version", + "id": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L342", + "community": 1002, + "norm_label": "major", + "id": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L343", + "community": 1002, + "norm_label": "minor", + "id": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_version_minor" + }, + { + "label": "directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L1", + "community": 104, + "norm_label": "directory-rnasyncstorage_autolinked_build-debug-ec755c3cd9003338013f.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L2", + "community": 104, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L4", + "community": 104, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L5", + "community": 104, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L6", + "community": 104, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L8", + "community": 104, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L9", + "community": 104, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L11", + "community": 104, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L12", + "community": 104, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_source" + }, + { + "label": "target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L1", + "community": 319, + "norm_label": "target-react_codegen_rnasyncstorage-debug-919046727d8d904e898b.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L2", + "community": 319, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L26", + "community": 319, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L27", + "community": 319, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L29", + "community": 319, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L38", + "community": 319, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L43", + "community": 319, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L86", + "community": 319, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L201", + "community": 319, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L202", + "community": 319, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L203", + "community": 319, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L205", + "community": 319, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L206", + "community": 319, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L208", + "community": 319, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L224", + "community": 319, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L269", + "community": 319, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" + }, + { + "label": "target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L1", + "community": 324, + "norm_label": "target-react_codegen_rnreanimated-debug-30d00d3524d3c338dd40.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L2", + "community": 324, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L26", + "community": 324, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L27", + "community": 324, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L29", + "community": 324, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L38", + "community": 324, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L43", + "community": 324, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L86", + "community": 324, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L201", + "community": 324, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L202", + "community": 324, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L203", + "community": 324, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L205", + "community": 324, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L206", + "community": 324, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L208", + "community": 324, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L224", + "community": 324, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L269", + "community": 324, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" + }, + { + "label": "directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L1", + "community": 107, + "norm_label": "directory-rnmenuviewspec_autolinked_build-debug-db93909da8ac45d348e4.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L2", + "community": 107, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L4", + "community": 107, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L5", + "community": 107, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L6", + "community": 107, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L8", + "community": 107, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L9", + "community": 107, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L11", + "community": 107, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L12", + "community": 107, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_source" + }, + { + "label": "target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L1", + "community": 197, + "norm_label": "target-react_codegen_rnkc-debug-53931c6bb745a7a40fde.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L2", + "community": 197, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L8", + "community": 197, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L9", + "community": 197, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L11", + "community": 197, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L21", + "community": 197, + "norm_label": "files", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L26", + "community": 197, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L75", + "community": 197, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L221", + "community": 197, + "norm_label": "id", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L222", + "community": 197, + "norm_label": "link", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L224", + "community": 197, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L250", + "community": 197, + "norm_label": "language", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L251", + "community": 197, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L253", + "community": 197, + "norm_label": "path", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L256", + "community": 197, + "norm_label": "name", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L257", + "community": 197, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L258", + "community": 197, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L260", + "community": 197, + "norm_label": "build", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L261", + "community": 197, + "norm_label": "source", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L263", + "community": 197, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L287", + "community": 197, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L380", + "community": 197, + "norm_label": "type", + "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_type" + }, + { + "label": "directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L1", + "community": 500, + "norm_label": "directory-rnkc_autolinked_build-debug-9b81a6f2831b76917207.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L2", + "community": 500, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L4", + "community": 500, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L5", + "community": 500, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L6", + "community": 500, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L8", + "community": 500, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L9", + "community": 500, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L11", + "community": 500, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L12", + "community": 500, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_source" + }, + { + "label": "target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L1", + "community": 247, + "norm_label": "target-react_codegen_truesheetspec-debug-25cf37b3da67fb5d3dbf.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L2", + "community": 247, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L8", + "community": 247, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L9", + "community": 247, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L11", + "community": 247, + "norm_label": "commands", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L20", + "community": 247, + "norm_label": "files", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L25", + "community": 247, + "norm_label": "nodes", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L74", + "community": 247, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L214", + "community": 247, + "norm_label": "id", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L215", + "community": 247, + "norm_label": "link", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L217", + "community": 247, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L243", + "community": 247, + "norm_label": "language", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L244", + "community": 247, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L246", + "community": 247, + "norm_label": "path", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L249", + "community": 247, + "norm_label": "name", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L250", + "community": 247, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L251", + "community": 247, + "norm_label": "paths", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L253", + "community": 247, + "norm_label": "build", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L254", + "community": 247, + "norm_label": "source", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L256", + "community": 247, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L274", + "community": 247, + "norm_label": "sources", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L331", + "community": 247, + "norm_label": "type", + "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_type" }, { "label": "compile_commands.json", @@ -72724,73 +90287,334 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L37", - "community": 86, + "community": 1123, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L38", + "community": 1123, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L39", + "community": 1123, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L40", + "community": 1123, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L41", + "community": 1123, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L47", - "community": 86, + "community": 1056, "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L48", + "community": 1056, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L49", + "community": 1056, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L50", + "community": 1056, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L52", - "community": 86, + "community": 1128, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L53", + "community": 1128, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L54", + "community": 1128, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L55", + "community": 1128, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L56", + "community": 1128, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L62", - "community": 86, + "community": 986, "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L63", + "community": 986, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L64", + "community": 986, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L65", + "community": 986, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, { "label": "appmodules::@6890427a1f51a3e7e1df", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L67", - "community": 86, + "community": 1055, "norm_label": "appmodules::@6890427a1f51a3e7e1df", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L68", + "community": 1055, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L69", + "community": 1055, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L70", + "community": 1055, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L71", + "community": 1055, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L85", - "community": 86, + "community": 1129, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L86", + "community": 1129, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L87", + "community": 1129, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L88", + "community": 1129, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L89", + "community": 1129, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L95", - "community": 86, + "community": 1127, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L96", + "community": 1127, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L97", + "community": 1127, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L98", + "community": 1127, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L99", + "community": 1127, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L105", - "community": 86, + "community": 1264, "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L106", + "community": 1264, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L107", + "community": 1264, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L108", + "community": 1264, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", @@ -72800,21 +90624,75 @@ "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L111", + "community": 86, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L112", + "community": 86, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L113", + "community": 86, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L115", - "community": 86, + "community": 1263, "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L116", + "community": 1263, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L117", + "community": 1263, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L118", + "community": 1263, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, { "label": "core::@1b9a7d546b295b7d0867", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L120", - "community": 86, + "community": 986, "norm_label": "core::@1b9a7d546b295b7d0867", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" }, @@ -72823,7 +90701,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L121", - "community": 86, + "community": 985, "norm_label": "artifactname", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" }, @@ -72832,7 +90710,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L122", - "community": 86, + "community": 986, "norm_label": "abi", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" }, @@ -72841,7 +90719,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L123", - "community": 86, + "community": 1130, "norm_label": "output", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" }, @@ -72850,7 +90728,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L124", - "community": 86, + "community": 1056, "norm_label": "runtimefiles", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, @@ -72859,64 +90737,289 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L126", - "community": 86, + "community": 1130, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L127", + "community": 1130, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L128", + "community": 1130, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L129", + "community": 1130, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L130", + "community": 1130, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L136", - "community": 86, + "community": 985, "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L137", + "community": 985, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L138", + "community": 985, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L139", + "community": 985, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L141", - "community": 86, + "community": 1126, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L142", + "community": 1126, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L143", + "community": 1126, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L144", + "community": 1126, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L145", + "community": 1126, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L151", - "community": 86, + "community": 1056, "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L152", + "community": 1056, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L153", + "community": 1056, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L154", + "community": 1056, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L156", - "community": 86, + "community": 1124, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L157", + "community": 1124, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L158", + "community": 1124, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L159", + "community": 1124, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L160", + "community": 1124, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L166", - "community": 86, + "community": 985, "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L167", + "community": 985, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L168", + "community": 985, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L169", + "community": 985, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", "source_location": "L171", - "community": 86, + "community": 1125, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L172", + "community": 1125, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L173", + "community": 1125, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L174", + "community": 1125, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L175", + "community": 1125, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "label": "prefab_config.json", "file_type": "code", @@ -72994,7 +91097,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L36", - "community": 56, + "community": 1033, "norm_label": "libraries", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries" }, @@ -73003,16 +91106,52 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L37", - "community": 56, + "community": 938, "norm_label": "appmodules::@6890427a1f51a3e7e1df", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L38", + "community": 938, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L39", + "community": 938, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L40", + "community": 938, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L41", + "community": 938, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, { "label": "runtimeFiles", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L42", - "community": 56, + "community": 938, "norm_label": "runtimefiles", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, @@ -73021,16 +91160,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L56", - "community": 56, + "community": 1033, "norm_label": "core::@1b9a7d546b295b7d0867", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L57", + "community": 1033, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, { "label": "abi", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L58", - "community": 56, + "community": 983, "norm_label": "abi", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_abi" }, @@ -73039,7 +91187,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L59", - "community": 56, + "community": 984, "norm_label": "artifactname", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" }, @@ -73048,7 +91196,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L60", - "community": 56, + "community": 938, "norm_label": "output", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, @@ -73057,145 +91205,721 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L62", - "community": 56, + "community": 1054, "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L63", + "community": 1054, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L64", + "community": 1054, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L65", + "community": 1054, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L66", + "community": 1054, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L67", + "community": 1054, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, { "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L73", - "community": 56, + "community": 1048, "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L74", + "community": 1048, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L75", + "community": 1048, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L76", + "community": 1048, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L77", + "community": 1048, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L78", + "community": 1048, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L84", - "community": 56, + "community": 1098, "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L85", + "community": 1098, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L86", + "community": 1098, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L87", + "community": 1098, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, { "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L89", - "community": 56, + "community": 938, "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L90", + "community": 938, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L91", + "community": 938, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L92", + "community": 938, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L93", + "community": 938, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L94", + "community": 938, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, { "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L100", - "community": 56, + "community": 956, "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L101", + "community": 956, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L102", + "community": 956, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L103", + "community": 956, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, { "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L105", - "community": 56, + "community": 956, "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L106", + "community": 956, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L107", + "community": 956, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L108", + "community": 956, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, { "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L110", - "community": 56, + "community": 1053, "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L111", + "community": 1053, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L112", + "community": 1053, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L113", + "community": 1053, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L114", + "community": 1053, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L115", + "community": 1053, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L121", - "community": 56, + "community": 983, "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L122", + "community": 983, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L123", + "community": 983, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L124", + "community": 983, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, { "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L126", - "community": 56, + "community": 1033, "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L127", + "community": 1033, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L128", + "community": 1033, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L129", + "community": 1033, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, { "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L131", - "community": 56, + "community": 983, "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L132", + "community": 983, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L133", + "community": 983, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L134", + "community": 983, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, { "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L136", - "community": 56, + "community": 1049, "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L137", + "community": 1049, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L138", + "community": 1049, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L139", + "community": 1049, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L140", + "community": 1049, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L141", + "community": 1049, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L147", - "community": 56, + "community": 984, "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L148", + "community": 984, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L149", + "community": 984, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L150", + "community": 984, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, { "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L152", - "community": 56, + "community": 1050, "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L153", + "community": 1050, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L154", + "community": 1050, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L155", + "community": 1050, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L156", + "community": 1050, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L157", + "community": 1050, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, { "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L163", - "community": 56, + "community": 1051, "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L164", + "community": 1051, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L165", + "community": 1051, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L166", + "community": 1051, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L167", + "community": 1051, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L168", + "community": 1051, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "label": "react_codegen_rnworklets::@68f58d84d4754f193387", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L174", - "community": 56, + "community": 984, "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L175", + "community": 984, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L176", + "community": 984, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L177", + "community": 984, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, { "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L179", - "community": 56, + "community": 1052, "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L180", + "community": 1052, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L181", + "community": 1052, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L182", + "community": 1052, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L183", + "community": 1052, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L184", + "community": 1052, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "label": "toolchains", "file_type": "code", @@ -73210,7 +91934,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L192", - "community": 56, + "community": 956, "norm_label": "toolchain", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, @@ -73219,7 +91943,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L193", - "community": 56, + "community": 956, "norm_label": "ccompilerexecutable", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchain_ccompilerexecutable" }, @@ -73228,7 +91952,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", "source_location": "L194", - "community": 56, + "community": 956, "norm_label": "cppcompilerexecutable", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchain_cppcompilerexecutable" }, @@ -73323,400 +92047,229 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" }, { - "label": "target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", + "label": "target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", "source_location": "L1", - "community": 240, - "norm_label": "target-react_codegen_safeareacontext-debug-d2f52685420fea1283a8.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json" + "community": 299, + "norm_label": "target-react_codegen_rnmmkvspec-debug-ef9b9bcc9f5e0f77ea1b.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", "source_location": "L2", - "community": 240, + "community": 299, "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_artifacts" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L8", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L26", + "community": 299, "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtrace" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L9", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L27", + "community": 299, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L11", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L29", + "community": 299, "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L20", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L38", + "community": 299, "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L25", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L43", + "community": 299, "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L74", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L86", + "community": 299, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L214", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L201", + "community": 299, "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L215", - "community": 240, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L217", - "community": 240, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L243", - "community": 240, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L244", - "community": 240, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L246", - "community": 240, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_sysroot_path" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L249", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L202", + "community": 299, "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L250", - "community": 240, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_nameondisk" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L251", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L203", + "community": 299, "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_paths" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L253", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L205", + "community": 299, "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_paths_build" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L254", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L206", + "community": 299, "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_paths_source" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L256", - "community": 240, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L208", + "community": 299, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L274", - "community": 240, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L331", - "community": 240, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_type" - }, - { - "label": "target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L1", - "community": 159, - "norm_label": "target-react_codegen_rnpicker-debug-a6fbb849e7d39f4e03ba.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L2", - "community": 159, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L8", - "community": 159, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L9", - "community": 159, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L11", - "community": 159, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L19", - "community": 159, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L23", - "community": 159, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L60", - "community": 159, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L188", - "community": 159, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L189", - "community": 159, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L191", - "community": 159, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L217", - "community": 159, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L218", - "community": 159, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L220", - "community": 159, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L223", - "community": 159, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", "source_location": "L224", - "community": 159, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L225", - "community": 159, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L227", - "community": 159, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L228", - "community": 159, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L230", - "community": 159, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L252", - "community": 159, + "community": 299, "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_sources" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L333", - "community": 159, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L269", + "community": 299, "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_type" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" + }, + { + "label": "codemodel-v2-bfd56f26dc1a4aadf184.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L1", + "community": 593, + "norm_label": "codemodel-v2-bfd56f26dc1a4aadf184.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_bfd56f26dc1a4aadf184_json" + }, + { + "label": "configurations", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L2", + "community": 593, + "norm_label": "configurations", + "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_configurations" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L508", + "community": 593, + "norm_label": "kind", + "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L509", + "community": 593, + "norm_label": "paths", + "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L511", + "community": 593, + "norm_label": "build", + "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L512", + "community": 593, + "norm_label": "source", + "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L514", + "community": 593, + "norm_label": "version", + "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L516", + "community": 593, + "norm_label": "major", + "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L517", + "community": 593, + "norm_label": "minor", + "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version_minor" }, { "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", @@ -73880,492 +92433,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_source" }, - { - "label": "target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L1", - "community": 405, - "norm_label": "target-react_codegen_rnmmkvspec-debug-116ea84e4a1cfb6d2008.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L2", - "community": 405, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L26", - "community": 405, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L27", - "community": 405, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L29", - "community": 405, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L38", - "community": 405, - "norm_label": "files", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L43", - "community": 405, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L86", - "community": 405, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L201", - "community": 405, - "norm_label": "id", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L202", - "community": 405, - "norm_label": "name", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L203", - "community": 405, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L205", - "community": 405, - "norm_label": "build", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L206", - "community": 405, - "norm_label": "source", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L208", - "community": 405, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L224", - "community": 405, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L269", - "community": 405, - "norm_label": "type", - "id": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_type" - }, - { - "label": "target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L1", - "community": 158, - "norm_label": "target-react_codegen_rncslider-debug-38a44f54e7eff684f8b8.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L2", - "community": 158, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L8", - "community": 158, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L9", - "community": 158, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L11", - "community": 158, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L20", - "community": 158, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L25", - "community": 158, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L68", - "community": 158, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L196", - "community": 158, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L197", - "community": 158, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L199", - "community": 158, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L225", - "community": 158, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L226", - "community": 158, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L228", - "community": 158, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L231", - "community": 158, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L232", - "community": 158, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L233", - "community": 158, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L235", - "community": 158, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L236", - "community": 158, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L238", - "community": 158, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L256", - "community": 158, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L313", - "community": 158, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_type" - }, - { - "label": "target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L1", - "community": 300, - "norm_label": "target-react_codegen_rnreanimated-debug-2c57cf9c832a279d2078.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L2", - "community": 300, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L26", - "community": 300, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L27", - "community": 300, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L29", - "community": 300, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L38", - "community": 300, - "norm_label": "files", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L43", - "community": 300, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L86", - "community": 300, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L201", - "community": 300, - "norm_label": "id", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L202", - "community": 300, - "norm_label": "name", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L203", - "community": 300, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L205", - "community": 300, - "norm_label": "build", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L206", - "community": 300, - "norm_label": "source", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L208", - "community": 300, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L224", - "community": 300, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L269", - "community": 300, - "norm_label": "type", - "id": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_type" - }, { "label": "directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", "file_type": "code", @@ -74610,283 +92677,58 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_source" }, { - "label": "target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", + "label": "cache-v2-8ea430bbee8fa9b96029.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-8ea430bbee8fa9b96029.json", "source_location": "L1", - "community": 250, - "norm_label": "target-react_codegen_truesheetspec-debug-d2217ab29eab739a547d.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json" + "community": 1057, + "norm_label": "cache-v2-8ea430bbee8fa9b96029.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cache_v2_8ea430bbee8fa9b96029_json" }, { - "label": "artifacts", + "label": "entries", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-8ea430bbee8fa9b96029.json", "source_location": "L2", - "community": 250, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L8", - "community": 250, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L9", - "community": 250, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L11", - "community": 250, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L20", - "community": 250, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L25", - "community": 250, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L74", - "community": 250, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L214", - "community": 250, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L215", - "community": 250, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L217", - "community": 250, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L243", - "community": 250, - "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L244", - "community": 250, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L246", - "community": 250, - "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L249", - "community": 250, - "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L250", - "community": 250, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L251", - "community": 250, - "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L253", - "community": 250, - "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L254", - "community": 250, - "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L256", - "community": 250, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L274", - "community": 250, - "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L331", - "community": 250, - "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_type" - }, - { - "label": "codemodel-v2-09c2a32b521185535fb7.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L1", - "community": 455, - "norm_label": "codemodel-v2-09c2a32b521185535fb7.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_09c2a32b521185535fb7_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L2", - "community": 455, - "norm_label": "configurations", - "id": "reply_codemodel_v2_09c2a32b521185535fb7_configurations" + "community": 1057, + "norm_label": "entries", + "id": "reply_cache_v2_8ea430bbee8fa9b96029_entries" }, { "label": "kind", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L508", - "community": 455, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-8ea430bbee8fa9b96029.json", + "source_location": "L1637", + "community": 1057, "norm_label": "kind", - "id": "reply_codemodel_v2_09c2a32b521185535fb7_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L509", - "community": 455, - "norm_label": "paths", - "id": "reply_codemodel_v2_09c2a32b521185535fb7_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L511", - "community": 455, - "norm_label": "build", - "id": "reply_codemodel_v2_09c2a32b521185535fb7_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L512", - "community": 455, - "norm_label": "source", - "id": "reply_codemodel_v2_09c2a32b521185535fb7_paths_source" + "id": "reply_cache_v2_8ea430bbee8fa9b96029_kind" }, { "label": "version", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L514", - "community": 455, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-8ea430bbee8fa9b96029.json", + "source_location": "L1638", + "community": 1057, "norm_label": "version", - "id": "reply_codemodel_v2_09c2a32b521185535fb7_version" + "id": "reply_cache_v2_8ea430bbee8fa9b96029_version" }, { "label": "major", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L516", - "community": 455, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-8ea430bbee8fa9b96029.json", + "source_location": "L1640", + "community": 1057, "norm_label": "major", - "id": "reply_codemodel_v2_09c2a32b521185535fb7_version_major" + "id": "reply_cache_v2_8ea430bbee8fa9b96029_version_major" }, { "label": "minor", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L517", - "community": 455, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-8ea430bbee8fa9b96029.json", + "source_location": "L1641", + "community": 1057, "norm_label": "minor", - "id": "reply_codemodel_v2_09c2a32b521185535fb7_version_minor" + "id": "reply_cache_v2_8ea430bbee8fa9b96029_version_minor" }, { "label": "directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", @@ -74969,411 +92811,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_source" }, - { - "label": "target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L1", - "community": 195, - "norm_label": "target-react_codegen_rnkc-debug-1c6dc8843dbb12c7bccb.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L2", - "community": 195, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L8", - "community": 195, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L9", - "community": 195, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L11", - "community": 195, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L21", - "community": 195, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L26", - "community": 195, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L75", - "community": 195, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L221", - "community": 195, - "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L222", - "community": 195, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L224", - "community": 195, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L250", - "community": 195, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L251", - "community": 195, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L253", - "community": 195, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L256", - "community": 195, - "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L257", - "community": 195, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L258", - "community": 195, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L260", - "community": 195, - "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L261", - "community": 195, - "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L263", - "community": 195, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L287", - "community": 195, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L380", - "community": 195, - "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_type" - }, - { - "label": "target-appmodules-Debug-1be87b345fa64bc6436d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L1", - "community": 132, - "norm_label": "target-appmodules-debug-1be87b345fa64bc6436d.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L2", - "community": 132, - "norm_label": "artifacts", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L8", - "community": 132, - "norm_label": "backtrace", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L9", - "community": 132, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L11", - "community": 132, - "norm_label": "commands", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L21", - "community": 132, - "norm_label": "files", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L34", - "community": 132, - "norm_label": "nodes", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L156", - "community": 132, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L481", - "community": 132, - "norm_label": "dependencies", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L552", - "community": 132, - "norm_label": "id", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L553", - "community": 132, - "norm_label": "link", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L555", - "community": 132, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L637", - "community": 132, - "norm_label": "language", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L638", - "community": 132, - "norm_label": "sysroot", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L640", - "community": 132, - "norm_label": "path", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L643", - "community": 132, - "norm_label": "name", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L644", - "community": 132, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L645", - "community": 132, - "norm_label": "paths", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L647", - "community": 132, - "norm_label": "build", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L648", - "community": 132, - "norm_label": "source", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L650", - "community": 132, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L723", - "community": 132, - "norm_label": "sources", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L1074", - "community": 132, - "norm_label": "type", - "id": "reply_target_appmodules_debug_1be87b345fa64bc6436d_type" - }, { "label": "directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", "file_type": "code", @@ -75456,292 +92893,1003 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_source" }, { - "label": "target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", + "label": "target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", "source_location": "L1", - "community": 397, - "norm_label": "target-react_codegen_rnctabview-debug-5ccf7ca49b417c79929f.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_json" + "community": 162, + "norm_label": "target-react_codegen_truesheetspec-debug-67c09c1b5a88674c1ba6.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", "source_location": "L2", - "community": 397, + "community": 162, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_artifacts" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L26", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L8", + "community": 162, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtrace" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L27", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L9", + "community": 162, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtracegraph" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L29", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L11", + "community": 162, "norm_label": "commands", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtracegraph_commands" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L38", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L20", + "community": 162, "norm_label": "files", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtracegraph_files" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L43", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L25", + "community": 162, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtracegraph_nodes" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L86", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L74", + "community": 162, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_compilegroups" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L201", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L214", + "community": 162, "norm_label": "id", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_id" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L215", + "community": 162, + "norm_label": "link", + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L217", + "community": 162, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L243", + "community": 162, + "norm_label": "language", + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L244", + "community": 162, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L246", + "community": 162, + "norm_label": "path", + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L202", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L249", + "community": 162, "norm_label": "name", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_name" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L250", + "community": 162, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L203", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L251", + "community": 162, "norm_label": "paths", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_paths" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L205", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L253", + "community": 162, "norm_label": "build", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_paths_build" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L206", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L254", + "community": 162, "norm_label": "source", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_paths_source" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L208", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L256", + "community": 162, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_sourcegroups" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L224", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L274", + "community": 162, "norm_label": "sources", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_sources" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L269", - "community": 397, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L331", + "community": 162, "norm_label": "type", - "id": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_type" + "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_type" }, { - "label": "target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", + "label": "target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", "source_location": "L1", - "community": 65, - "norm_label": "target-react_codegen_rnworklets-debug-004ef912de3b65a312c6.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json" + "community": 145, + "norm_label": "target-react-native-mmkv-debug-45f49675044b4c0c5cb5.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", "source_location": "L2", - "community": 65, + "community": 145, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_artifacts" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L26", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L8", + "community": 145, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtrace" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L27", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L9", + "community": 145, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtracegraph" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L29", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L11", + "community": 145, "norm_label": "commands", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtracegraph_commands" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L38", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L17", + "community": 145, "norm_label": "files", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtracegraph_files" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L43", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L21", + "community": 145, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtracegraph_nodes" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L86", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L52", + "community": 145, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_compilegroups" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L161", + "community": 145, + "norm_label": "dependencies", + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_dependencies" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L201", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L172", + "community": 145, "norm_label": "id", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_id" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L173", + "community": 145, + "norm_label": "link", + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L175", + "community": 145, + "norm_label": "commandfragments", + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L217", + "community": 145, + "norm_label": "language", + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L218", + "community": 145, + "norm_label": "sysroot", + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L220", + "community": 145, + "norm_label": "path", + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sysroot_path" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L202", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L223", + "community": 145, "norm_label": "name", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_name" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L224", + "community": 145, + "norm_label": "nameondisk", + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_nameondisk" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L203", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L225", + "community": 145, "norm_label": "paths", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_paths" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L205", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L227", + "community": 145, "norm_label": "build", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_paths_build" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L206", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L228", + "community": 145, "norm_label": "source", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_paths_source" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L208", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L230", + "community": 145, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_sourcegroups" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L224", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L255", + "community": 145, "norm_label": "sources", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_sources" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L269", - "community": 65, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L318", + "community": 145, "norm_label": "type", - "id": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_type" + "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_type" + }, + { + "label": "target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L1", + "community": 42, + "norm_label": "target-react_codegen_rnsvg-debug-8d0eb4f9946e22b8d163.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L2", + "community": 42, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L8", + "community": 42, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L9", + "community": 42, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L11", + "community": 42, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L20", + "community": 42, + "norm_label": "files", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L25", + "community": 42, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L86", + "community": 42, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L232", + "community": 42, + "norm_label": "id", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L233", + "community": 42, + "norm_label": "link", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L235", + "community": 42, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L261", + "community": 42, + "norm_label": "language", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L262", + "community": 42, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L264", + "community": 42, + "norm_label": "path", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L267", + "community": 42, + "norm_label": "name", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L268", + "community": 42, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L269", + "community": 42, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L271", + "community": 42, + "norm_label": "build", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L272", + "community": 42, + "norm_label": "source", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L274", + "community": 42, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L294", + "community": 42, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L363", + "community": 42, + "norm_label": "type", + "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_type" + }, + { + "label": "target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L1", + "community": 205, + "norm_label": "target-react_codegen_rnpicker-debug-2f265ba2d8986921fcff.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L2", + "community": 205, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L8", + "community": 205, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L9", + "community": 205, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L11", + "community": 205, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L19", + "community": 205, + "norm_label": "files", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L23", + "community": 205, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L60", + "community": 205, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L188", + "community": 205, + "norm_label": "id", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L189", + "community": 205, + "norm_label": "link", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L191", + "community": 205, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L217", + "community": 205, + "norm_label": "language", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L218", + "community": 205, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L220", + "community": 205, + "norm_label": "path", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L223", + "community": 205, + "norm_label": "name", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L224", + "community": 205, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L225", + "community": 205, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L227", + "community": 205, + "norm_label": "build", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L228", + "community": 205, + "norm_label": "source", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L230", + "community": 205, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L252", + "community": 205, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L333", + "community": 205, + "norm_label": "type", + "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_type" + }, + { + "label": "target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L1", + "community": 199, + "norm_label": "target-react_codegen_rnkc-debug-b50956fa4fc38e55c0d0.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L2", + "community": 199, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L8", + "community": 199, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L9", + "community": 199, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L11", + "community": 199, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L21", + "community": 199, + "norm_label": "files", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L26", + "community": 199, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L75", + "community": 199, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L221", + "community": 199, + "norm_label": "id", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L222", + "community": 199, + "norm_label": "link", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L224", + "community": 199, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L250", + "community": 199, + "norm_label": "language", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L251", + "community": 199, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L253", + "community": 199, + "norm_label": "path", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L256", + "community": 199, + "norm_label": "name", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L257", + "community": 199, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L258", + "community": 199, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L260", + "community": 199, + "norm_label": "build", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L261", + "community": 199, + "norm_label": "source", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L263", + "community": 199, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L287", + "community": 199, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L380", + "community": 199, + "norm_label": "type", + "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_type" }, { "label": "directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", @@ -75824,6 +93972,1122 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_source" }, + { + "label": "target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L1", + "community": 236, + "norm_label": "target-react_codegen_safeareacontext-debug-9759123f4b1cfd9ca952.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L2", + "community": 236, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L8", + "community": 236, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L9", + "community": 236, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L11", + "community": 236, + "norm_label": "commands", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L20", + "community": 236, + "norm_label": "files", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L25", + "community": 236, + "norm_label": "nodes", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L74", + "community": 236, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L214", + "community": 236, + "norm_label": "id", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L215", + "community": 236, + "norm_label": "link", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L217", + "community": 236, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L243", + "community": 236, + "norm_label": "language", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L244", + "community": 236, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L246", + "community": 236, + "norm_label": "path", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L249", + "community": 236, + "norm_label": "name", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L250", + "community": 236, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L251", + "community": 236, + "norm_label": "paths", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L253", + "community": 236, + "norm_label": "build", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L254", + "community": 236, + "norm_label": "source", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L256", + "community": 236, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L274", + "community": 236, + "norm_label": "sources", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L331", + "community": 236, + "norm_label": "type", + "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_type" + }, + { + "label": "cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L1", + "community": 987, + "norm_label": "cmakefiles-v1-f173c5cfff2e03c534a5.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_f173c5cfff2e03c534a5_json" + }, + { + "label": "inputs", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L2", + "community": 987, + "norm_label": "inputs", + "id": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_inputs" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L334", + "community": 987, + "norm_label": "kind", + "id": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L335", + "community": 987, + "norm_label": "paths", + "id": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L337", + "community": 987, + "norm_label": "build", + "id": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L338", + "community": 987, + "norm_label": "source", + "id": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L340", + "community": 987, + "norm_label": "version", + "id": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L342", + "community": 987, + "norm_label": "major", + "id": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L343", + "community": 987, + "norm_label": "minor", + "id": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_version_minor" + }, + { + "label": "target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L1", + "community": 295, + "norm_label": "target-react_codegen_rnctabview-debug-06b5fac189d4c1b8bd14.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L2", + "community": 295, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L26", + "community": 295, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L27", + "community": 295, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L29", + "community": 295, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L38", + "community": 295, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L43", + "community": 295, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L86", + "community": 295, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L201", + "community": 295, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L202", + "community": 295, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L203", + "community": 295, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L205", + "community": 295, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L206", + "community": 295, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L208", + "community": 295, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L224", + "community": 295, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L269", + "community": 295, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" + }, + { + "label": "target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L1", + "community": 183, + "norm_label": "target-react_codegen_rncslider-debug-3d5eb96e38bd8c0355d9.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L2", + "community": 183, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L8", + "community": 183, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L9", + "community": 183, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L11", + "community": 183, + "norm_label": "commands", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L20", + "community": 183, + "norm_label": "files", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L25", + "community": 183, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L68", + "community": 183, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L196", + "community": 183, + "norm_label": "id", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L197", + "community": 183, + "norm_label": "link", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L199", + "community": 183, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L225", + "community": 183, + "norm_label": "language", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L226", + "community": 183, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L228", + "community": 183, + "norm_label": "path", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L231", + "community": 183, + "norm_label": "name", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L232", + "community": 183, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L233", + "community": 183, + "norm_label": "paths", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L235", + "community": 183, + "norm_label": "build", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L236", + "community": 183, + "norm_label": "source", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L238", + "community": 183, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L256", + "community": 183, + "norm_label": "sources", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L313", + "community": 183, + "norm_label": "type", + "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_type" + }, + { + "label": "target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L1", + "community": 302, + "norm_label": "target-react_codegen_rnworklets-debug-aff294105f916fb22711.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L2", + "community": 302, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L26", + "community": 302, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L27", + "community": 302, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L29", + "community": 302, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L38", + "community": 302, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L43", + "community": 302, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L86", + "community": 302, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L201", + "community": 302, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L202", + "community": 302, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L203", + "community": 302, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L205", + "community": 302, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L206", + "community": 302, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L208", + "community": 302, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L224", + "community": 302, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L269", + "community": 302, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" + }, + { + "label": "target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L1", + "community": 298, + "norm_label": "target-react_codegen_rnmenuviewspec-debug-b6f81a68b0bec81bef04.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L2", + "community": 298, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L26", + "community": 298, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L27", + "community": 298, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L29", + "community": 298, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L38", + "community": 298, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L43", + "community": 298, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L86", + "community": 298, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L201", + "community": 298, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L202", + "community": 298, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L203", + "community": 298, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L205", + "community": 298, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L206", + "community": 298, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L208", + "community": 298, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L224", + "community": 298, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L269", + "community": 298, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" + }, + { + "label": "target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L1", + "community": 134, + "norm_label": "target-appmodules-debug-51ab77d88b2b5a4455c2.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L2", + "community": 134, + "norm_label": "artifacts", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L8", + "community": 134, + "norm_label": "backtrace", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L9", + "community": 134, + "norm_label": "backtracegraph", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L11", + "community": 134, + "norm_label": "commands", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L21", + "community": 134, + "norm_label": "files", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L34", + "community": 134, + "norm_label": "nodes", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L156", + "community": 134, + "norm_label": "compilegroups", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L481", + "community": 134, + "norm_label": "dependencies", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_dependencies" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L552", + "community": 134, + "norm_label": "id", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L553", + "community": 134, + "norm_label": "link", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L555", + "community": 134, + "norm_label": "commandfragments", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L637", + "community": 134, + "norm_label": "language", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L638", + "community": 134, + "norm_label": "sysroot", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L640", + "community": 134, + "norm_label": "path", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L643", + "community": 134, + "norm_label": "name", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L644", + "community": 134, + "norm_label": "nameondisk", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L645", + "community": 134, + "norm_label": "paths", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L647", + "community": 134, + "norm_label": "build", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L648", + "community": 134, + "norm_label": "source", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L650", + "community": 134, + "norm_label": "sourcegroups", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L723", + "community": 134, + "norm_label": "sources", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L1074", + "community": 134, + "norm_label": "type", + "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_type" + }, { "label": "directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", "file_type": "code", @@ -76149,256 +95413,346 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_source" }, { - "label": "target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", + "label": "target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", "source_location": "L1", - "community": 226, - "norm_label": "target-react_codegen_rnsvg-debug-08450745f26be6e9a3ed.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json" + "community": 296, + "norm_label": "target-react_codegen_rngesturehandler_codegen-debug-9adbf8bf4a7da1436434.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", "source_location": "L2", - "community": 226, + "community": 296, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_artifacts" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L8", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L26", + "community": 296, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtrace" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L9", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L27", + "community": 296, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L11", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L29", + "community": 296, "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L20", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L38", + "community": 296, "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L25", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L43", + "community": 296, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", "source_location": "L86", - "community": 226, + "community": 296, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L232", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L201", + "community": 296, "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L233", - "community": 226, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L235", - "community": 226, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L261", - "community": 226, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L262", - "community": 226, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L264", - "community": 226, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_sysroot_path" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L267", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L202", + "community": 296, "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L268", - "community": 226, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_nameondisk" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L269", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L203", + "community": 296, "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_paths" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L271", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L205", + "community": 296, "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_paths_build" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L272", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L206", + "community": 296, "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_paths_source" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L274", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L208", + "community": 296, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L294", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L224", + "community": 296, "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_sources" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L363", - "community": 226, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L269", + "community": 296, "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_type" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" }, { - "label": "cache-v2-e83df82c266f96f6a05b.json", + "label": "target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-e83df82c266f96f6a05b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", "source_location": "L1", - "community": 645, - "norm_label": "cache-v2-e83df82c266f96f6a05b.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cache_v2_e83df82c266f96f6a05b_json" + "community": 160, + "norm_label": "target-react_codegen_rnscreens-debug-1a5652031de03092cd25.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json" }, { - "label": "entries", + "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-e83df82c266f96f6a05b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", "source_location": "L2", - "community": 645, - "norm_label": "entries", - "id": "reply_cache_v2_e83df82c266f96f6a05b_entries" + "community": 160, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_artifacts" }, { - "label": "kind", + "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-e83df82c266f96f6a05b.json", - "source_location": "L1669", - "community": 645, - "norm_label": "kind", - "id": "reply_cache_v2_e83df82c266f96f6a05b_kind" + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L8", + "community": 160, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtrace" }, { - "label": "version", + "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-e83df82c266f96f6a05b.json", - "source_location": "L1670", - "community": 645, - "norm_label": "version", - "id": "reply_cache_v2_e83df82c266f96f6a05b_version" + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L9", + "community": 160, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph" }, { - "label": "major", + "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-e83df82c266f96f6a05b.json", - "source_location": "L1672", - "community": 645, - "norm_label": "major", - "id": "reply_cache_v2_e83df82c266f96f6a05b_version_major" + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L11", + "community": 160, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_commands" }, { - "label": "minor", + "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-e83df82c266f96f6a05b.json", - "source_location": "L1673", - "community": 645, - "norm_label": "minor", - "id": "reply_cache_v2_e83df82c266f96f6a05b_version_minor" + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L21", + "community": 160, + "norm_label": "files", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L26", + "community": 160, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L75", + "community": 160, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L224", + "community": 160, + "norm_label": "id", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L225", + "community": 160, + "norm_label": "link", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L227", + "community": 160, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L253", + "community": 160, + "norm_label": "language", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L254", + "community": 160, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L256", + "community": 160, + "norm_label": "path", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L259", + "community": 160, + "norm_label": "name", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L260", + "community": 160, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L261", + "community": 160, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L263", + "community": 160, + "norm_label": "build", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L264", + "community": 160, + "norm_label": "source", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L266", + "community": 160, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L293", + "community": 160, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L404", + "community": 160, + "norm_label": "type", + "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_type" }, { "label": "directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", @@ -76481,573 +95835,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_source" }, - { - "label": "target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L1", - "community": 294, - "norm_label": "target-react_codegen_rnasyncstorage-debug-fe156a35ed4ac3a707f3.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L2", - "community": 294, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L26", - "community": 294, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L27", - "community": 294, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L29", - "community": 294, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L38", - "community": 294, - "norm_label": "files", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L43", - "community": 294, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L86", - "community": 294, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L201", - "community": 294, - "norm_label": "id", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L202", - "community": 294, - "norm_label": "name", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L203", - "community": 294, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L205", - "community": 294, - "norm_label": "build", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L206", - "community": 294, - "norm_label": "source", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L208", - "community": 294, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L224", - "community": 294, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L269", - "community": 294, - "norm_label": "type", - "id": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_type" - }, - { - "label": "cmakeFiles-v1-a988569daa1845a4526f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L1", - "community": 581, - "norm_label": "cmakefiles-v1-a988569daa1845a4526f.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_a988569daa1845a4526f_json" - }, - { - "label": "inputs", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L2", - "community": 581, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_a988569daa1845a4526f_inputs" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L989", - "community": 581, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_a988569daa1845a4526f_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L990", - "community": 581, - "norm_label": "paths", - "id": "reply_cmakefiles_v1_a988569daa1845a4526f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L992", - "community": 581, - "norm_label": "build", - "id": "reply_cmakefiles_v1_a988569daa1845a4526f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L993", - "community": 581, - "norm_label": "source", - "id": "reply_cmakefiles_v1_a988569daa1845a4526f_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L995", - "community": 581, - "norm_label": "version", - "id": "reply_cmakefiles_v1_a988569daa1845a4526f_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L997", - "community": 581, - "norm_label": "major", - "id": "reply_cmakefiles_v1_a988569daa1845a4526f_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L998", - "community": 581, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_a988569daa1845a4526f_version_minor" - }, - { - "label": "target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L1", - "community": 394, - "norm_label": "target-react_codegen_lottiereactnative-debug-c08d9618d63dc60443c8.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L2", - "community": 394, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L26", - "community": 394, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L27", - "community": 394, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L29", - "community": 394, - "norm_label": "commands", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L38", - "community": 394, - "norm_label": "files", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L43", - "community": 394, - "norm_label": "nodes", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L86", - "community": 394, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L201", - "community": 394, - "norm_label": "id", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L202", - "community": 394, - "norm_label": "name", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L203", - "community": 394, - "norm_label": "paths", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L205", - "community": 394, - "norm_label": "build", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L206", - "community": 394, - "norm_label": "source", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L208", - "community": 394, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L224", - "community": 394, - "norm_label": "sources", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L269", - "community": 394, - "norm_label": "type", - "id": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_type" - }, - { - "label": "target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L1", - "community": 161, - "norm_label": "target-react_codegen_rnscreens-debug-4b97b66adf1009fa7d9b.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L2", - "community": 161, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L8", - "community": 161, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L9", - "community": 161, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L11", - "community": 161, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L21", - "community": 161, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L26", - "community": 161, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L75", - "community": 161, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L224", - "community": 161, - "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L225", - "community": 161, - "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L227", - "community": 161, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L253", - "community": 161, - "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L254", - "community": 161, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L256", - "community": 161, - "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L259", - "community": 161, - "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L260", - "community": 161, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L261", - "community": 161, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L263", - "community": 161, - "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L264", - "community": 161, - "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L266", - "community": 161, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L293", - "community": 161, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L404", - "community": 161, - "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_type" - }, { "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", "file_type": "code", @@ -77130,211 +95917,148 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_source" }, { - "label": "target-react-native-mmkv-Debug-9467ac44777442487be6.json", + "label": "target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", "source_location": "L1", - "community": 146, - "norm_label": "target-react-native-mmkv-debug-9467ac44777442487be6.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json" + "community": 292, + "norm_label": "target-react_codegen_lottiereactnative-debug-5cbd8a8add4d52eb7aec.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", "source_location": "L2", - "community": 146, + "community": 292, "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_artifacts" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L8", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L26", + "community": 292, "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtrace" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L9", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L27", + "community": 292, "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L11", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L29", + "community": 292, "norm_label": "commands", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L17", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L38", + "community": 292, "norm_label": "files", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L21", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L43", + "community": 292, "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L52", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L86", + "community": 292, "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L161", - "community": 146, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_dependencies" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L172", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L201", + "community": 292, "norm_label": "id", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L173", - "community": 146, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L175", - "community": 146, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L217", - "community": 146, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L218", - "community": 146, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L220", - "community": 146, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_sysroot_path" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L223", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L202", + "community": 292, "norm_label": "name", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L224", - "community": 146, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_nameondisk" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L225", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L203", + "community": 292, "norm_label": "paths", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_paths" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L227", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L205", + "community": 292, "norm_label": "build", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_paths_build" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L228", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L206", + "community": 292, "norm_label": "source", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_paths_source" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L230", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L208", + "community": 292, "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L255", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L224", + "community": 292, "norm_label": "sources", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_sources" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L318", - "community": 146, + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L269", + "community": 292, "norm_label": "type", - "id": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_type" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" }, { "label": "directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", @@ -77579,6 +96303,294 @@ "norm_label": "type", "id": "reply_target_core_debug_81b64835aad05a4e7b1f_type" }, + { + "label": "index-2026-06-10T07-37-30-0091.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L1", + "community": 144, + "norm_label": "index-2026-06-10t07-37-30-0091.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_06_10t07_37_30_0091_json" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L2", + "community": 144, + "norm_label": "cmake", + "id": "reply_index_2026_06_10t07_37_30_0091_cmake" + }, + { + "label": "generator", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L4", + "community": 144, + "norm_label": "generator", + "id": "reply_index_2026_06_10t07_37_30_0091_cmake_generator" + }, + { + "label": "multiConfig", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L6", + "community": 144, + "norm_label": "multiconfig", + "id": "reply_index_2026_06_10t07_37_30_0091_generator_multiconfig" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L7", + "community": 144, + "norm_label": "name", + "id": "reply_index_2026_06_10t07_37_30_0091_generator_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L9", + "community": 144, + "norm_label": "paths", + "id": "reply_index_2026_06_10t07_37_30_0091_cmake_paths" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L11", + "community": 144, + "norm_label": "cmake", + "id": "reply_index_2026_06_10t07_37_30_0091_paths_cmake" + }, + { + "label": "cpack", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L12", + "community": 144, + "norm_label": "cpack", + "id": "reply_index_2026_06_10t07_37_30_0091_paths_cpack" + }, + { + "label": "ctest", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L13", + "community": 144, + "norm_label": "ctest", + "id": "reply_index_2026_06_10t07_37_30_0091_paths_ctest" + }, + { + "label": "root", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L14", + "community": 144, + "norm_label": "root", + "id": "reply_index_2026_06_10t07_37_30_0091_paths_root" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L16", + "community": 144, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_30_0091_cmake_version" + }, + { + "label": "isDirty", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L18", + "community": 144, + "norm_label": "isdirty", + "id": "reply_index_2026_06_10t07_37_30_0091_version_isdirty" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L19", + "community": 144, + "norm_label": "major", + "id": "reply_index_2026_06_10t07_37_30_0091_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L20", + "community": 144, + "norm_label": "minor", + "id": "reply_index_2026_06_10t07_37_30_0091_version_minor" + }, + { + "label": "patch", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L21", + "community": 144, + "norm_label": "patch", + "id": "reply_index_2026_06_10t07_37_30_0091_version_patch" + }, + { + "label": "string", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L22", + "community": 144, + "norm_label": "string", + "id": "reply_index_2026_06_10t07_37_30_0091_version_string" + }, + { + "label": "suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L23", + "community": 144, + "norm_label": "suffix", + "id": "reply_index_2026_06_10t07_37_30_0091_version_suffix" + }, + { + "label": "objects", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L26", + "community": 144, + "norm_label": "objects", + "id": "reply_index_2026_06_10t07_37_30_0091_objects" + }, + { + "label": "reply", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L56", + "community": 144, + "norm_label": "reply", + "id": "reply_index_2026_06_10t07_37_30_0091_reply" + }, + { + "label": "client-agp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L58", + "community": 144, + "norm_label": "client-agp", + "id": "reply_index_2026_06_10t07_37_30_0091_reply_client_agp" + }, + { + "label": "cache-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L60", + "community": 144, + "norm_label": "cache-v2", + "id": "reply_index_2026_06_10t07_37_30_0091_client_agp_cache_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L62", + "community": 144, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_30_0091_cache_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L63", + "community": 144, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_30_0091_cache_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L64", + "community": 144, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_30_0091_cache_v2_version" + }, + { + "label": "cmakeFiles-v1", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L70", + "community": 144, + "norm_label": "cmakefiles-v1", + "id": "reply_index_2026_06_10t07_37_30_0091_client_agp_cmakefiles_v1" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L72", + "community": 144, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_30_0091_cmakefiles_v1_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L73", + "community": 144, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_30_0091_cmakefiles_v1_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L74", + "community": 144, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_30_0091_cmakefiles_v1_version" + }, + { + "label": "codemodel-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L80", + "community": 144, + "norm_label": "codemodel-v2", + "id": "reply_index_2026_06_10t07_37_30_0091_client_agp_codemodel_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L82", + "community": 144, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_30_0091_codemodel_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L83", + "community": 144, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_30_0091_codemodel_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L84", + "community": 144, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_30_0091_codemodel_v2_version" + }, { "label": "directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", "file_type": "code", @@ -77661,292 +96673,292 @@ "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_source" }, { - "label": "target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "label": "target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L1", - "community": 297, - "norm_label": "target-react_codegen_rnmenuviewspec-debug-132745eca8afc4e14063.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_json" + "community": 293, + "norm_label": "target-react_codegen_rnasyncstorage-debug-919046727d8d904e898b.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L2", - "community": 297, + "community": 293, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_artifacts" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L26", - "community": 297, + "community": 293, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtrace" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L27", - "community": 297, + "community": 293, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L29", - "community": 297, + "community": 293, "norm_label": "commands", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L38", - "community": 297, + "community": 293, "norm_label": "files", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L43", - "community": 297, + "community": 293, "norm_label": "nodes", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L86", - "community": 297, + "community": 293, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L201", - "community": 297, + "community": 293, "norm_label": "id", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_id" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L202", - "community": 297, + "community": 293, "norm_label": "name", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_name" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L203", - "community": 297, + "community": 293, "norm_label": "paths", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_paths" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L205", - "community": 297, + "community": 293, "norm_label": "build", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_paths_build" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L206", - "community": 297, + "community": 293, "norm_label": "source", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_paths_source" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L208", - "community": 297, + "community": 293, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L224", - "community": 297, + "community": 293, "norm_label": "sources", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_sources" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L269", - "community": 297, + "community": 293, "norm_label": "type", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_type" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" }, { - "label": "target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "label": "target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L1", - "community": 400, - "norm_label": "target-react_codegen_rngesturehandler_codegen-debug-3db8d7159c85fabdac96.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_json" + "community": 301, + "norm_label": "target-react_codegen_rnreanimated-debug-30d00d3524d3c338dd40.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json" }, { "label": "artifacts", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L2", - "community": 400, + "community": 301, "norm_label": "artifacts", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_artifacts" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" }, { "label": "backtrace", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L26", - "community": 400, + "community": 301, "norm_label": "backtrace", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtrace" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" }, { "label": "backtraceGraph", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L27", - "community": 400, + "community": 301, "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtracegraph" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" }, { "label": "commands", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L29", - "community": 400, + "community": 301, "norm_label": "commands", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtracegraph_commands" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" }, { "label": "files", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L38", - "community": 400, + "community": 301, "norm_label": "files", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtracegraph_files" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" }, { "label": "nodes", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L43", - "community": 400, + "community": 301, "norm_label": "nodes", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtracegraph_nodes" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" }, { "label": "compileGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L86", - "community": 400, + "community": 301, "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_compilegroups" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" }, { "label": "id", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L201", - "community": 400, + "community": 301, "norm_label": "id", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_id" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" }, { "label": "name", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L202", - "community": 400, + "community": 301, "norm_label": "name", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_name" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" }, { "label": "paths", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L203", - "community": 400, + "community": 301, "norm_label": "paths", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_paths" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" }, { "label": "build", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L205", - "community": 400, + "community": 301, "norm_label": "build", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_paths_build" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" }, { "label": "source", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L206", - "community": 400, + "community": 301, "norm_label": "source", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_paths_source" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" }, { "label": "sourceGroups", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L208", - "community": 400, + "community": 301, "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_sourcegroups" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" }, { "label": "sources", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L224", - "community": 400, + "community": 301, "norm_label": "sources", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_sources" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" }, { "label": "type", "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L269", - "community": 400, + "community": 301, "norm_label": "type", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_type" + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" }, { "label": "directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", @@ -78029,222 +97041,6 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_source" }, - { - "label": "index-2026-05-31T05-36-21-0673.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L1", - "community": 117, - "norm_label": "index-2026-05-31t05-36-21-0673.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_05_31t05_36_21_0673_json" - }, - { - "label": "cmake", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L2", - "community": 117, - "norm_label": "cmake", - "id": "reply_index_2026_05_31t05_36_21_0673_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L4", - "community": 117, - "norm_label": "generator", - "id": "reply_index_2026_05_31t05_36_21_0673_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L6", - "community": 117, - "norm_label": "multiconfig", - "id": "reply_index_2026_05_31t05_36_21_0673_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L7", - "community": 117, - "norm_label": "name", - "id": "reply_index_2026_05_31t05_36_21_0673_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L9", - "community": 117, - "norm_label": "paths", - "id": "reply_index_2026_05_31t05_36_21_0673_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L12", - "community": 117, - "norm_label": "cpack", - "id": "reply_index_2026_05_31t05_36_21_0673_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L13", - "community": 117, - "norm_label": "ctest", - "id": "reply_index_2026_05_31t05_36_21_0673_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L14", - "community": 117, - "norm_label": "root", - "id": "reply_index_2026_05_31t05_36_21_0673_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L16", - "community": 117, - "norm_label": "version", - "id": "reply_index_2026_05_31t05_36_21_0673_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L18", - "community": 117, - "norm_label": "isdirty", - "id": "reply_index_2026_05_31t05_36_21_0673_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L19", - "community": 117, - "norm_label": "major", - "id": "reply_index_2026_05_31t05_36_21_0673_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L20", - "community": 117, - "norm_label": "minor", - "id": "reply_index_2026_05_31t05_36_21_0673_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L21", - "community": 117, - "norm_label": "patch", - "id": "reply_index_2026_05_31t05_36_21_0673_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L22", - "community": 117, - "norm_label": "string", - "id": "reply_index_2026_05_31t05_36_21_0673_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L23", - "community": 117, - "norm_label": "suffix", - "id": "reply_index_2026_05_31t05_36_21_0673_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L26", - "community": 117, - "norm_label": "objects", - "id": "reply_index_2026_05_31t05_36_21_0673_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L56", - "community": 117, - "norm_label": "reply", - "id": "reply_index_2026_05_31t05_36_21_0673_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L58", - "community": 117, - "norm_label": "client-agp", - "id": "reply_index_2026_05_31t05_36_21_0673_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L60", - "community": 117, - "norm_label": "cache-v2", - "id": "reply_index_2026_05_31t05_36_21_0673_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L62", - "community": 117, - "norm_label": "jsonfile", - "id": "reply_index_2026_05_31t05_36_21_0673_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L63", - "community": 117, - "norm_label": "kind", - "id": "reply_index_2026_05_31t05_36_21_0673_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L70", - "community": 117, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_05_31t05_36_21_0673_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L80", - "community": 117, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_05_31t05_36_21_0673_client_agp_codemodel_v2" - }, { "label": "directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", "file_type": "code", @@ -78326,6 +97122,6909 @@ "norm_label": "source", "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_source" }, + { + "label": "compile_commands.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/compile_commands.json", + "source_location": "L1", + "community": 855, + "norm_label": "compile_commands.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_compile_commands_json" + }, + { + "label": "android_gradle_build_mini.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L1", + "community": 88, + "norm_label": "android_gradle_build_mini.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json" + }, + { + "label": "buildFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L2", + "community": 88, + "norm_label": "buildfiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildfiles" + }, + { + "label": "cleanCommandsComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L22", + "community": 88, + "norm_label": "cleancommandscomponents", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_cleancommandscomponents" + }, + { + "label": "buildTargetsCommandComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L30", + "community": 88, + "norm_label": "buildtargetscommandcomponents", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildtargetscommandcomponents" + }, + { + "label": "libraries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L36", + "community": 88, + "norm_label": "libraries", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries" + }, + { + "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L37", + "community": 1139, + "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L38", + "community": 1139, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L39", + "community": 1139, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L40", + "community": 1139, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L41", + "community": 1139, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L47", + "community": 88, + "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L48", + "community": 88, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L49", + "community": 88, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L50", + "community": 88, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, + { + "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L52", + "community": 1144, + "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L53", + "community": 1144, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L54", + "community": 1144, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L55", + "community": 1144, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L56", + "community": 1144, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L62", + "community": 1076, + "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L63", + "community": 1076, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L64", + "community": 1076, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L65", + "community": 1076, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, + { + "label": "appmodules::@6890427a1f51a3e7e1df", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L67", + "community": 1075, + "norm_label": "appmodules::@6890427a1f51a3e7e1df", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L68", + "community": 1075, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L69", + "community": 1075, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L70", + "community": 1075, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L71", + "community": 1075, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L85", + "community": 1145, + "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L86", + "community": 1145, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L87", + "community": 1145, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L88", + "community": 1145, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L89", + "community": 1145, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L95", + "community": 1143, + "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L96", + "community": 1143, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L97", + "community": 1143, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L98", + "community": 1143, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L99", + "community": 1143, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L105", + "community": 1270, + "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L106", + "community": 1270, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L107", + "community": 1270, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L108", + "community": 1270, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, + { + "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L110", + "community": 996, + "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L111", + "community": 996, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L112", + "community": 996, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L113", + "community": 996, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, + { + "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L115", + "community": 1267, + "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L116", + "community": 1267, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L117", + "community": 1267, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L118", + "community": 1267, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, + { + "label": "core::@1b9a7d546b295b7d0867", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L120", + "community": 1076, + "norm_label": "core::@1b9a7d546b295b7d0867", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L121", + "community": 995, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L122", + "community": 1076, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L123", + "community": 1144, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L124", + "community": 996, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L126", + "community": 1146, + "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L127", + "community": 1146, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L128", + "community": 1146, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L129", + "community": 1146, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L130", + "community": 1146, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L136", + "community": 995, + "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L137", + "community": 995, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L138", + "community": 995, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L139", + "community": 995, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, + { + "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L141", + "community": 1142, + "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L142", + "community": 1142, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L143", + "community": 1142, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L144", + "community": 1142, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L145", + "community": 1142, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L151", + "community": 996, + "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L152", + "community": 996, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L153", + "community": 996, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L154", + "community": 996, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, + { + "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L156", + "community": 1140, + "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L157", + "community": 1140, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L158", + "community": 1140, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L159", + "community": 1140, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L160", + "community": 1140, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L166", + "community": 995, + "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L167", + "community": 995, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L168", + "community": 995, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L169", + "community": 995, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, + { + "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L171", + "community": 1141, + "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L172", + "community": 1141, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L173", + "community": 1141, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L174", + "community": 1141, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L175", + "community": 1141, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "label": "prefab_config.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", + "source_location": "L1", + "community": 670, + "norm_label": "prefab_config.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json" + }, + { + "label": "enabled", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", + "source_location": "L2", + "community": 670, + "norm_label": "enabled", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_enabled" + }, + { + "label": "prefabPath", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", + "source_location": "L3", + "community": 670, + "norm_label": "prefabpath", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_prefabpath" + }, + { + "label": "packages", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", + "source_location": "L4", + "community": 670, + "norm_label": "packages", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_packages" + }, + { + "label": "android_gradle_build.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L1", + "community": 58, + "norm_label": "android_gradle_build.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json" + }, + { + "label": "buildFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L2", + "community": 58, + "norm_label": "buildfiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildfiles" + }, + { + "label": "cleanCommandsComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L22", + "community": 58, + "norm_label": "cleancommandscomponents", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cleancommandscomponents" + }, + { + "label": "buildTargetsCommandComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L30", + "community": 58, + "norm_label": "buildtargetscommandcomponents", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildtargetscommandcomponents" + }, + { + "label": "libraries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L36", + "community": 1035, + "norm_label": "libraries", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries" + }, + { + "label": "appmodules::@6890427a1f51a3e7e1df", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L37", + "community": 940, + "norm_label": "appmodules::@6890427a1f51a3e7e1df", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L38", + "community": 940, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L39", + "community": 940, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L40", + "community": 940, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L41", + "community": 940, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L42", + "community": 940, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "label": "core::@1b9a7d546b295b7d0867", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L56", + "community": 1035, + "norm_label": "core::@1b9a7d546b295b7d0867", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L57", + "community": 1035, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L58", + "community": 993, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L59", + "community": 994, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L60", + "community": 940, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L62", + "community": 1074, + "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L63", + "community": 1074, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L64", + "community": 1074, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L65", + "community": 1074, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L66", + "community": 1074, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L67", + "community": 1074, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L73", + "community": 1068, + "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L74", + "community": 1068, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L75", + "community": 1068, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L76", + "community": 1068, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L77", + "community": 1068, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L78", + "community": 1068, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L84", + "community": 993, + "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L85", + "community": 993, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L86", + "community": 993, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L87", + "community": 993, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L89", + "community": 940, + "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L90", + "community": 940, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L91", + "community": 940, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L92", + "community": 940, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L93", + "community": 940, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L94", + "community": 940, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L100", + "community": 958, + "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L101", + "community": 958, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L102", + "community": 958, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L103", + "community": 958, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L105", + "community": 1266, + "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L106", + "community": 1266, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L107", + "community": 1266, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L108", + "community": 1266, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L110", + "community": 1073, + "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L111", + "community": 1073, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L112", + "community": 1073, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L113", + "community": 1073, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L114", + "community": 1073, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L115", + "community": 1073, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L121", + "community": 993, + "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L122", + "community": 993, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L123", + "community": 993, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L124", + "community": 993, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L126", + "community": 1035, + "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L127", + "community": 1035, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L128", + "community": 1035, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L129", + "community": 1035, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L131", + "community": 994, + "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L132", + "community": 994, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L133", + "community": 994, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L134", + "community": 994, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L136", + "community": 1069, + "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L137", + "community": 1069, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L138", + "community": 1069, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L139", + "community": 1069, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L140", + "community": 1069, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L141", + "community": 1069, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L147", + "community": 994, + "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L148", + "community": 994, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L149", + "community": 994, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L150", + "community": 994, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L152", + "community": 1070, + "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L153", + "community": 1070, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L154", + "community": 1070, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L155", + "community": 1070, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L156", + "community": 1070, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L157", + "community": 1070, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L163", + "community": 1071, + "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L164", + "community": 1071, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L165", + "community": 1071, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L166", + "community": 1071, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L167", + "community": 1071, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L168", + "community": 1071, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L174", + "community": 958, + "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L175", + "community": 958, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L176", + "community": 958, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L177", + "community": 958, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L179", + "community": 1072, + "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L180", + "community": 1072, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L181", + "community": 1072, + "norm_label": "abi", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L182", + "community": 1072, + "norm_label": "artifactname", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L183", + "community": 1072, + "norm_label": "output", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L184", + "community": 1072, + "norm_label": "runtimefiles", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "label": "toolchains", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L191", + "community": 58, + "norm_label": "toolchains", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L192", + "community": 958, + "norm_label": "toolchain", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "label": "cCompilerExecutable", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L193", + "community": 958, + "norm_label": "ccompilerexecutable", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_ccompilerexecutable" + }, + { + "label": "cppCompilerExecutable", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L194", + "community": 958, + "norm_label": "cppcompilerexecutable", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_cppcompilerexecutable" + }, + { + "label": "cFileExtensions", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L197", + "community": 58, + "norm_label": "cfileextensions", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cfileextensions" + }, + { + "label": "cppFileExtensions", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L198", + "community": 58, + "norm_label": "cppfileextensions", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cppfileextensions" + }, + { + "label": "foo.cpp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", + "source_location": "L1", + "community": 724, + "norm_label": "foo.cpp", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_foo_cpp" + }, + { + "label": "foo()", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", + "source_location": "L1", + "community": 724, + "norm_label": "foo()", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_foo_cpp_src_foo_foo" + }, + { + "label": "main.cpp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", + "source_location": "L1", + "community": 725, + "norm_label": "main.cpp", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_main_cpp" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", + "source_location": "L3", + "community": 725, + "norm_label": "main()", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_main_cpp_src_main_main" + }, + { + "label": "CMakeCCompilerId.c", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", + "source_location": "L1", + "community": 722, + "norm_label": "cmakeccompilerid.c", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", + "source_location": "L771", + "community": 722, + "norm_label": "main()", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c_compileridc_cmakeccompilerid_main" + }, + { + "label": "CMakeCXXCompilerId.cpp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", + "source_location": "L1", + "community": 723, + "norm_label": "cmakecxxcompilerid.cpp", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", + "source_location": "L767", + "community": 723, + "norm_label": "main()", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" + }, + { + "label": "target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L1", + "community": 315, + "norm_label": "target-react_codegen_rnmmkvspec-debug-ef9b9bcc9f5e0f77ea1b.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L2", + "community": 315, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L26", + "community": 315, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L27", + "community": 315, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L29", + "community": 315, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L38", + "community": 315, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L43", + "community": 315, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L86", + "community": 315, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L201", + "community": 315, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L202", + "community": 315, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L203", + "community": 315, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L205", + "community": 315, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L206", + "community": 315, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L208", + "community": 315, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L224", + "community": 315, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L269", + "community": 315, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" + }, + { + "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L1", + "community": 490, + "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build-debug-3c4f354f8e9d2bc9c5a6.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L2", + "community": 490, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L4", + "community": 490, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L5", + "community": 490, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L6", + "community": 490, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L8", + "community": 490, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L9", + "community": 490, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L11", + "community": 490, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L12", + "community": 490, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_source" + }, + { + "label": "directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L1", + "community": 488, + "norm_label": "directory-rnmmkvspec_autolinked_build-debug-0a577c6ddcdff9b1cd2d.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L2", + "community": 488, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L4", + "community": 488, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L5", + "community": 488, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L6", + "community": 488, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L8", + "community": 488, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L9", + "community": 488, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L11", + "community": 488, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L12", + "community": 488, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_source" + }, + { + "label": "directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L1", + "community": 494, + "norm_label": "directory-rnsvg_autolinked_build-debug-251c63907f461abe26aa.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L2", + "community": 494, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L4", + "community": 494, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L5", + "community": 494, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L6", + "community": 494, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L8", + "community": 494, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L9", + "community": 494, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L11", + "community": 494, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L12", + "community": 494, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_source" + }, + { + "label": "directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L1", + "community": 481, + "norm_label": "directory-lottiereactnative_autolinked_build-debug-b03690d896f7026a177d.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L2", + "community": 481, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L4", + "community": 481, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L5", + "community": 481, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L6", + "community": 481, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L8", + "community": 481, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L9", + "community": 481, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L11", + "community": 481, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L12", + "community": 481, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_source" + }, + { + "label": "directory-.-Debug-f5ebdc15457944623624.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L1", + "community": 480, + "norm_label": "directory-.-debug-f5ebdc15457944623624.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L2", + "community": 480, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L4", + "community": 480, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L5", + "community": 480, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L6", + "community": 480, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L8", + "community": 480, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L9", + "community": 480, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L11", + "community": 480, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L12", + "community": 480, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_source" + }, + { + "label": "directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L1", + "community": 491, + "norm_label": "directory-rnpicker_autolinked_build-debug-aa9f04d4f6540efeba1f.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L2", + "community": 491, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L4", + "community": 491, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L5", + "community": 491, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L6", + "community": 491, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L8", + "community": 491, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L9", + "community": 491, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L11", + "community": 491, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L12", + "community": 491, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_source" + }, + { + "label": "directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L1", + "community": 485, + "norm_label": "directory-rngesturehandler_codegen_autolinked_build-debug-c1f265f99af0b94266ef.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L2", + "community": 485, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L4", + "community": 485, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L5", + "community": 485, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L6", + "community": 485, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L8", + "community": 485, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L9", + "community": 485, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L11", + "community": 485, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L12", + "community": 485, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_source" + }, + { + "label": "target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L1", + "community": 227, + "norm_label": "target-react_codegen_rnsvg-debug-a4e3e3004693fc5a6053.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L2", + "community": 227, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L8", + "community": 227, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L9", + "community": 227, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L11", + "community": 227, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L20", + "community": 227, + "norm_label": "files", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L25", + "community": 227, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L86", + "community": 227, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L232", + "community": 227, + "norm_label": "id", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L233", + "community": 227, + "norm_label": "link", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L235", + "community": 227, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L261", + "community": 227, + "norm_label": "language", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L262", + "community": 227, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L264", + "community": 227, + "norm_label": "path", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L267", + "community": 227, + "norm_label": "name", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L268", + "community": 227, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L269", + "community": 227, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L271", + "community": 227, + "norm_label": "build", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L272", + "community": 227, + "norm_label": "source", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L274", + "community": 227, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L294", + "community": 227, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L363", + "community": 227, + "norm_label": "type", + "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_type" + }, + { + "label": "cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L1", + "community": 997, + "norm_label": "cmakefiles-v1-a1046cc2eaa0362a831d.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cmakefiles_v1_a1046cc2eaa0362a831d_json" + }, + { + "label": "inputs", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L2", + "community": 997, + "norm_label": "inputs", + "id": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_inputs" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L334", + "community": 997, + "norm_label": "kind", + "id": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L335", + "community": 997, + "norm_label": "paths", + "id": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L337", + "community": 997, + "norm_label": "build", + "id": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L338", + "community": 997, + "norm_label": "source", + "id": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L340", + "community": 997, + "norm_label": "version", + "id": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L342", + "community": 997, + "norm_label": "major", + "id": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L343", + "community": 997, + "norm_label": "minor", + "id": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_version_minor" + }, + { + "label": "cache-v2-66204c86ebffb030aad7.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-66204c86ebffb030aad7.json", + "source_location": "L1", + "community": 1077, + "norm_label": "cache-v2-66204c86ebffb030aad7.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cache_v2_66204c86ebffb030aad7_json" + }, + { + "label": "entries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-66204c86ebffb030aad7.json", + "source_location": "L2", + "community": 1077, + "norm_label": "entries", + "id": "reply_cache_v2_66204c86ebffb030aad7_entries" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-66204c86ebffb030aad7.json", + "source_location": "L1637", + "community": 1077, + "norm_label": "kind", + "id": "reply_cache_v2_66204c86ebffb030aad7_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-66204c86ebffb030aad7.json", + "source_location": "L1638", + "community": 1077, + "norm_label": "version", + "id": "reply_cache_v2_66204c86ebffb030aad7_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-66204c86ebffb030aad7.json", + "source_location": "L1640", + "community": 1077, + "norm_label": "major", + "id": "reply_cache_v2_66204c86ebffb030aad7_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-66204c86ebffb030aad7.json", + "source_location": "L1641", + "community": 1077, + "norm_label": "minor", + "id": "reply_cache_v2_66204c86ebffb030aad7_version_minor" + }, + { + "label": "target-core-Debug-ed16fb7b9025dcb8780b.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L1", + "community": 273, + "norm_label": "target-core-debug-ed16fb7b9025dcb8780b.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json" + }, + { + "label": "archive", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L2", + "community": 273, + "norm_label": "archive", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_archive" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L3", + "community": 273, + "norm_label": "artifacts", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L9", + "community": 273, + "norm_label": "backtrace", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L10", + "community": 273, + "norm_label": "backtracegraph", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L12", + "community": 273, + "norm_label": "commands", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L18", + "community": 273, + "norm_label": "files", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L22", + "community": 273, + "norm_label": "nodes", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L47", + "community": 273, + "norm_label": "compilegroups", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L117", + "community": 273, + "norm_label": "id", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L118", + "community": 273, + "norm_label": "name", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L119", + "community": 273, + "norm_label": "nameondisk", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L120", + "community": 273, + "norm_label": "paths", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L122", + "community": 273, + "norm_label": "build", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L123", + "community": 273, + "norm_label": "source", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L125", + "community": 273, + "norm_label": "sourcegroups", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L200", + "community": 273, + "norm_label": "sources", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L536", + "community": 273, + "norm_label": "type", + "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_type" + }, + { + "label": "target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L1", + "community": 215, + "norm_label": "target-react_codegen_rnscreens-debug-35d9e6b125369291c318.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L2", + "community": 215, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L8", + "community": 215, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L9", + "community": 215, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L11", + "community": 215, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L21", + "community": 215, + "norm_label": "files", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L26", + "community": 215, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L75", + "community": 215, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L224", + "community": 215, + "norm_label": "id", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L225", + "community": 215, + "norm_label": "link", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L227", + "community": 215, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L253", + "community": 215, + "norm_label": "language", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L254", + "community": 215, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L256", + "community": 215, + "norm_label": "path", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L259", + "community": 215, + "norm_label": "name", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L260", + "community": 215, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L261", + "community": 215, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L263", + "community": 215, + "norm_label": "build", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L264", + "community": 215, + "norm_label": "source", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L266", + "community": 215, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L293", + "community": 215, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L404", + "community": 215, + "norm_label": "type", + "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_type" + }, + { + "label": "target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L1", + "community": 186, + "norm_label": "target-react_codegen_rncslider-debug-ee1e7eafce436af8aa40.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L2", + "community": 186, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L8", + "community": 186, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L9", + "community": 186, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L11", + "community": 186, + "norm_label": "commands", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L20", + "community": 186, + "norm_label": "files", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L25", + "community": 186, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L68", + "community": 186, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L196", + "community": 186, + "norm_label": "id", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L197", + "community": 186, + "norm_label": "link", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L199", + "community": 186, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L225", + "community": 186, + "norm_label": "language", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L226", + "community": 186, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L228", + "community": 186, + "norm_label": "path", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L231", + "community": 186, + "norm_label": "name", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L232", + "community": 186, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L233", + "community": 186, + "norm_label": "paths", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L235", + "community": 186, + "norm_label": "build", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L236", + "community": 186, + "norm_label": "source", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L238", + "community": 186, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L256", + "community": 186, + "norm_label": "sources", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L313", + "community": 186, + "norm_label": "type", + "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_type" + }, + { + "label": "target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L1", + "community": 196, + "norm_label": "target-react_codegen_rnkc-debug-502a134d7f3ef647df74.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L2", + "community": 196, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L8", + "community": 196, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L9", + "community": 196, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L11", + "community": 196, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L21", + "community": 196, + "norm_label": "files", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L26", + "community": 196, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L75", + "community": 196, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L221", + "community": 196, + "norm_label": "id", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L222", + "community": 196, + "norm_label": "link", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L224", + "community": 196, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L250", + "community": 196, + "norm_label": "language", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L251", + "community": 196, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L253", + "community": 196, + "norm_label": "path", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L256", + "community": 196, + "norm_label": "name", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L257", + "community": 196, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L258", + "community": 196, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L260", + "community": 196, + "norm_label": "build", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L261", + "community": 196, + "norm_label": "source", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L263", + "community": 196, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L287", + "community": 196, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L380", + "community": 196, + "norm_label": "type", + "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_type" + }, + { + "label": "directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L1", + "community": 483, + "norm_label": "directory-rncslider_autolinked_build-debug-9692891af1777e76efd8.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L2", + "community": 483, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L4", + "community": 483, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L5", + "community": 483, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L6", + "community": 483, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L8", + "community": 483, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L9", + "community": 483, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L11", + "community": 483, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L12", + "community": 483, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_source" + }, + { + "label": "index-2026-06-10T07-37-35-0701.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L1", + "community": 150, + "norm_label": "index-2026-06-10t07-37-35-0701.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_index_2026_06_10t07_37_35_0701_json" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L2", + "community": 150, + "norm_label": "cmake", + "id": "reply_index_2026_06_10t07_37_35_0701_cmake" + }, + { + "label": "generator", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L4", + "community": 150, + "norm_label": "generator", + "id": "reply_index_2026_06_10t07_37_35_0701_cmake_generator" + }, + { + "label": "multiConfig", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L6", + "community": 150, + "norm_label": "multiconfig", + "id": "reply_index_2026_06_10t07_37_35_0701_generator_multiconfig" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L7", + "community": 150, + "norm_label": "name", + "id": "reply_index_2026_06_10t07_37_35_0701_generator_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L9", + "community": 150, + "norm_label": "paths", + "id": "reply_index_2026_06_10t07_37_35_0701_cmake_paths" + }, + { + "label": "cmake", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L11", + "community": 150, + "norm_label": "cmake", + "id": "reply_index_2026_06_10t07_37_35_0701_paths_cmake" + }, + { + "label": "cpack", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L12", + "community": 150, + "norm_label": "cpack", + "id": "reply_index_2026_06_10t07_37_35_0701_paths_cpack" + }, + { + "label": "ctest", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L13", + "community": 150, + "norm_label": "ctest", + "id": "reply_index_2026_06_10t07_37_35_0701_paths_ctest" + }, + { + "label": "root", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L14", + "community": 150, + "norm_label": "root", + "id": "reply_index_2026_06_10t07_37_35_0701_paths_root" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L16", + "community": 150, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_35_0701_cmake_version" + }, + { + "label": "isDirty", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L18", + "community": 150, + "norm_label": "isdirty", + "id": "reply_index_2026_06_10t07_37_35_0701_version_isdirty" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L19", + "community": 150, + "norm_label": "major", + "id": "reply_index_2026_06_10t07_37_35_0701_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L20", + "community": 150, + "norm_label": "minor", + "id": "reply_index_2026_06_10t07_37_35_0701_version_minor" + }, + { + "label": "patch", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L21", + "community": 150, + "norm_label": "patch", + "id": "reply_index_2026_06_10t07_37_35_0701_version_patch" + }, + { + "label": "string", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L22", + "community": 150, + "norm_label": "string", + "id": "reply_index_2026_06_10t07_37_35_0701_version_string" + }, + { + "label": "suffix", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L23", + "community": 150, + "norm_label": "suffix", + "id": "reply_index_2026_06_10t07_37_35_0701_version_suffix" + }, + { + "label": "objects", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L26", + "community": 150, + "norm_label": "objects", + "id": "reply_index_2026_06_10t07_37_35_0701_objects" + }, + { + "label": "reply", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L56", + "community": 150, + "norm_label": "reply", + "id": "reply_index_2026_06_10t07_37_35_0701_reply" + }, + { + "label": "client-agp", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L58", + "community": 150, + "norm_label": "client-agp", + "id": "reply_index_2026_06_10t07_37_35_0701_reply_client_agp" + }, + { + "label": "cache-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L60", + "community": 150, + "norm_label": "cache-v2", + "id": "reply_index_2026_06_10t07_37_35_0701_client_agp_cache_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L62", + "community": 150, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_35_0701_cache_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L63", + "community": 150, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_35_0701_cache_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L64", + "community": 150, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_35_0701_cache_v2_version" + }, + { + "label": "cmakeFiles-v1", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L70", + "community": 150, + "norm_label": "cmakefiles-v1", + "id": "reply_index_2026_06_10t07_37_35_0701_client_agp_cmakefiles_v1" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L72", + "community": 150, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_35_0701_cmakefiles_v1_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L73", + "community": 150, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_35_0701_cmakefiles_v1_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L74", + "community": 150, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_35_0701_cmakefiles_v1_version" + }, + { + "label": "codemodel-v2", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L80", + "community": 150, + "norm_label": "codemodel-v2", + "id": "reply_index_2026_06_10t07_37_35_0701_client_agp_codemodel_v2" + }, + { + "label": "jsonFile", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L82", + "community": 150, + "norm_label": "jsonfile", + "id": "reply_index_2026_06_10t07_37_35_0701_codemodel_v2_jsonfile" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L83", + "community": 150, + "norm_label": "kind", + "id": "reply_index_2026_06_10t07_37_35_0701_codemodel_v2_kind" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L84", + "community": 150, + "norm_label": "version", + "id": "reply_index_2026_06_10t07_37_35_0701_codemodel_v2_version" + }, + { + "label": "target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L1", + "community": 312, + "norm_label": "target-react_codegen_rnctabview-debug-06b5fac189d4c1b8bd14.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L2", + "community": 312, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L26", + "community": 312, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L27", + "community": 312, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L29", + "community": 312, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L38", + "community": 312, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L43", + "community": 312, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L86", + "community": 312, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L201", + "community": 312, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L202", + "community": 312, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L203", + "community": 312, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L205", + "community": 312, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L206", + "community": 312, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L208", + "community": 312, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L224", + "community": 312, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L269", + "community": 312, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" + }, + { + "label": "target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L1", + "community": 317, + "norm_label": "target-react_codegen_rnworklets-debug-aff294105f916fb22711.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L2", + "community": 317, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L26", + "community": 317, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L27", + "community": 317, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L29", + "community": 317, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L38", + "community": 317, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L43", + "community": 317, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L86", + "community": 317, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L201", + "community": 317, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L202", + "community": 317, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L203", + "community": 317, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L205", + "community": 317, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L206", + "community": 317, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L208", + "community": 317, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L224", + "community": 317, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L269", + "community": 317, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" + }, + { + "label": "target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L1", + "community": 314, + "norm_label": "target-react_codegen_rnmenuviewspec-debug-b6f81a68b0bec81bef04.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L2", + "community": 314, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L26", + "community": 314, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L27", + "community": 314, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L29", + "community": 314, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L38", + "community": 314, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L43", + "community": 314, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L86", + "community": 314, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L201", + "community": 314, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L202", + "community": 314, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L203", + "community": 314, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L205", + "community": 314, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L206", + "community": 314, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L208", + "community": 314, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L224", + "community": 314, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L269", + "community": 314, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" + }, + { + "label": "directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L1", + "community": 495, + "norm_label": "directory-rnworklets_autolinked_build-debug-c55782449035392fe125.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L2", + "community": 495, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L4", + "community": 495, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L5", + "community": 495, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L6", + "community": 495, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L8", + "community": 495, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L9", + "community": 495, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L11", + "community": 495, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L12", + "community": 495, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_source" + }, + { + "label": "target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L1", + "community": 126, + "norm_label": "target-appmodules-debug-33f4ed7584fd54e7dbdf.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L2", + "community": 126, + "norm_label": "artifacts", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L8", + "community": 126, + "norm_label": "backtrace", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L9", + "community": 126, + "norm_label": "backtracegraph", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L11", + "community": 126, + "norm_label": "commands", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L21", + "community": 126, + "norm_label": "files", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L34", + "community": 126, + "norm_label": "nodes", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L156", + "community": 126, + "norm_label": "compilegroups", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L481", + "community": 126, + "norm_label": "dependencies", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_dependencies" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L552", + "community": 126, + "norm_label": "id", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L553", + "community": 126, + "norm_label": "link", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L555", + "community": 126, + "norm_label": "commandfragments", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L637", + "community": 126, + "norm_label": "language", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L638", + "community": 126, + "norm_label": "sysroot", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L640", + "community": 126, + "norm_label": "path", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L643", + "community": 126, + "norm_label": "name", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L644", + "community": 126, + "norm_label": "nameondisk", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L645", + "community": 126, + "norm_label": "paths", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L647", + "community": 126, + "norm_label": "build", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L648", + "community": 126, + "norm_label": "source", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L650", + "community": 126, + "norm_label": "sourcegroups", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L723", + "community": 126, + "norm_label": "sources", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L1074", + "community": 126, + "norm_label": "type", + "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_type" + }, + { + "label": "directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L1", + "community": 492, + "norm_label": "directory-rnreanimated_autolinked_build-debug-f4aeae2d37b82d815393.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L2", + "community": 492, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L4", + "community": 492, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L5", + "community": 492, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L6", + "community": 492, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L8", + "community": 492, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L9", + "community": 492, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L11", + "community": 492, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L12", + "community": 492, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_source" + }, + { + "label": "directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L1", + "community": 493, + "norm_label": "directory-rnscreens_autolinked_build-debug-762995bc626882b56722.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L2", + "community": 493, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L4", + "community": 493, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L5", + "community": 493, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L6", + "community": 493, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L8", + "community": 493, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L9", + "community": 493, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L11", + "community": 493, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L12", + "community": 493, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_source" + }, + { + "label": "directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L1", + "community": 497, + "norm_label": "directory-truesheetspec_autolinked_build-debug-6f8e1947845121968926.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L2", + "community": 497, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L4", + "community": 497, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L5", + "community": 497, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L6", + "community": 497, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L8", + "community": 497, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L9", + "community": 497, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L11", + "community": 497, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L12", + "community": 497, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_source" + }, + { + "label": "target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L1", + "community": 313, + "norm_label": "target-react_codegen_rngesturehandler_codegen-debug-9adbf8bf4a7da1436434.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L2", + "community": 313, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L26", + "community": 313, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L27", + "community": 313, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L29", + "community": 313, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L38", + "community": 313, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L43", + "community": 313, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L86", + "community": 313, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L201", + "community": 313, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L202", + "community": 313, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L203", + "community": 313, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L205", + "community": 313, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L206", + "community": 313, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L208", + "community": 313, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L224", + "community": 313, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L269", + "community": 313, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" + }, + { + "label": "directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L1", + "community": 484, + "norm_label": "directory-rnctabview_autolinked_build-debug-b7a7f29ab6b37dd5df56.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L2", + "community": 484, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L4", + "community": 484, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L5", + "community": 484, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L6", + "community": 484, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L8", + "community": 484, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L9", + "community": 484, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L11", + "community": 484, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L12", + "community": 484, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_source" + }, + { + "label": "target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L1", + "community": 148, + "norm_label": "target-react-native-mmkv-debug-c0a12064afb9acb0270d.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L2", + "community": 148, + "norm_label": "artifacts", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L8", + "community": 148, + "norm_label": "backtrace", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L9", + "community": 148, + "norm_label": "backtracegraph", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L11", + "community": 148, + "norm_label": "commands", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L17", + "community": 148, + "norm_label": "files", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L21", + "community": 148, + "norm_label": "nodes", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L52", + "community": 148, + "norm_label": "compilegroups", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_compilegroups" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L161", + "community": 148, + "norm_label": "dependencies", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_dependencies" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L172", + "community": 148, + "norm_label": "id", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L173", + "community": 148, + "norm_label": "link", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L175", + "community": 148, + "norm_label": "commandfragments", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L217", + "community": 148, + "norm_label": "language", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L218", + "community": 148, + "norm_label": "sysroot", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L220", + "community": 148, + "norm_label": "path", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L223", + "community": 148, + "norm_label": "name", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L224", + "community": 148, + "norm_label": "nameondisk", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L225", + "community": 148, + "norm_label": "paths", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L227", + "community": 148, + "norm_label": "build", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L228", + "community": 148, + "norm_label": "source", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L230", + "community": 148, + "norm_label": "sourcegroups", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L255", + "community": 148, + "norm_label": "sources", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L318", + "community": 148, + "norm_label": "type", + "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_type" + }, + { + "label": "target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L1", + "community": 239, + "norm_label": "target-react_codegen_safeareacontext-debug-b09125492198fadf2c5a.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L2", + "community": 239, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L8", + "community": 239, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L9", + "community": 239, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L11", + "community": 239, + "norm_label": "commands", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L20", + "community": 239, + "norm_label": "files", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L25", + "community": 239, + "norm_label": "nodes", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L74", + "community": 239, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L214", + "community": 239, + "norm_label": "id", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L215", + "community": 239, + "norm_label": "link", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L217", + "community": 239, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L243", + "community": 239, + "norm_label": "language", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L244", + "community": 239, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L246", + "community": 239, + "norm_label": "path", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L249", + "community": 239, + "norm_label": "name", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L250", + "community": 239, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L251", + "community": 239, + "norm_label": "paths", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L253", + "community": 239, + "norm_label": "build", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L254", + "community": 239, + "norm_label": "source", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L256", + "community": 239, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L274", + "community": 239, + "norm_label": "sources", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L331", + "community": 239, + "norm_label": "type", + "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_type" + }, + { + "label": "target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L1", + "community": 207, + "norm_label": "target-react_codegen_rnpicker-debug-7c62286dc23e35402f32.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L2", + "community": 207, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L8", + "community": 207, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L9", + "community": 207, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L11", + "community": 207, + "norm_label": "commands", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L19", + "community": 207, + "norm_label": "files", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L23", + "community": 207, + "norm_label": "nodes", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L60", + "community": 207, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L188", + "community": 207, + "norm_label": "id", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L189", + "community": 207, + "norm_label": "link", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L191", + "community": 207, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L217", + "community": 207, + "norm_label": "language", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L218", + "community": 207, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L220", + "community": 207, + "norm_label": "path", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L223", + "community": 207, + "norm_label": "name", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L224", + "community": 207, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L225", + "community": 207, + "norm_label": "paths", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L227", + "community": 207, + "norm_label": "build", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L228", + "community": 207, + "norm_label": "source", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L230", + "community": 207, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L252", + "community": 207, + "norm_label": "sources", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L333", + "community": 207, + "norm_label": "type", + "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_type" + }, + { + "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L1", + "community": 489, + "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build.core-debug-a9f6f6c634eac5fe0705.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L2", + "community": 489, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L4", + "community": 489, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L5", + "community": 489, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L6", + "community": 489, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L8", + "community": 489, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L9", + "community": 489, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L11", + "community": 489, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L12", + "community": 489, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_source" + }, + { + "label": "target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L1", + "community": 310, + "norm_label": "target-react_codegen_lottiereactnative-debug-5cbd8a8add4d52eb7aec.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L2", + "community": 310, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L26", + "community": 310, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L27", + "community": 310, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L29", + "community": 310, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L38", + "community": 310, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L43", + "community": 310, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L86", + "community": 310, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L201", + "community": 310, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L202", + "community": 310, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L203", + "community": 310, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L205", + "community": 310, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L206", + "community": 310, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L208", + "community": 310, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L224", + "community": 310, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L269", + "community": 310, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" + }, + { + "label": "directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L1", + "community": 496, + "norm_label": "directory-safeareacontext_autolinked_build-debug-02cc5c5531c5c58ac73d.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L2", + "community": 496, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L4", + "community": 496, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L5", + "community": 496, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L6", + "community": 496, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L8", + "community": 496, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L9", + "community": 496, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L11", + "community": 496, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L12", + "community": 496, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_source" + }, + { + "label": "directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L1", + "community": 482, + "norm_label": "directory-rnasyncstorage_autolinked_build-debug-ec755c3cd9003338013f.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L2", + "community": 482, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L4", + "community": 482, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L5", + "community": 482, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L6", + "community": 482, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L8", + "community": 482, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L9", + "community": 482, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L11", + "community": 482, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L12", + "community": 482, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_source" + }, + { + "label": "target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L1", + "community": 248, + "norm_label": "target-react_codegen_truesheetspec-debug-502abf1155009eea7b6d.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L2", + "community": 248, + "norm_label": "artifacts", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L8", + "community": 248, + "norm_label": "backtrace", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L9", + "community": 248, + "norm_label": "backtracegraph", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L11", + "community": 248, + "norm_label": "commands", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L20", + "community": 248, + "norm_label": "files", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L25", + "community": 248, + "norm_label": "nodes", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L74", + "community": 248, + "norm_label": "compilegroups", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L214", + "community": 248, + "norm_label": "id", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_id" + }, + { + "label": "link", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L215", + "community": 248, + "norm_label": "link", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link" + }, + { + "label": "commandFragments", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L217", + "community": 248, + "norm_label": "commandfragments", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_commandfragments" + }, + { + "label": "language", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L243", + "community": 248, + "norm_label": "language", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_language" + }, + { + "label": "sysroot", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L244", + "community": 248, + "norm_label": "sysroot", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_sysroot" + }, + { + "label": "path", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L246", + "community": 248, + "norm_label": "path", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sysroot_path" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L249", + "community": 248, + "norm_label": "name", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_name" + }, + { + "label": "nameOnDisk", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L250", + "community": 248, + "norm_label": "nameondisk", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_nameondisk" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L251", + "community": 248, + "norm_label": "paths", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L253", + "community": 248, + "norm_label": "build", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L254", + "community": 248, + "norm_label": "source", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L256", + "community": 248, + "norm_label": "sourcegroups", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L274", + "community": 248, + "norm_label": "sources", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L331", + "community": 248, + "norm_label": "type", + "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_type" + }, + { + "label": "target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L1", + "community": 311, + "norm_label": "target-react_codegen_rnasyncstorage-debug-919046727d8d904e898b.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L2", + "community": 311, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L26", + "community": 311, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L27", + "community": 311, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L29", + "community": 311, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L38", + "community": 311, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L43", + "community": 311, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L86", + "community": 311, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L201", + "community": 311, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L202", + "community": 311, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L203", + "community": 311, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L205", + "community": 311, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L206", + "community": 311, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L208", + "community": 311, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L224", + "community": 311, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L269", + "community": 311, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" + }, + { + "label": "target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L1", + "community": 316, + "norm_label": "target-react_codegen_rnreanimated-debug-30d00d3524d3c338dd40.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json" + }, + { + "label": "artifacts", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L2", + "community": 316, + "norm_label": "artifacts", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" + }, + { + "label": "backtrace", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L26", + "community": 316, + "norm_label": "backtrace", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L27", + "community": 316, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L29", + "community": 316, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L38", + "community": 316, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L43", + "community": 316, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" + }, + { + "label": "compileGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L86", + "community": 316, + "norm_label": "compilegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" + }, + { + "label": "id", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L201", + "community": 316, + "norm_label": "id", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L202", + "community": 316, + "norm_label": "name", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L203", + "community": 316, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L205", + "community": 316, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L206", + "community": 316, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" + }, + { + "label": "sourceGroups", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L208", + "community": 316, + "norm_label": "sourcegroups", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" + }, + { + "label": "sources", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L224", + "community": 316, + "norm_label": "sources", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L269", + "community": 316, + "norm_label": "type", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" + }, + { + "label": "directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L1", + "community": 487, + "norm_label": "directory-rnmenuviewspec_autolinked_build-debug-db93909da8ac45d348e4.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L2", + "community": 487, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L4", + "community": 487, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L5", + "community": 487, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L6", + "community": 487, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L8", + "community": 487, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L9", + "community": 487, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L11", + "community": 487, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L12", + "community": 487, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_source" + }, + { + "label": "codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L1", + "community": 584, + "norm_label": "codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_codemodel_v2_289f1cdbaf7f8b3a77a1_json" + }, + { + "label": "configurations", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L2", + "community": 584, + "norm_label": "configurations", + "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_configurations" + }, + { + "label": "kind", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L508", + "community": 584, + "norm_label": "kind", + "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_kind" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L509", + "community": 584, + "norm_label": "paths", + "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L511", + "community": 584, + "norm_label": "build", + "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L512", + "community": 584, + "norm_label": "source", + "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths_source" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L514", + "community": 584, + "norm_label": "version", + "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version" + }, + { + "label": "major", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L516", + "community": 584, + "norm_label": "major", + "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version_major" + }, + { + "label": "minor", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L517", + "community": 584, + "norm_label": "minor", + "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version_minor" + }, + { + "label": "directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L1", + "community": 486, + "norm_label": "directory-rnkc_autolinked_build-debug-9b81a6f2831b76917207.json", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json" + }, + { + "label": "backtraceGraph", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L2", + "community": 486, + "norm_label": "backtracegraph", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L4", + "community": 486, + "norm_label": "commands", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_commands" + }, + { + "label": "files", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L5", + "community": 486, + "norm_label": "files", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_files" + }, + { + "label": "nodes", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L6", + "community": 486, + "norm_label": "nodes", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_nodes" + }, + { + "label": "installers", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L8", + "community": 486, + "norm_label": "installers", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_installers" + }, + { + "label": "paths", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L9", + "community": 486, + "norm_label": "paths", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L11", + "community": 486, + "norm_label": "build", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_build" + }, + { + "label": "source", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L12", + "community": 486, + "norm_label": "source", + "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_source" + }, + { + "label": "MainActivity.kt", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainActivity.kt", + "source_location": "L1", + "community": 439, + "norm_label": "mainactivity.kt", + "id": "apps_rebreak_native_android_app_src_main_java_org_rebreak_app_mainactivity_kt" + }, { "label": "MainActivity", "file_type": "code", @@ -78389,6 +104088,15 @@ "norm_label": ".createreactactivitydelegate()", "id": "app_mainactivity_mainactivity_createreactactivitydelegate" }, + { + "label": "ReactActivityDelegate", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainActivity.kt", + "source_location": "L36", + "community": 439, + "norm_label": "reactactivitydelegate", + "id": "reactactivitydelegate" + }, { "label": ".invokeDefaultOnBackPressed()", "file_type": "code", @@ -78398,12 +104106,21 @@ "norm_label": ".invokedefaultonbackpressed()", "id": "app_mainactivity_mainactivity_invokedefaultonbackpressed" }, + { + "label": "MainApplication.kt", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainApplication.kt", + "source_location": "L1", + "community": 391, + "norm_label": "mainapplication.kt", + "id": "apps_rebreak_native_android_app_src_main_java_org_rebreak_app_mainapplication_kt" + }, { "label": "MainApplication", "file_type": "code", "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainApplication.kt", "source_location": "L19", - "community": 891, + "community": 391, "norm_label": "mainapplication", "id": "app_mainapplication_mainapplication" }, @@ -78412,7 +104129,7 @@ "file_type": "code", "source_file": "", "source_location": "", - "community": 891, + "community": 391, "norm_label": "application", "id": "application" }, @@ -78421,7 +104138,7 @@ "file_type": "code", "source_file": "", "source_location": "", - "community": 891, + "community": 391, "norm_label": "reactapplication", "id": "reactapplication" }, @@ -78430,7 +104147,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainApplication.kt", "source_location": "L21", - "community": 891, + "community": 391, "norm_label": "reactnativehost", "id": "reactnativehost" }, @@ -78439,7 +104156,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainApplication.kt", "source_location": "L38", - "community": 891, + "community": 391, "norm_label": "reacthost", "id": "reacthost" }, @@ -78448,7 +104165,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainApplication.kt", "source_location": "L41", - "community": 891, + "community": 391, "norm_label": ".oncreate()", "id": "app_mainapplication_mainapplication_oncreate" }, @@ -78457,10 +104174,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainApplication.kt", "source_location": "L52", - "community": 891, + "community": 391, "norm_label": ".onconfigurationchanged()", "id": "app_mainapplication_mainapplication_onconfigurationchanged" }, + { + "label": "Configuration", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainApplication.kt", + "source_location": "L52", + "community": 391, + "norm_label": "configuration", + "id": "apps_rebreak_native_android_app_src_main_java_org_rebreak_app_mainapplication_kt_configuration" + }, { "label": "grab-onboarding-screenshot.sh", "file_type": "code", @@ -78474,6 +104200,19 @@ "norm_label": "grab-onboarding-screenshot.sh", "id": "apps_rebreak_native_scripts_grab_onboarding_screenshot_sh" }, + { + "label": "grab-onboarding-screenshot.sh script", + "file_type": "code", + "source_file": "apps/rebreak-native/scripts/grab-onboarding-screenshot.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "bash_entrypoint" + }, + "community": 804, + "norm_label": "grab-onboarding-screenshot.sh script", + "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_scripts_grab_onboarding_screenshot_sh__entry" + }, { "label": "play-submit.mjs", "file_type": "code", @@ -78680,15 +104419,141 @@ "norm_label": "build-ios-clean.sh script", "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_scripts_build_ios_clean_sh__entry" }, + { + "label": "resolveAvatar.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/resolveAvatar.ts", + "source_location": "L1", + "community": 93, + "norm_label": "resolveavatar.ts", + "id": "apps_rebreak_native_lib_resolveavatar_ts" + }, { "label": "resolveAvatar()", "file_type": "code", "source_file": "apps/rebreak-native/lib/resolveAvatar.ts", "source_location": "L19", - "community": 47, + "community": 93, "norm_label": "resolveavatar()", "id": "lib_resolveavatar_resolveavatar" }, + { + "label": "protection.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L1", + "community": 110, + "norm_label": "protection.ts", + "id": "apps_rebreak_native_lib_protection_ts" + }, + { + "label": "ProtectionPhase", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L42", + "community": 110, + "norm_label": "protectionphase", + "id": "lib_protection_protectionphase" + }, + { + "label": "CooldownState", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L50", + "community": 110, + "norm_label": "cooldownstate", + "id": "lib_protection_cooldownstate" + }, + { + "label": "ProtectionState", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L57", + "community": 1030, + "norm_label": "protectionstate", + "id": "lib_protection_protectionstate" + }, + { + "label": "BackendCooldownStatus", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L69", + "community": 110, + "norm_label": "backendcooldownstatus", + "id": "lib_protection_backendcooldownstatus" + }, + { + "label": "BackendProtectionState", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L80", + "community": 110, + "norm_label": "backendprotectionstate", + "id": "lib_protection_backendprotectionstate" + }, + { + "label": "setCooldownTestMode()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L95", + "community": 110, + "norm_label": "setcooldowntestmode()", + "id": "lib_protection_setcooldowntestmode" + }, + { + "label": "getCooldownTestMode()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L99", + "community": 7, + "norm_label": "getcooldowntestmode()", + "id": "lib_protection_getcooldowntestmode" + }, + { + "label": "markProtectionActivatedHere()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L114", + "community": 110, + "norm_label": "markprotectionactivatedhere()", + "id": "lib_protection_markprotectionactivatedhere" + }, + { + "label": "wasProtectionEverActiveHere()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L118", + "community": 110, + "norm_label": "wasprotectioneveractivehere()", + "id": "lib_protection_wasprotectioneveractivehere" + }, + { + "label": "protection", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L127", + "community": 110, + "norm_label": "protection", + "id": "lib_protection_protection" + }, + { + "label": "isAllLayersOn()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L700", + "community": 110, + "norm_label": "isalllayerson()", + "id": "lib_protection_isalllayerson" + }, + { + "label": "formatCooldownRemaining()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L717", + "community": 110, + "norm_label": "formatcooldownremaining()", + "id": "lib_protection_formatcooldownremaining" + }, { "label": "onboardingAssets.ts", "file_type": "code", @@ -78734,6 +104599,33 @@ "norm_label": "url_filter_en", "id": "lib_onboardingassets_url_filter_en" }, + { + "label": "URL_FILTER_FR", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L26", + "community": 389, + "norm_label": "url_filter_fr", + "id": "lib_onboardingassets_url_filter_fr" + }, + { + "label": "URL_FILTER_AR", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L27", + "community": 389, + "norm_label": "url_filter_ar", + "id": "lib_onboardingassets_url_filter_ar" + }, + { + "label": "SCREEN_TIME_DE", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L29", + "community": 389, + "norm_label": "screen_time_de", + "id": "lib_onboardingassets_screen_time_de" + }, { "label": "SCREEN_TIME_EN", "file_type": "code", @@ -78752,6 +104644,15 @@ "norm_label": "screen_time_fr", "id": "lib_onboardingassets_screen_time_fr" }, + { + "label": "SCREEN_TIME_AR", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L32", + "community": 389, + "norm_label": "screen_time_ar", + "id": "lib_onboardingassets_screen_time_ar" + }, { "label": "ANDROID_VPN_DE", "file_type": "code", @@ -78806,11 +104707,65 @@ "norm_label": "android_a11y_en", "id": "lib_onboardingassets_android_a11y_en" }, + { + "label": "ANDROID_A11Y_FR", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L43", + "community": 389, + "norm_label": "android_a11y_fr", + "id": "lib_onboardingassets_android_a11y_fr" + }, + { + "label": "ANDROID_A11Y_AR", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L44", + "community": 389, + "norm_label": "android_a11y_ar", + "id": "lib_onboardingassets_android_a11y_ar" + }, + { + "label": "ANDROID_A11Y_OVERVIEW_DE", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L50", + "community": 389, + "norm_label": "android_a11y_overview_de", + "id": "lib_onboardingassets_android_a11y_overview_de" + }, + { + "label": "ANDROID_A11Y_OVERVIEW_EN", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L51", + "community": 389, + "norm_label": "android_a11y_overview_en", + "id": "lib_onboardingassets_android_a11y_overview_en" + }, + { + "label": "ANDROID_A11Y_OVERVIEW_FR", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L52", + "community": 389, + "norm_label": "android_a11y_overview_fr", + "id": "lib_onboardingassets_android_a11y_overview_fr" + }, + { + "label": "ANDROID_A11Y_OVERVIEW_AR", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L53", + "community": 389, + "norm_label": "android_a11y_overview_ar", + "id": "lib_onboardingassets_android_a11y_overview_ar" + }, { "label": "SCREENSHOTS", "file_type": "code", "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", - "source_location": "L47", + "source_location": "L56", "community": 389, "norm_label": "screenshots", "id": "lib_onboardingassets_screenshots" @@ -78819,11 +104774,29 @@ "label": "getPermissionScreenshot()", "file_type": "code", "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", - "source_location": "L78", + "source_location": "L93", "community": 18, "norm_label": "getpermissionscreenshot()", "id": "lib_onboardingassets_getpermissionscreenshot" }, + { + "label": "realtimeStatus.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/realtimeStatus.ts", + "source_location": "L1", + "community": 93, + "norm_label": "realtimestatus.ts", + "id": "apps_rebreak_native_lib_realtimestatus_ts" + }, + { + "label": "isRealtimeErrorReal()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/realtimeStatus.ts", + "source_location": "L17", + "community": 93, + "norm_label": "isrealtimeerrorreal()", + "id": "lib_realtimestatus_isrealtimeerrorreal" + }, { "label": "lyraSpeech.ts", "file_type": "code", @@ -78874,7 +104847,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/avatars.ts", "source_location": "L1", - "community": 47, + "community": 93, "norm_label": "avatars.ts", "id": "apps_rebreak_native_lib_avatars_ts" }, @@ -78883,16 +104856,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/avatars.ts", "source_location": "L1", - "community": 47, + "community": 93, "norm_label": "heroavatar", "id": "lib_avatars_heroavatar" }, + { + "label": "HERO_AVATARS", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/avatars.ts", + "source_location": "L12", + "community": 93, + "norm_label": "hero_avatars", + "id": "lib_avatars_hero_avatars" + }, { "label": "getAvatarById()", "file_type": "code", "source_file": "apps/rebreak-native/lib/avatars.ts", "source_location": "L27", - "community": 47, + "community": 93, "norm_label": "getavatarbyid()", "id": "lib_avatars_getavatarbyid" }, @@ -78901,7 +104883,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/avatars.ts", "source_location": "L31", - "community": 47, + "community": 93, "norm_label": "getavatarurl()", "id": "lib_avatars_getavatarurl" }, @@ -79099,10 +105081,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/i18n.ts", "source_location": "L1", - "community": 20, + "community": 18, "norm_label": "i18n.ts", "id": "apps_rebreak_native_lib_i18n_ts" }, + { + "label": "llmProvider.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/llmProvider.ts", + "source_location": "L1", + "community": 866, + "norm_label": "llmprovider.ts", + "id": "apps_rebreak_native_lib_llmprovider_ts" + }, { "label": "LlmProvider", "file_type": "code", @@ -79166,12 +105157,21 @@ "norm_label": "usellmprovider()", "id": "lib_llmprovider_usellmprovider" }, + { + "label": "formatTime.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/formatTime.ts", + "source_location": "L1", + "community": 8, + "norm_label": "formattime.ts", + "id": "apps_rebreak_native_lib_formattime_ts" + }, { "label": "formatRelativeTime()", "file_type": "code", "source_file": "apps/rebreak-native/lib/formatTime.ts", "source_location": "L1", - "community": 53, + "community": 8, "norm_label": "formatrelativetime()", "id": "lib_formattime_formatrelativetime" }, @@ -79211,6 +105211,33 @@ "norm_label": "decodeapplemodel()", "id": "lib_devicemodel_decodeapplemodel" }, + { + "label": "ringback.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/ringback.ts", + "source_location": "L1", + "community": 288, + "norm_label": "ringback.ts", + "id": "apps_rebreak_native_lib_ringback_ts" + }, + { + "label": "startRingback()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/ringback.ts", + "source_location": "L18", + "community": 288, + "norm_label": "startringback()", + "id": "lib_ringback_startringback" + }, + { + "label": "stopRingback()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/ringback.ts", + "source_location": "L47", + "community": 288, + "norm_label": "stopringback()", + "id": "lib_ringback_stopringback" + }, { "label": "sosPrompts.ts", "file_type": "code", @@ -79229,6 +105256,132 @@ "norm_label": "sos_boot", "id": "lib_sosprompts_sos_boot" }, + { + "label": "lyraResponse.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L1", + "community": 17, + "norm_label": "lyraresponse.ts", + "id": "apps_rebreak_native_lib_lyraresponse_ts" + }, + { + "label": "LyraEmotion", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L5", + "community": 17, + "norm_label": "lyraemotion", + "id": "lib_lyraresponse_lyraemotion" + }, + { + "label": "ChipSpec", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L6", + "community": 17, + "norm_label": "chipspec", + "id": "lib_lyraresponse_chipspec" + }, + { + "label": "parseLyraResponse()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L9", + "community": 17, + "norm_label": "parselyraresponse()", + "id": "lib_lyraresponse_parselyraresponse" + }, + { + "label": "detectEmotion()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L57", + "community": 17, + "norm_label": "detectemotion()", + "id": "lib_lyraresponse_detectemotion" + }, + { + "label": "callkit.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L1", + "community": 288, + "norm_label": "callkit.ts", + "id": "apps_rebreak_native_lib_callkit_ts" + }, + { + "label": "isCallKeepAvailable()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L36", + "community": 288, + "norm_label": "iscallkeepavailable()", + "id": "lib_callkit_iscallkeepavailable" + }, + { + "label": "setupCallKeep()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L42", + "community": 288, + "norm_label": "setupcallkeep()", + "id": "lib_callkit_setupcallkeep" + }, + { + "label": "callIdToUuid()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L108", + "community": 288, + "norm_label": "callidtouuid()", + "id": "lib_callkit_callidtouuid" + }, + { + "label": "displayIncomingCall()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L126", + "community": 288, + "norm_label": "displayincomingcall()", + "id": "lib_callkit_displayincomingcall" + }, + { + "label": "startOutgoingCall()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L141", + "community": 288, + "norm_label": "startoutgoingcall()", + "id": "lib_callkit_startoutgoingcall" + }, + { + "label": "reportConnected()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L157", + "community": 288, + "norm_label": "reportconnected()", + "id": "lib_callkit_reportconnected" + }, + { + "label": "endCall()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L166", + "community": 288, + "norm_label": "endcall()", + "id": "lib_callkit_endcall" + }, + { + "label": "reportEnded()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L173", + "community": 288, + "norm_label": "reportended()", + "id": "lib_callkit_reportended" + }, { "label": "api.ts", "file_type": "code", @@ -79279,7 +105432,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/deviceId.ts", "source_location": "L1", - "community": 29, + "community": 20, "norm_label": "deviceid.ts", "id": "apps_rebreak_native_lib_deviceid_ts" }, @@ -79288,7 +105441,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/deviceId.ts", "source_location": "L11", - "community": 29, + "community": 20, "norm_label": "getdeviceid()", "id": "lib_deviceid_getdeviceid" }, @@ -79297,7 +105450,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/deviceId.ts", "source_location": "L48", - "community": 29, + "community": 20, "norm_label": "getplatformname()", "id": "lib_deviceid_getplatformname" }, @@ -79306,7 +105459,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/deviceId.ts", "source_location": "L54", - "community": 29, + "community": 20, "norm_label": "deviceinfo", "id": "lib_deviceid_deviceinfo" }, @@ -79315,16 +105468,79 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/deviceId.ts", "source_location": "L63", - "community": 29, + "community": 20, "norm_label": "getdeviceinfo()", "id": "lib_deviceid_getdeviceinfo" }, + { + "label": "sosConstants.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L1", + "community": 437, + "norm_label": "sosconstants.ts", + "id": "apps_rebreak_native_lib_sosconstants_ts" + }, + { + "label": "ChipSet", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L3", + "community": 437, + "norm_label": "chipset", + "id": "lib_sosconstants_chipset" + }, + { + "label": "Chip", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L4", + "community": 437, + "norm_label": "chip", + "id": "lib_sosconstants_chip" + }, + { + "label": "CHIP_SETS", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L6", + "community": 437, + "norm_label": "chip_sets", + "id": "lib_sosconstants_chip_sets" + }, + { + "label": "BreathPhase", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L44", + "community": 437, + "norm_label": "breathphase", + "id": "lib_sosconstants_breathphase" + }, + { + "label": "BreathState", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L45", + "community": 437, + "norm_label": "breathstate", + "id": "lib_sosconstants_breathstate" + }, + { + "label": "BREATH_PHASES", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L48", + "community": 437, + "norm_label": "breath_phases", + "id": "lib_sosconstants_breath_phases" + }, { "label": "tabIcons.ts", "file_type": "code", "source_file": "apps/rebreak-native/lib/tabIcons.ts", "source_location": "L1", - "community": 696, + "community": 20, "norm_label": "tabicons.ts", "id": "apps_rebreak_native_lib_tabicons_ts" }, @@ -79333,7 +105549,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/tabIcons.ts", "source_location": "L16", - "community": 696, + "community": 20, "norm_label": "tabkey", "id": "lib_tabicons_tabkey" }, @@ -79342,7 +105558,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/tabIcons.ts", "source_location": "L18", - "community": 696, + "community": 20, "norm_label": "android_icons", "id": "lib_tabicons_android_icons" }, @@ -79351,7 +105567,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/tabIcons.ts", "source_location": "L26", - "community": 696, + "community": 20, "norm_label": "gettabicon()", "id": "lib_tabicons_gettabicon" }, @@ -79360,7 +105576,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/tabIcons.ts", "source_location": "L33", - "community": 696, + "community": 20, "norm_label": "preloadtabicons()", "id": "lib_tabicons_preloadtabicons" }, @@ -79400,12 +105616,21 @@ "norm_label": "savebestscore()", "id": "lib_gamescores_savebestscore" }, + { + "label": "ttsProvider.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/ttsProvider.ts", + "source_location": "L1", + "community": 872, + "norm_label": "ttsprovider.ts", + "id": "apps_rebreak_native_lib_ttsprovider_ts" + }, { "label": "TtsProvider", "file_type": "code", "source_file": "apps/rebreak-native/lib/ttsProvider.ts", "source_location": "L7", - "community": 437, + "community": 872, "norm_label": "ttsprovider", "id": "lib_ttsprovider_ttsprovider" }, @@ -79414,7 +105639,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/ttsProvider.ts", "source_location": "L12", - "community": 437, + "community": 872, "norm_label": "tts_provider_label", "id": "lib_ttsprovider_tts_provider_label" }, @@ -79423,7 +105648,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/ttsProvider.ts", "source_location": "L20", - "community": 437, + "community": 872, "norm_label": "tts_provider_endpoint", "id": "lib_ttsprovider_tts_provider_endpoint" }, @@ -79432,7 +105657,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/ttsProvider.ts", "source_location": "L28", - "community": 437, + "community": 872, "norm_label": "listeners", "id": "lib_ttsprovider_listeners" }, @@ -79441,7 +105666,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/ttsProvider.ts", "source_location": "L31", - "community": 437, + "community": 872, "norm_label": "loadttsprovider()", "id": "lib_ttsprovider_loadttsprovider" }, @@ -79450,7 +105675,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/ttsProvider.ts", "source_location": "L41", - "community": 437, + "community": 872, "norm_label": "setttsprovider()", "id": "lib_ttsprovider_setttsprovider" }, @@ -79459,7 +105684,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/ttsProvider.ts", "source_location": "L47", - "community": 437, + "community": 872, "norm_label": "endpointforprovider()", "id": "lib_ttsprovider_endpointforprovider" }, @@ -79468,10 +105693,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/ttsProvider.ts", "source_location": "L54", - "community": 437, + "community": 872, "norm_label": "currentprovider()", "id": "lib_ttsprovider_currentprovider" }, + { + "label": "useTtsProvider()", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/ttsProvider.ts", + "source_location": "L58", + "community": 872, + "norm_label": "usettsprovider()", + "id": "lib_ttsprovider_usettsprovider" + }, { "label": "sosStream.ts", "file_type": "code", @@ -79490,11 +105724,29 @@ "norm_label": "sseevents", "id": "lib_sosstream_sseevents" }, + { + "label": "CrisisLevel", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/sosStream.ts", + "source_location": "L19", + "community": 258, + "norm_label": "crisislevel", + "id": "lib_sosstream_crisislevel" + }, + { + "label": "StreamSosLyraOpts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/sosStream.ts", + "source_location": "L21", + "community": 258, + "norm_label": "streamsoslyraopts", + "id": "lib_sosstream_streamsoslyraopts" + }, { "label": "consumeCompletedSentences()", "file_type": "code", "source_file": "apps/rebreak-native/lib/sosStream.ts", - "source_location": "L53", + "source_location": "L60", "community": 258, "norm_label": "consumecompletedsentences()", "id": "lib_sosstream_consumecompletedsentences" @@ -79503,11 +105755,20 @@ "label": "streamSosLyra()", "file_type": "code", "source_file": "apps/rebreak-native/lib/sosStream.ts", - "source_location": "L68", + "source_location": "L75", "community": 258, "norm_label": "streamsoslyra()", "id": "lib_sosstream_streamsoslyra" }, + { + "label": "useNativeActionSheet.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/useNativeActionSheet.ts", + "source_location": "L1", + "community": 704, + "norm_label": "usenativeactionsheet.ts", + "id": "apps_rebreak_native_lib_usenativeactionsheet_ts" + }, { "label": "Options", "file_type": "code", @@ -79540,7 +105801,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/germanCities.ts", "source_location": "L1", - "community": 156, + "community": 27, "norm_label": "germancities.ts", "id": "apps_rebreak_native_lib_germancities_ts" }, @@ -79549,7 +105810,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/germanCities.ts", "source_location": "L10", - "community": 156, + "community": 27, "norm_label": "german_cities_by_bundesland", "id": "lib_germancities_german_cities_by_bundesland" }, @@ -79558,7 +105819,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/germanCities.ts", "source_location": "L86", - "community": 156, + "community": 27, "norm_label": "getcitiesforbundesland()", "id": "lib_germancities_getcitiesforbundesland" }, @@ -79567,7 +105828,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/mailErrors.ts", "source_location": "L1", - "community": 21, + "community": 95, "norm_label": "mailerrors.ts", "id": "apps_rebreak_native_lib_mailerrors_ts" }, @@ -79576,7 +105837,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/mailErrors.ts", "source_location": "L8", - "community": 21, + "community": 95, "norm_label": "mailerrorreason", "id": "lib_mailerrors_mailerrorreason" }, @@ -79585,7 +105846,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/mailErrors.ts", "source_location": "L17", - "community": 21, + "community": 95, "norm_label": "classifymailerror()", "id": "lib_mailerrors_classifymailerror" }, @@ -79594,7 +105855,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/mailErrors.ts", "source_location": "L76", - "community": 21, + "community": 95, "norm_label": "humanizemailerror()", "id": "lib_mailerrors_humanizemailerror" }, @@ -79603,7 +105864,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/theme.ts", "source_location": "L1", - "community": 8, + "community": 53, "norm_label": "theme.ts", "id": "apps_rebreak_native_lib_theme_ts" }, @@ -79612,7 +105873,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/lib/theme.ts", "source_location": "L3", - "community": 8, + "community": 53, "norm_label": "theme", "id": "lib_theme_theme" }, @@ -79629,8 +105890,8 @@ "label": "light", "file_type": "code", "source_file": "apps/rebreak-native/lib/theme.ts", - "source_location": "L33", - "community": 8, + "source_location": "L36", + "community": 53, "norm_label": "light", "id": "lib_theme_light" }, @@ -79638,17 +105899,26 @@ "label": "dark", "file_type": "code", "source_file": "apps/rebreak-native/lib/theme.ts", - "source_location": "L49", - "community": 8, + "source_location": "L53", + "community": 53, "norm_label": "dark", "id": "lib_theme_dark" }, + { + "label": "colorSchemes", + "file_type": "code", + "source_file": "apps/rebreak-native/lib/theme.ts", + "source_location": "L70", + "community": 53, + "norm_label": "colorschemes", + "id": "lib_theme_colorschemes" + }, { "label": "useColors()", "file_type": "code", "source_file": "apps/rebreak-native/lib/theme.ts", - "source_location": "L67", - "community": 8, + "source_location": "L72", + "community": 53, "norm_label": "usecolors()", "id": "lib_theme_usecolors" }, @@ -79733,6 +106003,15 @@ "norm_label": "android", "id": "rebreak_protection_expo_module_config_android" }, + { + "label": "modules", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/expo-module.config.json", + "source_location": "L7", + "community": 661, + "norm_label": "modules", + "id": "rebreak_protection_expo_module_config_android_modules" + }, { "label": "package.json", "file_type": "code", @@ -79801,10 +106080,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", "source_location": "L1", - "community": 93, + "community": 110, "norm_label": "index.ts", "id": "apps_rebreak_native_modules_rebreak_protection_index_ts" }, + { + "label": "GenerateBloomFilter.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/tools/GenerateBloomFilter.swift", + "source_location": "L1", + "community": 762, + "norm_label": "generatebloomfilter.swift", + "id": "apps_rebreak_native_modules_rebreak_protection_tools_generatebloomfilter_swift" + }, { "label": "GenerateBloomFilter", "file_type": "code", @@ -79823,6 +106111,15 @@ "norm_label": ".main()", "id": "tools_generatebloomfilter_generatebloomfilter_main" }, + { + "label": "RebreakProtectionModule.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1", + "community": 262, + "norm_label": "rebreakprotectionmodule.swift", + "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift" + }, { "label": "SharedLogStore", "file_type": "code", @@ -79877,12 +106174,21 @@ "norm_label": "rebreakprotectionmodule", "id": "ios_rebreakprotectionmodule_rebreakprotectionmodule" }, + { + "label": "Module", + "file_type": "code", + "source_file": "", + "source_location": "", + "community": 66, + "norm_label": "module", + "id": "module" + }, { "label": "WKWebView", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L85", - "community": 288, + "community": 262, "norm_label": "wkwebview", "id": "wkwebview" }, @@ -79891,7 +106197,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L86", - "community": 288, + "community": 262, "norm_label": "healthprobedelegate", "id": "healthprobedelegate" }, @@ -80057,21 +106363,39 @@ "norm_label": ".disablecontentfilter()", "id": "ios_rebreakprotectionmodule_rebreakprotectionmodule_disablecontentfilter" }, + { + "label": "HealthProbeDelegate", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1553", + "community": 262, + "norm_label": "healthprobedelegate", + "id": "ios_rebreakprotectionmodule_healthprobedelegate" + }, { "label": "NSObject", "file_type": "code", "source_file": "", "source_location": "", - "community": 288, + "community": 262, "norm_label": "nsobject", "id": "nsobject" }, + { + "label": "WKNavigationDelegate", + "file_type": "code", + "source_file": "", + "source_location": "", + "community": 262, + "norm_label": "wknavigationdelegate", + "id": "wknavigationdelegate" + }, { "label": "Outcome", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1554", - "community": 288, + "community": 262, "norm_label": "outcome", "id": "ios_rebreakprotectionmodule_outcome" }, @@ -80080,7 +106404,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1555", - "community": 288, + "community": 262, "norm_label": "blocked", "id": "ios_rebreakprotectionmodule_outcome_blocked" }, @@ -80089,7 +106413,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1556", - "community": 288, + "community": 262, "norm_label": "loaded", "id": "ios_rebreakprotectionmodule_outcome_loaded" }, @@ -80098,7 +106422,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1557", - "community": 288, + "community": 262, "norm_label": "offline", "id": "ios_rebreakprotectionmodule_outcome_offline" }, @@ -80107,7 +106431,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1558", - "community": 288, + "community": 262, "norm_label": "timeout", "id": "ios_rebreakprotectionmodule_outcome_timeout" }, @@ -80116,7 +106440,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1561", - "community": 288, + "community": 262, "norm_label": "void", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift_void" }, @@ -80125,7 +106449,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1562", - "community": 288, + "community": 262, "norm_label": "date", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift_date" }, @@ -80134,7 +106458,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1564", - "community": 288, + "community": 262, "norm_label": "dispatchworkitem", "id": "dispatchworkitem" }, @@ -80143,7 +106467,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1566", - "community": 288, + "community": 262, "norm_label": ".init()", "id": "ios_rebreakprotectionmodule_healthprobedelegate_init" }, @@ -80152,7 +106476,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1566", - "community": 288, + "community": 262, "norm_label": "double", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift_double" }, @@ -80161,7 +106485,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1575", - "community": 288, + "community": 262, "norm_label": ".resolveonce()", "id": "ios_rebreakprotectionmodule_healthprobedelegate_resolveonce" }, @@ -80179,7 +106503,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1587", - "community": 288, + "community": 262, "norm_label": ".webview()", "id": "ios_rebreakprotectionmodule_healthprobedelegate_webview" }, @@ -80188,7 +106512,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1587", - "community": 288, + "community": 262, "norm_label": "wknavigation", "id": "wknavigation" }, @@ -80197,7 +106521,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L1591", - "community": 288, + "community": 262, "norm_label": "error", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift_error" }, @@ -80301,20 +106625,29 @@ "id": "ios_gambling_domains_tn" }, { - "label": "Error", + "label": "BloomFilter.swift", "file_type": "code", - "source_file": "", - "source_location": "", - "community": 883, - "norm_label": "error", - "id": "error" + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L1", + "community": 263, + "norm_label": "bloomfilter.swift", + "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift" + }, + { + "label": "BloomFilterError", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L14", + "community": 263, + "norm_label": "bloomfiltererror", + "id": "rebreakurlfilterextension_bloomfilter_bloomfiltererror" }, { "label": "invalidParameters", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L15", - "community": 54, + "community": 263, "norm_label": "invalidparameters", "id": "rebreakurlfilterextension_bloomfilter_bloomfiltererror_invalidparameters" }, @@ -80323,16 +106656,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L16", - "community": 54, + "community": 263, "norm_label": "encodingissue", "id": "rebreakurlfilterextension_bloomfilter_bloomfiltererror_encodingissue" }, + { + "label": "BloomFilter", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L19", + "community": 263, + "norm_label": "bloomfilter", + "id": "rebreakurlfilterextension_bloomfilter_bloomfilter" + }, { "label": "Int", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L21", - "community": 54, + "community": 263, "norm_label": "int", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_int" }, @@ -80341,7 +106683,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L22", - "community": 54, + "community": 263, "norm_label": "double", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_double" }, @@ -80350,16 +106692,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L23", - "community": 54, + "community": 263, "norm_label": "uint32", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_uint32" }, + { + "label": "Data", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L27", + "community": 263, + "norm_label": "data", + "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_data" + }, { "label": ".init()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L32", - "community": 54, + "community": 263, "norm_label": ".init()", "id": "rebreakurlfilterextension_bloomfilter_bloomfilter_init" }, @@ -80368,25 +106719,43 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L32", - "community": 54, + "community": 263, "norm_label": "string", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_string" }, + { + "label": ".calculateBitCount()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L62", + "community": 263, + "norm_label": ".calculatebitcount()", + "id": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatebitcount" + }, { "label": ".calculateHashCount()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L67", - "community": 54, + "community": 263, "norm_label": ".calculatehashcount()", "id": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatehashcount" }, + { + "label": ".calculateByteCount()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L73", + "community": 263, + "norm_label": ".calculatebytecount()", + "id": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatebytecount" + }, { "label": ".insert()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L77", - "community": 54, + "community": 263, "norm_label": ".insert()", "id": "rebreakurlfilterextension_bloomfilter_bloomfilter_insert" }, @@ -80395,7 +106764,7 @@ "file_type": "code", "source_file": "", "source_location": "", - "community": 869, + "community": 67, "norm_label": "codable", "id": "codable" }, @@ -80404,7 +106773,7 @@ "file_type": "code", "source_file": "", "source_location": "", - "community": 391, + "community": 263, "norm_label": "hashable", "id": "hashable" }, @@ -80462,6 +106831,15 @@ "norm_label": "bitcount", "id": "rebreakurlfilterextension_bloomfilter_codingkeys_bitcount" }, + { + "label": "byteCount", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L98", + "community": 123, + "norm_label": "bytecount", + "id": "rebreakurlfilterextension_bloomfilter_codingkeys_bytecount" + }, { "label": "hashCount", "file_type": "code", @@ -80485,7 +106863,7 @@ "file_type": "code", "source_file": "", "source_location": "", - "community": 883, + "community": 263, "norm_label": "customstringconvertible", "id": "customstringconvertible" }, @@ -80494,7 +106872,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L111", - "community": 54, + "community": 263, "norm_label": "data", "id": "rebreakurlfilterextension_bloomfilter_data" }, @@ -80503,7 +106881,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L113", - "community": 54, + "community": 263, "norm_label": ".setbit()", "id": "rebreakurlfilterextension_bloomfilter_data_setbit" }, @@ -80512,7 +106890,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L113", - "community": 54, + "community": 263, "norm_label": "bool", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_bool" }, @@ -80521,7 +106899,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L128", - "community": 54, + "community": 263, "norm_label": ".bit()", "id": "rebreakurlfilterextension_bloomfilter_data_bit" }, @@ -80561,6 +106939,15 @@ "norm_label": "uint32", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_fnv1ahash_swift_uint32" }, + { + "label": "RebreakURLFilterControlProvider.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/RebreakURLFilterControlProvider.swift", + "source_location": "L1", + "community": 419, + "norm_label": "rebreakurlfiltercontrolprovider.swift", + "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_rebreakurlfiltercontrolprovider_swift" + }, { "label": "ProviderFilterError", "file_type": "code", @@ -80656,7 +107043,7 @@ "file_type": "code", "source_file": "", "source_location": "", - "community": 870, + "community": 419, "norm_label": "neurlfiltercontrolprovider", "id": "neurlfiltercontrolprovider" }, @@ -80723,6 +107110,24 @@ "norm_label": "data", "id": "rebreakurlfilterextension_murmur3hash_data" }, + { + "label": ".murmurHash3()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/Murmur3Hash.swift", + "source_location": "L17", + "community": 260, + "norm_label": ".murmurhash3()", + "id": "rebreakurlfilterextension_murmur3hash_data_murmurhash3" + }, + { + "label": "UInt32", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/Murmur3Hash.swift", + "source_location": "L17", + "community": 260, + "norm_label": "uint32", + "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_murmur3hash_swift_uint32" + }, { "label": ".block()", "file_type": "code", @@ -81007,7 +107412,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", "source_location": "L1", - "community": 33, + "community": 156, "norm_label": "packettunnelprovider.swift", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift" }, @@ -81015,8 +107420,8 @@ "label": "ExtLog", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L60", - "community": 33, + "source_location": "L66", + "community": 156, "norm_label": "extlog", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_extlog" }, @@ -81024,8 +107429,8 @@ "label": ".write()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L61", - "community": 33, + "source_location": "L67", + "community": 156, "norm_label": ".write()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_extlog_write" }, @@ -81033,8 +107438,8 @@ "label": "String", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L61", - "community": 33, + "source_location": "L67", + "community": 156, "norm_label": "string", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_string" }, @@ -81042,8 +107447,8 @@ "label": "PacketTunnelProvider", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L74", - "community": 33, + "source_location": "L80", + "community": 156, "norm_label": "packettunnelprovider", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider" }, @@ -81051,8 +107456,8 @@ "label": "HashList", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L80", - "community": 33, + "source_location": "L86", + "community": 156, "norm_label": "hashlist", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_hashlist" }, @@ -81060,8 +107465,8 @@ "label": ".buildTunnelSettings()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L127", - "community": 33, + "source_location": "L133", + "community": 156, "norm_label": ".buildtunnelsettings()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_buildtunnelsettings" }, @@ -81069,8 +107474,8 @@ "label": "NEPacketTunnelNetworkSettings", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L127", - "community": 33, + "source_location": "L133", + "community": 156, "norm_label": "nepackettunnelnetworksettings", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_nepackettunnelnetworksettings" }, @@ -81078,8 +107483,8 @@ "label": ".startTunnel()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L162", - "community": 33, + "source_location": "L168", + "community": 156, "norm_label": ".starttunnel()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_starttunnel" }, @@ -81087,8 +107492,8 @@ "label": "NSObject", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L162", - "community": 33, + "source_location": "L168", + "community": 156, "norm_label": "nsobject", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_nsobject" }, @@ -81096,8 +107501,8 @@ "label": "Error", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L162", - "community": 33, + "source_location": "L168", + "community": 156, "norm_label": "error", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_error" }, @@ -81105,8 +107510,8 @@ "label": "Void", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L162", - "community": 33, + "source_location": "L168", + "community": 156, "norm_label": "void", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_void" }, @@ -81114,8 +107519,8 @@ "label": ".stopTunnel()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L215", - "community": 33, + "source_location": "L221", + "community": 156, "norm_label": ".stoptunnel()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_stoptunnel" }, @@ -81123,8 +107528,8 @@ "label": "NEProviderStopReason", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L215", - "community": 33, + "source_location": "L221", + "community": 156, "norm_label": "neproviderstopreason", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_neproviderstopreason" }, @@ -81132,8 +107537,8 @@ "label": ".readPackets()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L246", - "community": 33, + "source_location": "L252", + "community": 156, "norm_label": ".readpackets()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_readpackets" }, @@ -81141,8 +107546,8 @@ "label": ".handlePacket()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L267", - "community": 33, + "source_location": "L273", + "community": 156, "norm_label": ".handlepacket()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_handlepacket" }, @@ -81150,8 +107555,8 @@ "label": "Data", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L267", - "community": 33, + "source_location": "L273", + "community": 156, "norm_label": "data", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_data" }, @@ -81159,8 +107564,8 @@ "label": ".forwardPacket()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L300", - "community": 33, + "source_location": "L313", + "community": 156, "norm_label": ".forwardpacket()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_forwardpacket" }, @@ -81168,8 +107573,8 @@ "label": ".replyServFail()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L412", - "community": 33, + "source_location": "L425", + "community": 156, "norm_label": ".replyservfail()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_replyservfail" }, @@ -81177,8 +107582,8 @@ "label": ".writeToTun()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L421", - "community": 33, + "source_location": "L434", + "community": 156, "norm_label": ".writetotun()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_writetotun" }, @@ -81186,8 +107591,8 @@ "label": ".registerBlocklistObserver()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L432", - "community": 33, + "source_location": "L445", + "community": 156, "norm_label": ".registerblocklistobserver()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_registerblocklistobserver" }, @@ -81195,8 +107600,8 @@ "label": ".unregisterBlocklistObserver()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L449", - "community": 33, + "source_location": "L462", + "community": 156, "norm_label": ".unregisterblocklistobserver()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_unregisterblocklistobserver" }, @@ -81204,8 +107609,8 @@ "label": ".reloadBlocklist()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L473", - "community": 33, + "source_location": "L486", + "community": 156, "norm_label": ".reloadblocklist()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_reloadblocklist" }, @@ -81213,8 +107618,8 @@ "label": ".reapplyTunnelSettings()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L483", - "community": 33, + "source_location": "L496", + "community": 156, "norm_label": ".reapplytunnelsettings()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_reapplytunnelsettings" }, @@ -81222,8 +107627,8 @@ "label": ".scheduleBlocklistRetryIfEmpty()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L508", - "community": 33, + "source_location": "L521", + "community": 156, "norm_label": ".scheduleblocklistretryifempty()", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_scheduleblocklistretryifempty" }, @@ -81231,8 +107636,8 @@ "label": "Int", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", - "source_location": "L508", - "community": 33, + "source_location": "L521", + "community": 156, "norm_label": "int", "id": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakpackettunnelextension_packettunnelprovider_swift_int" }, @@ -81695,6 +108100,24 @@ "norm_label": "build.gradle", "id": "apps_rebreak_native_modules_rebreak_protection_android_build_gradle" }, + { + "label": "DomainHasherTest.kt", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L1", + "community": 112, + "norm_label": "domainhashertest.kt", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_test_java_expo_modules_rebreakprotection_filter_domainhashertest_kt" + }, + { + "label": "DomainHasherTest", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L18", + "community": 112, + "norm_label": "domainhashertest", + "id": "filter_domainhashertest_domainhashertest" + }, { "label": ".u()", "file_type": "code", @@ -81812,6 +108235,825 @@ "norm_label": ".`non-blocked domain has its own hash`()", "id": "filter_domainhashertest_domainhashertest_non_blocked_domain_has_its_own_hash" }, + { + "label": "RebreakProtectionModule.kt", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1", + "community": 10, + "norm_label": "rebreakprotectionmodule.kt", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt" + }, + { + "label": "RebreakProtectionModule", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L62", + "community": 10, + "norm_label": "rebreakprotectionmodule", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule" + }, + { + "label": "Promise", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L64", + "community": 10, + "norm_label": "promise", + "id": "promise" + }, + { + "label": "Runnable", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L71", + "community": 10, + "norm_label": "runnable", + "id": "runnable" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L72", + "community": 10, + "norm_label": "int", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" + }, + { + "label": "LinearLayout", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L73", + "community": 10, + "norm_label": "linearlayout", + "id": "linearlayout" + }, + { + "label": "TextView", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L74", + "community": 10, + "norm_label": "textview", + "id": "textview" + }, + { + "label": "WindowManager", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L75", + "community": 10, + "norm_label": "windowmanager", + "id": "windowmanager" + }, + { + "label": ".definition()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L78", + "community": 10, + "norm_label": ".definition()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition" + }, + { + "label": ".requireContext()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L629", + "community": 10, + "norm_label": ".requirecontext()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext" + }, + { + "label": "Context", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L629", + "community": 10, + "norm_label": "context", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "label": ".startStickyHint()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L659", + "community": 10, + "norm_label": ".startstickyhint()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L659", + "community": 10, + "norm_label": "string", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" + }, + { + "label": ".hasUsageAccess()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L705", + "community": 10, + "norm_label": ".hasusageaccess()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_hasusageaccess" + }, + { + "label": "Boolean", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L705", + "community": 10, + "norm_label": "boolean", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" + }, + { + "label": ".currentForegroundActivity()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L723", + "community": 10, + "norm_label": ".currentforegroundactivity()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentforegroundactivity" + }, + { + "label": ".currentA11yStep()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L756", + "community": 10, + "norm_label": ".currenta11ystep()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenta11ystep" + }, + { + "label": ".a11yStepForActivity()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L797", + "community": 10, + "norm_label": ".a11ystepforactivity()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_a11ystepforactivity" + }, + { + "label": ".ensureGuideChannel()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L819", + "community": 10, + "norm_label": ".ensureguidechannel()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_ensureguidechannel" + }, + { + "label": ".postGuideNotification()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L837", + "community": 10, + "norm_label": ".postguidenotification()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification" + }, + { + "label": ".cancelGuideNotification()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L869", + "community": 10, + "norm_label": ".cancelguidenotification()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_cancelguidenotification" + }, + { + "label": ".startA11yGuideWatch()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L879", + "community": 10, + "norm_label": ".starta11yguidewatch()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_starta11yguidewatch" + }, + { + "label": ".stopA11yGuideWatch()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L918", + "community": 10, + "norm_label": ".stopa11yguidewatch()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopa11yguidewatch" + }, + { + "label": ".guideStepText()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L925", + "community": 10, + "norm_label": ".guidesteptext()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext" + }, + { + "label": ".showOverlayStep()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L939", + "community": 10, + "norm_label": ".showoverlaystep()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep" + }, + { + "label": ".showGuideStep()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L998", + "community": 10, + "norm_label": ".showguidestep()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showguidestep" + }, + { + "label": ".stopGuideDisplay()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1004", + "community": 10, + "norm_label": ".stopguidedisplay()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay" + }, + { + "label": ".openOverlayPermissionSettings()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1009", + "community": 10, + "norm_label": ".openoverlaypermissionsettings()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings" + }, + { + "label": ".bringRebreakToFront()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1032", + "community": 10, + "norm_label": ".bringrebreaktofront()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_bringrebreaktofront" + }, + { + "label": ".resetSettingsToRoot()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1059", + "community": 10, + "norm_label": ".resetsettingstoroot()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetsettingstoroot" + }, + { + "label": ".currentStickyHintText()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1071", + "community": 10, + "norm_label": ".currentstickyhinttext()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentstickyhinttext" + }, + { + "label": ".advanceStickyHintStep()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1079", + "community": 10, + "norm_label": ".advancestickyhintstep()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_advancestickyhintstep" + }, + { + "label": ".resetStickyHintProgress()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1083", + "community": 10, + "norm_label": ".resetstickyhintprogress()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetstickyhintprogress" + }, + { + "label": ".stopSamsungGuideOverlay()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1087", + "community": 10, + "norm_label": ".stopsamsungguideoverlay()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopsamsungguideoverlay" + }, + { + "label": ".stopStickyHint()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1103", + "community": 10, + "norm_label": ".stopstickyhint()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopstickyhint" + }, + { + "label": ".startVpnService()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1108", + "community": 10, + "norm_label": ".startvpnservice()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startvpnservice" + }, + { + "label": ".buildDeviceState()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1118", + "community": 10, + "norm_label": ".builddevicestate()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate" + }, + { + "label": "Map", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1118", + "community": 10, + "norm_label": "map", + "id": "map" + }, + { + "label": "Any", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1118", + "community": 10, + "norm_label": "any", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_any" + }, + { + "label": ".isDeviceAdminEnabled()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1142", + "community": 10, + "norm_label": ".isdeviceadminenabled()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled" + }, + { + "label": ".isIgnoringBatteryOptimizations()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1154", + "community": 10, + "norm_label": ".isignoringbatteryoptimizations()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations" + }, + { + "label": ".activateSuccessResult()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1163", + "community": 10, + "norm_label": ".activatesuccessresult()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult" + }, + { + "label": ".sendLayerChange()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1169", + "community": 10, + "norm_label": ".sendlayerchange()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_sendlayerchange" + }, + { + "label": ".prefs()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1174", + "community": 10, + "norm_label": ".prefs()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" + }, + { + "label": ".saveEnabled()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1177", + "community": 10, + "norm_label": ".saveenabled()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled" + }, + { + "label": ".isEnabledFlag()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1181", + "community": 10, + "norm_label": ".isenabledflag()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag" + }, + { + "label": ".isTamperLockArmed()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1184", + "community": 10, + "norm_label": ".istamperlockarmed()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed" + }, + { + "label": ".disarmTamperLock()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1189", + "community": 10, + "norm_label": ".disarmtamperlock()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_disarmtamperlock" + }, + { + "label": ".currentHashCount()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1194", + "community": 10, + "norm_label": ".currenthashcount()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenthashcount" + }, + { + "label": ".isVpnEffectivelyOn()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1208", + "community": 10, + "norm_label": ".isvpneffectivelyon()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon" + }, + { + "label": ".isAccessibilityServiceEnabled()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1242", + "community": 10, + "norm_label": ".isaccessibilityserviceenabled()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled" + }, + { + "label": ".downloadBlocklist()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1292", + "community": 10, + "norm_label": ".downloadblocklist()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist" + }, + { + "label": ".writeBlocklistAtomic()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1332", + "community": 10, + "norm_label": ".writeblocklistatomic()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic" + }, + { + "label": "ByteArray", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1332", + "community": 10, + "norm_label": "bytearray", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_bytearray" + }, + { + "label": ".isoTimestamp()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1342", + "community": 10, + "norm_label": ".isotimestamp()", + "id": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isotimestamp" + }, + { + "label": "RebreakVpnBootReceiver.kt", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", + "source_location": "L1", + "community": 666, + "norm_label": "rebreakvpnbootreceiver.kt", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnbootreceiver_kt" + }, + { + "label": "RebreakVpnBootReceiver", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", + "source_location": "L14", + "community": 666, + "norm_label": "rebreakvpnbootreceiver", + "id": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver" + }, + { + "label": "BroadcastReceiver", + "file_type": "code", + "source_file": "", + "source_location": "", + "community": 666, + "norm_label": "broadcastreceiver", + "id": "broadcastreceiver" + }, + { + "label": ".onReceive()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", + "source_location": "L16", + "community": 666, + "norm_label": ".onreceive()", + "id": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver_onreceive" + }, + { + "label": "Context", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", + "source_location": "L16", + "community": 666, + "norm_label": "context", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnbootreceiver_kt_context" + }, + { + "label": "Intent", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", + "source_location": "L16", + "community": 666, + "norm_label": "intent", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnbootreceiver_kt_intent" + }, + { + "label": "RebreakVpnService.kt", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L1", + "community": 10, + "norm_label": "rebreakvpnservice.kt", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt" + }, + { + "label": "RebreakVpnService", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L39", + "community": 10, + "norm_label": "rebreakvpnservice", + "id": "vpn_rebreakvpnservice_rebreakvpnservice" + }, + { + "label": "VpnService", + "file_type": "code", + "source_file": "", + "source_location": "", + "community": 10, + "norm_label": "vpnservice", + "id": "vpnservice" + }, + { + "label": "ParcelFileDescriptor", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L41", + "community": 10, + "norm_label": "parcelfiledescriptor", + "id": "parcelfiledescriptor" + }, + { + "label": "Thread", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L42", + "community": 10, + "norm_label": "thread", + "id": "thread" + }, + { + "label": "HashList", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L45", + "community": 10, + "norm_label": "hashlist", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_hashlist" + }, + { + "label": ".onCreate()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L47", + "community": 10, + "norm_label": ".oncreate()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_oncreate" + }, + { + "label": ".onStartCommand()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L52", + "community": 10, + "norm_label": ".onstartcommand()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand" + }, + { + "label": "Intent", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L52", + "community": 10, + "norm_label": "intent", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_intent" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L52", + "community": 10, + "norm_label": "int", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_int" + }, + { + "label": ".promoteToForegroundOrStop()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L101", + "community": 10, + "norm_label": ".promotetoforegroundorstop()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_promotetoforegroundorstop" + }, + { + "label": "Boolean", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L101", + "community": 10, + "norm_label": "boolean", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_boolean" + }, + { + "label": ".startVpn()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L121", + "community": 10, + "norm_label": ".startvpn()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn" + }, + { + "label": ".stopVpn()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L158", + "community": 10, + "norm_label": ".stopvpn()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn" + }, + { + "label": ".runFilterLoop()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L168", + "community": 10, + "norm_label": ".runfilterloop()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop" + }, + { + "label": ".scheduleBlocklistSelfHeal()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L207", + "community": 10, + "norm_label": ".scheduleblocklistselfheal()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_scheduleblocklistselfheal" + }, + { + "label": ".onRevoke()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L236", + "community": 10, + "norm_label": ".onrevoke()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_onrevoke" + }, + { + "label": ".tryAutoRecoverAfterRevoke()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L258", + "community": 10, + "norm_label": ".tryautorecoverafterrevoke()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_tryautorecoverafterrevoke" + }, + { + "label": ".onDestroy()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L284", + "community": 10, + "norm_label": ".ondestroy()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_ondestroy" + }, + { + "label": ".clearEnabledFlag()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L297", + "community": 10, + "norm_label": ".clearenabledflag()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_clearenabledflag" + }, + { + "label": ".setEnabledFlag()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L310", + "community": 10, + "norm_label": ".setenabledflag()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_setenabledflag" + }, + { + "label": ".buildNotification()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L322", + "community": 10, + "norm_label": ".buildnotification()", + "id": "vpn_rebreakvpnservice_rebreakvpnservice_buildnotification" + }, + { + "label": "Notification", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L322", + "community": 93, + "norm_label": "notification", + "id": "notification" + }, + { + "label": "RebreakDeviceAdminReceiver.kt", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L1", + "community": 621, + "norm_label": "rebreakdeviceadminreceiver.kt", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt" + }, + { + "label": "RebreakDeviceAdminReceiver", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L20", + "community": 621, + "norm_label": "rebreakdeviceadminreceiver", + "id": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver" + }, + { + "label": "DeviceAdminReceiver", + "file_type": "code", + "source_file": "", + "source_location": "", + "community": 621, + "norm_label": "deviceadminreceiver", + "id": "deviceadminreceiver" + }, + { + "label": ".onEnabled()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L22", + "community": 621, + "norm_label": ".onenabled()", + "id": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_onenabled" + }, + { + "label": "Context", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L22", + "community": 621, + "norm_label": "context", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_context" + }, + { + "label": "Intent", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L22", + "community": 621, + "norm_label": "intent", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_intent" + }, + { + "label": ".onDisabled()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L26", + "community": 621, + "norm_label": ".ondisabled()", + "id": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_ondisabled" + }, { "label": "HashList.kt", "file_type": "code", @@ -81942,7 +109184,7 @@ "label": "ThreadPoolExecutor", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L28", + "source_location": "L29", "community": 10, "norm_label": "threadpoolexecutor", "id": "threadpoolexecutor" @@ -81951,7 +109193,7 @@ "label": ".process()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L40", + "source_location": "L41", "community": 10, "norm_label": ".process()", "id": "filter_dnsfilter_dnsfilter_process" @@ -81960,7 +109202,7 @@ "label": "ByteArray", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L40", + "source_location": "L41", "community": 10, "norm_label": "bytearray", "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_filter_dnsfilter_kt_bytearray" @@ -81969,7 +109211,7 @@ "label": "Int", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L40", + "source_location": "L41", "community": 10, "norm_label": "int", "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_filter_dnsfilter_kt_int" @@ -81978,7 +109220,7 @@ "label": "HashList", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L40", + "source_location": "L41", "community": 10, "norm_label": "hashlist", "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_filter_dnsfilter_kt_hashlist" @@ -81987,7 +109229,7 @@ "label": "FileOutputStream", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L40", + "source_location": "L41", "community": 10, "norm_label": "fileoutputstream", "id": "fileoutputstream" @@ -81996,7 +109238,7 @@ "label": "Any", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L40", + "source_location": "L41", "community": 10, "norm_label": "any", "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_filter_dnsfilter_kt_any" @@ -82005,7 +109247,7 @@ "label": ".parseQname()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L94", + "source_location": "L100", "community": 10, "norm_label": ".parseqname()", "id": "filter_dnsfilter_dnsfilter_parseqname" @@ -82014,7 +109256,7 @@ "label": "String", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L94", + "source_location": "L100", "community": 10, "norm_label": "string", "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_filter_dnsfilter_kt_string" @@ -82023,7 +109265,7 @@ "label": ".buildNxDomainResponse()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L110", + "source_location": "L116", "community": 10, "norm_label": ".buildnxdomainresponse()", "id": "filter_dnsfilter_dnsfilter_buildnxdomainresponse" @@ -82032,7 +109274,7 @@ "label": ".forwardAndWrite()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L139", + "source_location": "L145", "community": 10, "norm_label": ".forwardandwrite()", "id": "filter_dnsfilter_dnsfilter_forwardandwrite" @@ -82041,7 +109283,7 @@ "label": ".writeSynchronized()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L202", + "source_location": "L208", "community": 10, "norm_label": ".writesynchronized()", "id": "filter_dnsfilter_dnsfilter_writesynchronized" @@ -82050,7 +109292,7 @@ "label": ".recomputeIpChecksum()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/filter/DnsFilter.kt", - "source_location": "L212", + "source_location": "L218", "community": 10, "norm_label": ".recomputeipchecksum()", "id": "filter_dnsfilter_dnsfilter_recomputeipchecksum" @@ -82109,11 +109351,20 @@ "norm_label": "long", "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_filter_domainhasher_kt_long" }, + { + "label": "RebreakAccessibilityService.kt", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L1", + "community": 180, + "norm_label": "rebreakaccessibilityservice.kt", + "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_accessibility_rebreakaccessibilityservice_kt" + }, { "label": "RebreakAccessibilityService", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L38", + "source_location": "L39", "community": 180, "norm_label": "rebreakaccessibilityservice", "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice" @@ -82131,7 +109382,7 @@ "label": "Long", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L41", + "source_location": "L42", "community": 180, "norm_label": "long", "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_accessibility_rebreakaccessibilityservice_kt_long" @@ -82140,16 +109391,34 @@ "label": ".onServiceConnected()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L47", + "source_location": "L48", "community": 180, "norm_label": ".onserviceconnected()", "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_onserviceconnected" }, + { + "label": ".onDestroy()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L54", + "community": 180, + "norm_label": ".ondestroy()", + "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_ondestroy" + }, + { + "label": ".onAccessibilityEvent()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L59", + "community": 180, + "norm_label": ".onaccessibilityevent()", + "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_onaccessibilityevent" + }, { "label": "AccessibilityEvent", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L52", + "source_location": "L59", "community": 180, "norm_label": "accessibilityevent", "id": "accessibilityevent" @@ -82158,7 +109427,7 @@ "label": ".onInterrupt()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L72", + "source_location": "L87", "community": 180, "norm_label": ".oninterrupt()", "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_oninterrupt" @@ -82167,7 +109436,7 @@ "label": ".handleProtectedSettingsBlock()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L100", + "source_location": "L115", "community": 180, "norm_label": ".handleprotectedsettingsblock()", "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_handleprotectedsettingsblock" @@ -82176,7 +109445,7 @@ "label": "String", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L100", + "source_location": "L115", "community": 180, "norm_label": "string", "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_accessibility_rebreakaccessibilityservice_kt_string" @@ -82185,16 +109454,43 @@ "label": "Boolean", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L100", + "source_location": "L115", "community": 180, "norm_label": "boolean", "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_accessibility_rebreakaccessibilityservice_kt_boolean" }, + { + "label": ".shouldBlockVpnSurface()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L186", + "community": 180, + "norm_label": ".shouldblockvpnsurface()", + "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_shouldblockvpnsurface" + }, + { + "label": ".hasRebreakScopedDangerAction()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L204", + "community": 180, + "norm_label": ".hasrebreakscopeddangeraction()", + "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_hasrebreakscopeddangeraction" + }, + { + "label": ".isVpnSurface()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L266", + "community": 180, + "norm_label": ".isvpnsurface()", + "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_isvpnsurface" + }, { "label": ".doBlock()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L157", + "source_location": "L273", "community": 180, "norm_label": ".doblock()", "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_doblock" @@ -82203,7 +109499,7 @@ "label": ".collectWindowText()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L187", + "source_location": "L303", "community": 180, "norm_label": ".collectwindowtext()", "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_collectwindowtext" @@ -82212,7 +109508,7 @@ "label": ".collectAllText()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L197", + "source_location": "L313", "community": 180, "norm_label": ".collectalltext()", "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_collectalltext" @@ -82221,7 +109517,7 @@ "label": "AccessibilityNodeInfo", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L197", + "source_location": "L313", "community": 180, "norm_label": "accessibilitynodeinfo", "id": "accessibilitynodeinfo" @@ -82230,7 +109526,7 @@ "label": "MutableList", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L197", + "source_location": "L313", "community": 180, "norm_label": "mutablelist", "id": "mutablelist" @@ -82239,7 +109535,7 @@ "label": "Int", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L197", + "source_location": "L313", "community": 180, "norm_label": "int", "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_accessibility_rebreakaccessibilityservice_kt_int" @@ -82248,7 +109544,7 @@ "label": ".isProtectionEnabled()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L209", + "source_location": "L330", "community": 180, "norm_label": ".isprotectionenabled()", "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_isprotectionenabled" @@ -82257,11 +109553,191 @@ "label": ".isTamperLockArmed()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L224", + "source_location": "L345", "community": 180, "norm_label": ".istamperlockarmed()", "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_istamperlockarmed" }, + { + "label": "requestPowerDialog()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L363", + "community": 180, + "norm_label": "requestpowerdialog()", + "id": "accessibility_rebreakaccessibilityservice_requestpowerdialog" + }, + { + "label": "RebreakProtectionModule.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L1", + "community": 110, + "norm_label": "rebreakprotectionmodule.ts", + "id": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts" + }, + { + "label": "RebreakProtectionModule", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L18", + "community": 66, + "norm_label": "rebreakprotectionmodule", + "id": "src_rebreakprotectionmodule_rebreakprotectionmodule" + }, + { + "label": "RebreakProtection.types.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L1", + "community": 110, + "norm_label": "rebreakprotection.types.ts", + "id": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts" + }, + { + "label": "DeviceLayers", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L7", + "community": 110, + "norm_label": "devicelayers", + "id": "src_rebreakprotection_types_devicelayers" + }, + { + "label": "WebContentFilterResult", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L62", + "community": 110, + "norm_label": "webcontentfilterresult", + "id": "src_rebreakprotection_types_webcontentfilterresult" + }, + { + "label": "ActivateResult", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L69", + "community": 110, + "norm_label": "activateresult", + "id": "src_rebreakprotection_types_activateresult" + }, + { + "label": "DisableResult", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L84", + "community": 110, + "norm_label": "disableresult", + "id": "src_rebreakprotection_types_disableresult" + }, + { + "label": "ProtectionLayerKey", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L88", + "community": 110, + "norm_label": "protectionlayerkey", + "id": "src_rebreakprotection_types_protectionlayerkey" + }, + { + "label": "SyncBlocklistOpts", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L96", + "community": 110, + "norm_label": "syncblocklistopts", + "id": "src_rebreakprotection_types_syncblocklistopts" + }, + { + "label": "SyncBlocklistResult", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L101", + "community": 110, + "norm_label": "syncblocklistresult", + "id": "src_rebreakprotection_types_syncblocklistresult" + }, + { + "label": "SyncWebContentDomainsOpts", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L111", + "community": 110, + "norm_label": "syncwebcontentdomainsopts", + "id": "src_rebreakprotection_types_syncwebcontentdomainsopts" + }, + { + "label": "SyncWebContentDomainsResult", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L124", + "community": 110, + "norm_label": "syncwebcontentdomainsresult", + "id": "src_rebreakprotection_types_syncwebcontentdomainsresult" + }, + { + "label": "HealthProbeOutcome", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L131", + "community": 110, + "norm_label": "healthprobeoutcome", + "id": "src_rebreakprotection_types_healthprobeoutcome" + }, + { + "label": "HealthProbeOpts", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L133", + "community": 110, + "norm_label": "healthprobeopts", + "id": "src_rebreakprotection_types_healthprobeopts" + }, + { + "label": "HealthProbeResult", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L140", + "community": 110, + "norm_label": "healthproberesult", + "id": "src_rebreakprotection_types_healthproberesult" + }, + { + "label": "SystemSettingsTarget", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L147", + "community": 110, + "norm_label": "systemsettingstarget", + "id": "src_rebreakprotection_types_systemsettingstarget" + }, + { + "label": "RebreakProtectionEvents", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L162", + "community": 110, + "norm_label": "rebreakprotectionevents", + "id": "src_rebreakprotection_types_rebreakprotectionevents" + }, + { + "label": "RebreakProtectionModule.web.ts", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L1", + "community": 110, + "norm_label": "rebreakprotectionmodule.web.ts", + "id": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_web_ts" + }, + { + "label": "RebreakProtectionModuleWeb", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L16", + "community": 66, + "norm_label": "rebreakprotectionmoduleweb", + "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb" + }, { "label": ".activate()", "file_type": "code", @@ -82307,6 +109783,24 @@ "norm_label": ".clearwebcontentfilter()", "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_clearwebcontentfilter" }, + { + "label": ".syncWebContentDomains()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L38", + "community": 66, + "norm_label": ".syncwebcontentdomains()", + "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_syncwebcontentdomains" + }, + { + "label": ".syncBlocklist()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L42", + "community": 66, + "norm_label": ".syncblocklist()", + "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_syncblocklist" + }, { "label": ".runHealthProbe()", "file_type": "code", @@ -82344,19 +109838,64 @@ "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_openaccessibilitysettings" }, { - "label": ".dismissAccessibilityHint()", + "label": ".hasUsageAccess()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", "source_location": "L66", "community": 66, + "norm_label": ".hasusageaccess()", + "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_hasusageaccess" + }, + { + "label": ".openUsageAccessSettings()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L69", + "community": 66, + "norm_label": ".openusageaccesssettings()", + "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_openusageaccesssettings" + }, + { + "label": ".hasOverlayPermission()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L72", + "community": 66, + "norm_label": ".hasoverlaypermission()", + "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_hasoverlaypermission" + }, + { + "label": ".openOverlayPermissionSettings()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L75", + "community": 66, + "norm_label": ".openoverlaypermissionsettings()", + "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_openoverlaypermissionsettings" + }, + { + "label": ".dismissAccessibilityHint()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L78", + "community": 66, "norm_label": ".dismissaccessibilityhint()", "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_dismissaccessibilityhint" }, + { + "label": ".openPowerDialog()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L81", + "community": 66, + "norm_label": ".openpowerdialog()", + "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_openpowerdialog" + }, { "label": ".armTamperLock()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L69", + "source_location": "L84", "community": 10, "norm_label": ".armtamperlock()", "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_armtamperlock" @@ -82365,7 +109904,7 @@ "label": ".disarmTamperLock()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L72", + "source_location": "L87", "community": 66, "norm_label": ".disarmtamperlock()", "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_disarmtamperlock" @@ -82374,7 +109913,7 @@ "label": ".getProtectionStatus()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L75", + "source_location": "L90", "community": 66, "norm_label": ".getprotectionstatus()", "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_getprotectionstatus" @@ -82383,7 +109922,7 @@ "label": ".reconcileVpn()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L83", + "source_location": "L98", "community": 66, "norm_label": ".reconcilevpn()", "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_reconcilevpn" @@ -82392,16 +109931,43 @@ "label": ".reconcileUrlFilter()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L86", + "source_location": "L101", "community": 66, "norm_label": ".reconcileurlfilter()", "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_reconcileurlfilter" }, + { + "label": ".requestDeviceAdmin()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L104", + "community": 66, + "norm_label": ".requestdeviceadmin()", + "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_requestdeviceadmin" + }, + { + "label": ".isDeviceAdminActive()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L107", + "community": 66, + "norm_label": ".isdeviceadminactive()", + "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_isdeviceadminactive" + }, + { + "label": ".removeDeviceAdmin()", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L110", + "community": 66, + "norm_label": ".removedeviceadmin()", + "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_removedeviceadmin" + }, { "label": ".probeContentFilter()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L90", + "source_location": "L114", "community": 66, "norm_label": ".probecontentfilter()", "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_probecontentfilter" @@ -82410,7 +109976,7 @@ "label": ".isNeFilterActive()", "file_type": "code", "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L94", + "source_location": "L118", "community": 66, "norm_label": ".isnefilteractive()", "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_isnefilteractive" @@ -82519,7 +110085,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L1", - "community": 54, + "community": 263, "norm_label": "bloomfilter.swift", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift" }, @@ -82528,7 +110094,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L10", - "community": 54, + "community": 263, "norm_label": "bloomfiltererror", "id": "swiftbloomfilter_bloomfilter_bloomfiltererror" }, @@ -82537,7 +110103,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L11", - "community": 54, + "community": 263, "norm_label": "invalidparameters", "id": "swiftbloomfilter_bloomfilter_bloomfiltererror_invalidparameters" }, @@ -82546,16 +110112,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L12", - "community": 54, + "community": 263, "norm_label": "encodingissue", "id": "swiftbloomfilter_bloomfilter_bloomfiltererror_encodingissue" }, + { + "label": "BloomFilter", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L15", + "community": 263, + "norm_label": "bloomfilter", + "id": "swiftbloomfilter_bloomfilter_bloomfilter" + }, { "label": "Int", "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L17", - "community": 54, + "community": 263, "norm_label": "int", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift_int" }, @@ -82564,7 +110139,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L18", - "community": 54, + "community": 263, "norm_label": "double", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift_double" }, @@ -82573,16 +110148,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L19", - "community": 54, + "community": 263, "norm_label": "uint32", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift_uint32" }, + { + "label": "Data", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L23", + "community": 263, + "norm_label": "data", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift_data" + }, { "label": ".init()", "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L28", - "community": 54, + "community": 263, "norm_label": ".init()", "id": "swiftbloomfilter_bloomfilter_bloomfilter_init" }, @@ -82591,7 +110175,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L28", - "community": 123, + "community": 263, "norm_label": "string", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift_string" }, @@ -82600,7 +110184,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L58", - "community": 54, + "community": 263, "norm_label": ".calculatebitcount()", "id": "swiftbloomfilter_bloomfilter_bloomfilter_calculatebitcount" }, @@ -82609,7 +110193,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L63", - "community": 54, + "community": 263, "norm_label": ".calculatehashcount()", "id": "swiftbloomfilter_bloomfilter_bloomfilter_calculatehashcount" }, @@ -82618,7 +110202,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L69", - "community": 54, + "community": 263, "norm_label": ".calculatebytecount()", "id": "swiftbloomfilter_bloomfilter_bloomfilter_calculatebytecount" }, @@ -82627,7 +110211,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L73", - "community": 54, + "community": 263, "norm_label": ".insert()", "id": "swiftbloomfilter_bloomfilter_bloomfilter_insert" }, @@ -82708,7 +110292,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L107", - "community": 54, + "community": 263, "norm_label": "data", "id": "swiftbloomfilter_bloomfilter_data" }, @@ -82717,7 +110301,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L109", - "community": 54, + "community": 263, "norm_label": ".setbit()", "id": "swiftbloomfilter_bloomfilter_data_setbit" }, @@ -82726,7 +110310,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L109", - "community": 54, + "community": 263, "norm_label": "bool", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift_bool" }, @@ -82735,7 +110319,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", "source_location": "L124", - "community": 54, + "community": 263, "norm_label": ".bit()", "id": "swiftbloomfilter_bloomfilter_data_bit" }, @@ -82802,6 +110386,15 @@ "norm_label": ".murmurhash3()", "id": "swiftbloomfilter_murmur3hash_data_murmurhash3" }, + { + "label": "UInt32", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/Murmur3Hash.swift", + "source_location": "L16", + "community": 260, + "norm_label": "uint32", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_murmur3hash_swift_uint32" + }, { "label": ".block()", "file_type": "code", @@ -82874,6 +110467,15 @@ "norm_label": "murmurhashtests", "id": "swiftbloomfiltertests_murmurhashtests_murmurhashtests" }, + { + "label": ".murmurHash100()", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/MurmurHashTests.swift", + "source_location": "L15", + "community": 260, + "norm_label": ".murmurhash100()", + "id": "swiftbloomfiltertests_murmurhashtests_murmurhashtests_murmurhash100" + }, { "label": "String", "file_type": "code", @@ -82892,6 +110494,15 @@ "norm_label": "uint32", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfiltertests_murmurhashtests_swift_uint32" }, + { + "label": "SwiftBloomFilterTests.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/SwiftBloomFilterTests.swift", + "source_location": "L1", + "community": 123, + "norm_label": "swiftbloomfiltertests.swift", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfiltertests_swiftbloomfiltertests_swift" + }, { "label": "SwiftBloomFilterTests", "file_type": "code", @@ -82910,6 +110521,15 @@ "norm_label": "bloomfilterinternalstests", "id": "swiftbloomfiltertests_swiftbloomfiltertests_bloomfilterinternalstests" }, + { + "label": ".bitCount100()", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/SwiftBloomFilterTests.swift", + "source_location": "L16", + "community": 123, + "norm_label": ".bitcount100()", + "id": "swiftbloomfiltertests_swiftbloomfiltertests_bloomfilterinternalstests_bitcount100" + }, { "label": ".hashCount100()", "file_type": "code", @@ -82919,6 +110539,15 @@ "norm_label": ".hashcount100()", "id": "swiftbloomfiltertests_swiftbloomfiltertests_bloomfilterinternalstests_hashcount100" }, + { + "label": ".byteCount100()", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/SwiftBloomFilterTests.swift", + "source_location": "L30", + "community": 123, + "norm_label": ".bytecount100()", + "id": "swiftbloomfiltertests_swiftbloomfiltertests_bloomfilterinternalstests_bytecount100" + }, { "label": ".filter100()", "file_type": "code", @@ -82964,6 +110593,15 @@ "norm_label": ".testsetrandombitcombinations()", "id": "swiftbloomfiltertests_swiftbloomfiltertests_bittests_testsetrandombitcombinations" }, + { + "label": "FNVHashTests.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/FNVHashTests.swift", + "source_location": "L1", + "community": 665, + "norm_label": "fnvhashtests.swift", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfiltertests_fnvhashtests_swift" + }, { "label": "FNVHashTests", "file_type": "code", @@ -83063,6 +110701,24 @@ "norm_label": "data", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_pir_database_pb_swift_data" }, + { + "label": ".init()", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L59", + "community": 418, + "norm_label": ".init()", + "id": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow_init" + }, + { + "label": "Apple_SwiftHomomorphicEncryption_Pir_V1_KeywordDatabase", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L63", + "community": 418, + "norm_label": "apple_swifthomomorphicencryption_pir_v1_keyworddatabase", + "id": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase" + }, { "label": ".init()", "file_type": "code", @@ -83081,6 +110737,15 @@ "norm_label": "string", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_pir_database_pb_swift_string" }, + { + "label": ".decodeMessage()", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L84", + "community": 418, + "norm_label": ".decodemessage()", + "id": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow_decodemessage" + }, { "label": "D", "file_type": "code", @@ -83090,6 +110755,15 @@ "norm_label": "d", "id": "d" }, + { + "label": ".traverse()", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L97", + "community": 418, + "norm_label": ".traverse()", + "id": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow_traverse" + }, { "label": "V", "file_type": "code", @@ -83126,6 +110800,19 @@ "norm_label": ".traverse()", "id": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase_traverse" }, + { + "label": "swift_protobuf.sh", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/swift_protobuf.sh", + "source_location": "L1", + "metadata": { + "language": "bash", + "kind": "file" + }, + "community": 418, + "norm_label": "swift_protobuf.sh", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_swift_protobuf_sh" + }, { "label": "swift_protobuf.sh script", "file_type": "code", @@ -83139,12 +110826,21 @@ "norm_label": "swift_protobuf.sh script", "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_swift_protobuf_sh__entry" }, + { + "label": "BloomFilterTool.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L1", + "community": 396, + "norm_label": "bloomfiltertool.swift", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_bloomfiltertool_swift" + }, { "label": "BloomFilterToolDefaults", "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L14", - "community": 54, + "community": 396, "norm_label": "bloomfiltertooldefaults", "id": "bloomfiltertool_bloomfiltertool_bloomfiltertooldefaults" }, @@ -83153,16 +110849,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L15", - "community": 54, + "community": 396, "norm_label": "double", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_bloomfiltertool_swift_double" }, + { + "label": "BloomFilterTool", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L20", + "community": 396, + "norm_label": "bloomfiltertool", + "id": "bloomfiltertool_bloomfiltertool_bloomfiltertool" + }, { "label": "AsyncParsableCommand", "file_type": "code", "source_file": "", "source_location": "", - "community": 54, + "community": 396, "norm_label": "asyncparsablecommand", "id": "asyncparsablecommand" }, @@ -83171,7 +110876,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L34", - "community": 883, + "community": 396, "norm_label": "url", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_bloomfiltertool_swift_url" }, @@ -83180,7 +110885,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L53", - "community": 883, + "community": 396, "norm_label": ".run()", "id": "bloomfiltertool_bloomfiltertool_bloomfiltertool_run" }, @@ -83189,7 +110894,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L101", - "community": 883, + "community": 396, "norm_label": ".readto()", "id": "bloomfiltertool_bloomfiltertool_bloomfiltertool_readto" }, @@ -83198,7 +110903,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L101", - "community": 883, + "community": 396, "norm_label": "string", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_bloomfiltertool_swift_string" }, @@ -83216,7 +110921,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L135", - "community": 883, + "community": 396, "norm_label": ".createbloomfilterfile()", "id": "bloomfiltertool_bloomfiltertool_bloomfiltertool_createbloomfilterfile" }, @@ -83225,7 +110930,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L156", - "community": 883, + "community": 396, "norm_label": ".createpirdatafile()", "id": "bloomfiltertool_bloomfiltertool_bloomfiltertool_createpirdatafile" }, @@ -83234,7 +110939,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L169", - "community": 883, + "community": 396, "norm_label": "runtimeerror", "id": "bloomfiltertool_bloomfiltertool_runtimeerror" }, @@ -83243,16 +110948,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L172", - "community": 883, + "community": 396, "norm_label": ".init()", "id": "bloomfiltertool_bloomfiltertool_runtimeerror_init" }, + { + "label": "URLFilterControlProvider.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", + "source_location": "L1", + "community": 876, + "norm_label": "urlfiltercontrolprovider.swift", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilterextension_urlfiltercontrolprovider_swift" + }, { "label": "ProviderFilterError", "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L12", - "community": 870, + "community": 876, "norm_label": "providerfiltererror", "id": "simpleurlfilterextension_urlfiltercontrolprovider_providerfiltererror" }, @@ -83261,7 +110975,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L13", - "community": 870, + "community": 876, "norm_label": "loaderror", "id": "simpleurlfilterextension_urlfiltercontrolprovider_providerfiltererror_loaderror" }, @@ -83270,7 +110984,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L16", - "community": 870, + "community": 876, "norm_label": "urlfiltercontrolprovider", "id": "simpleurlfilterextension_urlfiltercontrolprovider_urlfiltercontrolprovider" }, @@ -83279,7 +110993,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L20", - "community": 870, + "community": 876, "norm_label": "bloomfilter", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilterextension_urlfiltercontrolprovider_swift_bloomfilter" }, @@ -83288,7 +111002,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L24", - "community": 870, + "community": 876, "norm_label": ".init()", "id": "simpleurlfilterextension_urlfiltercontrolprovider_urlfiltercontrolprovider_init" }, @@ -83297,7 +111011,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L27", - "community": 870, + "community": 876, "norm_label": ".loadbloomfilter()", "id": "simpleurlfilterextension_urlfiltercontrolprovider_urlfiltercontrolprovider_loadbloomfilter" }, @@ -83306,7 +111020,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L37", - "community": 870, + "community": 876, "norm_label": ".filtertag()", "id": "simpleurlfilterextension_urlfiltercontrolprovider_urlfiltercontrolprovider_filtertag" }, @@ -83315,7 +111029,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L37", - "community": 870, + "community": 876, "norm_label": "string", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilterextension_urlfiltercontrolprovider_swift_string" }, @@ -83324,7 +111038,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L47", - "community": 870, + "community": 876, "norm_label": ".start()", "id": "simpleurlfilterextension_urlfiltercontrolprovider_urlfiltercontrolprovider_start" }, @@ -83333,16 +111047,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L51", - "community": 870, + "community": 876, "norm_label": ".stop()", "id": "simpleurlfilterextension_urlfiltercontrolprovider_urlfiltercontrolprovider_stop" }, + { + "label": "NEProviderStopReason", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", + "source_location": "L51", + "community": 876, + "norm_label": "neproviderstopreason", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilterextension_urlfiltercontrolprovider_swift_neproviderstopreason" + }, { "label": ".fetchPrefilter()", "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L60", - "community": 870, + "community": 876, "norm_label": ".fetchprefilter()", "id": "simpleurlfilterextension_urlfiltercontrolprovider_urlfiltercontrolprovider_fetchprefilter" }, @@ -83351,7 +111074,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L60", - "community": 870, + "community": 876, "norm_label": "neurlfilterprefilter", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilterextension_urlfiltercontrolprovider_swift_neurlfilterprefilter" }, @@ -83360,10 +111083,19 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", "source_location": "L111", - "community": 870, + "community": 876, "norm_label": "neproviderstopreason", "id": "simpleurlfilterextension_urlfiltercontrolprovider_neproviderstopreason" }, + { + "label": "SimpleURLFilterApp.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/SimpleURLFilterApp.swift", + "source_location": "L1", + "community": 443, + "norm_label": "simpleurlfilterapp.swift", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_simpleurlfilterapp_swift" + }, { "label": "SimpleURLFilterApp", "file_type": "code", @@ -83382,6 +111114,15 @@ "norm_label": "app", "id": "app" }, + { + "label": "ConfigurationModel", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/SimpleURLFilterApp.swift", + "source_location": "L14", + "community": 443, + "norm_label": "configurationmodel", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_simpleurlfilterapp_swift_configurationmodel" + }, { "label": "ContentViewModel", "file_type": "code", @@ -83585,7 +111326,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/View Models/ContentViewModel.swift", "source_location": "L158", - "community": 131, + "community": 278, "norm_label": "string", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_view_models_contentviewmodel_swift_string" }, @@ -83783,7 +111524,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Utils/ErrorDetails.swift", "source_location": "L1", - "community": 421, + "community": 454, "norm_label": "errordetails.swift", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_utils_errordetails_swift" }, @@ -83792,7 +111533,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Utils/ErrorDetails.swift", "source_location": "L10", - "community": 421, + "community": 454, "norm_label": "errordetails", "id": "utils_errordetails_errordetails" }, @@ -83801,7 +111542,7 @@ "file_type": "code", "source_file": "", "source_location": "", - "community": 421, + "community": 454, "norm_label": "identifiable", "id": "identifiable" }, @@ -83810,7 +111551,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Utils/ErrorDetails.swift", "source_location": "L11", - "community": 421, + "community": 454, "norm_label": "string", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_utils_errordetails_swift_string" }, @@ -83850,6 +111591,15 @@ "norm_label": "version", "id": "preview_assets_xcassets_contents_info_version" }, + { + "label": "ConfigurationModel.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/ConfigurationModel.swift", + "source_location": "L1", + "community": 290, + "norm_label": "configurationmodel.swift", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_model_configurationmodel_swift" + }, { "label": "ConfigurationModel", "file_type": "code", @@ -84030,6 +111780,15 @@ "norm_label": "badconfiguration", "id": "model_configurationmodel_configurationerror_badconfiguration" }, + { + "label": "ActivityState.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/ActivityState.swift", + "source_location": "L1", + "community": 131, + "norm_label": "activitystate.swift", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_model_activitystate_swift" + }, { "label": "ActivityState", "file_type": "code", @@ -84066,6 +111825,15 @@ "norm_label": "configurationloadend", "id": "model_activitystate_activitystate_configurationloadend" }, + { + "label": "configurationLoadEmpty", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/ActivityState.swift", + "source_location": "L12", + "community": 131, + "norm_label": "configurationloadempty", + "id": "model_activitystate_activitystate_configurationloadempty" + }, { "label": "configurationLoadFailed", "file_type": "code", @@ -84111,6 +111879,15 @@ "norm_label": "configurationremovestart", "id": "model_activitystate_activitystate_configurationremovestart" }, + { + "label": "configurationRemoveEnd", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/ActivityState.swift", + "source_location": "L14", + "community": 131, + "norm_label": "configurationremoveend", + "id": "model_activitystate_activitystate_configurationremoveend" + }, { "label": "configurationRemoveFailed", "file_type": "code", @@ -84242,7 +112019,7 @@ "file_type": "code", "source_file": "", "source_location": "", - "community": 285, + "community": 109, "norm_label": "equatable", "id": "equatable" }, @@ -84359,10 +112136,19 @@ "file_type": "code", "source_file": "", "source_location": "", - "community": 414, + "community": 391, "norm_label": "customdebugstringconvertible", "id": "customdebugstringconvertible" }, + { + "label": "Configuration.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/Configuration.swift", + "source_location": "L1", + "community": 391, + "norm_label": "configuration.swift", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_model_configuration_swift" + }, { "label": "Configuration", "file_type": "code", @@ -84435,6 +112221,15 @@ "norm_label": "hasher", "id": "hasher" }, + { + "label": "ConfigurationView.swift", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L1", + "community": 74, + "norm_label": "configurationview.swift", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_configurationview_swift" + }, { "label": "ConfigurationView", "file_type": "code", @@ -84444,6 +112239,15 @@ "norm_label": "configurationview", "id": "views_configurationview_configurationview" }, + { + "label": "View", + "file_type": "code", + "source_file": "", + "source_location": "", + "community": 50, + "norm_label": "view", + "id": "view" + }, { "label": "Configuration", "file_type": "code", @@ -84458,7 +112262,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L23", - "community": 74, + "community": 999, "norm_label": "string", "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_configurationview_swift_string" }, @@ -84476,7 +112280,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L29", - "community": 74, + "community": 454, "norm_label": "prefilterfetchinterval", "id": "prefilterfetchinterval" }, @@ -84494,7 +112298,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L36", - "community": 74, + "community": 999, "norm_label": "field", "id": "field" }, @@ -84521,16 +112325,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L206", - "community": 74, + "community": 999, "norm_label": ".validationerrorview()", "id": "views_configurationview_configurationview_validationerrorview" }, + { + "label": "Field", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L235", + "community": 999, + "norm_label": "field", + "id": "views_configurationview_field" + }, { "label": "CaseIterable", "file_type": "code", "source_file": "", "source_location": "", - "community": 74, + "community": 999, "norm_label": "caseiterable", "id": "caseiterable" }, @@ -84539,7 +112352,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L236", - "community": 74, + "community": 999, "norm_label": "pirserverurl", "id": "views_configurationview_field_pirserverurl" }, @@ -84548,7 +112361,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L237", - "community": 74, + "community": 999, "norm_label": "pirprivacypassissuerurl", "id": "views_configurationview_field_pirprivacypassissuerurl" }, @@ -84557,7 +112370,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L238", - "community": 74, + "community": 999, "norm_label": "pirauthenticationtoken", "id": "views_configurationview_field_pirauthenticationtoken" }, @@ -84584,16 +112397,25 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L244", - "community": 74, + "community": 999, "norm_label": ".message()", "id": "views_configurationview_validationerror_message" }, + { + "label": "PrefilterFetchInterval", + "file_type": "code", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L256", + "community": 454, + "norm_label": "prefilterfetchinterval", + "id": "views_configurationview_prefilterfetchinterval" + }, { "label": "TimeInterval", "file_type": "code", "source_file": "", "source_location": "", - "community": 74, + "community": 454, "norm_label": "timeinterval", "id": "timeinterval" }, @@ -84602,16 +112424,16 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L257", - "community": 74, + "community": 454, "norm_label": "self", - "id": "self" + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_configurationview_swift_self" }, { "label": "minimum", "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L259", - "community": 74, + "community": 454, "norm_label": "minimum", "id": "views_configurationview_prefilterfetchinterval_minimum" }, @@ -84620,7 +112442,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L260", - "community": 74, + "community": 454, "norm_label": "onehour", "id": "views_configurationview_prefilterfetchinterval_onehour" }, @@ -84629,7 +112451,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L261", - "community": 74, + "community": 454, "norm_label": "threehours", "id": "views_configurationview_prefilterfetchinterval_threehours" }, @@ -84638,7 +112460,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L262", - "community": 74, + "community": 454, "norm_label": "sixhours", "id": "views_configurationview_prefilterfetchinterval_sixhours" }, @@ -84647,7 +112469,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L263", - "community": 74, + "community": 454, "norm_label": "twelvehours", "id": "views_configurationview_prefilterfetchinterval_twelvehours" }, @@ -84656,7 +112478,7 @@ "file_type": "code", "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L264", - "community": 74, + "community": 454, "norm_label": "twentyfourhours", "id": "views_configurationview_prefilterfetchinterval_twentyfourhours" }, @@ -84768,6 +112590,6018 @@ "norm_label": ".actionview()", "id": "views_contentview_contentview_actionview" }, + { + "label": "package.json", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L1", + "community": 417, + "norm_label": "package.json", + "id": "apps_rebreak_magic_win_package_json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L2", + "community": 417, + "norm_label": "name", + "id": "rebreak_magic_win_package_name" + }, + { + "label": "private", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L3", + "community": 417, + "norm_label": "private", + "id": "rebreak_magic_win_package_private" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L4", + "community": 417, + "norm_label": "version", + "id": "rebreak_magic_win_package_version" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L5", + "community": 417, + "norm_label": "type", + "id": "rebreak_magic_win_package_type" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L6", + "community": 417, + "norm_label": "scripts", + "id": "rebreak_magic_win_package_scripts" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L7", + "community": 417, + "norm_label": "dev", + "id": "rebreak_magic_win_package_scripts_dev" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L8", + "community": 417, + "norm_label": "build", + "id": "rebreak_magic_win_package_scripts_build" + }, + { + "label": "preview", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L9", + "community": 417, + "norm_label": "preview", + "id": "rebreak_magic_win_package_scripts_preview" + }, + { + "label": "tauri", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L10", + "community": 417, + "norm_label": "tauri", + "id": "rebreak_magic_win_package_scripts_tauri" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L12", + "community": 417, + "norm_label": "dependencies", + "id": "rebreak_magic_win_package_dependencies" + }, + { + "label": "@fontsource/nunito", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L13", + "community": 417, + "norm_label": "@fontsource/nunito", + "id": "rebreak_magic_win_package_dependencies_fontsource_nunito" + }, + { + "label": "@tauri-apps/api", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L14", + "community": 417, + "norm_label": "@tauri-apps/api", + "id": "rebreak_magic_win_package_dependencies_tauri_apps_api" + }, + { + "label": "react", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L15", + "community": 417, + "norm_label": "react", + "id": "rebreak_magic_win_package_dependencies_react" + }, + { + "label": "react-dom", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L16", + "community": 417, + "norm_label": "react-dom", + "id": "rebreak_magic_win_package_dependencies_react_dom" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L18", + "community": 451, + "norm_label": "devdependencies", + "id": "rebreak_magic_win_package_devdependencies" + }, + { + "label": "@tauri-apps/cli", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L19", + "community": 451, + "norm_label": "@tauri-apps/cli", + "id": "rebreak_magic_win_package_devdependencies_tauri_apps_cli" + }, + { + "label": "@types/react", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L20", + "community": 451, + "norm_label": "@types/react", + "id": "rebreak_magic_win_package_devdependencies_types_react" + }, + { + "label": "@types/react-dom", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L21", + "community": 451, + "norm_label": "@types/react-dom", + "id": "rebreak_magic_win_package_devdependencies_types_react_dom" + }, + { + "label": "@vitejs/plugin-react", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L22", + "community": 451, + "norm_label": "@vitejs/plugin-react", + "id": "rebreak_magic_win_package_devdependencies_vitejs_plugin_react" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L23", + "community": 451, + "norm_label": "typescript", + "id": "rebreak_magic_win_package_devdependencies_typescript" + }, + { + "label": "vite", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L24", + "community": 451, + "norm_label": "vite", + "id": "rebreak_magic_win_package_devdependencies_vite" + }, + { + "label": "tsconfig.json", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L1", + "community": 272, + "norm_label": "tsconfig.json", + "id": "apps_rebreak_magic_win_tsconfig_json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L2", + "community": 272, + "norm_label": "compileroptions", + "id": "rebreak_magic_win_tsconfig_compileroptions" + }, + { + "label": "target", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L3", + "community": 272, + "norm_label": "target", + "id": "rebreak_magic_win_tsconfig_compileroptions_target" + }, + { + "label": "useDefineForClassFields", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L4", + "community": 272, + "norm_label": "usedefineforclassfields", + "id": "rebreak_magic_win_tsconfig_compileroptions_usedefineforclassfields" + }, + { + "label": "lib", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L5", + "community": 272, + "norm_label": "lib", + "id": "rebreak_magic_win_tsconfig_compileroptions_lib" + }, + { + "label": "module", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L6", + "community": 272, + "norm_label": "module", + "id": "rebreak_magic_win_tsconfig_compileroptions_module" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L7", + "community": 272, + "norm_label": "skiplibcheck", + "id": "rebreak_magic_win_tsconfig_compileroptions_skiplibcheck" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L8", + "community": 272, + "norm_label": "moduleresolution", + "id": "rebreak_magic_win_tsconfig_compileroptions_moduleresolution" + }, + { + "label": "allowImportingTsExtensions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L9", + "community": 272, + "norm_label": "allowimportingtsextensions", + "id": "rebreak_magic_win_tsconfig_compileroptions_allowimportingtsextensions" + }, + { + "label": "resolveJsonModule", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L10", + "community": 272, + "norm_label": "resolvejsonmodule", + "id": "rebreak_magic_win_tsconfig_compileroptions_resolvejsonmodule" + }, + { + "label": "isolatedModules", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L11", + "community": 272, + "norm_label": "isolatedmodules", + "id": "rebreak_magic_win_tsconfig_compileroptions_isolatedmodules" + }, + { + "label": "noEmit", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L12", + "community": 272, + "norm_label": "noemit", + "id": "rebreak_magic_win_tsconfig_compileroptions_noemit" + }, + { + "label": "jsx", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L13", + "community": 272, + "norm_label": "jsx", + "id": "rebreak_magic_win_tsconfig_compileroptions_jsx" + }, + { + "label": "strict", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L14", + "community": 272, + "norm_label": "strict", + "id": "rebreak_magic_win_tsconfig_compileroptions_strict" + }, + { + "label": "noUnusedLocals", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L15", + "community": 272, + "norm_label": "nounusedlocals", + "id": "rebreak_magic_win_tsconfig_compileroptions_nounusedlocals" + }, + { + "label": "noUnusedParameters", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L16", + "community": 272, + "norm_label": "nounusedparameters", + "id": "rebreak_magic_win_tsconfig_compileroptions_nounusedparameters" + }, + { + "label": "noFallthroughCasesInSwitch", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L17", + "community": 272, + "norm_label": "nofallthroughcasesinswitch", + "id": "rebreak_magic_win_tsconfig_compileroptions_nofallthroughcasesinswitch" + }, + { + "label": "include", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L19", + "community": 272, + "norm_label": "include", + "id": "rebreak_magic_win_tsconfig_include" + }, + { + "label": "build-windows.ps1", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/build-windows.ps1", + "source_location": "L1", + "community": 856, + "norm_label": "build-windows.ps1", + "id": "apps_rebreak_magic_win_build_windows_ps1" + }, + { + "label": "vite.config.ts", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/vite.config.ts", + "source_location": "L1", + "community": 857, + "norm_label": "vite.config.ts", + "id": "apps_rebreak_magic_win_vite_config_ts" + }, + { + "label": "tauri.conf.json", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L1", + "community": 279, + "norm_label": "tauri.conf.json", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L2", + "community": 279, + "norm_label": "$schema", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_schema" + }, + { + "label": "productName", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L3", + "community": 279, + "norm_label": "productname", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_productname" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L4", + "community": 279, + "norm_label": "version", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_version" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L5", + "community": 279, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_identifier" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L6", + "community": 1047, + "norm_label": "build", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build" + }, + { + "label": "beforeDevCommand", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L7", + "community": 1047, + "norm_label": "beforedevcommand", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build_beforedevcommand" + }, + { + "label": "devUrl", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L8", + "community": 1047, + "norm_label": "devurl", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build_devurl" + }, + { + "label": "beforeBuildCommand", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L9", + "community": 1047, + "norm_label": "beforebuildcommand", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build_beforebuildcommand" + }, + { + "label": "frontendDist", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L10", + "community": 1047, + "norm_label": "frontenddist", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build_frontenddist" + }, + { + "label": "app", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L12", + "community": 1119, + "norm_label": "app", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_app" + }, + { + "label": "windows", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L13", + "community": 1119, + "norm_label": "windows", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_app_windows" + }, + { + "label": "security", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L24", + "community": 1119, + "norm_label": "security", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_app_security" + }, + { + "label": "csp", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L25", + "community": 1119, + "norm_label": "csp", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_security_csp" + }, + { + "label": "bundle", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L28", + "community": 982, + "norm_label": "bundle", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle" + }, + { + "label": "active", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L29", + "community": 982, + "norm_label": "active", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle_active" + }, + { + "label": "targets", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L30", + "community": 982, + "norm_label": "targets", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle_targets" + }, + { + "label": "icon", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L31", + "community": 982, + "norm_label": "icon", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle_icon" + }, + { + "label": "externalBin", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L38", + "community": 982, + "norm_label": "externalbin", + "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle_externalbin" + }, + { + "label": "windows", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L39", + "community": 982, + "norm_label": "windows", + "id": "src_tauri_tauri_conf_bundle_windows" + }, + { + "label": "nsis", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L40", + "community": 982, + "norm_label": "nsis", + "id": "src_tauri_tauri_conf_windows_nsis" + }, + { + "label": "installMode", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L41", + "community": 982, + "norm_label": "installmode", + "id": "src_tauri_tauri_conf_nsis_installmode" + }, + { + "label": "languages", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L42", + "community": 982, + "norm_label": "languages", + "id": "src_tauri_tauri_conf_nsis_languages" + }, + { + "label": "build.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/build.rs", + "source_location": "L1", + "community": 760, + "norm_label": "build.rs", + "id": "apps_rebreak_magic_win_src_tauri_build_rs" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/build.rs", + "source_location": "L1", + "community": 760, + "norm_label": "main()", + "id": "apps_rebreak_magic_win_src_tauri_build_rs_src_tauri_build_main" + }, + { + "label": "default.json", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L1", + "community": 624, + "norm_label": "default.json", + "id": "apps_rebreak_magic_win_src_tauri_capabilities_default_json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L2", + "community": 624, + "norm_label": "$schema", + "id": "apps_rebreak_magic_win_src_tauri_capabilities_default_json_capabilities_default_schema" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L3", + "community": 624, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_capabilities_default_json_capabilities_default_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L4", + "community": 624, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_capabilities_default_json_capabilities_default_description" + }, + { + "label": "windows", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L5", + "community": 624, + "norm_label": "windows", + "id": "apps_rebreak_magic_win_src_tauri_capabilities_default_json_capabilities_default_windows" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L6", + "community": 624, + "norm_label": "permissions", + "id": "apps_rebreak_magic_win_src_tauri_capabilities_default_json_capabilities_default_permissions" + }, + { + "label": "capabilities.json", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 620, + "norm_label": "capabilities.json", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 620, + "norm_label": "default", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 620, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 620, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_description" + }, + { + "label": "local", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 620, + "norm_label": "local", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_local" + }, + { + "label": "windows", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 620, + "norm_label": "windows", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_windows" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 620, + "norm_label": "permissions", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_permissions" + }, + { + "label": "acl-manifests.json", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 15, + "norm_label": "acl-manifests.json", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json" + }, + { + "label": "core", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 15, + "norm_label": "core", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core" + }, + { + "label": "default_permission", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "default_permission", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_default_permission" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "permissions", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 15, + "norm_label": "permissions", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_permissions" + }, + { + "label": "permission_sets", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 15, + "norm_label": "permission_sets", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_permission_sets" + }, + { + "label": "global_scope_schema", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 15, + "norm_label": "global_scope_schema", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_global_scope_schema" + }, + { + "label": "core:app", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "core:app", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app" + }, + { + "label": "default_permission", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "default_permission", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_default_permission" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "permissions", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions" + }, + { + "label": "allow-app-hide", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "allow-app-hide", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_hide" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_commands" + }, + { + "label": "allow", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "allow", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "label": "deny", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "deny", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "label": "allow-app-show", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "allow-app-show", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_show" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_commands" + }, + { + "label": "allow-bundle-type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "allow-bundle-type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_bundle_type" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_commands" + }, + { + "label": "allow-default-window-icon", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1227, + "norm_label": "allow-default-window-icon", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_default_window_icon" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1227, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1227, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1227, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_commands" + }, + { + "label": "allow-fetch-data-store-identifiers", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1228, + "norm_label": "allow-fetch-data-store-identifiers", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_fetch_data_store_identifiers" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1228, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1228, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1228, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_commands" + }, + { + "label": "allow-identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1230, + "norm_label": "allow-identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_identifier" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1230, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1230, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1230, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_commands" + }, + { + "label": "allow-name", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "allow-name", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_name" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_commands" + }, + { + "label": "allow-register-listener", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "allow-register-listener", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_register_listener" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_commands" + }, + { + "label": "allow-remove-data-store", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "allow-remove-data-store", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_data_store" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_commands" + }, + { + "label": "allow-remove-listener", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1226, + "norm_label": "allow-remove-listener", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_listener" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1226, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1226, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1226, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_commands" + }, + { + "label": "allow-set-app-theme", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1240, + "norm_label": "allow-set-app-theme", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_app_theme" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1240, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1240, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1240, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_commands" + }, + { + "label": "allow-set-dock-visibility", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "allow-set-dock-visibility", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_dock_visibility" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_commands" + }, + { + "label": "allow-supports-multiple-windows", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "allow-supports-multiple-windows", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_supports_multiple_windows" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_commands" + }, + { + "label": "allow-tauri-version", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1237, + "norm_label": "allow-tauri-version", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_tauri_version" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1237, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1237, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1237, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_commands" + }, + { + "label": "allow-version", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1248, + "norm_label": "allow-version", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_version" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1248, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1248, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1248, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_commands" + }, + { + "label": "deny-app-hide", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "deny-app-hide", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_hide" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_commands" + }, + { + "label": "deny-app-show", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1249, + "norm_label": "deny-app-show", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_show" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1249, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1249, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1249, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_commands" + }, + { + "label": "deny-bundle-type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1250, + "norm_label": "deny-bundle-type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_bundle_type" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1250, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1250, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1250, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_commands" + }, + { + "label": "deny-default-window-icon", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "deny-default-window-icon", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_default_window_icon" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_commands" + }, + { + "label": "deny-fetch-data-store-identifiers", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1251, + "norm_label": "deny-fetch-data-store-identifiers", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_fetch_data_store_identifiers" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1251, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1251, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1251, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_commands" + }, + { + "label": "deny-identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "deny-identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_identifier" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_commands" + }, + { + "label": "deny-name", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "deny-name", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_name" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_commands" + }, + { + "label": "deny-register-listener", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "deny-register-listener", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_register_listener" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_commands" + }, + { + "label": "deny-remove-data-store", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1242, + "norm_label": "deny-remove-data-store", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_data_store" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1242, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1242, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1242, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_commands" + }, + { + "label": "deny-remove-listener", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1243, + "norm_label": "deny-remove-listener", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_listener" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1243, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1243, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1243, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_commands" + }, + { + "label": "deny-set-app-theme", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "deny-set-app-theme", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_app_theme" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_commands" + }, + { + "label": "deny-set-dock-visibility", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1246, + "norm_label": "deny-set-dock-visibility", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_dock_visibility" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1246, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1246, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1246, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_commands" + }, + { + "label": "deny-supports-multiple-windows", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1260, + "norm_label": "deny-supports-multiple-windows", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_supports_multiple_windows" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1260, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1260, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1260, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_commands" + }, + { + "label": "deny-tauri-version", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1252, + "norm_label": "deny-tauri-version", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_tauri_version" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1252, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1252, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1252, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_commands" + }, + { + "label": "deny-version", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "deny-version", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_version" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 116, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_commands" + }, + { + "label": "permission_sets", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "permission_sets", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permission_sets" + }, + { + "label": "global_scope_schema", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "global_scope_schema", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_global_scope_schema" + }, + { + "label": "core:event", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "core:event", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event" + }, + { + "label": "default_permission", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "default_permission", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_default_permission" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "permissions", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions" + }, + { + "label": "allow-emit", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "allow-emit", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_commands" + }, + { + "label": "allow-emit-to", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "allow-emit-to", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit_to" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_commands" + }, + { + "label": "allow-listen", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "allow-listen", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_listen" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_commands" + }, + { + "label": "allow-unlisten", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "allow-unlisten", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_unlisten" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_commands" + }, + { + "label": "deny-emit", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "deny-emit", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_commands" + }, + { + "label": "deny-emit-to", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "deny-emit-to", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit_to" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_commands" + }, + { + "label": "deny-listen", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "deny-listen", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_listen" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_commands" + }, + { + "label": "deny-unlisten", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "deny-unlisten", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_unlisten" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_commands" + }, + { + "label": "permission_sets", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "permission_sets", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permission_sets" + }, + { + "label": "global_scope_schema", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 119, + "norm_label": "global_scope_schema", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_global_scope_schema" + }, + { + "label": "core:image", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "core:image", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image" + }, + { + "label": "default_permission", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "default_permission", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_default_permission" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "permissions", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions" + }, + { + "label": "allow-from-bytes", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "allow-from-bytes", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_bytes" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_commands" + }, + { + "label": "allow-from-path", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "allow-from-path", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_path" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_commands" + }, + { + "label": "allow-new", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "allow-new", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_commands" + }, + { + "label": "allow-rgba", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "allow-rgba", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_rgba" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_commands" + }, + { + "label": "allow-size", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "allow-size", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_size" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_commands" + }, + { + "label": "deny-from-bytes", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "deny-from-bytes", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_bytes" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_commands" + }, + { + "label": "deny-from-path", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "deny-from-path", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_path" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_commands" + }, + { + "label": "deny-new", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "deny-new", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_new" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_commands" + }, + { + "label": "deny-rgba", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "deny-rgba", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_rgba" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_commands" + }, + { + "label": "deny-size", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "deny-size", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_size" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 44, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_commands" + }, + { + "label": "permission_sets", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "permission_sets", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permission_sets" + }, + { + "label": "global_scope_schema", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "global_scope_schema", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_global_scope_schema" + }, + { + "label": "core:menu", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "core:menu", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu" + }, + { + "label": "default_permission", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 429, + "norm_label": "default_permission", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_default_permission" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "permissions", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions" + }, + { + "label": "allow-append", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1225, + "norm_label": "allow-append", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_append" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1225, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1225, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1225, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_commands" + }, + { + "label": "allow-create-default", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "allow-create-default", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_create_default" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_commands" + }, + { + "label": "allow-get", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1229, + "norm_label": "allow-get", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_get" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1229, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1229, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1229, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_commands" + }, + { + "label": "allow-insert", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "allow-insert", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_insert" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_commands" + }, + { + "label": "allow-is-checked", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1232, + "norm_label": "allow-is-checked", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_checked" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1232, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1232, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1232, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_commands" + }, + { + "label": "allow-is-enabled", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1233, + "norm_label": "allow-is-enabled", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_enabled" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1233, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1233, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1233, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_commands" + }, + { + "label": "allow-items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 887, + "norm_label": "allow-items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_items" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 887, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 887, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 887, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_commands" + }, + { + "label": "allow-popup", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1235, + "norm_label": "allow-popup", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_popup" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1235, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1235, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1235, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_commands" + }, + { + "label": "allow-prepend", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "allow-prepend", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_prepend" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_commands" + }, + { + "label": "allow-remove", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1238, + "norm_label": "allow-remove", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1238, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1238, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1238, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_commands" + }, + { + "label": "allow-remove-at", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 991, + "norm_label": "allow-remove-at", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_at" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 991, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 991, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 991, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_commands" + }, + { + "label": "allow-set-accelerator", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "allow-set-accelerator", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_accelerator" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_commands" + }, + { + "label": "allow-set-as-app-menu", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1231, + "norm_label": "allow-set-as-app-menu", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_app_menu" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1231, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1231, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1231, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_commands" + }, + { + "label": "allow-set-as-help-menu-for-nsapp", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1234, + "norm_label": "allow-set-as-help-menu-for-nsapp", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_help_menu_for_nsapp" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1234, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1234, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1234, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_commands" + }, + { + "label": "allow-set-as-window-menu", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1236, + "norm_label": "allow-set-as-window-menu", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_window_menu" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1236, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1236, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1236, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_commands" + }, + { + "label": "allow-set-as-windows-menu-for-nsapp", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1241, + "norm_label": "allow-set-as-windows-menu-for-nsapp", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_windows_menu_for_nsapp" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1241, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1241, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1241, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_commands" + }, + { + "label": "allow-set-checked", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "allow-set-checked", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_checked" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_commands" + }, + { + "label": "allow-set-enabled", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "allow-set-enabled", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_enabled" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_commands" + }, + { + "label": "allow-set-icon", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1244, + "norm_label": "allow-set-icon", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_icon" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1244, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1244, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1244, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_commands" + }, + { + "label": "allow-set-text", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1245, + "norm_label": "allow-set-text", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_text" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1245, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1245, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1245, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_commands" + }, + { + "label": "allow-text", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1247, + "norm_label": "allow-text", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_text" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1247, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1247, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1247, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_commands" + }, + { + "label": "deny-append", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "deny-append", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_append" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_commands" + }, + { + "label": "deny-create-default", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1239, + "norm_label": "deny-create-default", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_create_default" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1239, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1239, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1239, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_commands" + }, + { + "label": "deny-get", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "deny-get", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_get" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_commands" + }, + { + "label": "deny-insert", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1253, + "norm_label": "deny-insert", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_insert" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1253, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1253, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1253, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_commands" + }, + { + "label": "deny-is-checked", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "deny-is-checked", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_checked" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_commands" + }, + { + "label": "deny-is-enabled", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1255, + "norm_label": "deny-is-enabled", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_enabled" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1255, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1255, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1255, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_commands" + }, + { + "label": "deny-items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "deny-items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_items" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 115, + "norm_label": "commands", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_commands" + }, + { + "label": "macOS-schema.json", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L1", + "community": 878, + "norm_label": "macos-schema.json", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2", + "community": 878, + "norm_label": "$schema", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_schema" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L3", + "community": 878, + "norm_label": "title", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L4", + "community": 878, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L5", + "community": 878, + "norm_label": "anyof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_anyof" + }, + { + "label": "definitions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L38", + "community": 341, + "norm_label": "definitions", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions" + }, + { + "label": "Capability", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L39", + "community": 341, + "norm_label": "capability", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L40", + "community": 341, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L41", + "community": 341, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_type" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L42", + "community": 341, + "norm_label": "required", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_required" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L46", + "community": 586, + "norm_label": "properties", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L47", + "community": 586, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L48", + "community": 586, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L49", + "community": 586, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L51", + "community": 586, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_description" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L52", + "community": 586, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L53", + "community": 586, + "norm_label": "default", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_default" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L54", + "community": 586, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_type" + }, + { + "label": "remote", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L56", + "community": 586, + "norm_label": "remote", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_remote" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L57", + "community": 586, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_remote_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L58", + "community": 586, + "norm_label": "anyof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_remote_anyof" + }, + { + "label": "local", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L67", + "community": 586, + "norm_label": "local", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_local" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L68", + "community": 586, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L69", + "community": 586, + "norm_label": "default", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_default" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L70", + "community": 586, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_type" + }, + { + "label": "windows", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L72", + "community": 975, + "norm_label": "windows", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_windows" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L73", + "community": 975, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L74", + "community": 975, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L75", + "community": 975, + "norm_label": "items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_items" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L76", + "community": 975, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_type" + }, + { + "label": "webviews", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L79", + "community": 975, + "norm_label": "webviews", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_webviews" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L80", + "community": 975, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L81", + "community": 975, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L82", + "community": 975, + "norm_label": "items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_items" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L86", + "community": 974, + "norm_label": "permissions", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L87", + "community": 974, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L88", + "community": 974, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L89", + "community": 974, + "norm_label": "items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_items" + }, + { + "label": "$ref", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L90", + "community": 974, + "norm_label": "$ref", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_ref" + }, + { + "label": "uniqueItems", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L92", + "community": 974, + "norm_label": "uniqueitems", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_uniqueitems" + }, + { + "label": "platforms", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L94", + "community": 974, + "norm_label": "platforms", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_platforms" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L95", + "community": 974, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L96", + "community": 974, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L100", + "community": 974, + "norm_label": "items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_items" + }, + { + "label": "CapabilityRemote", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L106", + "community": 1017, + "norm_label": "capabilityremote", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L107", + "community": 1017, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L108", + "community": 1017, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_type" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L109", + "community": 1017, + "norm_label": "required", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_required" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L112", + "community": 1017, + "norm_label": "properties", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_properties" + }, + { + "label": "urls", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L113", + "community": 1017, + "norm_label": "urls", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_urls" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L114", + "community": 1017, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L115", + "community": 1017, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L116", + "community": 975, + "norm_label": "items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_items" + }, + { + "label": "PermissionEntry", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L122", + "community": 341, + "norm_label": "permissionentry", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_permissionentry" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L123", + "community": 341, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissionentry_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L124", + "community": 341, + "norm_label": "anyof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissionentry_anyof" + }, + { + "label": "Identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L176", + "community": 586, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_identifier" + }, + { + "label": "oneOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L178", + "community": 586, + "norm_label": "oneof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_oneof" + }, + { + "label": "Value", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2197", + "community": 341, + "norm_label": "value", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_value" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2198", + "community": 341, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_value_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2199", + "community": 341, + "norm_label": "anyof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_value_anyof" + }, + { + "label": "Number", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2236", + "community": 341, + "norm_label": "number", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_number" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2237", + "community": 341, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_number_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2238", + "community": 341, + "norm_label": "anyof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_number_anyof" + }, + { + "label": "Target", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2251", + "community": 341, + "norm_label": "target", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_target" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2252", + "community": 341, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_target_description" + }, + { + "label": "oneOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2253", + "community": 341, + "norm_label": "oneof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_target_oneof" + }, + { + "label": "desktop-schema.json", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L1", + "community": 877, + "norm_label": "desktop-schema.json", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2", + "community": 877, + "norm_label": "$schema", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_schema" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L3", + "community": 877, + "norm_label": "title", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L4", + "community": 877, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L5", + "community": 877, + "norm_label": "anyof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_anyof" + }, + { + "label": "definitions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L38", + "community": 338, + "norm_label": "definitions", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions" + }, + { + "label": "Capability", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L39", + "community": 338, + "norm_label": "capability", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L40", + "community": 338, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L41", + "community": 338, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_type" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L42", + "community": 338, + "norm_label": "required", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_required" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L46", + "community": 583, + "norm_label": "properties", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L47", + "community": 583, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L48", + "community": 583, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L49", + "community": 583, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L51", + "community": 583, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_description" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L52", + "community": 583, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L53", + "community": 583, + "norm_label": "default", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_default" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L54", + "community": 583, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_type" + }, + { + "label": "remote", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L56", + "community": 583, + "norm_label": "remote", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_remote" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L57", + "community": 583, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_remote_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L58", + "community": 583, + "norm_label": "anyof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_remote_anyof" + }, + { + "label": "local", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L67", + "community": 583, + "norm_label": "local", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_local" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L68", + "community": 583, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L69", + "community": 583, + "norm_label": "default", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_default" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L70", + "community": 583, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_type" + }, + { + "label": "windows", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L72", + "community": 973, + "norm_label": "windows", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_windows" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L73", + "community": 973, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L74", + "community": 973, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L75", + "community": 973, + "norm_label": "items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_items" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L76", + "community": 973, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_type" + }, + { + "label": "webviews", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L79", + "community": 973, + "norm_label": "webviews", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_webviews" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L80", + "community": 973, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L81", + "community": 973, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L82", + "community": 973, + "norm_label": "items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_items" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L86", + "community": 972, + "norm_label": "permissions", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L87", + "community": 972, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L88", + "community": 972, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L89", + "community": 972, + "norm_label": "items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_items" + }, + { + "label": "$ref", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L90", + "community": 972, + "norm_label": "$ref", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_ref" + }, + { + "label": "uniqueItems", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L92", + "community": 972, + "norm_label": "uniqueitems", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_uniqueitems" + }, + { + "label": "platforms", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L94", + "community": 972, + "norm_label": "platforms", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_platforms" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L95", + "community": 972, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L96", + "community": 972, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L100", + "community": 972, + "norm_label": "items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_items" + }, + { + "label": "CapabilityRemote", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L106", + "community": 1016, + "norm_label": "capabilityremote", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L107", + "community": 1016, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L108", + "community": 1016, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_type" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L109", + "community": 1016, + "norm_label": "required", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_required" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L112", + "community": 1016, + "norm_label": "properties", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_properties" + }, + { + "label": "urls", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L113", + "community": 1016, + "norm_label": "urls", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_urls" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L114", + "community": 1016, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L115", + "community": 1016, + "norm_label": "type", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L116", + "community": 973, + "norm_label": "items", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_items" + }, + { + "label": "PermissionEntry", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L122", + "community": 338, + "norm_label": "permissionentry", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_permissionentry" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L123", + "community": 338, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissionentry_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L124", + "community": 338, + "norm_label": "anyof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissionentry_anyof" + }, + { + "label": "Identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L176", + "community": 583, + "norm_label": "identifier", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_identifier" + }, + { + "label": "oneOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L178", + "community": 583, + "norm_label": "oneof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_oneof" + }, + { + "label": "Value", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2197", + "community": 338, + "norm_label": "value", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_value" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2198", + "community": 338, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_value_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2199", + "community": 338, + "norm_label": "anyof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_value_anyof" + }, + { + "label": "Number", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2236", + "community": 338, + "norm_label": "number", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_number" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2237", + "community": 338, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_number_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2238", + "community": 338, + "norm_label": "anyof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_number_anyof" + }, + { + "label": "Target", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2251", + "community": 338, + "norm_label": "target", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_target" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2252", + "community": 338, + "norm_label": "description", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_target_description" + }, + { + "label": "oneOf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2253", + "community": 338, + "norm_label": "oneof", + "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_target_oneof" + }, + { + "label": "main.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L1", + "community": 36, + "norm_label": "main.rs", + "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs" + }, + { + "label": "log()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L24", + "community": 36, + "norm_label": "log()", + "id": "src_main_log" + }, + { + "label": "poll_backend()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L40", + "community": 36, + "norm_label": "poll_backend()", + "id": "src_main_poll_backend" + }, + { + "label": "ProtectionState", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L40", + "community": 36, + "norm_label": "protectionstate", + "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_protectionstate" + }, + { + "label": "Option", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L40", + "community": 36, + "norm_label": "option", + "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_option" + }, + { + "label": "tick()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L60", + "community": 36, + "norm_label": "tick()", + "id": "src_main_tick" + }, + { + "label": "monitor_loop()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L104", + "community": 36, + "norm_label": "monitor_loop()", + "id": "src_main_monitor_loop" + }, + { + "label": "Fn", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L104", + "community": 36, + "norm_label": "fn", + "id": "fn" + }, + { + "label": "Duration", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L104", + "community": 36, + "norm_label": "duration", + "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_duration" + }, + { + "label": "run()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L139", + "community": 36, + "norm_label": "run()", + "id": "src_main_run" + }, + { + "label": "Result", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L139", + "community": 36, + "norm_label": "result", + "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_result" + }, + { + "label": "Error", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L139", + "community": 36, + "norm_label": "error", + "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_error" + }, + { + "label": "service_main()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L143", + "community": 36, + "norm_label": "service_main()", + "id": "src_main_service_main" + }, + { + "label": "Vec", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L143", + "community": 36, + "norm_label": "vec", + "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_vec" + }, + { + "label": "OsString", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L143", + "community": 36, + "norm_label": "osstring", + "id": "osstring" + }, + { + "label": "run_service()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L149", + "community": 36, + "norm_label": "run_service()", + "id": "src_main_run_service" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L180", + "community": 36, + "norm_label": "main()", + "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_src_main_main" + }, + { + "label": "lib.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L1", + "community": 36, + "norm_label": "lib.rs", + "id": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs" + }, + { + "label": "ProtectionState", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L28", + "community": 9, + "norm_label": "protectionstate", + "id": "src_lib_protectionstate" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L30", + "community": 36, + "norm_label": "string", + "id": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" + }, + { + "label": ".doh_template_for()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L42", + "community": 36, + "norm_label": ".doh_template_for()", + "id": "src_lib_protectionstate_doh_template_for" + }, + { + "label": "state_dir()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L48", + "community": 36, + "norm_label": "state_dir()", + "id": "src_lib_state_dir" + }, + { + "label": "PathBuf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L48", + "community": 36, + "norm_label": "pathbuf", + "id": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_pathbuf" + }, + { + "label": "state_path()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L60", + "community": 36, + "norm_label": "state_path()", + "id": "src_lib_state_path" + }, + { + "label": "load_state()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L64", + "community": 36, + "norm_label": "load_state()", + "id": "src_lib_load_state" + }, + { + "label": "Option", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L64", + "community": 36, + "norm_label": "option", + "id": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_option" + }, + { + "label": "ps_run()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L77", + "community": 36, + "norm_label": "ps_run()", + "id": "src_lib_ps_run" + }, + { + "label": "Result", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L77", + "community": 36, + "norm_label": "result", + "id": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_result" + }, + { + "label": "apply_script()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L115", + "community": 36, + "norm_label": "apply_script()", + "id": "src_lib_apply_script" + }, + { + "label": "teardown_script()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L171", + "community": 36, + "norm_label": "teardown_script()", + "id": "src_lib_teardown_script" + }, + { + "label": "check_script()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L204", + "community": 36, + "norm_label": "check_script()", + "id": "src_lib_check_script" + }, + { + "label": "doh_is_applied()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L219", + "community": 36, + "norm_label": "doh_is_applied()", + "id": "src_lib_doh_is_applied" + }, + { + "label": "apply_doh()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L224", + "community": 36, + "norm_label": "apply_doh()", + "id": "src_lib_apply_doh" + }, + { + "label": "teardown_doh()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L229", + "community": 36, + "norm_label": "teardown_doh()", + "id": "src_lib_teardown_doh" + }, + { + "label": "doh_template_embeds_token()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L238", + "community": 36, + "norm_label": "doh_template_embeds_token()", + "id": "src_lib_doh_template_embeds_token" + }, + { + "label": "scripts_contain_ip_and_template()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L244", + "community": 36, + "norm_label": "scripts_contain_ip_and_template()", + "id": "src_lib_scripts_contain_ip_and_template" + }, + { + "label": "state_roundtrip()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L256", + "community": 36, + "norm_label": "state_roundtrip()", + "id": "src_lib_state_roundtrip" + }, + { + "label": "device.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L1", + "community": 36, + "norm_label": "device.rs", + "id": "apps_rebreak_magic_win_src_tauri_src_device_rs" + }, + { + "label": "device_id()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L9", + "community": 36, + "norm_label": "device_id()", + "id": "src_device_device_id" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L9", + "community": 36, + "norm_label": "string", + "id": "apps_rebreak_magic_win_src_tauri_src_device_rs_string" + }, + { + "label": "hostname()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L29", + "community": 36, + "norm_label": "hostname()", + "id": "src_device_hostname" + }, + { + "label": "os_version()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L35", + "community": 36, + "norm_label": "os_version()", + "id": "src_device_os_version" + }, + { + "label": "lib.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L1", + "community": 78, + "norm_label": "lib.rs", + "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs" + }, + { + "label": "UiState", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L21", + "community": 78, + "norm_label": "uistate", + "id": "src_lib_uistate" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L22", + "community": 78, + "norm_label": "string", + "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "label": "Option", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L24", + "community": 78, + "norm_label": "option", + "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs_option" + }, + { + "label": "backend_url()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L38", + "community": 78, + "norm_label": "backend_url()", + "id": "src_lib_backend_url" + }, + { + "label": "AppHandle", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L38", + "community": 78, + "norm_label": "apphandle", + "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs_apphandle" + }, + { + "label": "build_state()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L52", + "community": 78, + "norm_label": "build_state()", + "id": "src_lib_build_state" + }, + { + "label": "get_state()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L99", + "community": 78, + "norm_label": "get_state()", + "id": "src_lib_get_state" + }, + { + "label": "Result", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L99", + "community": 78, + "norm_label": "result", + "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" + }, + { + "label": "pair_and_register()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L105", + "community": 78, + "norm_label": "pair_and_register()", + "id": "src_lib_pair_and_register" + }, + { + "label": "activate_protection()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L134", + "community": 78, + "norm_label": "activate_protection()", + "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_activate_protection" + }, + { + "label": "request_release()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L161", + "community": 78, + "norm_label": "request_release()", + "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_request_release" + }, + { + "label": "cancel_release()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L169", + "community": 78, + "norm_label": "cancel_release()", + "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_cancel_release" + }, + { + "label": "logout()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L179", + "community": 78, + "norm_label": "logout()", + "id": "src_lib_logout" + }, + { + "label": "run()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L185", + "community": 78, + "norm_label": "run()", + "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_run" + }, + { + "label": "auth.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L1", + "community": 452, + "norm_label": "auth.rs", + "id": "apps_rebreak_magic_win_src_tauri_src_auth_rs" + }, + { + "label": "entry()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L11", + "community": 452, + "norm_label": "entry()", + "id": "src_auth_entry" + }, + { + "label": "Result", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L11", + "community": 452, + "norm_label": "result", + "id": "apps_rebreak_magic_win_src_tauri_src_auth_rs_result" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L11", + "community": 452, + "norm_label": "string", + "id": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" + }, + { + "label": "save_session_token()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L15", + "community": 452, + "norm_label": "save_session_token()", + "id": "src_auth_save_session_token" + }, + { + "label": "load_session_token()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L21", + "community": 452, + "norm_label": "load_session_token()", + "id": "src_auth_load_session_token" + }, + { + "label": "Option", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L21", + "community": 452, + "norm_label": "option", + "id": "apps_rebreak_magic_win_src_tauri_src_auth_rs_option" + }, + { + "label": "save_dns_token()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L25", + "community": 452, + "norm_label": "save_dns_token()", + "id": "src_auth_save_dns_token" + }, + { + "label": "load_dns_token()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L31", + "community": 452, + "norm_label": "load_dns_token()", + "id": "src_auth_load_dns_token" + }, + { + "label": "clear_all()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L35", + "community": 452, + "norm_label": "clear_all()", + "id": "src_auth_clear_all" + }, + { + "label": "main.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/main.rs", + "source_location": "L1", + "community": 713, + "norm_label": "main.rs", + "id": "apps_rebreak_magic_win_src_tauri_src_main_rs" + }, + { + "label": "main()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/main.rs", + "source_location": "L4", + "community": 713, + "norm_label": "main()", + "id": "apps_rebreak_magic_win_src_tauri_src_main_rs_src_main_main" + }, + { + "label": "api.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L1", + "community": 117, + "norm_label": "api.rs", + "id": "apps_rebreak_magic_win_src_tauri_src_api_rs" + }, + { + "label": "Envelope", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L8", + "community": 117, + "norm_label": "envelope", + "id": "src_api_envelope" + }, + { + "label": "T", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L11", + "community": 117, + "norm_label": "t", + "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_t" + }, + { + "label": "ErrorBody", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L15", + "community": 117, + "norm_label": "errorbody", + "id": "src_api_errorbody" + }, + { + "label": "Option", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L16", + "community": 117, + "norm_label": "option", + "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_option" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L16", + "community": 117, + "norm_label": "string", + "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "label": "PairData", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L20", + "community": 117, + "norm_label": "pairdata", + "id": "src_api_pairdata" + }, + { + "label": "MeData", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L26", + "community": 117, + "norm_label": "medata", + "id": "src_api_medata" + }, + { + "label": "RegisterData", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L33", + "community": 117, + "norm_label": "registerdata", + "id": "src_api_registerdata" + }, + { + "label": "MagicDevice", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L39", + "community": 117, + "norm_label": "magicdevice", + "id": "src_api_magicdevice" + }, + { + "label": "Api", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L45", + "community": 117, + "norm_label": "api", + "id": "src_api_api" + }, + { + "label": "Client", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L47", + "community": 117, + "norm_label": "client", + "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_client" + }, + { + "label": ".new()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L51", + "community": 117, + "norm_label": ".new()", + "id": "src_api_api_new" + }, + { + "label": "Self", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L51", + "community": 117, + "norm_label": "self", + "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_self" + }, + { + "label": ".parse()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L58", + "community": 117, + "norm_label": ".parse()", + "id": "src_api_api_parse" + }, + { + "label": "Response", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L58", + "community": 117, + "norm_label": "response", + "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_response" + }, + { + "label": "Result", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L58", + "community": 117, + "norm_label": "result", + "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" + }, + { + "label": ".redeem_pair()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L76", + "community": 117, + "norm_label": ".redeem_pair()", + "id": "src_api_api_redeem_pair" + }, + { + "label": ".me()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L88", + "community": 117, + "norm_label": ".me()", + "id": "src_api_api_me" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L100", + "community": 117, + "norm_label": ".register()", + "id": "src_api_api_register" + }, + { + "label": ".devices()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L126", + "community": 117, + "norm_label": ".devices()", + "id": "src_api_api_devices" + }, + { + "label": "Vec", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L126", + "community": 117, + "norm_label": "vec", + "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_vec" + }, + { + "label": ".request_release()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L138", + "community": 117, + "norm_label": ".request_release()", + "id": "src_api_api_request_release" + }, + { + "label": ".cancel_release()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L153", + "community": 117, + "norm_label": ".cancel_release()", + "id": "src_api_api_cancel_release" + }, + { + "label": "setup.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L1", + "community": 36, + "norm_label": "setup.rs", + "id": "apps_rebreak_magic_win_src_tauri_src_setup_rs" + }, + { + "label": "resolve_doh_ip()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L13", + "community": 36, + "norm_label": "resolve_doh_ip()", + "id": "src_setup_resolve_doh_ip" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L13", + "community": 36, + "norm_label": "string", + "id": "apps_rebreak_magic_win_src_tauri_src_setup_rs_string" + }, + { + "label": "service_exe_path()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L25", + "community": 36, + "norm_label": "service_exe_path()", + "id": "src_setup_service_exe_path" + }, + { + "label": "Result", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L25", + "community": 36, + "norm_label": "result", + "id": "apps_rebreak_magic_win_src_tauri_src_setup_rs_result" + }, + { + "label": "PathBuf", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L25", + "community": 36, + "norm_label": "pathbuf", + "id": "apps_rebreak_magic_win_src_tauri_src_setup_rs_pathbuf" + }, + { + "label": "build_setup_script()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L35", + "community": 36, + "norm_label": "build_setup_script()", + "id": "src_setup_build_setup_script" + }, + { + "label": "ProtectionState", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L35", + "community": 36, + "norm_label": "protectionstate", + "id": "apps_rebreak_magic_win_src_tauri_src_setup_rs_protectionstate" + }, + { + "label": "run_elevated()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L89", + "community": 36, + "norm_label": "run_elevated()", + "id": "src_setup_run_elevated" + }, + { + "label": "App.tsx", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/App.tsx", + "source_location": "L1", + "community": 78, + "norm_label": "app.tsx", + "id": "apps_rebreak_magic_win_src_app_tsx" + }, + { + "label": "App()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/App.tsx", + "source_location": "L6", + "community": 78, + "norm_label": "app()", + "id": "src_app_app" + }, + { + "label": "main.tsx", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/main.tsx", + "source_location": "L1", + "community": 78, + "norm_label": "main.tsx", + "id": "apps_rebreak_magic_win_src_main_tsx" + }, + { + "label": "vite-env.d.ts", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/vite-env.d.ts", + "source_location": "L1", + "community": 858, + "norm_label": "vite-env.d.ts", + "id": "apps_rebreak_magic_win_src_vite_env_d_ts" + }, + { + "label": "ipc.ts", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L1", + "community": 78, + "norm_label": "ipc.ts", + "id": "apps_rebreak_magic_win_src_lib_ipc_ts" + }, + { + "label": "UiState", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L4", + "community": 78, + "norm_label": "uistate", + "id": "lib_ipc_uistate" + }, + { + "label": "getState()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L17", + "community": 78, + "norm_label": "getstate()", + "id": "lib_ipc_getstate" + }, + { + "label": "pairAndRegister()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L18", + "community": 78, + "norm_label": "pairandregister()", + "id": "lib_ipc_pairandregister" + }, + { + "label": "activateProtection()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L20", + "community": 78, + "norm_label": "activateprotection()", + "id": "lib_ipc_activateprotection" + }, + { + "label": "requestRelease()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L21", + "community": 78, + "norm_label": "requestrelease()", + "id": "lib_ipc_requestrelease" + }, + { + "label": "cancelRelease()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L22", + "community": 78, + "norm_label": "cancelrelease()", + "id": "lib_ipc_cancelrelease" + }, + { + "label": "logout()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L23", + "community": 78, + "norm_label": "logout()", + "id": "lib_ipc_logout" + }, + { + "label": "LoginView.tsx", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", + "source_location": "L1", + "community": 78, + "norm_label": "loginview.tsx", + "id": "apps_rebreak_magic_win_src_views_loginview_tsx" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", + "source_location": "L5", + "community": 78, + "norm_label": "props", + "id": "views_loginview_props" + }, + { + "label": "LoginView()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", + "source_location": "L13", + "community": 78, + "norm_label": "loginview()", + "id": "apps_rebreak_magic_win_src_views_loginview_tsx_views_loginview_loginview" + }, + { + "label": "HubView.tsx", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L1", + "community": 78, + "norm_label": "hubview.tsx", + "id": "apps_rebreak_magic_win_src_views_hubview_tsx" + }, + { + "label": "Props", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L11", + "community": 78, + "norm_label": "props", + "id": "views_hubview_props" + }, + { + "label": "useCountdown()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L16", + "community": 78, + "norm_label": "usecountdown()", + "id": "views_hubview_usecountdown" + }, + { + "label": "HubView()", + "file_type": "code", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L38", + "community": 78, + "norm_label": "hubview()", + "id": "views_hubview_hubview" + }, { "label": "app.vue", "file_type": "code", @@ -85098,6 +118932,15 @@ "norm_label": "admin-auth.ts", "id": "apps_admin_middleware_admin_auth_ts" }, + { + "label": "useAdminAuth.ts", + "file_type": "code", + "source_file": "apps/admin/composables/useAdminAuth.ts", + "source_location": "L1", + "community": 809, + "norm_label": "useadminauth.ts", + "id": "apps_admin_composables_useadminauth_ts" + }, { "label": "useAdminAuth()", "file_type": "code", @@ -85224,6 +119067,15 @@ "norm_label": "queue.get.ts", "id": "apps_admin_server_api_moderation_queue_get_ts" }, + { + "label": "ModerationItem", + "file_type": "code", + "source_file": "apps/admin/server/api/moderation/queue.get.ts", + "source_location": "L8", + "community": 385, + "norm_label": "moderationitem", + "id": "moderation_queue_get_moderationitem" + }, { "label": "ModerationQueueResponse", "file_type": "code", @@ -85399,7 +119251,7 @@ "label": "currentAuthorAvatar", "file_type": "code", "source_file": "apps/admin/pages/lyra.vue", - "source_location": "L216", + "source_location": "L217", "community": 632, "norm_label": "currentauthoravatar", "id": "pages_lyra_currentauthoravatar" @@ -85408,7 +119260,7 @@ "label": "loadProfile()", "file_type": "code", "source_file": "apps/admin/pages/lyra.vue", - "source_location": "L220", + "source_location": "L221", "community": 632, "norm_label": "loadprofile()", "id": "pages_lyra_loadprofile" @@ -85417,7 +119269,7 @@ "label": "selectAuthor()", "file_type": "code", "source_file": "apps/admin/pages/lyra.vue", - "source_location": "L242", + "source_location": "L243", "community": 632, "norm_label": "selectauthor()", "id": "pages_lyra_selectauthor" @@ -85426,7 +119278,7 @@ "label": "generateContent()", "file_type": "code", "source_file": "apps/admin/pages/lyra.vue", - "source_location": "L249", + "source_location": "L250", "community": 632, "norm_label": "generatecontent()", "id": "pages_lyra_generatecontent" @@ -85435,7 +119287,7 @@ "label": "postAsBot()", "file_type": "code", "source_file": "apps/admin/pages/lyra.vue", - "source_location": "L274", + "source_location": "L275", "community": 632, "norm_label": "postasbot()", "id": "pages_lyra_postasbot" @@ -85475,6 +119327,78 @@ "norm_label": "build-dmg.sh script", "id": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_magic_mac_build_dmg_sh__entry" }, + { + "label": "config.example.json", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L1", + "community": 608, + "norm_label": "config.example.json", + "id": "apps_rebreak_magic_mac_config_example_json" + }, + { + "label": "supabaseUrl", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L2", + "community": 608, + "norm_label": "supabaseurl", + "id": "rebreak_magic_mac_config_example_supabaseurl" + }, + { + "label": "supabaseAnonKey", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L3", + "community": 608, + "norm_label": "supabaseanonkey", + "id": "rebreak_magic_mac_config_example_supabaseanonkey" + }, + { + "label": "backendBaseUrl", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L4", + "community": 608, + "norm_label": "backendbaseurl", + "id": "rebreak_magic_mac_config_example_backendbaseurl" + }, + { + "label": "mdmServer", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L5", + "community": 608, + "norm_label": "mdmserver", + "id": "rebreak_magic_mac_config_example_mdmserver" + }, + { + "label": "mdmUser", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L6", + "community": 608, + "norm_label": "mdmuser", + "id": "rebreak_magic_mac_config_example_mdmuser" + }, + { + "label": "mdmApiKey", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L7", + "community": 608, + "norm_label": "mdmapikey", + "id": "rebreak_magic_mac_config_example_mdmapikey" + }, + { + "label": "RebreakMagicApp.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/RebreakMagicApp.swift", + "source_location": "L1", + "community": 443, + "norm_label": "rebreakmagicapp.swift", + "id": "apps_rebreak_magic_mac_sources_rebreakmagicapp_swift" + }, { "label": "RebreakMagicApp", "file_type": "code", @@ -85619,12 +119543,30 @@ "norm_label": "version", "id": "apps_rebreak_magic_mac_sources_resources_assets_xcassets_accentcolor_colorset_contents_json_accentcolor_colorset_contents_info_version" }, + { + "label": "DeviceState.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/DeviceState.swift", + "source_location": "L1", + "community": 109, + "norm_label": "devicestate.swift", + "id": "apps_rebreak_magic_mac_sources_models_devicestate_swift" + }, + { + "label": "DeviceState", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/DeviceState.swift", + "source_location": "L3", + "community": 109, + "norm_label": "devicestate", + "id": "models_devicestate_devicestate" + }, { "label": "String", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/DeviceState.swift", "source_location": "L4", - "community": 285, + "community": 109, "norm_label": "string", "id": "apps_rebreak_magic_mac_sources_models_devicestate_swift_string" }, @@ -85633,7 +119575,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/DeviceState.swift", "source_location": "L9", - "community": 285, + "community": 109, "norm_label": "bool", "id": "apps_rebreak_magic_mac_sources_models_devicestate_swift_bool" }, @@ -85642,7 +119584,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/DeviceState.swift", "source_location": "L14", - "community": 285, + "community": 109, "norm_label": "enrollmentstatus", "id": "enrollmentstatus" }, @@ -85659,7 +119601,7 @@ "label": "DebugSupervisionMode", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L4", + "source_location": "L5", "community": 124, "norm_label": "debugsupervisionmode", "id": "models_wizardmodel_debugsupervisionmode" @@ -85677,7 +119619,7 @@ "label": "none", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L5", + "source_location": "L6", "community": 124, "norm_label": "none", "id": "models_wizardmodel_debugsupervisionmode_none" @@ -85686,55 +119628,136 @@ "label": "forceSupervised", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L6", + "source_location": "L7", "community": 124, "norm_label": "forcesupervised", "id": "models_wizardmodel_debugsupervisionmode_forcesupervised" }, { - "label": "WizardModel", + "label": "forceUnsupervised", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L20", + "source_location": "L8", "community": 124, - "norm_label": "wizardmodel", - "id": "models_wizardmodel_wizardmodel" + "norm_label": "forceunsupervised", + "id": "models_wizardmodel_debugsupervisionmode_forceunsupervised" + }, + { + "label": "init()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L63", + "community": 124, + "norm_label": "init()", + "id": "models_wizardmodel_init" + }, + { + "label": "advance()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L71", + "community": 124, + "norm_label": "advance()", + "id": "models_wizardmodel_advance" + }, + { + "label": "goTo()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L77", + "community": 124, + "norm_label": "goto()", + "id": "models_wizardmodel_goto" }, { "label": "WizardStep", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L23", + "source_location": "L77", "community": 124, "norm_label": "wizardstep", "id": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_wizardstep" }, { - "label": "DeviceState", + "label": "registerMac()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L24", + "source_location": "L85", "community": 124, - "norm_label": "devicestate", - "id": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_devicestate" + "norm_label": "registermac()", + "id": "models_wizardmodel_registermac" }, { - "label": "Bool", + "label": "handleLogin()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L27", + "source_location": "L113", "community": 124, - "norm_label": "bool", - "id": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_bool" + "norm_label": "handlelogin()", + "id": "models_wizardmodel_handlelogin" }, { - "label": "Date", + "label": "AuthSession", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L40", + "source_location": "L113", "community": 124, - "norm_label": "date", - "id": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_date" + "norm_label": "authsession", + "id": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_authsession" + }, + { + "label": "handleLogout()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L119", + "community": 124, + "norm_label": "handlelogout()", + "id": "models_wizardmodel_handlelogout" + }, + { + "label": "startIOSFlow()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L130", + "community": 124, + "norm_label": "startiosflow()", + "id": "models_wizardmodel_startiosflow" + }, + { + "label": "startMacFlow()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L136", + "community": 124, + "norm_label": "startmacflow()", + "id": "models_wizardmodel_startmacflow" + }, + { + "label": "returnToHub()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L142", + "community": 124, + "norm_label": "returntohub()", + "id": "models_wizardmodel_returntohub" + }, + { + "label": "reset()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L147", + "community": 124, + "norm_label": "reset()", + "id": "models_wizardmodel_reset" + }, + { + "label": "startDebugReset()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L166", + "community": 124, + "norm_label": "startdebugreset()", + "id": "models_wizardmodel_startdebugreset" }, { "label": "WizardStep.swift", @@ -85764,11 +119787,20 @@ "id": "int" }, { - "label": "welcome", + "label": "macRegistration", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardStep.swift", "source_location": "L4", "community": 421, + "norm_label": "macregistration", + "id": "models_wizardstep_wizardstep_macregistration" + }, + { + "label": "welcome", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardStep.swift", + "source_location": "L5", + "community": 421, "norm_label": "welcome", "id": "models_wizardstep_wizardstep_welcome" }, @@ -85776,7 +119808,7 @@ "label": "preflight", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardStep.swift", - "source_location": "L5", + "source_location": "L6", "community": 421, "norm_label": "preflight", "id": "models_wizardstep_wizardstep_preflight" @@ -85785,7 +119817,7 @@ "label": "supervise", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardStep.swift", - "source_location": "L6", + "source_location": "L7", "community": 421, "norm_label": "supervise", "id": "models_wizardstep_wizardstep_supervise" @@ -85794,17 +119826,26 @@ "label": "enroll", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardStep.swift", - "source_location": "L7", + "source_location": "L8", "community": 421, "norm_label": "enroll", "id": "models_wizardstep_wizardstep_enroll" }, { - "label": "done", + "label": "configure", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardStep.swift", "source_location": "L9", "community": 421, + "norm_label": "configure", + "id": "models_wizardstep_wizardstep_configure" + }, + { + "label": "done", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardStep.swift", + "source_location": "L10", + "community": 421, "norm_label": "done", "id": "models_wizardstep_wizardstep_done" }, @@ -85812,11 +119853,308 @@ "label": "String", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardStep.swift", - "source_location": "L13", + "source_location": "L14", "community": 421, "norm_label": "string", "id": "apps_rebreak_magic_mac_sources_models_wizardstep_swift_string" }, + { + "label": "DeviceHubView.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L1", + "community": 73, + "norm_label": "devicehubview.swift", + "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift" + }, + { + "label": "DeviceHubView", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L5", + "community": 73, + "norm_label": "devicehubview", + "id": "views_devicehubview_devicehubview" + }, + { + "label": "MagicDevice", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L8", + "community": 73, + "norm_label": "magicdevice", + "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_magicdevice" + }, + { + "label": "MagicUserProfile", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L9", + "community": 73, + "norm_label": "magicuserprofile", + "id": "magicuserprofile" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L11", + "community": 73, + "norm_label": "string", + "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L17", + "community": 73, + "norm_label": "bool", + "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_bool" + }, + { + "label": ".addDeviceButton()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L129", + "community": 73, + "norm_label": ".adddevicebutton()", + "id": "views_devicehubview_devicehubview_adddevicebutton" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L129", + "community": 73, + "norm_label": "void", + "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_void" + }, + { + "label": ".loadDevices()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L233", + "community": 73, + "norm_label": ".loaddevices()", + "id": "views_devicehubview_devicehubview_loaddevices" + }, + { + "label": ".loadProfile()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L244", + "community": 73, + "norm_label": ".loadprofile()", + "id": "views_devicehubview_devicehubview_loadprofile" + }, + { + "label": ".handleAction()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L288", + "community": 73, + "norm_label": ".handleaction()", + "id": "views_devicehubview_devicehubview_handleaction" + }, + { + "label": "HubDeviceAction", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L288", + "community": 73, + "norm_label": "hubdeviceaction", + "id": "hubdeviceaction" + }, + { + "label": "HubDeviceAction", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L309", + "community": 73, + "norm_label": "hubdeviceaction", + "id": "views_devicehubview_hubdeviceaction" + }, + { + "label": "requestRelease", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L310", + "community": 73, + "norm_label": "requestrelease", + "id": "views_devicehubview_hubdeviceaction_requestrelease" + }, + { + "label": "cancelRelease", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L311", + "community": 73, + "norm_label": "cancelrelease", + "id": "views_devicehubview_hubdeviceaction_cancelrelease" + }, + { + "label": "HubDeviceRow", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L314", + "community": 73, + "norm_label": "hubdevicerow", + "id": "views_devicehubview_hubdevicerow" + }, + { + "label": "Timer", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L319", + "community": 73, + "norm_label": "timer", + "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_timer" + }, + { + "label": ".updateTimeRemaining()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L419", + "community": 73, + "norm_label": ".updatetimeremaining()", + "id": "views_devicehubview_hubdevicerow_updatetimeremaining" + }, + { + "label": "MacRegistrationView.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L1", + "community": 867, + "norm_label": "macregistrationview.swift", + "id": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift" + }, + { + "label": "MacRegistrationView", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L3", + "community": 867, + "norm_label": "macregistrationview", + "id": "views_macregistrationview_macregistrationview" + }, + { + "label": "MacDeviceInfo", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L6", + "community": 867, + "norm_label": "macdeviceinfo", + "id": "macdeviceinfo" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L9", + "community": 867, + "norm_label": "string", + "id": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string" + }, + { + "label": ".macInfoCard()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L112", + "community": 867, + "norm_label": ".macinfocard()", + "id": "views_macregistrationview_macregistrationview_macinfocard" + }, + { + "label": ".errorCard()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L136", + "community": 867, + "norm_label": ".errorcard()", + "id": "views_macregistrationview_macregistrationview_errorcard" + }, + { + "label": ".successCard()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L169", + "community": 867, + "norm_label": ".successcard()", + "id": "views_macregistrationview_macregistrationview_successcard" + }, + { + "label": ".loadMacInfo()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L184", + "community": 867, + "norm_label": ".loadmacinfo()", + "id": "views_macregistrationview_macregistrationview_loadmacinfo" + }, + { + "label": ".checkProfileStatus()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L199", + "community": 867, + "norm_label": ".checkprofilestatus()", + "id": "views_macregistrationview_macregistrationview_checkprofilestatus" + }, + { + "label": ".handleRegistration()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L210", + "community": 867, + "norm_label": ".handleregistration()", + "id": "views_macregistrationview_macregistrationview_handleregistration" + }, + { + "label": ".handleProfileInstall()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L234", + "community": 867, + "norm_label": ".handleprofileinstall()", + "id": "views_macregistrationview_macregistrationview_handleprofileinstall" + }, + { + "label": ".pollUntilProfileInstalled()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L306", + "community": 867, + "norm_label": ".polluntilprofileinstalled()", + "id": "views_macregistrationview_macregistrationview_polluntilprofileinstalled" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L306", + "community": 867, + "norm_label": "int", + "id": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_int" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L306", + "community": 867, + "norm_label": "bool", + "id": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_bool" + }, + { + "label": ".pollBackendActive()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L316", + "community": 867, + "norm_label": ".pollbackendactive()", + "id": "views_macregistrationview_macregistrationview_pollbackendactive" + }, { "label": "EnrollView.swift", "file_type": "code", @@ -85902,7 +120240,7 @@ "label": ".stepRow()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L162", + "source_location": "L163", "community": 287, "norm_label": ".steprow()", "id": "views_enrollview_enrollview_steprow" @@ -85911,7 +120249,7 @@ "label": "Int", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L162", + "source_location": "L163", "community": 287, "norm_label": "int", "id": "apps_rebreak_magic_mac_sources_views_enrollview_swift_int" @@ -85920,7 +120258,7 @@ "label": ".startIfNeeded()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L192", + "source_location": "L209", "community": 287, "norm_label": ".startifneeded()", "id": "views_enrollview_enrollview_startifneeded" @@ -85929,7 +120267,7 @@ "label": ".downloadProfile()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L198", + "source_location": "L215", "community": 287, "norm_label": ".downloadprofile()", "id": "views_enrollview_enrollview_downloadprofile" @@ -85938,7 +120276,7 @@ "label": ".runInstallFlow()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L228", + "source_location": "L269", "community": 287, "norm_label": ".runinstallflow()", "id": "views_enrollview_enrollview_runinstallflow" @@ -85947,7 +120285,7 @@ "label": ".waitForEnrollmentReady()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L282", + "source_location": "L323", "community": 287, "norm_label": ".waitforenrollmentready()", "id": "views_enrollview_enrollview_waitforenrollmentready" @@ -85956,7 +120294,7 @@ "label": ".checkBackendEnrolled()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L315", + "source_location": "L356", "community": 287, "norm_label": ".checkbackendenrolled()", "id": "views_enrollview_enrollview_checkbackendenrolled" @@ -85965,17 +120303,116 @@ "label": ".triggerAutomaticContinue()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L327", + "source_location": "L368", "community": 287, "norm_label": ".triggerautomaticcontinue()", "id": "views_enrollview_enrollview_triggerautomaticcontinue" }, + { + "label": "LoginView.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L1", + "community": 447, + "norm_label": "loginview.swift", + "id": "apps_rebreak_magic_mac_sources_views_loginview_swift" + }, + { + "label": "LoginView", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L4", + "community": 447, + "norm_label": "loginview", + "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L5", + "community": 447, + "norm_label": "string", + "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L6", + "community": 447, + "norm_label": "bool", + "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_bool" + }, + { + "label": "AuthSession", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L10", + "community": 447, + "norm_label": "authsession", + "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_authsession" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L10", + "community": 447, + "norm_label": "void", + "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_void" + }, + { + "label": ".digitBox()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L127", + "community": 447, + "norm_label": ".digitbox()", + "id": "views_loginview_loginview_digitbox" + }, + { + "label": "Int", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L127", + "community": 447, + "norm_label": "int", + "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_int" + }, + { + "label": ".handleCodeChange()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L155", + "community": 447, + "norm_label": ".handlecodechange()", + "id": "views_loginview_loginview_handlecodechange" + }, + { + "label": ".handleSubmit()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L167", + "community": 447, + "norm_label": ".handlesubmit()", + "id": "views_loginview_loginview_handlesubmit" + }, + { + "label": "WelcomeView.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", + "source_location": "L1", + "community": 603, + "norm_label": "welcomeview.swift", + "id": "apps_rebreak_magic_mac_sources_views_welcomeview_swift" + }, { "label": "WelcomeView", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", "source_location": "L3", - "community": 454, + "community": 603, "norm_label": "welcomeview", "id": "views_welcomeview_welcomeview" }, @@ -85984,7 +120421,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", "source_location": "L7", - "community": 454, + "community": 603, "norm_label": "string", "id": "apps_rebreak_magic_mac_sources_views_welcomeview_swift_string" }, @@ -85993,7 +120430,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", "source_location": "L8", - "community": 454, + "community": 603, "norm_label": "task", "id": "apps_rebreak_magic_mac_sources_views_welcomeview_swift_task" }, @@ -86002,7 +120439,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", "source_location": "L8", - "community": 454, + "community": 603, "norm_label": "void", "id": "apps_rebreak_magic_mac_sources_views_welcomeview_swift_void" }, @@ -86011,7 +120448,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", "source_location": "L8", - "community": 454, + "community": 603, "norm_label": "never", "id": "apps_rebreak_magic_mac_sources_views_welcomeview_swift_never" }, @@ -86020,7 +120457,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", "source_location": "L66", - "community": 454, + "community": 603, "norm_label": ".handlenext()", "id": "views_welcomeview_welcomeview_handlenext" }, @@ -86029,7 +120466,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", "source_location": "L80", - "community": 454, + "community": 603, "norm_label": ".devicecard()", "id": "views_welcomeview_welcomeview_devicecard" }, @@ -86038,7 +120475,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", "source_location": "L80", - "community": 454, + "community": 603, "norm_label": "devicestate", "id": "apps_rebreak_magic_mac_sources_views_welcomeview_swift_devicestate" }, @@ -86047,10 +120484,19 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", "source_location": "L162", - "community": 454, + "community": 603, "norm_label": ".startdetection()", "id": "views_welcomeview_welcomeview_startdetection" }, + { + "label": "PreflightView.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/PreflightView.swift", + "source_location": "L1", + "community": 50, + "norm_label": "preflightview.swift", + "id": "apps_rebreak_magic_mac_sources_views_preflightview_swift" + }, { "label": "PreflightView", "file_type": "code", @@ -86132,6 +120578,159 @@ "norm_label": "string", "id": "apps_rebreak_magic_mac_sources_views_helpview_swift_string" }, + { + "label": "ManageBindingsView.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L1", + "community": 334, + "norm_label": "managebindingsview.swift", + "id": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift" + }, + { + "label": "ManageBindingsView", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L3", + "community": 334, + "norm_label": "managebindingsview", + "id": "views_managebindingsview_managebindingsview" + }, + { + "label": "MagicDevice", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L4", + "community": 334, + "norm_label": "magicdevice", + "id": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_magicdevice" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L6", + "community": 334, + "norm_label": "string", + "id": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_string" + }, + { + "label": "Void", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L8", + "community": 334, + "norm_label": "void", + "id": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_void" + }, + { + "label": ".loadDevices()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L80", + "community": 334, + "norm_label": ".loaddevices()", + "id": "views_managebindingsview_managebindingsview_loaddevices" + }, + { + "label": ".handleDeviceAction()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L95", + "community": 334, + "norm_label": ".handledeviceaction()", + "id": "views_managebindingsview_managebindingsview_handledeviceaction" + }, + { + "label": "DeviceAction", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L95", + "community": 334, + "norm_label": "deviceaction", + "id": "deviceaction" + }, + { + "label": "DeviceAction", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L114", + "community": 334, + "norm_label": "deviceaction", + "id": "views_managebindingsview_deviceaction" + }, + { + "label": "requestRelease", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L115", + "community": 334, + "norm_label": "requestrelease", + "id": "views_managebindingsview_deviceaction_requestrelease" + }, + { + "label": "cancelRelease", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L116", + "community": 334, + "norm_label": "cancelrelease", + "id": "views_managebindingsview_deviceaction_cancelrelease" + }, + { + "label": "DeviceRow", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L119", + "community": 334, + "norm_label": "devicerow", + "id": "views_managebindingsview_devicerow" + }, + { + "label": "Timer", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L124", + "community": 334, + "norm_label": "timer", + "id": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_timer" + }, + { + "label": ".formatDate()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L212", + "community": 334, + "norm_label": ".formatdate()", + "id": "views_managebindingsview_devicerow_formatdate" + }, + { + "label": "Date", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L212", + "community": 334, + "norm_label": "date", + "id": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_date" + }, + { + "label": ".updateTimeRemaining()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L220", + "community": 334, + "norm_label": ".updatetimeremaining()", + "id": "views_managebindingsview_devicerow_updatetimeremaining" + }, + { + "label": "ConfigureView.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ConfigureView.swift", + "source_location": "L1", + "community": 420, + "norm_label": "configureview.swift", + "id": "apps_rebreak_magic_mac_sources_views_configureview_swift" + }, { "label": "ConfigureView", "file_type": "code", @@ -86208,7 +120807,7 @@ "label": ".waitForLockProfileInstalled()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/ConfigureView.swift", - "source_location": "L375", + "source_location": "L378", "community": 420, "norm_label": ".waitforlockprofileinstalled()", "id": "views_configureview_configureview_waitforlockprofileinstalled" @@ -86217,7 +120816,7 @@ "label": "Int", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/ConfigureView.swift", - "source_location": "L375", + "source_location": "L378", "community": 420, "norm_label": "int", "id": "apps_rebreak_magic_mac_sources_views_configureview_swift_int" @@ -86226,7 +120825,7 @@ "label": "UInt64", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/ConfigureView.swift", - "source_location": "L375", + "source_location": "L378", "community": 420, "norm_label": "uint64", "id": "apps_rebreak_magic_mac_sources_views_configureview_swift_uint64" @@ -86235,7 +120834,7 @@ "label": "Bool", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/ConfigureView.swift", - "source_location": "L375", + "source_location": "L378", "community": 420, "norm_label": "bool", "id": "apps_rebreak_magic_mac_sources_views_configureview_swift_bool" @@ -86244,7 +120843,7 @@ "label": ".waitForAppInstalled()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/ConfigureView.swift", - "source_location": "L386", + "source_location": "L389", "community": 420, "norm_label": ".waitforappinstalled()", "id": "views_configureview_configureview_waitforappinstalled" @@ -86253,7 +120852,7 @@ "label": ".waitForFreshBackendStatus()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/ConfigureView.swift", - "source_location": "L397", + "source_location": "L400", "community": 420, "norm_label": ".waitforfreshbackendstatus()", "id": "views_configureview_configureview_waitforfreshbackendstatus" @@ -86316,7 +120915,7 @@ "label": ".startSupervise()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/SuperviseView.swift", - "source_location": "L121", + "source_location": "L129", "community": 609, "norm_label": ".startsupervise()", "id": "views_superviseview_superviseview_startsupervise" @@ -86366,12 +120965,21 @@ "norm_label": "bool", "id": "apps_rebreak_magic_mac_sources_views_doneview_swift_bool" }, + { + "label": "StepIndicator.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/StepIndicator.swift", + "source_location": "L1", + "community": 927, + "norm_label": "stepindicator.swift", + "id": "apps_rebreak_magic_mac_sources_views_stepindicator_swift" + }, { "label": "StepIndicator", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/StepIndicator.swift", "source_location": "L3", - "community": 50, + "community": 927, "norm_label": "stepindicator", "id": "views_stepindicator_stepindicator" }, @@ -86380,16 +120988,25 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/StepIndicator.swift", "source_location": "L4", - "community": 50, + "community": 927, "norm_label": "wizardstep", "id": "apps_rebreak_magic_mac_sources_views_stepindicator_swift_wizardstep" }, + { + "label": ".color()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/StepIndicator.swift", + "source_location": "L25", + "community": 927, + "norm_label": ".color()", + "id": "views_stepindicator_stepindicator_color" + }, { "label": "Color", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/StepIndicator.swift", "source_location": "L25", - "community": 50, + "community": 927, "norm_label": "color", "id": "color" }, @@ -86415,11 +121032,20 @@ "label": "NSImage", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Views/ContentView.swift", - "source_location": "L89", + "source_location": "L123", "community": 50, "norm_label": "nsimage", "id": "nsimage" }, + { + "label": "ProcessRunner.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/ProcessRunner.swift", + "source_location": "L1", + "community": 254, + "norm_label": "processrunner.swift", + "id": "apps_rebreak_magic_mac_sources_services_processrunner_swift" + }, { "label": "LineBuffer", "file_type": "code", @@ -86483,6 +121109,15 @@ "norm_label": "nonzeroexit", "id": "services_processrunner_processrunnererror_nonzeroexit" }, + { + "label": "ProcessRunner", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/ProcessRunner.swift", + "source_location": "L33", + "community": 254, + "norm_label": "processrunner", + "id": "services_processrunner_processrunner" + }, { "label": "Result", "file_type": "code", @@ -86528,6 +121163,285 @@ "norm_label": "void", "id": "apps_rebreak_magic_mac_sources_services_processrunner_swift_void" }, + { + "label": "MagicAPIClient.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L1", + "community": 67, + "norm_label": "magicapiclient.swift", + "id": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift" + }, + { + "label": "MagicRegistration", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L4", + "community": 67, + "norm_label": "magicregistration", + "id": "services_magicapiclient_magicregistration" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L5", + "community": 67, + "norm_label": "string", + "id": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L8", + "community": 67, + "norm_label": "bool", + "id": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_bool" + }, + { + "label": "MagicDeviceSource", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L11", + "community": 67, + "norm_label": "magicdevicesource", + "id": "services_magicapiclient_magicdevicesource" + }, + { + "label": "magic", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L12", + "community": 67, + "norm_label": "magic", + "id": "services_magicapiclient_magicdevicesource_magic" + }, + { + "label": "locked", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L13", + "community": 67, + "norm_label": "locked", + "id": "services_magicapiclient_magicdevicesource_locked" + }, + { + "label": "protected", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L14", + "community": 67, + "norm_label": "protected", + "id": "services_magicapiclient_magicdevicesource_protected" + }, + { + "label": "MagicDevice", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L17", + "community": 67, + "norm_label": "magicdevice", + "id": "services_magicapiclient_magicdevice" + }, + { + "label": "Date", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L32", + "community": 67, + "norm_label": "date", + "id": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_date" + }, + { + "label": "MagicReleaseResponse", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L46", + "community": 67, + "norm_label": "magicreleaseresponse", + "id": "services_magicapiclient_magicreleaseresponse" + }, + { + "label": "parseISO()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L56", + "community": 67, + "norm_label": "parseiso()", + "id": "services_magicapiclient_parseiso" + }, + { + "label": "MagicUserProfile", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L66", + "community": 67, + "norm_label": "magicuserprofile", + "id": "services_magicapiclient_magicuserprofile" + }, + { + "label": "MagicError", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L72", + "community": 67, + "norm_label": "magicerror", + "id": "services_magicapiclient_magicerror" + }, + { + "label": "unauthorized", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L73", + "community": 67, + "norm_label": "unauthorized", + "id": "services_magicapiclient_magicerror_unauthorized" + }, + { + "label": "limitReached", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L74", + "community": 67, + "norm_label": "limitreached", + "id": "services_magicapiclient_magicerror_limitreached" + }, + { + "label": "networkError", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L75", + "community": 67, + "norm_label": "networkerror", + "id": "services_magicapiclient_magicerror_networkerror" + }, + { + "label": "httpError", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L76", + "community": 67, + "norm_label": "httperror", + "id": "services_magicapiclient_magicerror_httperror" + }, + { + "label": "configMissing", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L77", + "community": 67, + "norm_label": "configmissing", + "id": "services_magicapiclient_magicerror_configmissing" + }, + { + "label": "decodingError", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L78", + "community": 67, + "norm_label": "decodingerror", + "id": "services_magicapiclient_magicerror_decodingerror" + }, + { + "label": "MagicAPIClient", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L100", + "community": 67, + "norm_label": "magicapiclient", + "id": "services_magicapiclient_magicapiclient" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L109", + "community": 67, + "norm_label": ".init()", + "id": "services_magicapiclient_magicapiclient_init" + }, + { + "label": "Config", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L113", + "community": 67, + "norm_label": "config", + "id": "services_magicapiclient_config" + }, + { + "label": ".register()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L146", + "community": 67, + "norm_label": ".register()", + "id": "services_magicapiclient_magicapiclient_register" + }, + { + "label": ".listDevices()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L209", + "community": 67, + "norm_label": ".listdevices()", + "id": "services_magicapiclient_magicapiclient_listdevices" + }, + { + "label": ".requestRelease()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L248", + "community": 67, + "norm_label": ".requestrelease()", + "id": "services_magicapiclient_magicapiclient_requestrelease" + }, + { + "label": ".cancelRelease()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L290", + "community": 67, + "norm_label": ".cancelrelease()", + "id": "services_magicapiclient_magicapiclient_cancelrelease" + }, + { + "label": ".fetchMe()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L317", + "community": 67, + "norm_label": ".fetchme()", + "id": "services_magicapiclient_magicapiclient_fetchme" + }, + { + "label": ".status()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L354", + "community": 67, + "norm_label": ".status()", + "id": "services_magicapiclient_magicapiclient_status" + }, + { + "label": ".downloadProfile()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L385", + "community": 67, + "norm_label": ".downloadprofile()", + "id": "services_magicapiclient_magicapiclient_downloadprofile" + }, + { + "label": "URL", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L385", + "community": 67, + "norm_label": "url", + "id": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_url" + }, { "label": "MDMClient.swift", "file_type": "code", @@ -86673,11 +121587,20 @@ "id": "services_mdmclient_mdmclient_installapp" }, { - "label": ".queryManagedAppList()", + "label": ".removeApp()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMClient.swift", "source_location": "L148", "community": 122, + "norm_label": ".removeapp()", + "id": "services_mdmclient_mdmclient_removeapp" + }, + { + "label": ".queryManagedAppList()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMClient.swift", + "source_location": "L159", + "community": 122, "norm_label": ".querymanagedapplist()", "id": "services_mdmclient_mdmclient_querymanagedapplist" }, @@ -86685,7 +121608,7 @@ "label": ".checkAppIsManaged()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMClient.swift", - "source_location": "L159", + "source_location": "L170", "community": 122, "norm_label": ".checkappismanaged()", "id": "services_mdmclient_mdmclient_checkappismanaged" @@ -86694,7 +121617,7 @@ "label": "Int", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMClient.swift", - "source_location": "L159", + "source_location": "L170", "community": 122, "norm_label": "int", "id": "apps_rebreak_magic_mac_sources_services_mdmclient_swift_int" @@ -86703,7 +121626,7 @@ "label": "Bool", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMClient.swift", - "source_location": "L159", + "source_location": "L170", "community": 122, "norm_label": "bool", "id": "apps_rebreak_magic_mac_sources_services_mdmclient_swift_bool" @@ -86712,7 +121635,7 @@ "label": ".setSupervisedMode()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMClient.swift", - "source_location": "L177", + "source_location": "L188", "community": 122, "norm_label": ".setsupervisedmode()", "id": "services_mdmclient_mdmclient_setsupervisedmode" @@ -86721,7 +121644,7 @@ "label": ".installLockProfile()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMClient.swift", - "source_location": "L196", + "source_location": "L207", "community": 122, "norm_label": ".installlockprofile()", "id": "services_mdmclient_mdmclient_installlockprofile" @@ -86730,11 +121653,20 @@ "label": ".ping()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMClient.swift", - "source_location": "L212", + "source_location": "L223", "community": 122, "norm_label": ".ping()", "id": "services_mdmclient_mdmclient_ping" }, + { + "label": "SuperviseRunner.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/SuperviseRunner.swift", + "source_location": "L1", + "community": 254, + "norm_label": "superviserunner.swift", + "id": "apps_rebreak_magic_mac_sources_services_superviserunner_swift" + }, { "label": "SuperviseRunner", "file_type": "code", @@ -86829,7 +121761,7 @@ "label": ".unsupervise()", "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/SuperviseRunner.swift", - "source_location": "L55", + "source_location": "L57", "community": 254, "norm_label": ".unsupervise()", "id": "services_superviserunner_superviserunner_unsupervise" @@ -86875,7 +121807,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L1", - "community": 285, + "community": 109, "norm_label": "mdmstatus.swift", "id": "apps_rebreak_magic_mac_sources_services_mdmstatus_swift" }, @@ -86884,7 +121816,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L9", - "community": 285, + "community": 109, "norm_label": "enrollmentstatus", "id": "services_mdmstatus_enrollmentstatus" }, @@ -86893,7 +121825,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L11", - "community": 285, + "community": 109, "norm_label": "bool", "id": "apps_rebreak_magic_mac_sources_services_mdmstatus_swift_bool" }, @@ -86902,7 +121834,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L14", - "community": 285, + "community": 109, "norm_label": "date", "id": "apps_rebreak_magic_mac_sources_services_mdmstatus_swift_date" }, @@ -86911,7 +121843,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L18", - "community": 285, + "community": 109, "norm_label": "int", "id": "apps_rebreak_magic_mac_sources_services_mdmstatus_swift_int" }, @@ -86920,7 +121852,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L32", - "community": 285, + "community": 109, "norm_label": "mdmstatuserror", "id": "services_mdmstatus_mdmstatuserror" }, @@ -86929,7 +121861,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L33", - "community": 285, + "community": 109, "norm_label": "sshfailed", "id": "services_mdmstatus_mdmstatuserror_sshfailed" }, @@ -86938,7 +121870,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L34", - "community": 285, + "community": 109, "norm_label": "parseerror", "id": "services_mdmstatus_mdmstatuserror_parseerror" }, @@ -86947,7 +121879,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L36", - "community": 285, + "community": 109, "norm_label": "string", "id": "apps_rebreak_magic_mac_sources_services_mdmstatus_swift_string" }, @@ -86956,7 +121888,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L44", - "community": 285, + "community": 109, "norm_label": "mdmstatus", "id": "services_mdmstatus_mdmstatus" }, @@ -86965,7 +121897,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L51", - "community": 285, + "community": 109, "norm_label": ".query()", "id": "services_mdmstatus_mdmstatus_query" }, @@ -86974,7 +121906,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L103", - "community": 285, + "community": 109, "norm_label": ".readcommandresult()", "id": "services_mdmstatus_mdmstatus_readcommandresult" }, @@ -86983,10 +121915,361 @@ "file_type": "code", "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", "source_location": "L123", - "community": 285, + "community": 109, "norm_label": ".parsetimestamp()", "id": "services_mdmstatus_mdmstatus_parsetimestamp" }, + { + "label": "AuthService.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L1", + "community": 81, + "norm_label": "authservice.swift", + "id": "apps_rebreak_magic_mac_sources_services_authservice_swift" + }, + { + "label": "AuthSession", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L8", + "community": 81, + "norm_label": "authsession", + "id": "services_authservice_authsession" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L10", + "community": 81, + "norm_label": "string", + "id": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" + }, + { + "label": "Date", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L16", + "community": 81, + "norm_label": "date", + "id": "apps_rebreak_magic_mac_sources_services_authservice_swift_date" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L21", + "community": 81, + "norm_label": "bool", + "id": "apps_rebreak_magic_mac_sources_services_authservice_swift_bool" + }, + { + "label": "AuthError", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L27", + "community": 81, + "norm_label": "autherror", + "id": "services_authservice_autherror" + }, + { + "label": "invalidCode", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L28", + "community": 81, + "norm_label": "invalidcode", + "id": "services_authservice_autherror_invalidcode" + }, + { + "label": "codeExpired", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L29", + "community": 81, + "norm_label": "codeexpired", + "id": "services_authservice_autherror_codeexpired" + }, + { + "label": "codeUsed", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L30", + "community": 81, + "norm_label": "codeused", + "id": "services_authservice_autherror_codeused" + }, + { + "label": "networkError", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L31", + "community": 81, + "norm_label": "networkerror", + "id": "services_authservice_autherror_networkerror" + }, + { + "label": "configMissing", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L32", + "community": 81, + "norm_label": "configmissing", + "id": "services_authservice_autherror_configmissing" + }, + { + "label": "keychainError", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L33", + "community": 81, + "norm_label": "keychainerror", + "id": "services_authservice_autherror_keychainerror" + }, + { + "label": "tokenExpired", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L34", + "community": 81, + "norm_label": "tokenexpired", + "id": "services_authservice_autherror_tokenexpired" + }, + { + "label": "refreshFailed", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L35", + "community": 81, + "norm_label": "refreshfailed", + "id": "services_authservice_autherror_refreshfailed" + }, + { + "label": "PairRedeemResponseEnvelope", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L59", + "community": 81, + "norm_label": "pairredeemresponseenvelope", + "id": "services_authservice_pairredeemresponseenvelope" + }, + { + "label": "PairRedeemResponseData", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L61", + "community": 81, + "norm_label": "pairredeemresponsedata", + "id": "pairredeemresponsedata" + }, + { + "label": "PairRedeemResponseData", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L64", + "community": 81, + "norm_label": "pairredeemresponsedata", + "id": "services_authservice_pairredeemresponsedata" + }, + { + "label": "AuthService", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L74", + "community": 81, + "norm_label": "authservice", + "id": "services_authservice_authservice" + }, + { + "label": ".init()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L85", + "community": 81, + "norm_label": ".init()", + "id": "services_authservice_authservice_init" + }, + { + "label": "Config", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L89", + "community": 81, + "norm_label": "config", + "id": "services_authservice_config" + }, + { + "label": ".loadBackendUrl()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L98", + "community": 81, + "norm_label": ".loadbackendurl()", + "id": "services_authservice_authservice_loadbackendurl" + }, + { + "label": ".signInWithPairingCode()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L116", + "community": 81, + "norm_label": ".signinwithpairingcode()", + "id": "services_authservice_authservice_signinwithpairingcode" + }, + { + "label": ".signOut()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L173", + "community": 81, + "norm_label": ".signout()", + "id": "services_authservice_authservice_signout" + }, + { + "label": ".currentSession()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L180", + "community": 81, + "norm_label": ".currentsession()", + "id": "services_authservice_authservice_currentsession" + }, + { + "label": ".refreshSessionIfNeeded()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L195", + "community": 81, + "norm_label": ".refreshsessionifneeded()", + "id": "services_authservice_authservice_refreshsessionifneeded" + }, + { + "label": ".saveToKeychain()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L204", + "community": 81, + "norm_label": ".savetokeychain()", + "id": "services_authservice_authservice_savetokeychain" + }, + { + "label": ".loadFromKeychain()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L219", + "community": 81, + "norm_label": ".loadfromkeychain()", + "id": "services_authservice_authservice_loadfromkeychain" + }, + { + "label": ".deleteFromKeychain()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L236", + "community": 81, + "norm_label": ".deletefromkeychain()", + "id": "services_authservice_authservice_deletefromkeychain" + }, + { + "label": "MacDeviceDetector.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L1", + "community": 607, + "norm_label": "macdevicedetector.swift", + "id": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift" + }, + { + "label": "MacDeviceInfo", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L6", + "community": 607, + "norm_label": "macdeviceinfo", + "id": "services_macdevicedetector_macdeviceinfo" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L7", + "community": 607, + "norm_label": "string", + "id": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift_string" + }, + { + "label": "MacDeviceDetectorError", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L13", + "community": 607, + "norm_label": "macdevicedetectorerror", + "id": "services_macdevicedetector_macdevicedetectorerror" + }, + { + "label": "platformUUIDNotFound", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L14", + "community": 607, + "norm_label": "platformuuidnotfound", + "id": "services_macdevicedetector_macdevicedetectorerror_platformuuidnotfound" + }, + { + "label": "sysctlFailed", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L15", + "community": 607, + "norm_label": "sysctlfailed", + "id": "services_macdevicedetector_macdevicedetectorerror_sysctlfailed" + }, + { + "label": "MacDeviceDetector", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L28", + "community": 607, + "norm_label": "macdevicedetector", + "id": "services_macdevicedetector_macdevicedetector" + }, + { + "label": ".platformUUID()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L31", + "community": 607, + "norm_label": ".platformuuid()", + "id": "services_macdevicedetector_macdevicedetector_platformuuid" + }, + { + "label": ".hwModel()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L56", + "community": 607, + "norm_label": ".hwmodel()", + "id": "services_macdevicedetector_macdevicedetector_hwmodel" + }, + { + "label": ".detect()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L69", + "community": 607, + "norm_label": ".detect()", + "id": "services_macdevicedetector_macdevicedetector_detect" + }, + { + "label": "DeviceDetector.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/DeviceDetector.swift", + "source_location": "L1", + "community": 109, + "norm_label": "devicedetector.swift", + "id": "apps_rebreak_magic_mac_sources_services_devicedetector_swift" + }, { "label": "DeviceDetector", "file_type": "code", @@ -87212,6 +122495,384 @@ "norm_label": ".removeallrebreakprofiles()", "id": "services_devicedetector_devicedetector_removeallrebreakprofiles" }, + { + "label": "MacProfileInstaller.swift", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L1", + "community": 438, + "norm_label": "macprofileinstaller.swift", + "id": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift" + }, + { + "label": "MacProfileInstaller", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L5", + "community": 438, + "norm_label": "macprofileinstaller", + "id": "services_macprofileinstaller_macprofileinstaller" + }, + { + "label": "InstallerError", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L7", + "community": 438, + "norm_label": "installererror", + "id": "services_macprofileinstaller_installererror" + }, + { + "label": "noRegistration", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L8", + "community": 438, + "norm_label": "noregistration", + "id": "services_macprofileinstaller_installererror_noregistration" + }, + { + "label": "downloadFailed", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L9", + "community": 438, + "norm_label": "downloadfailed", + "id": "services_macprofileinstaller_installererror_downloadfailed" + }, + { + "label": "installFailed", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L10", + "community": 438, + "norm_label": "installfailed", + "id": "services_macprofileinstaller_installererror_installfailed" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L12", + "community": 438, + "norm_label": "string", + "id": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift_string" + }, + { + "label": ".downloadAndInstall()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L30", + "community": 438, + "norm_label": ".downloadandinstall()", + "id": "services_macprofileinstaller_macprofileinstaller_downloadandinstall" + }, + { + "label": "MagicRegistration", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L30", + "community": 438, + "norm_label": "magicregistration", + "id": "magicregistration" + }, + { + "label": ".isInstalled()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L57", + "community": 438, + "norm_label": ".isinstalled()", + "id": "services_macprofileinstaller_macprofileinstaller_isinstalled" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L57", + "community": 438, + "norm_label": "bool", + "id": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift_bool" + }, + { + "label": "remove()", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L75", + "community": 438, + "norm_label": "remove()", + "id": "services_macprofileinstaller_remove" + }, + { + "label": "package.json", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L1", + "community": 77, + "norm_label": "package.json", + "id": "apps_marketing_package_json" + }, + { + "label": "name", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L2", + "community": 77, + "norm_label": "name", + "id": "marketing_package_name" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L3", + "community": 77, + "norm_label": "type", + "id": "marketing_package_type" + }, + { + "label": "private", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L4", + "community": 77, + "norm_label": "private", + "id": "marketing_package_private" + }, + { + "label": "version", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L5", + "community": 77, + "norm_label": "version", + "id": "marketing_package_version" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L6", + "community": 77, + "norm_label": "scripts", + "id": "marketing_package_scripts" + }, + { + "label": "dev", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L7", + "community": 77, + "norm_label": "dev", + "id": "marketing_package_scripts_dev" + }, + { + "label": "build", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L8", + "community": 77, + "norm_label": "build", + "id": "marketing_package_scripts_build" + }, + { + "label": "generate", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L9", + "community": 77, + "norm_label": "generate", + "id": "marketing_package_scripts_generate" + }, + { + "label": "preview", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L10", + "community": 77, + "norm_label": "preview", + "id": "marketing_package_scripts_preview" + }, + { + "label": "postinstall", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L11", + "community": 77, + "norm_label": "postinstall", + "id": "marketing_package_scripts_postinstall" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L13", + "community": 77, + "norm_label": "dependencies", + "id": "marketing_package_dependencies" + }, + { + "label": "@iconify-json/heroicons", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L14", + "community": 77, + "norm_label": "@iconify-json/heroicons", + "id": "marketing_package_dependencies_iconify_json_heroicons" + }, + { + "label": "@nuxt/fonts", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L15", + "community": 77, + "norm_label": "@nuxt/fonts", + "id": "marketing_package_dependencies_nuxt_fonts" + }, + { + "label": "@nuxt/icon", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L16", + "community": 77, + "norm_label": "@nuxt/icon", + "id": "marketing_package_dependencies_nuxt_icon" + }, + { + "label": "@nuxt/image", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L17", + "community": 77, + "norm_label": "@nuxt/image", + "id": "marketing_package_dependencies_nuxt_image" + }, + { + "label": "@nuxt/ui", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L18", + "community": 77, + "norm_label": "@nuxt/ui", + "id": "marketing_package_dependencies_nuxt_ui" + }, + { + "label": "@nuxtjs/i18n", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L19", + "community": 77, + "norm_label": "@nuxtjs/i18n", + "id": "marketing_package_dependencies_nuxtjs_i18n" + }, + { + "label": "@vueuse/motion", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L20", + "community": 77, + "norm_label": "@vueuse/motion", + "id": "marketing_package_dependencies_vueuse_motion" + }, + { + "label": "@vueuse/nuxt", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L21", + "community": 77, + "norm_label": "@vueuse/nuxt", + "id": "marketing_package_dependencies_vueuse_nuxt" + }, + { + "label": "chart.js", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L22", + "community": 77, + "norm_label": "chart.js", + "id": "marketing_package_dependencies_chart_js" + }, + { + "label": "nuxt", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L23", + "community": 77, + "norm_label": "nuxt", + "id": "marketing_package_dependencies_nuxt" + }, + { + "label": "tailwindcss", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L24", + "community": 77, + "norm_label": "tailwindcss", + "id": "marketing_package_dependencies_tailwindcss" + }, + { + "label": "vue", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L25", + "community": 77, + "norm_label": "vue", + "id": "marketing_package_dependencies_vue" + }, + { + "label": "vue-chartjs", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L26", + "community": 77, + "norm_label": "vue-chartjs", + "id": "marketing_package_dependencies_vue_chartjs" + }, + { + "label": "vue-router", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L27", + "community": 77, + "norm_label": "vue-router", + "id": "marketing_package_dependencies_vue_router" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L29", + "community": 77, + "norm_label": "devdependencies", + "id": "marketing_package_devdependencies" + }, + { + "label": "@iconify-json/simple-icons", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L30", + "community": 77, + "norm_label": "@iconify-json/simple-icons", + "id": "marketing_package_devdependencies_iconify_json_simple_icons" + }, + { + "label": "@nuxt/devtools", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L31", + "community": 77, + "norm_label": "@nuxt/devtools", + "id": "marketing_package_devdependencies_nuxt_devtools" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": "apps/marketing/package.json", + "source_location": "L32", + "community": 77, + "norm_label": "typescript", + "id": "marketing_package_devdependencies_typescript" + }, { "label": "nuxt.config.ts", "file_type": "code", @@ -87221,6 +122882,42 @@ "norm_label": "nuxt.config.ts", "id": "apps_marketing_nuxt_config_ts" }, + { + "label": "useOS.ts", + "file_type": "code", + "source_file": "apps/marketing/app/composables/useOS.ts", + "source_location": "L1", + "community": 695, + "norm_label": "useos.ts", + "id": "apps_marketing_app_composables_useos_ts" + }, + { + "label": "DetectedOS", + "file_type": "code", + "source_file": "apps/marketing/app/composables/useOS.ts", + "source_location": "L1", + "community": 695, + "norm_label": "detectedos", + "id": "composables_useos_detectedos" + }, + { + "label": "useOS()", + "file_type": "code", + "source_file": "apps/marketing/app/composables/useOS.ts", + "source_location": "L7", + "community": 695, + "norm_label": "useos()", + "id": "composables_useos_useos" + }, + { + "label": "useViewportHeight.ts", + "file_type": "code", + "source_file": "apps/marketing/app/composables/useViewportHeight.ts", + "source_location": "L1", + "community": 830, + "norm_label": "useviewportheight.ts", + "id": "apps_marketing_app_composables_useviewportheight_ts" + }, { "label": "useViewportHeight()", "file_type": "code", @@ -87235,7 +122932,7 @@ "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", "source_location": "L1", - "community": 863, + "community": 1045, "norm_label": "de.json", "id": "apps_marketing_app_locales_de_json" }, @@ -87244,16 +122941,34 @@ "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", "source_location": "L2", - "community": 863, + "community": 1045, "norm_label": "nav", "id": "locales_de_nav" }, + { + "label": "pricing", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L3", + "community": 1045, + "norm_label": "pricing", + "id": "locales_de_nav_pricing" + }, + { + "label": "resources", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L4", + "community": 1045, + "norm_label": "resources", + "id": "locales_de_nav_resources" + }, { "label": "login", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", "source_location": "L5", - "community": 863, + "community": 1045, "norm_label": "login", "id": "locales_de_nav_login" }, @@ -87262,7 +122977,7 @@ "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", "source_location": "L6", - "community": 863, + "community": 1045, "norm_label": "download_app", "id": "locales_de_nav_download_app" }, @@ -87321,11 +123036,20 @@ "id": "locales_de_landing_cta_start" }, { - "label": "stat_affected", + "label": "cta_subline", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", "source_location": "L14", "community": 16, + "norm_label": "cta_subline", + "id": "locales_de_landing_cta_subline" + }, + { + "label": "stat_affected", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L15", + "community": 16, "norm_label": "stat_affected", "id": "locales_de_landing_stat_affected" }, @@ -87333,7 +123057,7 @@ "label": "stat_blocked", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L15", + "source_location": "L16", "community": 16, "norm_label": "stat_blocked", "id": "locales_de_landing_stat_blocked" @@ -87342,7 +123066,7 @@ "label": "stat_from", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L16", + "source_location": "L17", "community": 16, "norm_label": "stat_from", "id": "locales_de_landing_stat_from" @@ -87351,7 +123075,7 @@ "label": "more_info", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L17", + "source_location": "L18", "community": 16, "norm_label": "more_info", "id": "locales_de_landing_more_info" @@ -87360,7 +123084,7 @@ "label": "blocker_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L18", + "source_location": "L19", "community": 16, "norm_label": "blocker_badge", "id": "locales_de_landing_blocker_badge" @@ -87369,7 +123093,7 @@ "label": "blocker_title_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L19", + "source_location": "L20", "community": 16, "norm_label": "blocker_title_domains", "id": "locales_de_landing_blocker_title_domains" @@ -87378,7 +123102,7 @@ "label": "blocker_title_activated", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L20", + "source_location": "L21", "community": 16, "norm_label": "blocker_title_activated", "id": "locales_de_landing_blocker_title_activated" @@ -87387,7 +123111,7 @@ "label": "blocker_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L21", + "source_location": "L22", "community": 16, "norm_label": "blocker_desc", "id": "locales_de_landing_blocker_desc" @@ -87396,7 +123120,7 @@ "label": "blocker_feat_platforms", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L22", + "source_location": "L23", "community": 16, "norm_label": "blocker_feat_platforms", "id": "locales_de_landing_blocker_feat_platforms" @@ -87405,7 +123129,7 @@ "label": "blocker_feat_updated", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L23", + "source_location": "L24", "community": 16, "norm_label": "blocker_feat_updated", "id": "locales_de_landing_blocker_feat_updated" @@ -87414,7 +123138,7 @@ "label": "blocker_feat_custom", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L24", + "source_location": "L25", "community": 16, "norm_label": "blocker_feat_custom", "id": "locales_de_landing_blocker_feat_custom" @@ -87423,7 +123147,7 @@ "label": "blocker_feat_cooldown", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L25", + "source_location": "L26", "community": 16, "norm_label": "blocker_feat_cooldown", "id": "locales_de_landing_blocker_feat_cooldown" @@ -87432,7 +123156,7 @@ "label": "oasis_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L26", + "source_location": "L27", "community": 16, "norm_label": "oasis_badge", "id": "locales_de_landing_oasis_badge" @@ -87441,7 +123165,7 @@ "label": "oasis_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L27", + "source_location": "L28", "community": 16, "norm_label": "oasis_title", "id": "locales_de_landing_oasis_title" @@ -87450,7 +123174,7 @@ "label": "oasis_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L28", + "source_location": "L29", "community": 16, "norm_label": "oasis_subtitle", "id": "locales_de_landing_oasis_subtitle" @@ -87459,7 +123183,7 @@ "label": "oasis_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L29", + "source_location": "L30", "community": 16, "norm_label": "oasis_desc", "id": "locales_de_landing_oasis_desc" @@ -87468,7 +123192,7 @@ "label": "oasis_new_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L30", + "source_location": "L31", "community": 16, "norm_label": "oasis_new_domains", "id": "locales_de_landing_oasis_new_domains" @@ -87477,7 +123201,7 @@ "label": "oasis_offshore", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L31", + "source_location": "L32", "community": 16, "norm_label": "oasis_offshore", "id": "locales_de_landing_oasis_offshore" @@ -87486,7 +123210,7 @@ "label": "oasis_updated", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L32", + "source_location": "L33", "community": 16, "norm_label": "oasis_updated", "id": "locales_de_landing_oasis_updated" @@ -87495,8 +123219,8 @@ "label": "streak_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L33", - "community": 8, + "source_location": "L34", + "community": 53, "norm_label": "streak_badge", "id": "locales_de_landing_streak_badge" }, @@ -87504,7 +123228,7 @@ "label": "streak_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L34", + "source_location": "L35", "community": 16, "norm_label": "streak_title", "id": "locales_de_landing_streak_title" @@ -87513,7 +123237,7 @@ "label": "streak_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L35", + "source_location": "L36", "community": 16, "norm_label": "streak_subtitle", "id": "locales_de_landing_streak_subtitle" @@ -87522,7 +123246,7 @@ "label": "streak_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L36", + "source_location": "L37", "community": 16, "norm_label": "streak_desc", "id": "locales_de_landing_streak_desc" @@ -87531,7 +123255,7 @@ "label": "streak_days_free", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L37", + "source_location": "L38", "community": 16, "norm_label": "streak_days_free", "id": "locales_de_landing_streak_days_free" @@ -87540,7 +123264,7 @@ "label": "streak_saved", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L38", + "source_location": "L39", "community": 16, "norm_label": "streak_saved", "id": "locales_de_landing_streak_saved" @@ -87549,7 +123273,7 @@ "label": "crisis_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L39", + "source_location": "L40", "community": 16, "norm_label": "crisis_badge", "id": "locales_de_landing_crisis_badge" @@ -87558,7 +123282,7 @@ "label": "crisis_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L40", + "source_location": "L41", "community": 16, "norm_label": "crisis_title", "id": "locales_de_landing_crisis_title" @@ -87567,7 +123291,7 @@ "label": "crisis_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L41", + "source_location": "L42", "community": 16, "norm_label": "crisis_subtitle", "id": "locales_de_landing_crisis_subtitle" @@ -87576,7 +123300,7 @@ "label": "sos_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L42", + "source_location": "L43", "community": 16, "norm_label": "sos_title", "id": "locales_de_landing_sos_title" @@ -87585,7 +123309,7 @@ "label": "sos_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L43", + "source_location": "L44", "community": 16, "norm_label": "sos_subtitle", "id": "locales_de_landing_sos_subtitle" @@ -87594,7 +123318,7 @@ "label": "sos_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L44", + "source_location": "L45", "community": 16, "norm_label": "sos_desc", "id": "locales_de_landing_sos_desc" @@ -87603,7 +123327,7 @@ "label": "sos_angry", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L45", + "source_location": "L46", "community": 16, "norm_label": "sos_angry", "id": "locales_de_landing_sos_angry" @@ -87612,7 +123336,7 @@ "label": "sos_sad", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L46", + "source_location": "L47", "community": 16, "norm_label": "sos_sad", "id": "locales_de_landing_sos_sad" @@ -87621,7 +123345,7 @@ "label": "sos_stressed", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L47", + "source_location": "L48", "community": 16, "norm_label": "sos_stressed", "id": "locales_de_landing_sos_stressed" @@ -87630,7 +123354,7 @@ "label": "sos_empty", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L48", + "source_location": "L49", "community": 16, "norm_label": "sos_empty", "id": "locales_de_landing_sos_empty" @@ -87639,7 +123363,7 @@ "label": "breathing_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L49", + "source_location": "L50", "community": 16, "norm_label": "breathing_title", "id": "locales_de_landing_breathing_title" @@ -87648,7 +123372,7 @@ "label": "breathing_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L50", + "source_location": "L51", "community": 16, "norm_label": "breathing_subtitle", "id": "locales_de_landing_breathing_subtitle" @@ -87657,7 +123381,7 @@ "label": "breathing_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L51", + "source_location": "L52", "community": 16, "norm_label": "breathing_desc", "id": "locales_de_landing_breathing_desc" @@ -87666,7 +123390,7 @@ "label": "breathing_breathe", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L52", + "source_location": "L53", "community": 16, "norm_label": "breathing_breathe", "id": "locales_de_landing_breathing_breathe" @@ -87675,7 +123399,7 @@ "label": "breathing_inhale", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L53", + "source_location": "L54", "community": 16, "norm_label": "breathing_inhale", "id": "locales_de_landing_breathing_inhale" @@ -87684,7 +123408,7 @@ "label": "breathing_hold", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L54", + "source_location": "L55", "community": 16, "norm_label": "breathing_hold", "id": "locales_de_landing_breathing_hold" @@ -87693,7 +123417,7 @@ "label": "breathing_exhale", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L55", + "source_location": "L56", "community": 16, "norm_label": "breathing_exhale", "id": "locales_de_landing_breathing_exhale" @@ -87702,7 +123426,7 @@ "label": "coach_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L56", + "source_location": "L57", "community": 16, "norm_label": "coach_badge", "id": "locales_de_landing_coach_badge" @@ -87711,7 +123435,7 @@ "label": "coach_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L57", + "source_location": "L58", "community": 16, "norm_label": "coach_title", "id": "locales_de_landing_coach_title" @@ -87720,7 +123444,7 @@ "label": "coach_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L58", + "source_location": "L59", "community": 16, "norm_label": "coach_subtitle", "id": "locales_de_landing_coach_subtitle" @@ -87729,7 +123453,7 @@ "label": "coach_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L59", + "source_location": "L60", "community": 16, "norm_label": "coach_desc", "id": "locales_de_landing_coach_desc" @@ -87738,7 +123462,7 @@ "label": "coach_label", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L60", + "source_location": "L61", "community": 16, "norm_label": "coach_label", "id": "locales_de_landing_coach_label" @@ -87747,7 +123471,7 @@ "label": "founding_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L61", + "source_location": "L62", "community": 16, "norm_label": "founding_badge", "id": "locales_de_landing_founding_badge" @@ -87756,7 +123480,7 @@ "label": "founding_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L62", + "source_location": "L63", "community": 16, "norm_label": "founding_desc", "id": "locales_de_landing_founding_desc" @@ -87765,7 +123489,7 @@ "label": "founding_slots", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L63", + "source_location": "L64", "community": 16, "norm_label": "founding_slots", "id": "locales_de_landing_founding_slots" @@ -87774,7 +123498,7 @@ "label": "founding_cta", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L64", + "source_location": "L65", "community": 16, "norm_label": "founding_cta", "id": "locales_de_landing_founding_cta" @@ -87783,7 +123507,7 @@ "label": "mail_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L65", + "source_location": "L66", "community": 16, "norm_label": "mail_badge", "id": "locales_de_landing_mail_badge" @@ -87792,7 +123516,7 @@ "label": "mail_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L66", + "source_location": "L67", "community": 16, "norm_label": "mail_title", "id": "locales_de_landing_mail_title" @@ -87801,7 +123525,7 @@ "label": "mail_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L67", + "source_location": "L68", "community": 16, "norm_label": "mail_subtitle", "id": "locales_de_landing_mail_subtitle" @@ -87810,7 +123534,7 @@ "label": "mail_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L68", + "source_location": "L69", "community": 16, "norm_label": "mail_desc", "id": "locales_de_landing_mail_desc" @@ -87819,7 +123543,7 @@ "label": "mail_feat_providers", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L69", + "source_location": "L70", "community": 16, "norm_label": "mail_feat_providers", "id": "locales_de_landing_mail_feat_providers" @@ -87828,7 +123552,7 @@ "label": "mail_feat_intervals", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L70", + "source_location": "L71", "community": 16, "norm_label": "mail_feat_intervals", "id": "locales_de_landing_mail_feat_intervals" @@ -87837,7 +123561,7 @@ "label": "mail_feat_privacy", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L71", + "source_location": "L72", "community": 16, "norm_label": "mail_feat_privacy", "id": "locales_de_landing_mail_feat_privacy" @@ -87846,7 +123570,7 @@ "label": "mail_mock_blocked", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L72", + "source_location": "L73", "community": 16, "norm_label": "mail_mock_blocked", "id": "locales_de_landing_mail_mock_blocked" @@ -87855,7 +123579,7 @@ "label": "mail_mock_scanned", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L73", + "source_location": "L74", "community": 16, "norm_label": "mail_mock_scanned", "id": "locales_de_landing_mail_mock_scanned" @@ -87864,7 +123588,7 @@ "label": "mail_mock_rate", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L74", + "source_location": "L75", "community": 16, "norm_label": "mail_mock_rate", "id": "locales_de_landing_mail_mock_rate" @@ -87873,7 +123597,7 @@ "label": "mail_mock_accounts", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L75", + "source_location": "L76", "community": 16, "norm_label": "mail_mock_accounts", "id": "locales_de_landing_mail_mock_accounts" @@ -87882,16 +123606,115 @@ "label": "mail_mock_rhythm", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L76", + "source_location": "L77", "community": 16, "norm_label": "mail_mock_rhythm", "id": "locales_de_landing_mail_mock_rhythm" }, + { + "label": "magic_badge", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L78", + "community": 16, + "norm_label": "magic_badge", + "id": "locales_de_landing_magic_badge" + }, + { + "label": "magic_title", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L79", + "community": 16, + "norm_label": "magic_title", + "id": "locales_de_landing_magic_title" + }, + { + "label": "magic_subtitle", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L80", + "community": 16, + "norm_label": "magic_subtitle", + "id": "locales_de_landing_magic_subtitle" + }, + { + "label": "magic_desc", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L81", + "community": 16, + "norm_label": "magic_desc", + "id": "locales_de_landing_magic_desc" + }, + { + "label": "magic_feat_noreset", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L82", + "community": 16, + "norm_label": "magic_feat_noreset", + "id": "locales_de_landing_magic_feat_noreset" + }, + { + "label": "magic_feat_speed", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L83", + "community": 16, + "norm_label": "magic_feat_speed", + "id": "locales_de_landing_magic_feat_speed" + }, + { + "label": "magic_feat_lock", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L84", + "community": 16, + "norm_label": "magic_feat_lock", + "id": "locales_de_landing_magic_feat_lock" + }, + { + "label": "magic_feat_trustee", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L85", + "community": 16, + "norm_label": "magic_feat_trustee", + "id": "locales_de_landing_magic_feat_trustee" + }, + { + "label": "magic_cta", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L86", + "community": 16, + "norm_label": "magic_cta", + "id": "locales_de_landing_magic_cta" + }, + { + "label": "magic_cta_windows", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L87", + "community": 16, + "norm_label": "magic_cta_windows", + "id": "locales_de_landing_magic_cta_windows" + }, + { + "label": "magic_note", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L88", + "community": 16, + "norm_label": "magic_note", + "id": "locales_de_landing_magic_note" + }, { "label": "final_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L77", + "source_location": "L89", "community": 16, "norm_label": "final_title", "id": "locales_de_landing_final_title" @@ -87900,7 +123723,7 @@ "label": "final_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L78", + "source_location": "L90", "community": 16, "norm_label": "final_desc", "id": "locales_de_landing_final_desc" @@ -87909,7 +123732,7 @@ "label": "final_cta", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L79", + "source_location": "L91", "community": 16, "norm_label": "final_cta", "id": "locales_de_landing_final_cta" @@ -87918,7 +123741,7 @@ "label": "chat_msg_1", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L80", + "source_location": "L92", "community": 16, "norm_label": "chat_msg_1", "id": "locales_de_landing_chat_msg_1" @@ -87927,7 +123750,7 @@ "label": "chat_msg_2", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L81", + "source_location": "L93", "community": 16, "norm_label": "chat_msg_2", "id": "locales_de_landing_chat_msg_2" @@ -87936,7 +123759,7 @@ "label": "chat_msg_3", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L82", + "source_location": "L94", "community": 16, "norm_label": "chat_msg_3", "id": "locales_de_landing_chat_msg_3" @@ -87945,7 +123768,7 @@ "label": "chat_msg_4", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L83", + "source_location": "L95", "community": 16, "norm_label": "chat_msg_4", "id": "locales_de_landing_chat_msg_4" @@ -87954,7 +123777,7 @@ "label": "blocked", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L85", + "source_location": "L97", "community": 388, "norm_label": "blocked", "id": "locales_de_blocked" @@ -87963,7 +123786,7 @@ "label": "lyra", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L86", + "source_location": "L98", "community": 388, "norm_label": "lyra", "id": "locales_de_blocked_lyra" @@ -87972,7 +123795,7 @@ "label": "title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L87", + "source_location": "L99", "community": 388, "norm_label": "title", "id": "locales_de_blocked_title" @@ -87981,7 +123804,7 @@ "label": "message", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L88", + "source_location": "L100", "community": 388, "norm_label": "message", "id": "locales_de_blocked_message" @@ -87990,7 +123813,7 @@ "label": "day", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L89", + "source_location": "L101", "community": 388, "norm_label": "day", "id": "locales_de_blocked_day" @@ -87999,7 +123822,7 @@ "label": "days", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L90", + "source_location": "L102", "community": 388, "norm_label": "days", "id": "locales_de_blocked_days" @@ -88008,7 +123831,7 @@ "label": "clean", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L91", + "source_location": "L103", "community": 388, "norm_label": "clean", "id": "locales_de_blocked_clean" @@ -88017,7 +123840,7 @@ "label": "streak_running", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L92", + "source_location": "L104", "community": 388, "norm_label": "streak_running", "id": "locales_de_blocked_streak_running" @@ -88026,7 +123849,7 @@ "label": "talk_lyra", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L93", + "source_location": "L105", "community": 388, "norm_label": "talk_lyra", "id": "locales_de_blocked_talk_lyra" @@ -88035,7 +123858,7 @@ "label": "start_breathing", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L94", + "source_location": "L106", "community": 388, "norm_label": "start_breathing", "id": "locales_de_blocked_start_breathing" @@ -88044,7 +123867,7 @@ "label": "back_to_app", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L95", + "source_location": "L107", "community": 388, "norm_label": "back_to_app", "id": "locales_de_blocked_back_to_app" @@ -88053,7 +123876,7 @@ "label": "quote_1", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L96", + "source_location": "L108", "community": 388, "norm_label": "quote_1", "id": "locales_de_blocked_quote_1" @@ -88062,7 +123885,7 @@ "label": "quote_2", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L97", + "source_location": "L109", "community": 388, "norm_label": "quote_2", "id": "locales_de_blocked_quote_2" @@ -88071,7 +123894,7 @@ "label": "quote_3", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L98", + "source_location": "L110", "community": 388, "norm_label": "quote_3", "id": "locales_de_blocked_quote_3" @@ -88080,7 +123903,7 @@ "label": "quote_4", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L99", + "source_location": "L111", "community": 388, "norm_label": "quote_4", "id": "locales_de_blocked_quote_4" @@ -88089,7 +123912,7 @@ "label": "quote_5", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L100", + "source_location": "L112", "community": 388, "norm_label": "quote_5", "id": "locales_de_blocked_quote_5" @@ -88098,7 +123921,7 @@ "label": "resources", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L102", + "source_location": "L114", "community": 76, "norm_label": "resources", "id": "locales_de_resources" @@ -88107,7 +123930,7 @@ "label": "blocklist_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L103", + "source_location": "L115", "community": 76, "norm_label": "blocklist_title", "id": "locales_de_resources_blocklist_title" @@ -88116,7 +123939,7 @@ "label": "blocklist_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L104", + "source_location": "L116", "community": 76, "norm_label": "blocklist_desc", "id": "locales_de_resources_blocklist_desc" @@ -88125,7 +123948,7 @@ "label": "chart_label", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L105", + "source_location": "L117", "community": 76, "norm_label": "chart_label", "id": "locales_de_resources_chart_label" @@ -88134,7 +123957,7 @@ "label": "hotlines_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L106", + "source_location": "L118", "community": 76, "norm_label": "hotlines_title", "id": "locales_de_resources_hotlines_title" @@ -88143,7 +123966,7 @@ "label": "hotlines_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L107", + "source_location": "L119", "community": 76, "norm_label": "hotlines_desc", "id": "locales_de_resources_hotlines_desc" @@ -88152,7 +123975,7 @@ "label": "tips_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L108", + "source_location": "L120", "community": 76, "norm_label": "tips_title", "id": "locales_de_resources_tips_title" @@ -88161,7 +123984,7 @@ "label": "tips_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L109", + "source_location": "L121", "community": 76, "norm_label": "tips_desc", "id": "locales_de_resources_tips_desc" @@ -88170,7 +123993,7 @@ "label": "not_weak_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L110", + "source_location": "L122", "community": 76, "norm_label": "not_weak_title", "id": "locales_de_resources_not_weak_title" @@ -88179,16 +124002,34 @@ "label": "not_weak_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L111", + "source_location": "L123", "community": 76, "norm_label": "not_weak_desc", "id": "locales_de_resources_not_weak_desc" }, + { + "label": "cta_title", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L124", + "community": 76, + "norm_label": "cta_title", + "id": "locales_de_resources_cta_title" + }, + { + "label": "cta_button", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L125", + "community": 76, + "norm_label": "cta_button", + "id": "locales_de_resources_cta_button" + }, { "label": "hotline_de", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L114", + "source_location": "L126", "community": 76, "norm_label": "hotline_de", "id": "locales_de_resources_hotline_de" @@ -88197,7 +124038,7 @@ "label": "hotline_at", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L115", + "source_location": "L127", "community": 76, "norm_label": "hotline_at", "id": "locales_de_resources_hotline_at" @@ -88206,7 +124047,7 @@ "label": "hotline_ch", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L116", + "source_location": "L128", "community": 76, "norm_label": "hotline_ch", "id": "locales_de_resources_hotline_ch" @@ -88215,16 +124056,25 @@ "label": "tip_breathing", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L117", + "source_location": "L129", "community": 76, "norm_label": "tip_breathing", "id": "locales_de_resources_tip_breathing" }, + { + "label": "tip_breathing_desc", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L130", + "community": 76, + "norm_label": "tip_breathing_desc", + "id": "locales_de_resources_tip_breathing_desc" + }, { "label": "tip_15min", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L119", + "source_location": "L131", "community": 76, "norm_label": "tip_15min", "id": "locales_de_resources_tip_15min" @@ -88233,7 +124083,7 @@ "label": "tip_15min_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L120", + "source_location": "L132", "community": 76, "norm_label": "tip_15min_desc", "id": "locales_de_resources_tip_15min_desc" @@ -88242,7 +124092,7 @@ "label": "tip_move", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L121", + "source_location": "L133", "community": 76, "norm_label": "tip_move", "id": "locales_de_resources_tip_move" @@ -88251,7 +124101,7 @@ "label": "tip_move_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L122", + "source_location": "L134", "community": 76, "norm_label": "tip_move_desc", "id": "locales_de_resources_tip_move_desc" @@ -88260,7 +124110,7 @@ "label": "tip_triggers", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L123", + "source_location": "L135", "community": 76, "norm_label": "tip_triggers", "id": "locales_de_resources_tip_triggers" @@ -88269,7 +124119,7 @@ "label": "tip_triggers_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L124", + "source_location": "L136", "community": 76, "norm_label": "tip_triggers_desc", "id": "locales_de_resources_tip_triggers_desc" @@ -88278,7 +124128,7 @@ "label": "fact1_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L125", + "source_location": "L137", "community": 76, "norm_label": "fact1_title", "id": "locales_de_resources_fact1_title" @@ -88287,7 +124137,7 @@ "label": "fact1_text", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L126", + "source_location": "L138", "community": 76, "norm_label": "fact1_text", "id": "locales_de_resources_fact1_text" @@ -88296,7 +124146,7 @@ "label": "fact2_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L127", + "source_location": "L139", "community": 76, "norm_label": "fact2_title", "id": "locales_de_resources_fact2_title" @@ -88305,7 +124155,7 @@ "label": "fact2_text", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L128", + "source_location": "L140", "community": 76, "norm_label": "fact2_text", "id": "locales_de_resources_fact2_text" @@ -88314,7 +124164,7 @@ "label": "fact3_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L129", + "source_location": "L141", "community": 76, "norm_label": "fact3_title", "id": "locales_de_resources_fact3_title" @@ -88323,7 +124173,7 @@ "label": "fact3_text", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L130", + "source_location": "L142", "community": 76, "norm_label": "fact3_text", "id": "locales_de_resources_fact3_text" @@ -88332,7 +124182,7 @@ "label": "fact4_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L131", + "source_location": "L143", "community": 76, "norm_label": "fact4_title", "id": "locales_de_resources_fact4_title" @@ -88341,7 +124191,7 @@ "label": "fact4_text", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L132", + "source_location": "L144", "community": 76, "norm_label": "fact4_text", "id": "locales_de_resources_fact4_text" @@ -88350,7 +124200,7 @@ "label": "pricing", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L134", + "source_location": "L146", "community": 13, "norm_label": "pricing", "id": "locales_de_pricing" @@ -88359,16 +124209,25 @@ "label": "founding_banner", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L135", + "source_location": "L147", "community": 13, "norm_label": "founding_banner", "id": "locales_de_pricing_founding_banner" }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L148", + "community": 13, + "norm_label": "title", + "id": "locales_de_pricing_title" + }, { "label": "subtitle_start", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L137", + "source_location": "L149", "community": 13, "norm_label": "subtitle_start", "id": "locales_de_pricing_subtitle_start" @@ -88377,16 +124236,25 @@ "label": "subtitle_end", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L138", + "source_location": "L150", "community": 13, "norm_label": "subtitle_end", "id": "locales_de_pricing_subtitle_end" }, + { + "label": "cross_device_tagline", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L151", + "community": 13, + "norm_label": "cross_device_tagline", + "id": "locales_de_pricing_cross_device_tagline" + }, { "label": "pro_meaning_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L139", + "source_location": "L152", "community": 13, "norm_label": "pro_meaning_title", "id": "locales_de_pricing_pro_meaning_title" @@ -88395,7 +124263,7 @@ "label": "pro_meaning_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L140", + "source_location": "L153", "community": 13, "norm_label": "pro_meaning_desc", "id": "locales_de_pricing_pro_meaning_desc" @@ -88404,7 +124272,7 @@ "label": "comparison_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L141", + "source_location": "L154", "community": 13, "norm_label": "comparison_title", "id": "locales_de_pricing_comparison_title" @@ -88413,7 +124281,7 @@ "label": "comparison_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L142", + "source_location": "L155", "community": 13, "norm_label": "comparison_subtitle", "id": "locales_de_pricing_comparison_subtitle" @@ -88422,7 +124290,7 @@ "label": "feature", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L143", + "source_location": "L156", "community": 13, "norm_label": "feature", "id": "locales_de_pricing_feature" @@ -88431,7 +124299,7 @@ "label": "free", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L144", + "source_location": "L157", "community": 13, "norm_label": "free", "id": "locales_de_pricing_free" @@ -88440,7 +124308,7 @@ "label": "quotes_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L145", + "source_location": "L158", "community": 13, "norm_label": "quotes_title", "id": "locales_de_pricing_quotes_title" @@ -88449,7 +124317,7 @@ "label": "quotes_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L146", + "source_location": "L159", "community": 13, "norm_label": "quotes_subtitle", "id": "locales_de_pricing_quotes_subtitle" @@ -88458,7 +124326,7 @@ "label": "faq_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L147", + "source_location": "L160", "community": 13, "norm_label": "faq_title", "id": "locales_de_pricing_faq_title" @@ -88467,7 +124335,7 @@ "label": "cta_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L148", + "source_location": "L161", "community": 76, "norm_label": "cta_title", "id": "locales_de_pricing_cta_title" @@ -88476,7 +124344,7 @@ "label": "cta_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L149", + "source_location": "L162", "community": 13, "norm_label": "cta_desc", "id": "locales_de_pricing_cta_desc" @@ -88485,7 +124353,7 @@ "label": "cta_button", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L150", + "source_location": "L163", "community": 76, "norm_label": "cta_button", "id": "locales_de_pricing_cta_button" @@ -88494,7 +124362,7 @@ "label": "footer_home", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L151", + "source_location": "L164", "community": 13, "norm_label": "footer_home", "id": "locales_de_pricing_footer_home" @@ -88503,7 +124371,7 @@ "label": "footer_pricing", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L152", + "source_location": "L165", "community": 13, "norm_label": "footer_pricing", "id": "locales_de_pricing_footer_pricing" @@ -88512,7 +124380,7 @@ "label": "footer_resources", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L153", + "source_location": "L166", "community": 13, "norm_label": "footer_resources", "id": "locales_de_pricing_footer_resources" @@ -88521,7 +124389,7 @@ "label": "footer_login", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L154", + "source_location": "L167", "community": 13, "norm_label": "footer_login", "id": "locales_de_pricing_footer_login" @@ -88530,7 +124398,7 @@ "label": "billing_monthly", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L155", + "source_location": "L168", "community": 13, "norm_label": "billing_monthly", "id": "locales_de_pricing_billing_monthly" @@ -88539,7 +124407,7 @@ "label": "billing_yearly", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L156", + "source_location": "L169", "community": 13, "norm_label": "billing_yearly", "id": "locales_de_pricing_billing_yearly" @@ -88548,7 +124416,7 @@ "label": "billing_save_pct", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L157", + "source_location": "L170", "community": 13, "norm_label": "billing_save_pct", "id": "locales_de_pricing_billing_save_pct" @@ -88557,7 +124425,7 @@ "label": "billing_forever", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L158", + "source_location": "L171", "community": 13, "norm_label": "billing_forever", "id": "locales_de_pricing_billing_forever" @@ -88566,7 +124434,7 @@ "label": "billing_per_month", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L159", + "source_location": "L172", "community": 13, "norm_label": "billing_per_month", "id": "locales_de_pricing_billing_per_month" @@ -88575,7 +124443,7 @@ "label": "billing_per_year", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L160", + "source_location": "L173", "community": 13, "norm_label": "billing_per_year", "id": "locales_de_pricing_billing_per_year" @@ -88584,7 +124452,7 @@ "label": "plan_pro_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L161", + "source_location": "L174", "community": 13, "norm_label": "plan_pro_title", "id": "locales_de_pricing_plan_pro_title" @@ -88593,7 +124461,7 @@ "label": "plan_pro_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L162", + "source_location": "L175", "community": 13, "norm_label": "plan_pro_desc", "id": "locales_de_pricing_plan_pro_desc" @@ -88602,7 +124470,7 @@ "label": "plan_pro_btn", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L163", + "source_location": "L176", "community": 13, "norm_label": "plan_pro_btn", "id": "locales_de_pricing_plan_pro_btn" @@ -88611,7 +124479,7 @@ "label": "plan_legend_title", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L164", + "source_location": "L177", "community": 13, "norm_label": "plan_legend_title", "id": "locales_de_pricing_plan_legend_title" @@ -88620,7 +124488,7 @@ "label": "plan_legend_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L165", + "source_location": "L178", "community": 13, "norm_label": "plan_legend_desc", "id": "locales_de_pricing_plan_legend_desc" @@ -88629,7 +124497,7 @@ "label": "plan_legend_btn", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L166", + "source_location": "L179", "community": 13, "norm_label": "plan_legend_btn", "id": "locales_de_pricing_plan_legend_btn" @@ -88638,7 +124506,7 @@ "label": "plan_loading", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L167", + "source_location": "L180", "community": 13, "norm_label": "plan_loading", "id": "locales_de_pricing_plan_loading" @@ -88647,7 +124515,7 @@ "label": "plan_recommended", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L168", + "source_location": "L181", "community": 13, "norm_label": "plan_recommended", "id": "locales_de_pricing_plan_recommended" @@ -88656,7 +124524,7 @@ "label": "feat_pro_devices", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L169", + "source_location": "L182", "community": 13, "norm_label": "feat_pro_devices", "id": "locales_de_pricing_feat_pro_devices" @@ -88665,7 +124533,7 @@ "label": "feat_pro_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L170", + "source_location": "L183", "community": 13, "norm_label": "feat_pro_domains", "id": "locales_de_pricing_feat_pro_domains" @@ -88674,7 +124542,7 @@ "label": "feat_pro_mail", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L171", + "source_location": "L184", "community": 13, "norm_label": "feat_pro_mail", "id": "locales_de_pricing_feat_pro_mail" @@ -88683,7 +124551,7 @@ "label": "feat_blocklist", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L172", + "source_location": "L185", "community": 13, "norm_label": "feat_blocklist", "id": "locales_de_pricing_feat_blocklist" @@ -88692,7 +124560,7 @@ "label": "feat_coach_pro", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L173", + "source_location": "L186", "community": 13, "norm_label": "feat_coach_pro", "id": "locales_de_pricing_feat_coach_pro" @@ -88701,7 +124569,7 @@ "label": "feat_streak", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L174", + "source_location": "L187", "community": 13, "norm_label": "feat_streak", "id": "locales_de_pricing_feat_streak" @@ -88710,7 +124578,7 @@ "label": "feat_urge", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L175", + "source_location": "L188", "community": 13, "norm_label": "feat_urge", "id": "locales_de_pricing_feat_urge" @@ -88719,7 +124587,7 @@ "label": "feat_sos", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L176", + "source_location": "L189", "community": 13, "norm_label": "feat_sos", "id": "locales_de_pricing_feat_sos" @@ -88728,16 +124596,25 @@ "label": "feat_community", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L177", + "source_location": "L190", "community": 13, "norm_label": "feat_community", "id": "locales_de_pricing_feat_community" }, + { + "label": "feat_community_post", + "file_type": "code", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L191", + "community": 13, + "norm_label": "feat_community_post", + "id": "locales_de_pricing_feat_community_post" + }, { "label": "feat_buddy", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L179", + "source_location": "L192", "community": 13, "norm_label": "feat_buddy", "id": "locales_de_pricing_feat_buddy" @@ -88746,7 +124623,7 @@ "label": "feat_urge_stats", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L180", + "source_location": "L193", "community": 13, "norm_label": "feat_urge_stats", "id": "locales_de_pricing_feat_urge_stats" @@ -88755,7 +124632,7 @@ "label": "feat_all_pro", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L181", + "source_location": "L194", "community": 13, "norm_label": "feat_all_pro", "id": "locales_de_pricing_feat_all_pro" @@ -88764,7 +124641,7 @@ "label": "feat_legend_devices", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L182", + "source_location": "L195", "community": 13, "norm_label": "feat_legend_devices", "id": "locales_de_pricing_feat_legend_devices" @@ -88773,7 +124650,7 @@ "label": "feat_legend_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L183", + "source_location": "L196", "community": 13, "norm_label": "feat_legend_domains", "id": "locales_de_pricing_feat_legend_domains" @@ -88782,7 +124659,7 @@ "label": "feat_legend_mail", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L184", + "source_location": "L197", "community": 13, "norm_label": "feat_legend_mail", "id": "locales_de_pricing_feat_legend_mail" @@ -88791,7 +124668,7 @@ "label": "feat_legend_binder", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L185", + "source_location": "L198", "community": 13, "norm_label": "feat_legend_binder", "id": "locales_de_pricing_feat_legend_binder" @@ -88800,7 +124677,7 @@ "label": "feat_legend_add", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L186", + "source_location": "L199", "community": 13, "norm_label": "feat_legend_add", "id": "locales_de_pricing_feat_legend_add" @@ -88809,7 +124686,7 @@ "label": "feat_legend_validate", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L187", + "source_location": "L200", "community": 13, "norm_label": "feat_legend_validate", "id": "locales_de_pricing_feat_legend_validate" @@ -88818,7 +124695,7 @@ "label": "feat_legend_groups", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L188", + "source_location": "L201", "community": 13, "norm_label": "feat_legend_groups", "id": "locales_de_pricing_feat_legend_groups" @@ -88827,7 +124704,7 @@ "label": "feat_coach_legend", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L189", + "source_location": "L202", "community": 13, "norm_label": "feat_coach_legend", "id": "locales_de_pricing_feat_coach_legend" @@ -88836,7 +124713,7 @@ "label": "comp_devices", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L190", + "source_location": "L203", "community": 13, "norm_label": "comp_devices", "id": "locales_de_pricing_comp_devices" @@ -88845,7 +124722,7 @@ "label": "comp_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L191", + "source_location": "L204", "community": 13, "norm_label": "comp_domains", "id": "locales_de_pricing_comp_domains" @@ -88854,7 +124731,7 @@ "label": "comp_mail", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L192", + "source_location": "L205", "community": 13, "norm_label": "comp_mail", "id": "locales_de_pricing_comp_mail" @@ -88863,7 +124740,7 @@ "label": "comp_coach", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L193", + "source_location": "L206", "community": 13, "norm_label": "comp_coach", "id": "locales_de_pricing_comp_coach" @@ -88872,7 +124749,7 @@ "label": "comp_blocklist", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L194", + "source_location": "L207", "community": 13, "norm_label": "comp_blocklist", "id": "locales_de_pricing_comp_blocklist" @@ -88881,7 +124758,7 @@ "label": "comp_streak", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L195", + "source_location": "L208", "community": 13, "norm_label": "comp_streak", "id": "locales_de_pricing_comp_streak" @@ -88890,7 +124767,7 @@ "label": "comp_urge", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L196", + "source_location": "L209", "community": 13, "norm_label": "comp_urge", "id": "locales_de_pricing_comp_urge" @@ -88899,7 +124776,7 @@ "label": "comp_sos", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L197", + "source_location": "L210", "community": 13, "norm_label": "comp_sos", "id": "locales_de_pricing_comp_sos" @@ -88908,7 +124785,7 @@ "label": "comp_community", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L198", + "source_location": "L211", "community": 13, "norm_label": "comp_community", "id": "locales_de_pricing_comp_community" @@ -88917,7 +124794,7 @@ "label": "comp_post", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L199", + "source_location": "L212", "community": 13, "norm_label": "comp_post", "id": "locales_de_pricing_comp_post" @@ -88926,7 +124803,7 @@ "label": "comp_buddy", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L200", + "source_location": "L213", "community": 13, "norm_label": "comp_buddy", "id": "locales_de_pricing_comp_buddy" @@ -88935,7 +124812,7 @@ "label": "comp_urge_stats", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L201", + "source_location": "L214", "community": 13, "norm_label": "comp_urge_stats", "id": "locales_de_pricing_comp_urge_stats" @@ -88944,7 +124821,7 @@ "label": "comp_binder", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L202", + "source_location": "L215", "community": 13, "norm_label": "comp_binder", "id": "locales_de_pricing_comp_binder" @@ -88953,7 +124830,7 @@ "label": "comp_add_domain", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L203", + "source_location": "L216", "community": 13, "norm_label": "comp_add_domain", "id": "locales_de_pricing_comp_add_domain" @@ -88962,7 +124839,7 @@ "label": "comp_validate", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L204", + "source_location": "L217", "community": 13, "norm_label": "comp_validate", "id": "locales_de_pricing_comp_validate" @@ -88971,7 +124848,7 @@ "label": "comp_groups", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L205", + "source_location": "L218", "community": 13, "norm_label": "comp_groups", "id": "locales_de_pricing_comp_groups" @@ -88980,7 +124857,7 @@ "label": "comp_pro_devices", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L206", + "source_location": "L219", "community": 13, "norm_label": "comp_pro_devices", "id": "locales_de_pricing_comp_pro_devices" @@ -88989,7 +124866,7 @@ "label": "comp_legend_devices", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L207", + "source_location": "L220", "community": 13, "norm_label": "comp_legend_devices", "id": "locales_de_pricing_comp_legend_devices" @@ -88998,7 +124875,7 @@ "label": "comp_pro_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L208", + "source_location": "L221", "community": 13, "norm_label": "comp_pro_domains", "id": "locales_de_pricing_comp_pro_domains" @@ -89007,7 +124884,7 @@ "label": "comp_legend_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L209", + "source_location": "L222", "community": 13, "norm_label": "comp_legend_domains", "id": "locales_de_pricing_comp_legend_domains" @@ -89016,7 +124893,7 @@ "label": "comp_pro_mail_val", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L210", + "source_location": "L223", "community": 13, "norm_label": "comp_pro_mail_val", "id": "locales_de_pricing_comp_pro_mail_val" @@ -89025,7 +124902,7 @@ "label": "comp_legend_mail_val", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L211", + "source_location": "L224", "community": 13, "norm_label": "comp_legend_mail_val", "id": "locales_de_pricing_comp_legend_mail_val" @@ -89034,7 +124911,7 @@ "label": "comp_pro_coach_val", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L212", + "source_location": "L225", "community": 13, "norm_label": "comp_pro_coach_val", "id": "locales_de_pricing_comp_pro_coach_val" @@ -89043,7 +124920,7 @@ "label": "comp_legend_coach_val", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L213", + "source_location": "L226", "community": 13, "norm_label": "comp_legend_coach_val", "id": "locales_de_pricing_comp_legend_coach_val" @@ -89052,7 +124929,7 @@ "label": "faq1_q", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L214", + "source_location": "L227", "community": 13, "norm_label": "faq1_q", "id": "locales_de_pricing_faq1_q" @@ -89061,7 +124938,7 @@ "label": "faq1_a", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L215", + "source_location": "L228", "community": 13, "norm_label": "faq1_a", "id": "locales_de_pricing_faq1_a" @@ -89070,7 +124947,7 @@ "label": "faq2_q", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L216", + "source_location": "L229", "community": 13, "norm_label": "faq2_q", "id": "locales_de_pricing_faq2_q" @@ -89079,7 +124956,7 @@ "label": "faq2_a", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L217", + "source_location": "L230", "community": 13, "norm_label": "faq2_a", "id": "locales_de_pricing_faq2_a" @@ -89088,7 +124965,7 @@ "label": "faq3_q", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L218", + "source_location": "L231", "community": 13, "norm_label": "faq3_q", "id": "locales_de_pricing_faq3_q" @@ -89097,7 +124974,7 @@ "label": "faq3_a", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L219", + "source_location": "L232", "community": 13, "norm_label": "faq3_a", "id": "locales_de_pricing_faq3_a" @@ -89106,7 +124983,7 @@ "label": "faq4_q", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L220", + "source_location": "L233", "community": 13, "norm_label": "faq4_q", "id": "locales_de_pricing_faq4_q" @@ -89115,7 +124992,7 @@ "label": "faq4_a", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L221", + "source_location": "L234", "community": 13, "norm_label": "faq4_a", "id": "locales_de_pricing_faq4_a" @@ -89124,7 +125001,7 @@ "label": "faq5_q", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L222", + "source_location": "L235", "community": 13, "norm_label": "faq5_q", "id": "locales_de_pricing_faq5_q" @@ -89133,7 +125010,7 @@ "label": "faq5_a", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L223", + "source_location": "L236", "community": 13, "norm_label": "faq5_a", "id": "locales_de_pricing_faq5_a" @@ -89142,7 +125019,7 @@ "label": "faq6_q", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L224", + "source_location": "L237", "community": 13, "norm_label": "faq6_q", "id": "locales_de_pricing_faq6_q" @@ -89151,7 +125028,7 @@ "label": "faq6_a", "file_type": "code", "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L225", + "source_location": "L238", "community": 13, "norm_label": "faq6_a", "id": "locales_de_pricing_faq6_a" @@ -89161,7 +125038,7 @@ "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", "source_location": "L1", - "community": 70, + "community": 924, "norm_label": "en.json", "id": "apps_marketing_app_locales_en_json" }, @@ -89170,16 +125047,34 @@ "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", "source_location": "L2", - "community": 70, + "community": 924, "norm_label": "nav", "id": "locales_en_nav" }, + { + "label": "pricing", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L3", + "community": 924, + "norm_label": "pricing", + "id": "locales_en_nav_pricing" + }, + { + "label": "resources", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L4", + "community": 924, + "norm_label": "resources", + "id": "locales_en_nav_resources" + }, { "label": "login", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", "source_location": "L5", - "community": 70, + "community": 924, "norm_label": "login", "id": "locales_en_nav_login" }, @@ -89188,7 +125083,7 @@ "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", "source_location": "L6", - "community": 70, + "community": 924, "norm_label": "download_app", "id": "locales_en_nav_download_app" }, @@ -89247,11 +125142,20 @@ "id": "locales_en_landing_cta_start" }, { - "label": "stat_affected", + "label": "cta_subline", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", "source_location": "L14", "community": 14, + "norm_label": "cta_subline", + "id": "locales_en_landing_cta_subline" + }, + { + "label": "stat_affected", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L15", + "community": 14, "norm_label": "stat_affected", "id": "locales_en_landing_stat_affected" }, @@ -89259,7 +125163,7 @@ "label": "stat_blocked", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L15", + "source_location": "L16", "community": 14, "norm_label": "stat_blocked", "id": "locales_en_landing_stat_blocked" @@ -89268,7 +125172,7 @@ "label": "stat_from", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L16", + "source_location": "L17", "community": 14, "norm_label": "stat_from", "id": "locales_en_landing_stat_from" @@ -89277,7 +125181,7 @@ "label": "more_info", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L17", + "source_location": "L18", "community": 14, "norm_label": "more_info", "id": "locales_en_landing_more_info" @@ -89286,7 +125190,7 @@ "label": "blocker_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L18", + "source_location": "L19", "community": 14, "norm_label": "blocker_badge", "id": "locales_en_landing_blocker_badge" @@ -89295,7 +125199,7 @@ "label": "blocker_title_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L19", + "source_location": "L20", "community": 14, "norm_label": "blocker_title_domains", "id": "locales_en_landing_blocker_title_domains" @@ -89304,7 +125208,7 @@ "label": "blocker_title_activated", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L20", + "source_location": "L21", "community": 14, "norm_label": "blocker_title_activated", "id": "locales_en_landing_blocker_title_activated" @@ -89313,7 +125217,7 @@ "label": "blocker_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L21", + "source_location": "L22", "community": 14, "norm_label": "blocker_desc", "id": "locales_en_landing_blocker_desc" @@ -89322,7 +125226,7 @@ "label": "blocker_feat_platforms", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L22", + "source_location": "L23", "community": 14, "norm_label": "blocker_feat_platforms", "id": "locales_en_landing_blocker_feat_platforms" @@ -89331,7 +125235,7 @@ "label": "blocker_feat_updated", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L23", + "source_location": "L24", "community": 14, "norm_label": "blocker_feat_updated", "id": "locales_en_landing_blocker_feat_updated" @@ -89340,7 +125244,7 @@ "label": "blocker_feat_custom", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L24", + "source_location": "L25", "community": 14, "norm_label": "blocker_feat_custom", "id": "locales_en_landing_blocker_feat_custom" @@ -89349,7 +125253,7 @@ "label": "blocker_feat_cooldown", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L25", + "source_location": "L26", "community": 14, "norm_label": "blocker_feat_cooldown", "id": "locales_en_landing_blocker_feat_cooldown" @@ -89358,7 +125262,7 @@ "label": "oasis_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L26", + "source_location": "L27", "community": 14, "norm_label": "oasis_badge", "id": "locales_en_landing_oasis_badge" @@ -89367,7 +125271,7 @@ "label": "oasis_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L27", + "source_location": "L28", "community": 14, "norm_label": "oasis_title", "id": "locales_en_landing_oasis_title" @@ -89376,7 +125280,7 @@ "label": "oasis_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L28", + "source_location": "L29", "community": 14, "norm_label": "oasis_subtitle", "id": "locales_en_landing_oasis_subtitle" @@ -89385,7 +125289,7 @@ "label": "oasis_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L29", + "source_location": "L30", "community": 14, "norm_label": "oasis_desc", "id": "locales_en_landing_oasis_desc" @@ -89394,7 +125298,7 @@ "label": "oasis_new_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L30", + "source_location": "L31", "community": 14, "norm_label": "oasis_new_domains", "id": "locales_en_landing_oasis_new_domains" @@ -89403,7 +125307,7 @@ "label": "oasis_offshore", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L31", + "source_location": "L32", "community": 14, "norm_label": "oasis_offshore", "id": "locales_en_landing_oasis_offshore" @@ -89412,7 +125316,7 @@ "label": "oasis_updated", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L32", + "source_location": "L33", "community": 14, "norm_label": "oasis_updated", "id": "locales_en_landing_oasis_updated" @@ -89421,7 +125325,7 @@ "label": "streak_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L33", + "source_location": "L34", "community": 14, "norm_label": "streak_badge", "id": "locales_en_landing_streak_badge" @@ -89430,7 +125334,7 @@ "label": "streak_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L34", + "source_location": "L35", "community": 14, "norm_label": "streak_title", "id": "locales_en_landing_streak_title" @@ -89439,7 +125343,7 @@ "label": "streak_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L35", + "source_location": "L36", "community": 14, "norm_label": "streak_subtitle", "id": "locales_en_landing_streak_subtitle" @@ -89448,7 +125352,7 @@ "label": "streak_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L36", + "source_location": "L37", "community": 14, "norm_label": "streak_desc", "id": "locales_en_landing_streak_desc" @@ -89457,7 +125361,7 @@ "label": "streak_days_free", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L37", + "source_location": "L38", "community": 14, "norm_label": "streak_days_free", "id": "locales_en_landing_streak_days_free" @@ -89466,7 +125370,7 @@ "label": "streak_saved", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L38", + "source_location": "L39", "community": 14, "norm_label": "streak_saved", "id": "locales_en_landing_streak_saved" @@ -89475,7 +125379,7 @@ "label": "crisis_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L39", + "source_location": "L40", "community": 14, "norm_label": "crisis_badge", "id": "locales_en_landing_crisis_badge" @@ -89484,7 +125388,7 @@ "label": "crisis_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L40", + "source_location": "L41", "community": 14, "norm_label": "crisis_title", "id": "locales_en_landing_crisis_title" @@ -89493,7 +125397,7 @@ "label": "crisis_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L41", + "source_location": "L42", "community": 14, "norm_label": "crisis_subtitle", "id": "locales_en_landing_crisis_subtitle" @@ -89502,7 +125406,7 @@ "label": "sos_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L42", + "source_location": "L43", "community": 14, "norm_label": "sos_title", "id": "locales_en_landing_sos_title" @@ -89511,7 +125415,7 @@ "label": "sos_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L43", + "source_location": "L44", "community": 14, "norm_label": "sos_subtitle", "id": "locales_en_landing_sos_subtitle" @@ -89520,7 +125424,7 @@ "label": "sos_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L44", + "source_location": "L45", "community": 14, "norm_label": "sos_desc", "id": "locales_en_landing_sos_desc" @@ -89529,7 +125433,7 @@ "label": "sos_angry", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L45", + "source_location": "L46", "community": 14, "norm_label": "sos_angry", "id": "locales_en_landing_sos_angry" @@ -89538,7 +125442,7 @@ "label": "sos_sad", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L46", + "source_location": "L47", "community": 14, "norm_label": "sos_sad", "id": "locales_en_landing_sos_sad" @@ -89547,7 +125451,7 @@ "label": "sos_stressed", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L47", + "source_location": "L48", "community": 14, "norm_label": "sos_stressed", "id": "locales_en_landing_sos_stressed" @@ -89556,7 +125460,7 @@ "label": "sos_empty", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L48", + "source_location": "L49", "community": 14, "norm_label": "sos_empty", "id": "locales_en_landing_sos_empty" @@ -89565,7 +125469,7 @@ "label": "breathing_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L49", + "source_location": "L50", "community": 14, "norm_label": "breathing_title", "id": "locales_en_landing_breathing_title" @@ -89574,7 +125478,7 @@ "label": "breathing_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L50", + "source_location": "L51", "community": 14, "norm_label": "breathing_subtitle", "id": "locales_en_landing_breathing_subtitle" @@ -89583,7 +125487,7 @@ "label": "breathing_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L51", + "source_location": "L52", "community": 14, "norm_label": "breathing_desc", "id": "locales_en_landing_breathing_desc" @@ -89592,7 +125496,7 @@ "label": "breathing_breathe", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L52", + "source_location": "L53", "community": 14, "norm_label": "breathing_breathe", "id": "locales_en_landing_breathing_breathe" @@ -89601,7 +125505,7 @@ "label": "breathing_inhale", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L53", + "source_location": "L54", "community": 14, "norm_label": "breathing_inhale", "id": "locales_en_landing_breathing_inhale" @@ -89610,7 +125514,7 @@ "label": "breathing_hold", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L54", + "source_location": "L55", "community": 14, "norm_label": "breathing_hold", "id": "locales_en_landing_breathing_hold" @@ -89619,7 +125523,7 @@ "label": "breathing_exhale", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L55", + "source_location": "L56", "community": 14, "norm_label": "breathing_exhale", "id": "locales_en_landing_breathing_exhale" @@ -89628,7 +125532,7 @@ "label": "coach_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L56", + "source_location": "L57", "community": 14, "norm_label": "coach_badge", "id": "locales_en_landing_coach_badge" @@ -89637,7 +125541,7 @@ "label": "coach_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L57", + "source_location": "L58", "community": 14, "norm_label": "coach_title", "id": "locales_en_landing_coach_title" @@ -89646,7 +125550,7 @@ "label": "coach_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L58", + "source_location": "L59", "community": 14, "norm_label": "coach_subtitle", "id": "locales_en_landing_coach_subtitle" @@ -89655,7 +125559,7 @@ "label": "coach_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L59", + "source_location": "L60", "community": 14, "norm_label": "coach_desc", "id": "locales_en_landing_coach_desc" @@ -89664,7 +125568,7 @@ "label": "coach_label", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L60", + "source_location": "L61", "community": 14, "norm_label": "coach_label", "id": "locales_en_landing_coach_label" @@ -89673,7 +125577,7 @@ "label": "founding_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L61", + "source_location": "L62", "community": 14, "norm_label": "founding_badge", "id": "locales_en_landing_founding_badge" @@ -89682,7 +125586,7 @@ "label": "founding_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L62", + "source_location": "L63", "community": 14, "norm_label": "founding_desc", "id": "locales_en_landing_founding_desc" @@ -89691,7 +125595,7 @@ "label": "founding_slots", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L63", + "source_location": "L64", "community": 14, "norm_label": "founding_slots", "id": "locales_en_landing_founding_slots" @@ -89700,7 +125604,7 @@ "label": "founding_cta", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L64", + "source_location": "L65", "community": 14, "norm_label": "founding_cta", "id": "locales_en_landing_founding_cta" @@ -89709,7 +125613,7 @@ "label": "mail_badge", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L65", + "source_location": "L66", "community": 14, "norm_label": "mail_badge", "id": "locales_en_landing_mail_badge" @@ -89718,7 +125622,7 @@ "label": "mail_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L66", + "source_location": "L67", "community": 14, "norm_label": "mail_title", "id": "locales_en_landing_mail_title" @@ -89727,7 +125631,7 @@ "label": "mail_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L67", + "source_location": "L68", "community": 14, "norm_label": "mail_subtitle", "id": "locales_en_landing_mail_subtitle" @@ -89736,7 +125640,7 @@ "label": "mail_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L68", + "source_location": "L69", "community": 14, "norm_label": "mail_desc", "id": "locales_en_landing_mail_desc" @@ -89745,7 +125649,7 @@ "label": "mail_feat_providers", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L69", + "source_location": "L70", "community": 14, "norm_label": "mail_feat_providers", "id": "locales_en_landing_mail_feat_providers" @@ -89754,7 +125658,7 @@ "label": "mail_feat_intervals", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L70", + "source_location": "L71", "community": 14, "norm_label": "mail_feat_intervals", "id": "locales_en_landing_mail_feat_intervals" @@ -89763,7 +125667,7 @@ "label": "mail_feat_privacy", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L71", + "source_location": "L72", "community": 14, "norm_label": "mail_feat_privacy", "id": "locales_en_landing_mail_feat_privacy" @@ -89772,7 +125676,7 @@ "label": "mail_mock_blocked", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L72", + "source_location": "L73", "community": 14, "norm_label": "mail_mock_blocked", "id": "locales_en_landing_mail_mock_blocked" @@ -89781,7 +125685,7 @@ "label": "mail_mock_scanned", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L73", + "source_location": "L74", "community": 14, "norm_label": "mail_mock_scanned", "id": "locales_en_landing_mail_mock_scanned" @@ -89790,7 +125694,7 @@ "label": "mail_mock_rate", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L74", + "source_location": "L75", "community": 14, "norm_label": "mail_mock_rate", "id": "locales_en_landing_mail_mock_rate" @@ -89799,7 +125703,7 @@ "label": "mail_mock_accounts", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L75", + "source_location": "L76", "community": 14, "norm_label": "mail_mock_accounts", "id": "locales_en_landing_mail_mock_accounts" @@ -89808,16 +125712,115 @@ "label": "mail_mock_rhythm", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L76", + "source_location": "L77", "community": 14, "norm_label": "mail_mock_rhythm", "id": "locales_en_landing_mail_mock_rhythm" }, + { + "label": "magic_badge", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L78", + "community": 14, + "norm_label": "magic_badge", + "id": "locales_en_landing_magic_badge" + }, + { + "label": "magic_title", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L79", + "community": 14, + "norm_label": "magic_title", + "id": "locales_en_landing_magic_title" + }, + { + "label": "magic_subtitle", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L80", + "community": 14, + "norm_label": "magic_subtitle", + "id": "locales_en_landing_magic_subtitle" + }, + { + "label": "magic_desc", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L81", + "community": 14, + "norm_label": "magic_desc", + "id": "locales_en_landing_magic_desc" + }, + { + "label": "magic_feat_noreset", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L82", + "community": 14, + "norm_label": "magic_feat_noreset", + "id": "locales_en_landing_magic_feat_noreset" + }, + { + "label": "magic_feat_speed", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L83", + "community": 14, + "norm_label": "magic_feat_speed", + "id": "locales_en_landing_magic_feat_speed" + }, + { + "label": "magic_feat_lock", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L84", + "community": 14, + "norm_label": "magic_feat_lock", + "id": "locales_en_landing_magic_feat_lock" + }, + { + "label": "magic_feat_trustee", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L85", + "community": 14, + "norm_label": "magic_feat_trustee", + "id": "locales_en_landing_magic_feat_trustee" + }, + { + "label": "magic_cta", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L86", + "community": 14, + "norm_label": "magic_cta", + "id": "locales_en_landing_magic_cta" + }, + { + "label": "magic_cta_windows", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L87", + "community": 14, + "norm_label": "magic_cta_windows", + "id": "locales_en_landing_magic_cta_windows" + }, + { + "label": "magic_note", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L88", + "community": 14, + "norm_label": "magic_note", + "id": "locales_en_landing_magic_note" + }, { "label": "final_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L77", + "source_location": "L89", "community": 14, "norm_label": "final_title", "id": "locales_en_landing_final_title" @@ -89826,7 +125829,7 @@ "label": "final_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L78", + "source_location": "L90", "community": 14, "norm_label": "final_desc", "id": "locales_en_landing_final_desc" @@ -89835,7 +125838,7 @@ "label": "final_cta", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L79", + "source_location": "L91", "community": 14, "norm_label": "final_cta", "id": "locales_en_landing_final_cta" @@ -89844,7 +125847,7 @@ "label": "chat_msg_1", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L80", + "source_location": "L92", "community": 14, "norm_label": "chat_msg_1", "id": "locales_en_landing_chat_msg_1" @@ -89853,7 +125856,7 @@ "label": "chat_msg_2", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L81", + "source_location": "L93", "community": 14, "norm_label": "chat_msg_2", "id": "locales_en_landing_chat_msg_2" @@ -89862,7 +125865,7 @@ "label": "chat_msg_3", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L82", + "source_location": "L94", "community": 14, "norm_label": "chat_msg_3", "id": "locales_en_landing_chat_msg_3" @@ -89871,7 +125874,7 @@ "label": "chat_msg_4", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L83", + "source_location": "L95", "community": 14, "norm_label": "chat_msg_4", "id": "locales_en_landing_chat_msg_4" @@ -89880,7 +125883,7 @@ "label": "blocked", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L85", + "source_location": "L97", "community": 390, "norm_label": "blocked", "id": "locales_en_blocked" @@ -89889,7 +125892,7 @@ "label": "lyra", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L86", + "source_location": "L98", "community": 390, "norm_label": "lyra", "id": "locales_en_blocked_lyra" @@ -89898,7 +125901,7 @@ "label": "title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L87", + "source_location": "L99", "community": 390, "norm_label": "title", "id": "locales_en_blocked_title" @@ -89907,7 +125910,7 @@ "label": "message", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L88", + "source_location": "L100", "community": 390, "norm_label": "message", "id": "locales_en_blocked_message" @@ -89916,7 +125919,7 @@ "label": "day", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L89", + "source_location": "L101", "community": 390, "norm_label": "day", "id": "locales_en_blocked_day" @@ -89925,7 +125928,7 @@ "label": "days", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L90", + "source_location": "L102", "community": 390, "norm_label": "days", "id": "locales_en_blocked_days" @@ -89934,7 +125937,7 @@ "label": "clean", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L91", + "source_location": "L103", "community": 390, "norm_label": "clean", "id": "locales_en_blocked_clean" @@ -89943,7 +125946,7 @@ "label": "streak_running", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L92", + "source_location": "L104", "community": 390, "norm_label": "streak_running", "id": "locales_en_blocked_streak_running" @@ -89952,7 +125955,7 @@ "label": "talk_lyra", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L93", + "source_location": "L105", "community": 390, "norm_label": "talk_lyra", "id": "locales_en_blocked_talk_lyra" @@ -89961,7 +125964,7 @@ "label": "start_breathing", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L94", + "source_location": "L106", "community": 390, "norm_label": "start_breathing", "id": "locales_en_blocked_start_breathing" @@ -89970,7 +125973,7 @@ "label": "back_to_app", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L95", + "source_location": "L107", "community": 390, "norm_label": "back_to_app", "id": "locales_en_blocked_back_to_app" @@ -89979,7 +125982,7 @@ "label": "quote_1", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L96", + "source_location": "L108", "community": 390, "norm_label": "quote_1", "id": "locales_en_blocked_quote_1" @@ -89988,7 +125991,7 @@ "label": "quote_2", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L97", + "source_location": "L109", "community": 390, "norm_label": "quote_2", "id": "locales_en_blocked_quote_2" @@ -89997,7 +126000,7 @@ "label": "quote_3", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L98", + "source_location": "L110", "community": 390, "norm_label": "quote_3", "id": "locales_en_blocked_quote_3" @@ -90006,7 +126009,7 @@ "label": "quote_4", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L99", + "source_location": "L111", "community": 390, "norm_label": "quote_4", "id": "locales_en_blocked_quote_4" @@ -90015,7 +126018,7 @@ "label": "quote_5", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L100", + "source_location": "L112", "community": 390, "norm_label": "quote_5", "id": "locales_en_blocked_quote_5" @@ -90024,7 +126027,7 @@ "label": "resources", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L102", + "source_location": "L114", "community": 70, "norm_label": "resources", "id": "locales_en_resources" @@ -90033,7 +126036,7 @@ "label": "blocklist_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L103", + "source_location": "L115", "community": 70, "norm_label": "blocklist_title", "id": "locales_en_resources_blocklist_title" @@ -90042,7 +126045,7 @@ "label": "blocklist_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L104", + "source_location": "L116", "community": 70, "norm_label": "blocklist_desc", "id": "locales_en_resources_blocklist_desc" @@ -90051,7 +126054,7 @@ "label": "chart_label", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L105", + "source_location": "L117", "community": 70, "norm_label": "chart_label", "id": "locales_en_resources_chart_label" @@ -90060,7 +126063,7 @@ "label": "hotlines_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L106", + "source_location": "L118", "community": 70, "norm_label": "hotlines_title", "id": "locales_en_resources_hotlines_title" @@ -90069,7 +126072,7 @@ "label": "hotlines_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L107", + "source_location": "L119", "community": 70, "norm_label": "hotlines_desc", "id": "locales_en_resources_hotlines_desc" @@ -90078,7 +126081,7 @@ "label": "tips_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L108", + "source_location": "L120", "community": 70, "norm_label": "tips_title", "id": "locales_en_resources_tips_title" @@ -90087,7 +126090,7 @@ "label": "tips_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L109", + "source_location": "L121", "community": 70, "norm_label": "tips_desc", "id": "locales_en_resources_tips_desc" @@ -90096,7 +126099,7 @@ "label": "not_weak_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L110", + "source_location": "L122", "community": 70, "norm_label": "not_weak_title", "id": "locales_en_resources_not_weak_title" @@ -90105,16 +126108,34 @@ "label": "not_weak_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L111", + "source_location": "L123", "community": 70, "norm_label": "not_weak_desc", "id": "locales_en_resources_not_weak_desc" }, + { + "label": "cta_title", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L124", + "community": 70, + "norm_label": "cta_title", + "id": "locales_en_resources_cta_title" + }, + { + "label": "cta_button", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L125", + "community": 70, + "norm_label": "cta_button", + "id": "locales_en_resources_cta_button" + }, { "label": "hotline_de", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L114", + "source_location": "L126", "community": 70, "norm_label": "hotline_de", "id": "locales_en_resources_hotline_de" @@ -90123,7 +126144,7 @@ "label": "hotline_at", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L115", + "source_location": "L127", "community": 70, "norm_label": "hotline_at", "id": "locales_en_resources_hotline_at" @@ -90132,7 +126153,7 @@ "label": "hotline_ch", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L116", + "source_location": "L128", "community": 70, "norm_label": "hotline_ch", "id": "locales_en_resources_hotline_ch" @@ -90141,7 +126162,7 @@ "label": "tip_breathing", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L117", + "source_location": "L129", "community": 70, "norm_label": "tip_breathing", "id": "locales_en_resources_tip_breathing" @@ -90150,7 +126171,7 @@ "label": "tip_breathing_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L118", + "source_location": "L130", "community": 70, "norm_label": "tip_breathing_desc", "id": "locales_en_resources_tip_breathing_desc" @@ -90159,7 +126180,7 @@ "label": "tip_15min", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L119", + "source_location": "L131", "community": 70, "norm_label": "tip_15min", "id": "locales_en_resources_tip_15min" @@ -90168,7 +126189,7 @@ "label": "tip_15min_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L120", + "source_location": "L132", "community": 70, "norm_label": "tip_15min_desc", "id": "locales_en_resources_tip_15min_desc" @@ -90177,7 +126198,7 @@ "label": "tip_move", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L121", + "source_location": "L133", "community": 70, "norm_label": "tip_move", "id": "locales_en_resources_tip_move" @@ -90186,7 +126207,7 @@ "label": "tip_move_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L122", + "source_location": "L134", "community": 70, "norm_label": "tip_move_desc", "id": "locales_en_resources_tip_move_desc" @@ -90195,7 +126216,7 @@ "label": "tip_triggers", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L123", + "source_location": "L135", "community": 70, "norm_label": "tip_triggers", "id": "locales_en_resources_tip_triggers" @@ -90204,7 +126225,7 @@ "label": "tip_triggers_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L124", + "source_location": "L136", "community": 70, "norm_label": "tip_triggers_desc", "id": "locales_en_resources_tip_triggers_desc" @@ -90213,7 +126234,7 @@ "label": "fact1_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L125", + "source_location": "L137", "community": 70, "norm_label": "fact1_title", "id": "locales_en_resources_fact1_title" @@ -90222,7 +126243,7 @@ "label": "fact1_text", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L126", + "source_location": "L138", "community": 70, "norm_label": "fact1_text", "id": "locales_en_resources_fact1_text" @@ -90231,7 +126252,7 @@ "label": "fact2_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L127", + "source_location": "L139", "community": 70, "norm_label": "fact2_title", "id": "locales_en_resources_fact2_title" @@ -90240,7 +126261,7 @@ "label": "fact2_text", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L128", + "source_location": "L140", "community": 70, "norm_label": "fact2_text", "id": "locales_en_resources_fact2_text" @@ -90249,7 +126270,7 @@ "label": "fact3_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L129", + "source_location": "L141", "community": 70, "norm_label": "fact3_title", "id": "locales_en_resources_fact3_title" @@ -90258,7 +126279,7 @@ "label": "fact3_text", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L130", + "source_location": "L142", "community": 70, "norm_label": "fact3_text", "id": "locales_en_resources_fact3_text" @@ -90267,7 +126288,7 @@ "label": "fact4_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L131", + "source_location": "L143", "community": 70, "norm_label": "fact4_title", "id": "locales_en_resources_fact4_title" @@ -90276,7 +126297,7 @@ "label": "fact4_text", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L132", + "source_location": "L144", "community": 70, "norm_label": "fact4_text", "id": "locales_en_resources_fact4_text" @@ -90285,7 +126306,7 @@ "label": "pricing", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L134", + "source_location": "L146", "community": 12, "norm_label": "pricing", "id": "locales_en_pricing" @@ -90294,16 +126315,25 @@ "label": "founding_banner", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L135", + "source_location": "L147", "community": 12, "norm_label": "founding_banner", "id": "locales_en_pricing_founding_banner" }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L148", + "community": 12, + "norm_label": "title", + "id": "locales_en_pricing_title" + }, { "label": "subtitle_start", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L137", + "source_location": "L149", "community": 12, "norm_label": "subtitle_start", "id": "locales_en_pricing_subtitle_start" @@ -90312,16 +126342,25 @@ "label": "subtitle_end", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L138", + "source_location": "L150", "community": 12, "norm_label": "subtitle_end", "id": "locales_en_pricing_subtitle_end" }, + { + "label": "cross_device_tagline", + "file_type": "code", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L151", + "community": 12, + "norm_label": "cross_device_tagline", + "id": "locales_en_pricing_cross_device_tagline" + }, { "label": "pro_meaning_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L139", + "source_location": "L152", "community": 12, "norm_label": "pro_meaning_title", "id": "locales_en_pricing_pro_meaning_title" @@ -90330,7 +126369,7 @@ "label": "pro_meaning_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L140", + "source_location": "L153", "community": 12, "norm_label": "pro_meaning_desc", "id": "locales_en_pricing_pro_meaning_desc" @@ -90339,7 +126378,7 @@ "label": "comparison_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L141", + "source_location": "L154", "community": 12, "norm_label": "comparison_title", "id": "locales_en_pricing_comparison_title" @@ -90348,7 +126387,7 @@ "label": "comparison_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L142", + "source_location": "L155", "community": 12, "norm_label": "comparison_subtitle", "id": "locales_en_pricing_comparison_subtitle" @@ -90357,7 +126396,7 @@ "label": "feature", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L143", + "source_location": "L156", "community": 12, "norm_label": "feature", "id": "locales_en_pricing_feature" @@ -90366,7 +126405,7 @@ "label": "free", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L144", + "source_location": "L157", "community": 12, "norm_label": "free", "id": "locales_en_pricing_free" @@ -90375,7 +126414,7 @@ "label": "quotes_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L145", + "source_location": "L158", "community": 12, "norm_label": "quotes_title", "id": "locales_en_pricing_quotes_title" @@ -90384,7 +126423,7 @@ "label": "quotes_subtitle", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L146", + "source_location": "L159", "community": 12, "norm_label": "quotes_subtitle", "id": "locales_en_pricing_quotes_subtitle" @@ -90393,7 +126432,7 @@ "label": "faq_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L147", + "source_location": "L160", "community": 12, "norm_label": "faq_title", "id": "locales_en_pricing_faq_title" @@ -90402,7 +126441,7 @@ "label": "cta_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L148", + "source_location": "L161", "community": 70, "norm_label": "cta_title", "id": "locales_en_pricing_cta_title" @@ -90411,7 +126450,7 @@ "label": "cta_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L149", + "source_location": "L162", "community": 12, "norm_label": "cta_desc", "id": "locales_en_pricing_cta_desc" @@ -90420,7 +126459,7 @@ "label": "cta_button", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L150", + "source_location": "L163", "community": 70, "norm_label": "cta_button", "id": "locales_en_pricing_cta_button" @@ -90429,7 +126468,7 @@ "label": "footer_home", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L151", + "source_location": "L164", "community": 12, "norm_label": "footer_home", "id": "locales_en_pricing_footer_home" @@ -90438,7 +126477,7 @@ "label": "footer_pricing", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L152", + "source_location": "L165", "community": 12, "norm_label": "footer_pricing", "id": "locales_en_pricing_footer_pricing" @@ -90447,7 +126486,7 @@ "label": "footer_resources", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L153", + "source_location": "L166", "community": 12, "norm_label": "footer_resources", "id": "locales_en_pricing_footer_resources" @@ -90456,7 +126495,7 @@ "label": "footer_login", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L154", + "source_location": "L167", "community": 12, "norm_label": "footer_login", "id": "locales_en_pricing_footer_login" @@ -90465,7 +126504,7 @@ "label": "billing_monthly", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L155", + "source_location": "L168", "community": 12, "norm_label": "billing_monthly", "id": "locales_en_pricing_billing_monthly" @@ -90474,7 +126513,7 @@ "label": "billing_yearly", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L156", + "source_location": "L169", "community": 12, "norm_label": "billing_yearly", "id": "locales_en_pricing_billing_yearly" @@ -90483,7 +126522,7 @@ "label": "billing_save_pct", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L157", + "source_location": "L170", "community": 12, "norm_label": "billing_save_pct", "id": "locales_en_pricing_billing_save_pct" @@ -90492,7 +126531,7 @@ "label": "billing_forever", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L158", + "source_location": "L171", "community": 12, "norm_label": "billing_forever", "id": "locales_en_pricing_billing_forever" @@ -90501,7 +126540,7 @@ "label": "billing_per_month", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L159", + "source_location": "L172", "community": 12, "norm_label": "billing_per_month", "id": "locales_en_pricing_billing_per_month" @@ -90510,7 +126549,7 @@ "label": "billing_per_year", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L160", + "source_location": "L173", "community": 12, "norm_label": "billing_per_year", "id": "locales_en_pricing_billing_per_year" @@ -90519,7 +126558,7 @@ "label": "plan_pro_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L161", + "source_location": "L174", "community": 12, "norm_label": "plan_pro_title", "id": "locales_en_pricing_plan_pro_title" @@ -90528,7 +126567,7 @@ "label": "plan_pro_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L162", + "source_location": "L175", "community": 12, "norm_label": "plan_pro_desc", "id": "locales_en_pricing_plan_pro_desc" @@ -90537,7 +126576,7 @@ "label": "plan_pro_btn", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L163", + "source_location": "L176", "community": 12, "norm_label": "plan_pro_btn", "id": "locales_en_pricing_plan_pro_btn" @@ -90546,7 +126585,7 @@ "label": "plan_legend_title", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L164", + "source_location": "L177", "community": 12, "norm_label": "plan_legend_title", "id": "locales_en_pricing_plan_legend_title" @@ -90555,7 +126594,7 @@ "label": "plan_legend_desc", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L165", + "source_location": "L178", "community": 12, "norm_label": "plan_legend_desc", "id": "locales_en_pricing_plan_legend_desc" @@ -90564,7 +126603,7 @@ "label": "plan_legend_btn", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L166", + "source_location": "L179", "community": 12, "norm_label": "plan_legend_btn", "id": "locales_en_pricing_plan_legend_btn" @@ -90573,7 +126612,7 @@ "label": "plan_loading", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L167", + "source_location": "L180", "community": 12, "norm_label": "plan_loading", "id": "locales_en_pricing_plan_loading" @@ -90582,7 +126621,7 @@ "label": "plan_recommended", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L168", + "source_location": "L181", "community": 12, "norm_label": "plan_recommended", "id": "locales_en_pricing_plan_recommended" @@ -90591,7 +126630,7 @@ "label": "feat_pro_devices", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L169", + "source_location": "L182", "community": 12, "norm_label": "feat_pro_devices", "id": "locales_en_pricing_feat_pro_devices" @@ -90600,7 +126639,7 @@ "label": "feat_pro_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L170", + "source_location": "L183", "community": 12, "norm_label": "feat_pro_domains", "id": "locales_en_pricing_feat_pro_domains" @@ -90609,7 +126648,7 @@ "label": "feat_pro_mail", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L171", + "source_location": "L184", "community": 12, "norm_label": "feat_pro_mail", "id": "locales_en_pricing_feat_pro_mail" @@ -90618,7 +126657,7 @@ "label": "feat_blocklist", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L172", + "source_location": "L185", "community": 12, "norm_label": "feat_blocklist", "id": "locales_en_pricing_feat_blocklist" @@ -90627,7 +126666,7 @@ "label": "feat_coach_pro", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L173", + "source_location": "L186", "community": 12, "norm_label": "feat_coach_pro", "id": "locales_en_pricing_feat_coach_pro" @@ -90636,7 +126675,7 @@ "label": "feat_streak", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L174", + "source_location": "L187", "community": 12, "norm_label": "feat_streak", "id": "locales_en_pricing_feat_streak" @@ -90645,7 +126684,7 @@ "label": "feat_urge", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L175", + "source_location": "L188", "community": 12, "norm_label": "feat_urge", "id": "locales_en_pricing_feat_urge" @@ -90654,7 +126693,7 @@ "label": "feat_sos", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L176", + "source_location": "L189", "community": 12, "norm_label": "feat_sos", "id": "locales_en_pricing_feat_sos" @@ -90663,7 +126702,7 @@ "label": "feat_community", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L177", + "source_location": "L190", "community": 12, "norm_label": "feat_community", "id": "locales_en_pricing_feat_community" @@ -90672,7 +126711,7 @@ "label": "feat_community_post", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L178", + "source_location": "L191", "community": 12, "norm_label": "feat_community_post", "id": "locales_en_pricing_feat_community_post" @@ -90681,7 +126720,7 @@ "label": "feat_buddy", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L179", + "source_location": "L192", "community": 12, "norm_label": "feat_buddy", "id": "locales_en_pricing_feat_buddy" @@ -90690,7 +126729,7 @@ "label": "feat_urge_stats", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L180", + "source_location": "L193", "community": 12, "norm_label": "feat_urge_stats", "id": "locales_en_pricing_feat_urge_stats" @@ -90699,7 +126738,7 @@ "label": "feat_all_pro", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L181", + "source_location": "L194", "community": 12, "norm_label": "feat_all_pro", "id": "locales_en_pricing_feat_all_pro" @@ -90708,7 +126747,7 @@ "label": "feat_legend_devices", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L182", + "source_location": "L195", "community": 12, "norm_label": "feat_legend_devices", "id": "locales_en_pricing_feat_legend_devices" @@ -90717,7 +126756,7 @@ "label": "feat_legend_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L183", + "source_location": "L196", "community": 12, "norm_label": "feat_legend_domains", "id": "locales_en_pricing_feat_legend_domains" @@ -90726,7 +126765,7 @@ "label": "feat_legend_mail", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L184", + "source_location": "L197", "community": 12, "norm_label": "feat_legend_mail", "id": "locales_en_pricing_feat_legend_mail" @@ -90735,7 +126774,7 @@ "label": "feat_legend_binder", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L185", + "source_location": "L198", "community": 12, "norm_label": "feat_legend_binder", "id": "locales_en_pricing_feat_legend_binder" @@ -90744,7 +126783,7 @@ "label": "feat_legend_add", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L186", + "source_location": "L199", "community": 12, "norm_label": "feat_legend_add", "id": "locales_en_pricing_feat_legend_add" @@ -90753,7 +126792,7 @@ "label": "feat_legend_validate", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L187", + "source_location": "L200", "community": 12, "norm_label": "feat_legend_validate", "id": "locales_en_pricing_feat_legend_validate" @@ -90762,7 +126801,7 @@ "label": "feat_legend_groups", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L188", + "source_location": "L201", "community": 12, "norm_label": "feat_legend_groups", "id": "locales_en_pricing_feat_legend_groups" @@ -90771,7 +126810,7 @@ "label": "feat_coach_legend", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L189", + "source_location": "L202", "community": 12, "norm_label": "feat_coach_legend", "id": "locales_en_pricing_feat_coach_legend" @@ -90780,7 +126819,7 @@ "label": "comp_devices", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L190", + "source_location": "L203", "community": 12, "norm_label": "comp_devices", "id": "locales_en_pricing_comp_devices" @@ -90789,7 +126828,7 @@ "label": "comp_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L191", + "source_location": "L204", "community": 12, "norm_label": "comp_domains", "id": "locales_en_pricing_comp_domains" @@ -90798,7 +126837,7 @@ "label": "comp_mail", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L192", + "source_location": "L205", "community": 12, "norm_label": "comp_mail", "id": "locales_en_pricing_comp_mail" @@ -90807,7 +126846,7 @@ "label": "comp_coach", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L193", + "source_location": "L206", "community": 12, "norm_label": "comp_coach", "id": "locales_en_pricing_comp_coach" @@ -90816,7 +126855,7 @@ "label": "comp_blocklist", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L194", + "source_location": "L207", "community": 12, "norm_label": "comp_blocklist", "id": "locales_en_pricing_comp_blocklist" @@ -90825,7 +126864,7 @@ "label": "comp_streak", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L195", + "source_location": "L208", "community": 12, "norm_label": "comp_streak", "id": "locales_en_pricing_comp_streak" @@ -90834,7 +126873,7 @@ "label": "comp_urge", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L196", + "source_location": "L209", "community": 12, "norm_label": "comp_urge", "id": "locales_en_pricing_comp_urge" @@ -90843,7 +126882,7 @@ "label": "comp_sos", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L197", + "source_location": "L210", "community": 12, "norm_label": "comp_sos", "id": "locales_en_pricing_comp_sos" @@ -90852,7 +126891,7 @@ "label": "comp_community", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L198", + "source_location": "L211", "community": 12, "norm_label": "comp_community", "id": "locales_en_pricing_comp_community" @@ -90861,7 +126900,7 @@ "label": "comp_post", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L199", + "source_location": "L212", "community": 12, "norm_label": "comp_post", "id": "locales_en_pricing_comp_post" @@ -90870,7 +126909,7 @@ "label": "comp_buddy", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L200", + "source_location": "L213", "community": 12, "norm_label": "comp_buddy", "id": "locales_en_pricing_comp_buddy" @@ -90879,7 +126918,7 @@ "label": "comp_urge_stats", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L201", + "source_location": "L214", "community": 12, "norm_label": "comp_urge_stats", "id": "locales_en_pricing_comp_urge_stats" @@ -90888,7 +126927,7 @@ "label": "comp_binder", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L202", + "source_location": "L215", "community": 12, "norm_label": "comp_binder", "id": "locales_en_pricing_comp_binder" @@ -90897,7 +126936,7 @@ "label": "comp_add_domain", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L203", + "source_location": "L216", "community": 12, "norm_label": "comp_add_domain", "id": "locales_en_pricing_comp_add_domain" @@ -90906,7 +126945,7 @@ "label": "comp_validate", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L204", + "source_location": "L217", "community": 12, "norm_label": "comp_validate", "id": "locales_en_pricing_comp_validate" @@ -90915,7 +126954,7 @@ "label": "comp_groups", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L205", + "source_location": "L218", "community": 12, "norm_label": "comp_groups", "id": "locales_en_pricing_comp_groups" @@ -90924,7 +126963,7 @@ "label": "comp_pro_devices", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L206", + "source_location": "L219", "community": 12, "norm_label": "comp_pro_devices", "id": "locales_en_pricing_comp_pro_devices" @@ -90933,7 +126972,7 @@ "label": "comp_legend_devices", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L207", + "source_location": "L220", "community": 12, "norm_label": "comp_legend_devices", "id": "locales_en_pricing_comp_legend_devices" @@ -90942,7 +126981,7 @@ "label": "comp_pro_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L208", + "source_location": "L221", "community": 12, "norm_label": "comp_pro_domains", "id": "locales_en_pricing_comp_pro_domains" @@ -90951,7 +126990,7 @@ "label": "comp_legend_domains", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L209", + "source_location": "L222", "community": 12, "norm_label": "comp_legend_domains", "id": "locales_en_pricing_comp_legend_domains" @@ -90960,7 +126999,7 @@ "label": "comp_pro_mail_val", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L210", + "source_location": "L223", "community": 12, "norm_label": "comp_pro_mail_val", "id": "locales_en_pricing_comp_pro_mail_val" @@ -90969,7 +127008,7 @@ "label": "comp_legend_mail_val", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L211", + "source_location": "L224", "community": 12, "norm_label": "comp_legend_mail_val", "id": "locales_en_pricing_comp_legend_mail_val" @@ -90978,7 +127017,7 @@ "label": "comp_pro_coach_val", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L212", + "source_location": "L225", "community": 12, "norm_label": "comp_pro_coach_val", "id": "locales_en_pricing_comp_pro_coach_val" @@ -90987,7 +127026,7 @@ "label": "comp_legend_coach_val", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L213", + "source_location": "L226", "community": 12, "norm_label": "comp_legend_coach_val", "id": "locales_en_pricing_comp_legend_coach_val" @@ -90996,7 +127035,7 @@ "label": "faq1_q", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L214", + "source_location": "L227", "community": 12, "norm_label": "faq1_q", "id": "locales_en_pricing_faq1_q" @@ -91005,7 +127044,7 @@ "label": "faq1_a", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L215", + "source_location": "L228", "community": 12, "norm_label": "faq1_a", "id": "locales_en_pricing_faq1_a" @@ -91014,7 +127053,7 @@ "label": "faq2_q", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L216", + "source_location": "L229", "community": 12, "norm_label": "faq2_q", "id": "locales_en_pricing_faq2_q" @@ -91023,7 +127062,7 @@ "label": "faq2_a", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L217", + "source_location": "L230", "community": 12, "norm_label": "faq2_a", "id": "locales_en_pricing_faq2_a" @@ -91032,7 +127071,7 @@ "label": "faq3_q", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L218", + "source_location": "L231", "community": 12, "norm_label": "faq3_q", "id": "locales_en_pricing_faq3_q" @@ -91041,7 +127080,7 @@ "label": "faq3_a", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L219", + "source_location": "L232", "community": 12, "norm_label": "faq3_a", "id": "locales_en_pricing_faq3_a" @@ -91050,7 +127089,7 @@ "label": "faq4_q", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L220", + "source_location": "L233", "community": 12, "norm_label": "faq4_q", "id": "locales_en_pricing_faq4_q" @@ -91059,7 +127098,7 @@ "label": "faq4_a", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L221", + "source_location": "L234", "community": 12, "norm_label": "faq4_a", "id": "locales_en_pricing_faq4_a" @@ -91068,7 +127107,7 @@ "label": "faq5_q", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L222", + "source_location": "L235", "community": 12, "norm_label": "faq5_q", "id": "locales_en_pricing_faq5_q" @@ -91077,7 +127116,7 @@ "label": "faq5_a", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L223", + "source_location": "L236", "community": 12, "norm_label": "faq5_a", "id": "locales_en_pricing_faq5_a" @@ -91086,7 +127125,7 @@ "label": "faq6_q", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L224", + "source_location": "L237", "community": 12, "norm_label": "faq6_q", "id": "locales_en_pricing_faq6_q" @@ -91095,11 +127134,29 @@ "label": "faq6_a", "file_type": "code", "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L225", + "source_location": "L238", "community": 12, "norm_label": "faq6_a", "id": "locales_en_pricing_faq6_a" }, + { + "label": "PreviewPhone.vue", + "file_type": "code", + "source_file": "apps/marketing/app/components/PreviewPhone.vue", + "source_location": "L1", + "community": 859, + "norm_label": "previewphone.vue", + "id": "apps_marketing_app_components_previewphone_vue" + }, + { + "label": "AnimatedCounter.vue", + "file_type": "code", + "source_file": "apps/marketing/app/components/AnimatedCounter.vue", + "source_location": "L1", + "community": 1318, + "norm_label": "animatedcounter.vue", + "id": "apps_marketing_app_components_animatedcounter_vue" + }, { "label": "FeatureCard.vue", "file_type": "code", @@ -91109,6 +127166,15 @@ "norm_label": "featurecard.vue", "id": "apps_marketing_app_components_featurecard_vue" }, + { + "label": "PreviewDesktop.vue", + "file_type": "code", + "source_file": "apps/marketing/app/components/PreviewDesktop.vue", + "source_location": "L1", + "community": 860, + "norm_label": "previewdesktop.vue", + "id": "apps_marketing_app_components_previewdesktop_vue" + }, { "label": "BlocklistGrowth.vue", "file_type": "code", @@ -91127,6 +127193,51 @@ "norm_label": "default.vue", "id": "apps_marketing_app_layouts_default_vue" }, + { + "label": "route", + "file_type": "code", + "source_file": "apps/marketing/app/layouts/default.vue", + "source_location": "L77", + "community": 631, + "norm_label": "route", + "id": "layouts_default_route" + }, + { + "label": "{ t }", + "file_type": "code", + "source_file": "apps/marketing/app/layouts/default.vue", + "source_location": "L78", + "community": 631, + "norm_label": "{ t }", + "id": "layouts_default_t" + }, + { + "label": "menuOpen", + "file_type": "code", + "source_file": "apps/marketing/app/layouts/default.vue", + "source_location": "L79", + "community": 631, + "norm_label": "menuopen", + "id": "layouts_default_menuopen" + }, + { + "label": "navLinks", + "file_type": "code", + "source_file": "apps/marketing/app/layouts/default.vue", + "source_location": "L82", + "community": 631, + "norm_label": "navlinks", + "id": "layouts_default_navlinks" + }, + { + "label": "isActive()", + "file_type": "code", + "source_file": "apps/marketing/app/layouts/default.vue", + "source_location": "L91", + "community": 631, + "norm_label": "isactive()", + "id": "layouts_default_isactive" + }, { "label": "index.vue", "file_type": "code", @@ -91136,6 +127247,51 @@ "norm_label": "index.vue", "id": "apps_marketing_app_pages_index_vue" }, + { + "label": "pricing.vue", + "file_type": "code", + "source_file": "apps/marketing/app/pages/pricing.vue", + "source_location": "L1", + "community": 834, + "norm_label": "pricing.vue", + "id": "apps_marketing_app_pages_pricing_vue" + }, + { + "label": "account-loeschen.vue", + "file_type": "code", + "source_file": "apps/marketing/app/pages/account-loeschen.vue", + "source_location": "L1", + "community": 835, + "norm_label": "account-loeschen.vue", + "id": "apps_marketing_app_pages_account_loeschen_vue" + }, + { + "label": "preview.vue", + "file_type": "code", + "source_file": "apps/marketing/app/pages/preview.vue", + "source_location": "L1", + "community": 95, + "norm_label": "preview.vue", + "id": "apps_marketing_app_pages_preview_vue" + }, + { + "label": "steps", + "file_type": "code", + "source_file": "apps/marketing/app/pages/preview.vue", + "source_location": "L31", + "community": 95, + "norm_label": "steps", + "id": "pages_preview_steps" + }, + { + "label": "mailProviders", + "file_type": "code", + "source_file": "apps/marketing/app/pages/preview.vue", + "source_location": "L37", + "community": 95, + "norm_label": "mailproviders", + "id": "pages_preview_mailproviders" + }, { "label": "datenschutz.vue", "file_type": "code", @@ -91217,6 +127373,15 @@ "norm_label": "resources.vue", "id": "apps_marketing_app_pages_resources_vue" }, + { + "label": "nutzungsbedingungen.vue", + "file_type": "code", + "source_file": "apps/marketing/app/pages/nutzungsbedingungen.vue", + "source_location": "L1", + "community": 838, + "norm_label": "nutzungsbedingungen.vue", + "id": "apps_marketing_app_pages_nutzungsbedingungen_vue" + }, { "label": "impressum.vue", "file_type": "code", @@ -91226,15 +127391,32775 @@ "norm_label": "impressum.vue", "id": "apps_marketing_app_pages_impressum_vue" }, + { + "label": "android.vue", + "file_type": "code", + "source_file": "apps/marketing/app/pages/download/android.vue", + "source_location": "L1", + "community": 840, + "norm_label": "android.vue", + "id": "apps_marketing_app_pages_download_android_vue" + }, + { + "label": "windows.vue", + "file_type": "code", + "source_file": "apps/marketing/app/pages/download/windows.vue", + "source_location": "L1", + "community": 861, + "norm_label": "windows.vue", + "id": "apps_marketing_app_pages_download_windows_vue" + }, + { + "label": "rebreakmagic.vue", + "file_type": "code", + "source_file": "apps/marketing/app/pages/download/rebreakmagic.vue", + "source_location": "L1", + "community": 862, + "norm_label": "rebreakmagic.vue", + "id": "apps_marketing_app_pages_download_rebreakmagic_vue" + }, + { + "label": "useDeviceStatus.ts", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L1", + "community": 261, + "norm_label": "usedevicestatus.ts", + "id": "apps_rebreak_magic_app_composables_usedevicestatus_ts" + }, + { + "label": "DeviceStatus", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L4", + "community": 261, + "norm_label": "devicestatus", + "id": "composables_usedevicestatus_devicestatus" + }, + { + "label": "ComputedDevice", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L6", + "community": 261, + "norm_label": "computeddevice", + "id": "composables_usedevicestatus_computeddevice" + }, + { + "label": "normalizePlatform()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L24", + "community": 261, + "norm_label": "normalizeplatform()", + "id": "composables_usedevicestatus_normalizeplatform" + }, + { + "label": "normalizeHostname()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L33", + "community": 261, + "norm_label": "normalizehostname()", + "id": "composables_usedevicestatus_normalizehostname" + }, + { + "label": "mapToComputedDevice()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L37", + "community": 261, + "norm_label": "maptocomputeddevice()", + "id": "composables_usedevicestatus_maptocomputeddevice" + }, + { + "label": "useDeviceStatus()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L53", + "community": 261, + "norm_label": "usedevicestatus()", + "id": "composables_usedevicestatus_usedevicestatus" + }, + { + "label": "useMagicState.ts", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L1", + "community": 48, + "norm_label": "usemagicstate.ts", + "id": "apps_rebreak_magic_app_composables_usemagicstate_ts" + }, + { + "label": "MagicSessionState", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L3", + "community": 48, + "norm_label": "magicsessionstate", + "id": "composables_usemagicstate_magicsessionstate" + }, + { + "label": "useMagicSession()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L12", + "community": 48, + "norm_label": "usemagicsession()", + "id": "composables_usemagicstate_usemagicsession" + }, + { + "label": "useMagicDevices()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L16", + "community": 48, + "norm_label": "usemagicdevices()", + "id": "composables_usemagicstate_usemagicdevices" + }, + { + "label": "useCurrentMagicDevice()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L20", + "community": 48, + "norm_label": "usecurrentmagicdevice()", + "id": "composables_usemagicstate_usecurrentmagicdevice" + }, + { + "label": "useIphoneDevice()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L30", + "community": 48, + "norm_label": "useiphonedevice()", + "id": "composables_usemagicstate_useiphonedevice" + }, + { + "label": "useProtectionStatus.ts", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L1", + "community": 48, + "norm_label": "useprotectionstatus.ts", + "id": "apps_rebreak_magic_app_composables_useprotectionstatus_ts" + }, + { + "label": "ProtectionStatus", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L5", + "community": 48, + "norm_label": "protectionstatus", + "id": "composables_useprotectionstatus_protectionstatus" + }, + { + "label": "normalizeHostname()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L15", + "community": 48, + "norm_label": "normalizehostname()", + "id": "composables_useprotectionstatus_normalizehostname" + }, + { + "label": "useProtectionStatus()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L19", + "community": 48, + "norm_label": "useprotectionstatus()", + "id": "composables_useprotectionstatus_useprotectionstatus" + }, + { + "label": "useMdmStatus.ts", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useMdmStatus.ts", + "source_location": "L1", + "community": 582, + "norm_label": "usemdmstatus.ts", + "id": "apps_rebreak_magic_app_composables_usemdmstatus_ts" + }, + { + "label": "MdmStatusState", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useMdmStatus.ts", + "source_location": "L4", + "community": 582, + "norm_label": "mdmstatusstate", + "id": "composables_usemdmstatus_mdmstatusstate" + }, + { + "label": "useMdmStatus()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/composables/useMdmStatus.ts", + "source_location": "L10", + "community": 582, + "norm_label": "usemdmstatus()", + "id": "composables_usemdmstatus_usemdmstatus" + }, + { + "label": "CooldownCountdown.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/CooldownCountdown.vue", + "source_location": "L1", + "community": 1186, + "norm_label": "cooldowncountdown.vue", + "id": "apps_rebreak_magic_app_components_cooldowncountdown_vue" + }, + { + "label": "now", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/CooldownCountdown.vue", + "source_location": "L14", + "community": 1186, + "norm_label": "now", + "id": "components_cooldowncountdown_now" + }, + { + "label": "remainingMs", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/CooldownCountdown.vue", + "source_location": "L17", + "community": 1186, + "norm_label": "remainingms", + "id": "components_cooldowncountdown_remainingms" + }, + { + "label": "display", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/CooldownCountdown.vue", + "source_location": "L19", + "community": 1186, + "norm_label": "display", + "id": "components_cooldowncountdown_display" + }, + { + "label": "UnknownIosDeviceCard.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/UnknownIosDeviceCard.vue", + "source_location": "L1", + "community": 1327, + "norm_label": "unknowniosdevicecard.vue", + "id": "apps_rebreak_magic_app_components_unknowniosdevicecard_vue" + }, + { + "label": "DeviceListItem.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DeviceListItem.vue", + "source_location": "L1", + "community": 1324, + "norm_label": "devicelistitem.vue", + "id": "apps_rebreak_magic_app_components_devicelistitem_vue" + }, + { + "label": "DeviceHeroCard.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DeviceHeroCard.vue", + "source_location": "L1", + "community": 1323, + "norm_label": "deviceherocard.vue", + "id": "apps_rebreak_magic_app_components_deviceherocard_vue" + }, + { + "label": "DeviceDetailSheet.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L1", + "community": 1012, + "norm_label": "devicedetailsheet.vue", + "id": "apps_rebreak_magic_app_components_devicedetailsheet_vue" + }, + { + "label": "statusColor", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L267", + "community": 1012, + "norm_label": "statuscolor", + "id": "components_devicedetailsheet_statuscolor" + }, + { + "label": "statusVariant", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L268", + "community": 1012, + "norm_label": "statusvariant", + "id": "components_devicedetailsheet_statusvariant" + }, + { + "label": "cooldownUntilText", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L270", + "community": 1012, + "norm_label": "cooldownuntiltext", + "id": "components_devicedetailsheet_cooldownuntiltext" + }, + { + "label": "desktopToggleLabel", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L278", + "community": 1012, + "norm_label": "desktoptogglelabel", + "id": "components_devicedetailsheet_desktoptogglelabel" + }, + { + "label": "desktopToggleIcon", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L283", + "community": 1012, + "norm_label": "desktoptoggleicon", + "id": "components_devicedetailsheet_desktoptoggleicon" + }, + { + "label": "onClose()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L288", + "community": 1012, + "norm_label": "onclose()", + "id": "components_devicedetailsheet_onclose" + }, + { + "label": "onStartCooldown()", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L293", + "community": 1012, + "norm_label": "onstartcooldown()", + "id": "components_devicedetailsheet_onstartcooldown" + }, + { + "label": "IosStarRating.vue", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosStarRating.vue", + "source_location": "L1", + "community": 1296, + "norm_label": "iosstarrating.vue", + "id": "apps_rebreak_magic_app_components_iosstarrating_vue" + }, + { + "label": "stars", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosStarRating.vue", + "source_location": "L20", + "community": 1296, + "norm_label": "stars", + "id": "components_iosstarrating_stars" + }, + { + "label": "tooltip", + "file_type": "code", + "source_file": "apps/rebreak-magic/app/components/IosStarRating.vue", + "source_location": "L21", + "community": 1296, + "norm_label": "tooltip", + "id": "components_iosstarrating_tooltip" + }, + { + "label": "capabilities.json", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 1031, + "norm_label": "capabilities.json", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 1031, + "norm_label": "default", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 1031, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 1031, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_description" + }, + { + "label": "local", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 1031, + "norm_label": "local", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_local" + }, + { + "label": "windows", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 1031, + "norm_label": "windows", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_windows" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "community": 1031, + "norm_label": "permissions", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_permissions" + }, + { + "label": "acl-manifests.json", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "acl-manifests.json", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json" + }, + { + "label": "core", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "core", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core" + }, + { + "label": "default_permission", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "default_permission", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_default_permission" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "permissions", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "permissions", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_permissions" + }, + { + "label": "permission_sets", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "permission_sets", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_permission_sets" + }, + { + "label": "global_scope_schema", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "global_scope_schema", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_global_scope_schema" + }, + { + "label": "core:app", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "core:app", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app" + }, + { + "label": "default_permission", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "default_permission", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_default_permission" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "permissions", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions" + }, + { + "label": "allow-app-hide", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "allow-app-hide", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_hide" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_commands" + }, + { + "label": "allow", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "allow", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "label": "deny", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "deny", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "label": "allow-app-show", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "allow-app-show", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_show" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_commands" + }, + { + "label": "allow-bundle-type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "allow-bundle-type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_bundle_type" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_commands" + }, + { + "label": "allow-default-window-icon", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "allow-default-window-icon", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_default_window_icon" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_commands" + }, + { + "label": "allow-fetch-data-store-identifiers", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "allow-fetch-data-store-identifiers", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_fetch_data_store_identifiers" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_commands" + }, + { + "label": "allow-identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1188, + "norm_label": "allow-identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_identifier" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1188, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1188, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1188, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_commands" + }, + { + "label": "allow-name", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1192, + "norm_label": "allow-name", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_name" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1192, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1192, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1192, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_commands" + }, + { + "label": "allow-register-listener", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1195, + "norm_label": "allow-register-listener", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_register_listener" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1195, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1195, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1195, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_commands" + }, + { + "label": "allow-remove-data-store", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "allow-remove-data-store", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_data_store" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_commands" + }, + { + "label": "allow-remove-listener", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1197, + "norm_label": "allow-remove-listener", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_listener" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1197, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1197, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1197, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_commands" + }, + { + "label": "allow-set-app-theme", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "allow-set-app-theme", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_app_theme" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_commands" + }, + { + "label": "allow-set-dock-visibility", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1202, + "norm_label": "allow-set-dock-visibility", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_dock_visibility" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1202, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1202, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1202, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_commands" + }, + { + "label": "allow-supports-multiple-windows", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1205, + "norm_label": "allow-supports-multiple-windows", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_supports_multiple_windows" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1205, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1205, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1205, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_commands" + }, + { + "label": "allow-tauri-version", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1206, + "norm_label": "allow-tauri-version", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_tauri_version" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1206, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1206, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1206, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_commands" + }, + { + "label": "allow-version", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "allow-version", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_version" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_commands" + }, + { + "label": "deny-app-hide", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "deny-app-hide", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_hide" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_commands" + }, + { + "label": "deny-app-show", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "deny-app-show", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_show" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_commands" + }, + { + "label": "deny-bundle-type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1208, + "norm_label": "deny-bundle-type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_bundle_type" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1208, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1208, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1208, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_commands" + }, + { + "label": "deny-default-window-icon", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1210, + "norm_label": "deny-default-window-icon", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_default_window_icon" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1210, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1210, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1210, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_commands" + }, + { + "label": "deny-fetch-data-store-identifiers", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1211, + "norm_label": "deny-fetch-data-store-identifiers", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_fetch_data_store_identifiers" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1211, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1211, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1211, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_commands" + }, + { + "label": "deny-identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1013, + "norm_label": "deny-identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_identifier" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1013, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1013, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1013, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_commands" + }, + { + "label": "deny-name", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1214, + "norm_label": "deny-name", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_name" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1214, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1214, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1214, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_commands" + }, + { + "label": "deny-register-listener", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "deny-register-listener", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_register_listener" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_commands" + }, + { + "label": "deny-remove-data-store", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1215, + "norm_label": "deny-remove-data-store", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_data_store" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1215, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1215, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1215, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_commands" + }, + { + "label": "deny-remove-listener", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1216, + "norm_label": "deny-remove-listener", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_listener" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1216, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1216, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1216, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_commands" + }, + { + "label": "deny-set-app-theme", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "deny-set-app-theme", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_app_theme" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 49, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_commands" + }, + { + "label": "deny-set-dock-visibility", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1217, + "norm_label": "deny-set-dock-visibility", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_dock_visibility" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1217, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1217, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1217, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_commands" + }, + { + "label": "deny-supports-multiple-windows", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1218, + "norm_label": "deny-supports-multiple-windows", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_supports_multiple_windows" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1218, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1218, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1218, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_commands" + }, + { + "label": "deny-tauri-version", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1219, + "norm_label": "deny-tauri-version", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_tauri_version" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1219, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1219, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1219, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_commands" + }, + { + "label": "deny-version", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1220, + "norm_label": "deny-version", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_version" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1220, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1220, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1220, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_commands" + }, + { + "label": "permission_sets", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "permission_sets", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permission_sets" + }, + { + "label": "global_scope_schema", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "global_scope_schema", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_global_scope_schema" + }, + { + "label": "core:event", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "core:event", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event" + }, + { + "label": "default_permission", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "default_permission", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_default_permission" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "permissions", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions" + }, + { + "label": "allow-emit", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "allow-emit", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_commands" + }, + { + "label": "allow-emit-to", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "allow-emit-to", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit_to" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_commands" + }, + { + "label": "allow-listen", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "allow-listen", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_listen" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_commands" + }, + { + "label": "allow-unlisten", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "allow-unlisten", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_unlisten" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_commands" + }, + { + "label": "deny-emit", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "deny-emit", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_commands" + }, + { + "label": "deny-emit-to", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "deny-emit-to", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit_to" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_commands" + }, + { + "label": "deny-listen", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "deny-listen", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_listen" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_commands" + }, + { + "label": "deny-unlisten", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "deny-unlisten", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_unlisten" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 118, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_commands" + }, + { + "label": "permission_sets", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "permission_sets", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permission_sets" + }, + { + "label": "global_scope_schema", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "global_scope_schema", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_global_scope_schema" + }, + { + "label": "core:image", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "core:image", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image" + }, + { + "label": "default_permission", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "default_permission", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_default_permission" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "permissions", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions" + }, + { + "label": "allow-from-bytes", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "allow-from-bytes", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_bytes" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_commands" + }, + { + "label": "allow-from-path", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "allow-from-path", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_path" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_commands" + }, + { + "label": "allow-new", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "allow-new", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_commands" + }, + { + "label": "allow-rgba", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "allow-rgba", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_rgba" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_commands" + }, + { + "label": "allow-size", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "allow-size", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_size" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_commands" + }, + { + "label": "deny-from-bytes", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "deny-from-bytes", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_bytes" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_commands" + }, + { + "label": "deny-from-path", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "deny-from-path", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_path" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_commands" + }, + { + "label": "deny-new", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "deny-new", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_new" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_commands" + }, + { + "label": "deny-rgba", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "deny-rgba", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_rgba" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_commands" + }, + { + "label": "deny-size", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "deny-size", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_size" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_commands" + }, + { + "label": "permission_sets", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "permission_sets", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permission_sets" + }, + { + "label": "global_scope_schema", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "global_scope_schema", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_global_scope_schema" + }, + { + "label": "core:menu", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "core:menu", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu" + }, + { + "label": "default_permission", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 231, + "norm_label": "default_permission", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_default_permission" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "permissions", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions" + }, + { + "label": "allow-append", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "allow-append", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_append" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 38, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_commands" + }, + { + "label": "allow-create-default", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "allow-create-default", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_create_default" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_commands" + }, + { + "label": "allow-get", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "allow-get", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_get" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_commands" + }, + { + "label": "allow-insert", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "allow-insert", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_insert" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_commands" + }, + { + "label": "allow-is-checked", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1189, + "norm_label": "allow-is-checked", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_checked" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1189, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1189, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1189, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_commands" + }, + { + "label": "allow-is-enabled", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1190, + "norm_label": "allow-is-enabled", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_enabled" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1190, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1190, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1190, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_commands" + }, + { + "label": "allow-items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1191, + "norm_label": "allow-items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_items" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1191, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1191, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1191, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_commands" + }, + { + "label": "allow-popup", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1193, + "norm_label": "allow-popup", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_popup" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1193, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1193, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1193, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_commands" + }, + { + "label": "allow-prepend", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1194, + "norm_label": "allow-prepend", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_prepend" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1194, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1194, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1194, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_commands" + }, + { + "label": "allow-remove", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1196, + "norm_label": "allow-remove", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1196, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1196, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1196, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_commands" + }, + { + "label": "allow-remove-at", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1013, + "norm_label": "allow-remove-at", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_at" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1013, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1013, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1013, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_commands" + }, + { + "label": "allow-set-accelerator", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1198, + "norm_label": "allow-set-accelerator", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_accelerator" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1198, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1198, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1198, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_commands" + }, + { + "label": "allow-set-as-app-menu", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1199, + "norm_label": "allow-set-as-app-menu", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_app_menu" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1199, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1199, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1199, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_commands" + }, + { + "label": "allow-set-as-help-menu-for-nsapp", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "allow-set-as-help-menu-for-nsapp", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_help_menu_for_nsapp" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_commands" + }, + { + "label": "allow-set-as-window-menu", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1200, + "norm_label": "allow-set-as-window-menu", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_window_menu" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1200, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1200, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1200, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_commands" + }, + { + "label": "allow-set-as-windows-menu-for-nsapp", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1201, + "norm_label": "allow-set-as-windows-menu-for-nsapp", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_windows_menu_for_nsapp" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1201, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1201, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1201, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_commands" + }, + { + "label": "allow-set-checked", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "allow-set-checked", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_checked" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_commands" + }, + { + "label": "allow-set-enabled", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "allow-set-enabled", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_enabled" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_commands" + }, + { + "label": "allow-set-icon", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1203, + "norm_label": "allow-set-icon", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_icon" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1203, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1203, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1203, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_commands" + }, + { + "label": "allow-set-text", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1204, + "norm_label": "allow-set-text", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_text" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1204, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1204, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1204, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_commands" + }, + { + "label": "allow-text", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1207, + "norm_label": "allow-text", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_text" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1207, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1207, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1207, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_commands" + }, + { + "label": "deny-append", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "deny-append", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_append" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_commands" + }, + { + "label": "deny-create-default", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1209, + "norm_label": "deny-create-default", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_create_default" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1209, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1209, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1209, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_commands" + }, + { + "label": "deny-get", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1212, + "norm_label": "deny-get", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_get" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1212, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1212, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1212, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_commands" + }, + { + "label": "deny-insert", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "deny-insert", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_insert" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_commands" + }, + { + "label": "deny-is-checked", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1213, + "norm_label": "deny-is-checked", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_checked" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1213, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1213, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 1213, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_commands" + }, + { + "label": "deny-is-enabled", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "deny-is-enabled", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_enabled" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_commands" + }, + { + "label": "deny-items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "deny-items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_items" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_description" + }, + { + "label": "commands", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "community": 114, + "norm_label": "commands", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_commands" + }, + { + "label": "macOS-schema.json", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L1", + "community": 1122, + "norm_label": "macos-schema.json", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2", + "community": 1122, + "norm_label": "$schema", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_schema" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L3", + "community": 1122, + "norm_label": "title", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L4", + "community": 1122, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L5", + "community": 1122, + "norm_label": "anyof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_anyof" + }, + { + "label": "definitions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L38", + "community": 936, + "norm_label": "definitions", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions" + }, + { + "label": "Capability", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L39", + "community": 1223, + "norm_label": "capability", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L40", + "community": 1223, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L41", + "community": 1223, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_type" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L42", + "community": 1223, + "norm_label": "required", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_required" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L46", + "community": 968, + "norm_label": "properties", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L47", + "community": 968, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L48", + "community": 936, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L49", + "community": 968, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L51", + "community": 968, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_description" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L52", + "community": 968, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L53", + "community": 968, + "norm_label": "default", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_default" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L54", + "community": 968, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_type" + }, + { + "label": "remote", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L56", + "community": 968, + "norm_label": "remote", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_remote" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L57", + "community": 968, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_remote_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L58", + "community": 968, + "norm_label": "anyof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_remote_anyof" + }, + { + "label": "local", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L67", + "community": 1224, + "norm_label": "local", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_local" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L68", + "community": 1224, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L69", + "community": 1224, + "norm_label": "default", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_default" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L70", + "community": 1224, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_type" + }, + { + "label": "windows", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L72", + "community": 970, + "norm_label": "windows", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_windows" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L73", + "community": 970, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L74", + "community": 970, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L75", + "community": 970, + "norm_label": "items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_items" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L76", + "community": 970, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_type" + }, + { + "label": "webviews", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L79", + "community": 970, + "norm_label": "webviews", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_webviews" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L80", + "community": 970, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L81", + "community": 970, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L82", + "community": 970, + "norm_label": "items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_items" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L86", + "community": 969, + "norm_label": "permissions", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L87", + "community": 969, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L88", + "community": 969, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L89", + "community": 969, + "norm_label": "items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_items" + }, + { + "label": "$ref", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L90", + "community": 969, + "norm_label": "$ref", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_ref" + }, + { + "label": "uniqueItems", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L92", + "community": 969, + "norm_label": "uniqueitems", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_uniqueitems" + }, + { + "label": "platforms", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L94", + "community": 969, + "norm_label": "platforms", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_platforms" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L95", + "community": 969, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L96", + "community": 969, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L100", + "community": 969, + "norm_label": "items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_items" + }, + { + "label": "CapabilityRemote", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L106", + "community": 1015, + "norm_label": "capabilityremote", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L107", + "community": 1015, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L108", + "community": 1015, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_type" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L109", + "community": 1015, + "norm_label": "required", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_required" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L112", + "community": 1015, + "norm_label": "properties", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_properties" + }, + { + "label": "urls", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L113", + "community": 1015, + "norm_label": "urls", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_urls" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L114", + "community": 1015, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L115", + "community": 1015, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L116", + "community": 970, + "norm_label": "items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_items" + }, + { + "label": "PermissionEntry", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L122", + "community": 936, + "norm_label": "permissionentry", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_permissionentry" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L123", + "community": 936, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissionentry_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L124", + "community": 936, + "norm_label": "anyof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissionentry_anyof" + }, + { + "label": "Identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2348", + "community": 936, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_identifier" + }, + { + "label": "oneOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2350", + "community": 936, + "norm_label": "oneof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_oneof" + }, + { + "label": "Value", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6355", + "community": 1300, + "norm_label": "value", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_value" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6356", + "community": 1300, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_value_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6357", + "community": 1300, + "norm_label": "anyof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_value_anyof" + }, + { + "label": "Number", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6394", + "community": 936, + "norm_label": "number", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_number" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6395", + "community": 936, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_number_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6396", + "community": 936, + "norm_label": "anyof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_number_anyof" + }, + { + "label": "Target", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6409", + "community": 1286, + "norm_label": "target", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_target" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6410", + "community": 1286, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_target_description" + }, + { + "label": "oneOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6411", + "community": 1286, + "norm_label": "oneof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_target_oneof" + }, + { + "label": "ShellScopeEntryAllowedArg", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6449", + "community": 936, + "norm_label": "shellscopeentryallowedarg", + "id": "schemas_macos_schema_definitions_shellscopeentryallowedarg" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6450", + "community": 936, + "norm_label": "description", + "id": "schemas_macos_schema_shellscopeentryallowedarg_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6451", + "community": 936, + "norm_label": "anyof", + "id": "schemas_macos_schema_shellscopeentryallowedarg_anyof" + }, + { + "label": "ShellScopeEntryAllowedArgs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6477", + "community": 1307, + "norm_label": "shellscopeentryallowedargs", + "id": "schemas_macos_schema_definitions_shellscopeentryallowedargs" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6478", + "community": 1307, + "norm_label": "description", + "id": "schemas_macos_schema_shellscopeentryallowedargs_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6479", + "community": 1307, + "norm_label": "anyof", + "id": "schemas_macos_schema_shellscopeentryallowedargs_anyof" + }, + { + "label": "desktop-schema.json", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L1", + "community": 1121, + "norm_label": "desktop-schema.json", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json" + }, + { + "label": "$schema", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2", + "community": 1121, + "norm_label": "$schema", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_schema" + }, + { + "label": "title", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L3", + "community": 1121, + "norm_label": "title", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L4", + "community": 1121, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L5", + "community": 1121, + "norm_label": "anyof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_anyof" + }, + { + "label": "definitions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L38", + "community": 935, + "norm_label": "definitions", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions" + }, + { + "label": "Capability", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L39", + "community": 1221, + "norm_label": "capability", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L40", + "community": 1221, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L41", + "community": 1221, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_type" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L42", + "community": 1221, + "norm_label": "required", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_required" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L46", + "community": 965, + "norm_label": "properties", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties" + }, + { + "label": "identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L47", + "community": 965, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_identifier" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L48", + "community": 935, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L49", + "community": 965, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_type" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L51", + "community": 965, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_description" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L52", + "community": 965, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L53", + "community": 965, + "norm_label": "default", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_default" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L54", + "community": 965, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_type" + }, + { + "label": "remote", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L56", + "community": 965, + "norm_label": "remote", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_remote" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L57", + "community": 965, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_remote_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L58", + "community": 965, + "norm_label": "anyof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_remote_anyof" + }, + { + "label": "local", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L67", + "community": 1222, + "norm_label": "local", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_local" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L68", + "community": 1222, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_description" + }, + { + "label": "default", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L69", + "community": 1222, + "norm_label": "default", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_default" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L70", + "community": 1222, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_type" + }, + { + "label": "windows", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L72", + "community": 967, + "norm_label": "windows", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_windows" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L73", + "community": 967, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L74", + "community": 967, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L75", + "community": 967, + "norm_label": "items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_items" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L76", + "community": 967, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_type" + }, + { + "label": "webviews", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L79", + "community": 967, + "norm_label": "webviews", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_webviews" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L80", + "community": 967, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L81", + "community": 967, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L82", + "community": 967, + "norm_label": "items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_items" + }, + { + "label": "permissions", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L86", + "community": 966, + "norm_label": "permissions", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L87", + "community": 966, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L88", + "community": 966, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L89", + "community": 966, + "norm_label": "items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_items" + }, + { + "label": "$ref", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L90", + "community": 966, + "norm_label": "$ref", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_ref" + }, + { + "label": "uniqueItems", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L92", + "community": 966, + "norm_label": "uniqueitems", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_uniqueitems" + }, + { + "label": "platforms", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L94", + "community": 966, + "norm_label": "platforms", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_platforms" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L95", + "community": 966, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L96", + "community": 966, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L100", + "community": 966, + "norm_label": "items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_items" + }, + { + "label": "CapabilityRemote", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L106", + "community": 1014, + "norm_label": "capabilityremote", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L107", + "community": 1014, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L108", + "community": 1014, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_type" + }, + { + "label": "required", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L109", + "community": 1014, + "norm_label": "required", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_required" + }, + { + "label": "properties", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L112", + "community": 1014, + "norm_label": "properties", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_properties" + }, + { + "label": "urls", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L113", + "community": 1014, + "norm_label": "urls", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_urls" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L114", + "community": 1014, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L115", + "community": 1014, + "norm_label": "type", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_type" + }, + { + "label": "items", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L116", + "community": 967, + "norm_label": "items", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_items" + }, + { + "label": "PermissionEntry", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L122", + "community": 935, + "norm_label": "permissionentry", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_permissionentry" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L123", + "community": 935, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissionentry_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L124", + "community": 935, + "norm_label": "anyof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissionentry_anyof" + }, + { + "label": "Identifier", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2348", + "community": 935, + "norm_label": "identifier", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_identifier" + }, + { + "label": "oneOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2350", + "community": 935, + "norm_label": "oneof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_oneof" + }, + { + "label": "Value", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6355", + "community": 1299, + "norm_label": "value", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_value" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6356", + "community": 1299, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_value_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6357", + "community": 1299, + "norm_label": "anyof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_value_anyof" + }, + { + "label": "Number", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6394", + "community": 935, + "norm_label": "number", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_number" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6395", + "community": 935, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_number_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6396", + "community": 935, + "norm_label": "anyof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_number_anyof" + }, + { + "label": "Target", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6409", + "community": 935, + "norm_label": "target", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_target" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6410", + "community": 935, + "norm_label": "description", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_target_description" + }, + { + "label": "oneOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6411", + "community": 935, + "norm_label": "oneof", + "id": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_target_oneof" + }, + { + "label": "ShellScopeEntryAllowedArg", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6449", + "community": 1304, + "norm_label": "shellscopeentryallowedarg", + "id": "schemas_desktop_schema_definitions_shellscopeentryallowedarg" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6450", + "community": 1304, + "norm_label": "description", + "id": "schemas_desktop_schema_shellscopeentryallowedarg_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6451", + "community": 1304, + "norm_label": "anyof", + "id": "schemas_desktop_schema_shellscopeentryallowedarg_anyof" + }, + { + "label": "ShellScopeEntryAllowedArgs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6477", + "community": 1305, + "norm_label": "shellscopeentryallowedargs", + "id": "schemas_desktop_schema_definitions_shellscopeentryallowedargs" + }, + { + "label": "description", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6478", + "community": 1305, + "norm_label": "description", + "id": "schemas_desktop_schema_shellscopeentryallowedargs_description" + }, + { + "label": "anyOf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6479", + "community": 1305, + "norm_label": "anyof", + "id": "schemas_desktop_schema_shellscopeentryallowedargs_anyof" + }, + { + "label": "config.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L1", + "community": 355, + "norm_label": "config.rs", + "id": "apps_rebreak_magic_src_tauri_src_config_rs" + }, + { + "label": "AppConfig", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L8", + "community": 355, + "norm_label": "appconfig", + "id": "src_config_appconfig" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L9", + "community": 355, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_config_rs_string" + }, + { + "label": "Option", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L16", + "community": 355, + "norm_label": "option", + "id": "apps_rebreak_magic_src_tauri_src_config_rs_option" + }, + { + "label": "Default", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L22", + "community": 355, + "norm_label": "default", + "id": "default" + }, + { + "label": ".default()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L23", + "community": 355, + "norm_label": ".default()", + "id": "src_config_appconfig_default" + }, + { + "label": "Self", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L23", + "community": 355, + "norm_label": "self", + "id": "apps_rebreak_magic_src_tauri_src_config_rs_self" + }, + { + "label": "MagicSession", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L41", + "community": 355, + "norm_label": "magicsession", + "id": "src_config_magicsession" + }, + { + "label": "DateTime", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L46", + "community": 355, + "norm_label": "datetime", + "id": "datetime" + }, + { + "label": "Utc", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L46", + "community": 355, + "norm_label": "utc", + "id": "utc" + }, + { + "label": ".new()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L51", + "community": 355, + "norm_label": ".new()", + "id": "src_config_magicsession_new" + }, + { + "label": "BinderConfig", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L63", + "community": 355, + "norm_label": "binderconfig", + "id": "src_config_binderconfig" + }, + { + "label": "DesktopProtectionState", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L73", + "community": 355, + "norm_label": "desktopprotectionstate", + "id": "src_config_desktopprotectionstate" + }, + { + "label": ".config_dir()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L81", + "community": 355, + "norm_label": ".config_dir()", + "id": "src_config_appconfig_config_dir" + }, + { + "label": "AppResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L81", + "community": 355, + "norm_label": "appresult", + "id": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "label": "PathBuf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L81", + "community": 355, + "norm_label": "pathbuf", + "id": "apps_rebreak_magic_src_tauri_src_config_rs_pathbuf" + }, + { + "label": ".config_path()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L89", + "community": 355, + "norm_label": ".config_path()", + "id": "src_config_appconfig_config_path" + }, + { + "label": ".binder_config_path()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L93", + "community": 355, + "norm_label": ".binder_config_path()", + "id": "src_config_appconfig_binder_config_path" + }, + { + "label": ".load_binder_config()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L100", + "community": 355, + "norm_label": ".load_binder_config()", + "id": "src_config_appconfig_load_binder_config" + }, + { + "label": ".load()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L112", + "community": 355, + "norm_label": ".load()", + "id": "src_config_appconfig_load" + }, + { + "label": ".save()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L124", + "community": 355, + "norm_label": ".save()", + "id": "src_config_appconfig_save" + }, + { + "label": ".session_path()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L131", + "community": 355, + "norm_label": ".session_path()", + "id": "src_config_appconfig_session_path" + }, + { + "label": ".save_magic_session()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L135", + "community": 355, + "norm_label": ".save_magic_session()", + "id": "src_config_appconfig_save_magic_session" + }, + { + "label": ".load_magic_session()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L143", + "community": 355, + "norm_label": ".load_magic_session()", + "id": "src_config_appconfig_load_magic_session" + }, + { + "label": ".clear_magic_session()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L163", + "community": 355, + "norm_label": ".clear_magic_session()", + "id": "src_config_appconfig_clear_magic_session" + }, + { + "label": ".desktop_protection_path()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L174", + "community": 355, + "norm_label": ".desktop_protection_path()", + "id": "src_config_appconfig_desktop_protection_path" + }, + { + "label": ".save_desktop_protection()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L178", + "community": 355, + "norm_label": ".save_desktop_protection()", + "id": "src_config_appconfig_save_desktop_protection" + }, + { + "label": ".load_desktop_protection()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L186", + "community": 355, + "norm_label": ".load_desktop_protection()", + "id": "src_config_appconfig_load_desktop_protection" + }, + { + "label": ".clear_desktop_protection()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L203", + "community": 355, + "norm_label": ".clear_desktop_protection()", + "id": "src_config_appconfig_clear_desktop_protection" + }, + { + "label": ".set_device_id()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L214", + "community": 355, + "norm_label": ".set_device_id()", + "id": "src_config_appconfig_set_device_id" + }, + { + "label": ".set_hardware_id()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L219", + "community": 355, + "norm_label": ".set_hardware_id()", + "id": "src_config_appconfig_set_hardware_id" + }, + { + "label": "macos.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L1", + "community": 696, + "norm_label": "macos.rs", + "id": "apps_rebreak_magic_src_tauri_src_platform_macos_rs" + }, + { + "label": "get_platform_info()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L6", + "community": 696, + "norm_label": "get_platform_info()", + "id": "platform_macos_get_platform_info" + }, + { + "label": "AppResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L6", + "community": 696, + "norm_label": "appresult", + "id": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_appresult" + }, + { + "label": "PlatformInfo", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L6", + "community": 696, + "norm_label": "platforminfo", + "id": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_platforminfo" + }, + { + "label": "install_dns_profile()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L14", + "community": 696, + "norm_label": "install_dns_profile()", + "id": "platform_macos_install_dns_profile" + }, + { + "label": "store_token()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L29", + "community": 696, + "norm_label": "store_token()", + "id": "platform_macos_store_token" + }, + { + "label": "read_token()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L34", + "community": 696, + "norm_label": "read_token()", + "id": "platform_macos_read_token" + }, + { + "label": "Option", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L34", + "community": 696, + "norm_label": "option", + "id": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_option" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L34", + "community": 696, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_string" + }, + { + "label": "activate_protection()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L39", + "community": 696, + "norm_label": "activate_protection()", + "id": "platform_macos_activate_protection" + }, + { + "label": "deactivate_protection()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L43", + "community": 696, + "norm_label": "deactivate_protection()", + "id": "platform_macos_deactivate_protection" + }, + { + "label": "get_hardware_id()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L48", + "community": 696, + "norm_label": "get_hardware_id()", + "id": "platform_macos_get_hardware_id" + }, + { + "label": "mod.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L1", + "community": 925, + "norm_label": "mod.rs", + "id": "apps_rebreak_magic_src_tauri_src_platform_mod_rs" + }, + { + "label": "Platform", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L12", + "community": 925, + "norm_label": "platform", + "id": "platform_mod_platform" + }, + { + "label": "PlatformInfo", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L21", + "community": 925, + "norm_label": "platforminfo", + "id": "platform_mod_platforminfo" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L23", + "community": 925, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_string" + }, + { + "label": "get_platform()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L28", + "community": 925, + "norm_label": "get_platform()", + "id": "platform_mod_get_platform" + }, + { + "label": "AppResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L28", + "community": 925, + "norm_label": "appresult", + "id": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_appresult" + }, + { + "label": "PlatformInterface", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L43", + "community": 925, + "norm_label": "platforminterface", + "id": "platform_mod_platforminterface" + }, + { + "label": "activate_protection()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L51", + "community": 925, + "norm_label": "activate_protection()", + "id": "platform_mod_activate_protection" + }, + { + "label": "get_hardware_id()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L64", + "community": 925, + "norm_label": "get_hardware_id()", + "id": "platform_mod_get_hardware_id" + }, + { + "label": "windows.rs", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L1", + "community": 923, + "norm_label": "windows.rs", + "id": "apps_rebreak_magic_src_tauri_src_platform_windows_rs" + }, + { + "label": "get_platform_info()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L6", + "community": 923, + "norm_label": "get_platform_info()", + "id": "platform_windows_get_platform_info" + }, + { + "label": "AppResult", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L6", + "community": 923, + "norm_label": "appresult", + "id": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_appresult" + }, + { + "label": "PlatformInfo", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L6", + "community": 923, + "norm_label": "platforminfo", + "id": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_platforminfo" + }, + { + "label": "install_doh()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L14", + "community": 923, + "norm_label": "install_doh()", + "id": "platform_windows_install_doh" + }, + { + "label": "store_token()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L48", + "community": 923, + "norm_label": "store_token()", + "id": "platform_windows_store_token" + }, + { + "label": "read_token()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L53", + "community": 923, + "norm_label": "read_token()", + "id": "platform_windows_read_token" + }, + { + "label": "Option", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L53", + "community": 923, + "norm_label": "option", + "id": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_option" + }, + { + "label": "String", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L53", + "community": 923, + "norm_label": "string", + "id": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_string" + }, + { + "label": "activate_protection()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L58", + "community": 923, + "norm_label": "activate_protection()", + "id": "platform_windows_activate_protection" + }, + { + "label": "deactivate_protection()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L62", + "community": 923, + "norm_label": "deactivate_protection()", + "id": "platform_windows_deactivate_protection" + }, + { + "label": "get_hardware_id()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L67", + "community": 923, + "norm_label": "get_hardware_id()", + "id": "platform_windows_get_hardware_id" + }, + { + "label": "skill.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L1", + "community": 953, + "norm_label": "skill.json", + "id": "sixth_skills_ui_ux_pro_max_skill_json" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L2", + "community": 953, + "norm_label": "name", + "id": "ui_ux_pro_max_skill_name" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L3", + "community": 953, + "norm_label": "displayname", + "id": "ui_ux_pro_max_skill_displayname" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L4", + "community": 953, + "norm_label": "description", + "id": "ui_ux_pro_max_skill_description" + }, + { + "label": "version", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L5", + "community": 953, + "norm_label": "version", + "id": "ui_ux_pro_max_skill_version" + }, + { + "label": "author", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L6", + "community": 953, + "norm_label": "author", + "id": "ui_ux_pro_max_skill_author" + }, + { + "label": "license", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L7", + "community": 953, + "norm_label": "license", + "id": "ui_ux_pro_max_skill_license" + }, + { + "label": "homepage", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L8", + "community": 953, + "norm_label": "homepage", + "id": "ui_ux_pro_max_skill_homepage" + }, + { + "label": "repository", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L9", + "community": 953, + "norm_label": "repository", + "id": "ui_ux_pro_max_skill_repository" + }, + { + "label": "keywords", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L10", + "community": 953, + "norm_label": "keywords", + "id": "ui_ux_pro_max_skill_keywords" + }, + { + "label": "platforms", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L20", + "community": 953, + "norm_label": "platforms", + "id": "ui_ux_pro_max_skill_platforms" + }, + { + "label": "install", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L40", + "community": 953, + "norm_label": "install", + "id": "ui_ux_pro_max_skill_install" + }, + { + "label": "package.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L1", + "community": 222, + "norm_label": "package.json", + "id": "sixth_skills_ui_ux_pro_max_cli_package_json" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L2", + "community": 222, + "norm_label": "name", + "id": "cli_package_name" + }, + { + "label": "version", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L3", + "community": 222, + "norm_label": "version", + "id": "cli_package_version" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L4", + "community": 222, + "norm_label": "description", + "id": "cli_package_description" + }, + { + "label": "type", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L5", + "community": 222, + "norm_label": "type", + "id": "cli_package_type" + }, + { + "label": "bin", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L6", + "community": 222, + "norm_label": "bin", + "id": "cli_package_bin" + }, + { + "label": "uipro", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L7", + "community": 222, + "norm_label": "uipro", + "id": "cli_package_bin_uipro" + }, + { + "label": "files", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L9", + "community": 222, + "norm_label": "files", + "id": "cli_package_files" + }, + { + "label": "scripts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L13", + "community": 222, + "norm_label": "scripts", + "id": "cli_package_scripts" + }, + { + "label": "build", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L14", + "community": 222, + "norm_label": "build", + "id": "cli_package_scripts_build" + }, + { + "label": "dev", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L15", + "community": 222, + "norm_label": "dev", + "id": "cli_package_scripts_dev" + }, + { + "label": "prepublishOnly", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L16", + "community": 222, + "norm_label": "prepublishonly", + "id": "cli_package_scripts_prepublishonly" + }, + { + "label": "keywords", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L18", + "community": 222, + "norm_label": "keywords", + "id": "cli_package_keywords" + }, + { + "label": "author", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L34", + "community": 222, + "norm_label": "author", + "id": "cli_package_author" + }, + { + "label": "license", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L35", + "community": 222, + "norm_label": "license", + "id": "cli_package_license" + }, + { + "label": "dependencies", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L36", + "community": 222, + "norm_label": "dependencies", + "id": "cli_package_dependencies" + }, + { + "label": "commander", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L37", + "community": 222, + "norm_label": "commander", + "id": "cli_package_dependencies_commander" + }, + { + "label": "chalk", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L38", + "community": 222, + "norm_label": "chalk", + "id": "cli_package_dependencies_chalk" + }, + { + "label": "ora", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L39", + "community": 222, + "norm_label": "ora", + "id": "cli_package_dependencies_ora" + }, + { + "label": "prompts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L40", + "community": 222, + "norm_label": "prompts", + "id": "cli_package_dependencies_prompts" + }, + { + "label": "devDependencies", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L42", + "community": 222, + "norm_label": "devdependencies", + "id": "cli_package_devdependencies" + }, + { + "label": "@types/bun", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L43", + "community": 222, + "norm_label": "@types/bun", + "id": "cli_package_devdependencies_types_bun" + }, + { + "label": "@types/node", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L44", + "community": 222, + "norm_label": "@types/node", + "id": "cli_package_devdependencies_types_node" + }, + { + "label": "@types/prompts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L45", + "community": 222, + "norm_label": "@types/prompts", + "id": "cli_package_devdependencies_types_prompts" + }, + { + "label": "typescript", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L46", + "community": 222, + "norm_label": "typescript", + "id": "cli_package_devdependencies_typescript" + }, + { + "label": "tsconfig.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L1", + "community": 644, + "norm_label": "tsconfig.json", + "id": "sixth_skills_ui_ux_pro_max_cli_tsconfig_json" + }, + { + "label": "compilerOptions", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L2", + "community": 644, + "norm_label": "compileroptions", + "id": "cli_tsconfig_compileroptions" + }, + { + "label": "target", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L3", + "community": 644, + "norm_label": "target", + "id": "cli_tsconfig_compileroptions_target" + }, + { + "label": "module", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L4", + "community": 644, + "norm_label": "module", + "id": "cli_tsconfig_compileroptions_module" + }, + { + "label": "moduleResolution", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L5", + "community": 644, + "norm_label": "moduleresolution", + "id": "cli_tsconfig_compileroptions_moduleresolution" + }, + { + "label": "esModuleInterop", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L6", + "community": 644, + "norm_label": "esmoduleinterop", + "id": "cli_tsconfig_compileroptions_esmoduleinterop" + }, + { + "label": "strict", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L7", + "community": 644, + "norm_label": "strict", + "id": "cli_tsconfig_compileroptions_strict" + }, + { + "label": "skipLibCheck", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L8", + "community": 644, + "norm_label": "skiplibcheck", + "id": "cli_tsconfig_compileroptions_skiplibcheck" + }, + { + "label": "outDir", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L9", + "community": 644, + "norm_label": "outdir", + "id": "cli_tsconfig_compileroptions_outdir" + }, + { + "label": "rootDir", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L10", + "community": 644, + "norm_label": "rootdir", + "id": "cli_tsconfig_compileroptions_rootdir" + }, + { + "label": "declaration", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L11", + "community": 644, + "norm_label": "declaration", + "id": "cli_tsconfig_compileroptions_declaration" + }, + { + "label": "resolveJsonModule", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L12", + "community": 644, + "norm_label": "resolvejsonmodule", + "id": "cli_tsconfig_compileroptions_resolvejsonmodule" + }, + { + "label": "allowSyntheticDefaultImports", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L13", + "community": 644, + "norm_label": "allowsyntheticdefaultimports", + "id": "cli_tsconfig_compileroptions_allowsyntheticdefaultimports" + }, + { + "label": "include", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L15", + "community": 644, + "norm_label": "include", + "id": "cli_tsconfig_include" + }, + { + "label": "exclude", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L16", + "community": 644, + "norm_label": "exclude", + "id": "cli_tsconfig_exclude" + }, + { + "label": "design_system.py", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L1", + "community": 111, + "norm_label": "design_system.py", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py" + }, + { + "label": "DesignSystemGenerator", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L37", + "community": 111, + "norm_label": "designsystemgenerator", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator" + }, + { + "label": ".__init__()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L40", + "community": 111, + "norm_label": ".__init__()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_init" + }, + { + "label": "._load_reasoning()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L43", + "community": 111, + "norm_label": "._load_reasoning()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_load_reasoning" + }, + { + "label": "._multi_domain_search()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L51", + "community": 111, + "norm_label": "._multi_domain_search()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_multi_domain_search" + }, + { + "label": "str", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L51", + "community": 111, + "norm_label": "str", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "label": "._find_reasoning_rule()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L64", + "community": 111, + "norm_label": "._find_reasoning_rule()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_find_reasoning_rule" + }, + { + "label": "._apply_reasoning()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L88", + "community": 111, + "norm_label": "._apply_reasoning()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning" + }, + { + "label": "._select_best_match()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L122", + "community": 111, + "norm_label": "._select_best_match()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_select_best_match" + }, + { + "label": "._extract_results()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L159", + "community": 111, + "norm_label": "._extract_results()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_extract_results" + }, + { + "label": ".generate()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L163", + "community": 111, + "norm_label": ".generate()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate" + }, + { + "label": "hex_to_ansi()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L253", + "community": 111, + "norm_label": "hex_to_ansi()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_hex_to_ansi" + }, + { + "label": "ansi_ljust()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L267", + "community": 111, + "norm_label": "ansi_ljust()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_ansi_ljust" + }, + { + "label": "int", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L267", + "community": 111, + "norm_label": "int", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_int" + }, + { + "label": "section_header()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L275", + "community": 111, + "norm_label": "section_header()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_section_header" + }, + { + "label": "format_ascii_box()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L282", + "community": 111, + "norm_label": "format_ascii_box()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_ascii_box" + }, + { + "label": "format_markdown()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L422", + "community": 111, + "norm_label": "format_markdown()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_markdown" + }, + { + "label": "generate_design_system()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L532", + "community": 111, + "norm_label": "generate_design_system()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_design_system" + }, + { + "label": "bool", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L532", + "community": 111, + "norm_label": "bool", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_bool" + }, + { + "label": "persist_design_system()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L561", + "community": 111, + "norm_label": "persist_design_system()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_persist_design_system" + }, + { + "label": "format_master_md()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L612", + "community": 111, + "norm_label": "format_master_md()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_master_md" + }, + { + "label": "format_page_override_md()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L886", + "community": 111, + "norm_label": "format_page_override_md()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_page_override_md" + }, + { + "label": "_generate_intelligent_overrides()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L995", + "community": 111, + "norm_label": "_generate_intelligent_overrides()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides" + }, + { + "label": "_detect_page_type()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L1101", + "community": 111, + "norm_label": "_detect_page_type()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_detect_page_type" + }, + { + "label": "Generates design system recommendations from aggregated searches.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L38", + "community": 111, + "norm_label": "generates design system recommendations from aggregated searches.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_38" + }, + { + "label": "Load reasoning rules from CSV.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L44", + "community": 111, + "norm_label": "load reasoning rules from csv.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_44" + }, + { + "label": "Execute searches across multiple domains.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L52", + "community": 111, + "norm_label": "execute searches across multiple domains.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_52" + }, + { + "label": "Find matching reasoning rule for a category.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L65", + "community": 111, + "norm_label": "find matching reasoning rule for a category.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_65" + }, + { + "label": "Apply reasoning rules to search results.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L89", + "community": 111, + "norm_label": "apply reasoning rules to search results.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_89" + }, + { + "label": "Select best matching result based on priority keywords.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L123", + "community": 111, + "norm_label": "select best matching result based on priority keywords.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_123" + }, + { + "label": "Extract results list from search result dict.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L160", + "community": 111, + "norm_label": "extract results list from search result dict.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_160" + }, + { + "label": "Generate complete design system recommendation.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L164", + "community": 111, + "norm_label": "generate complete design system recommendation.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_164" + }, + { + "label": "Convert hex color to ANSI True Color swatch (\u2588\u2588) with fallback.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L254", + "community": 111, + "norm_label": "convert hex color to ansi true color swatch (\u2588\u2588) with fallback.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_254" + }, + { + "label": "Like str.ljust but accounts for zero-width ANSI escape sequences.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L268", + "community": 111, + "norm_label": "like str.ljust but accounts for zero-width ansi escape sequences.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_268" + }, + { + "label": "Create a Unicode section separator: \u251c\u2500\u2500\u2500 NAME \u2500\u2500\u2500...\u2524", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L276", + "community": 111, + "norm_label": "create a unicode section separator: \u251c\u2500\u2500\u2500 name \u2500\u2500\u2500...\u2524", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_276" + }, + { + "label": "Format design system as Unicode box with ANSI color swatches.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L283", + "community": 111, + "norm_label": "format design system as unicode box with ansi color swatches.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_283" + }, + { + "label": "Format design system as markdown.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L423", + "community": 111, + "norm_label": "format design system as markdown.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_423" + }, + { + "label": "Main entry point for design system generation. Args: query: Search", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L534", + "community": 111, + "norm_label": "main entry point for design system generation. args: query: search", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_534" + }, + { + "label": "Persist design system to design-system// folder using Master + Override", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L562", + "community": 111, + "norm_label": "persist design system to design-system// folder using master + override", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_562" + }, + { + "label": "Format design system as MASTER.md with hierarchical override logic.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L613", + "community": 111, + "norm_label": "format design system as master.md with hierarchical override logic.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_613" + }, + { + "label": "Format a page-specific override file with intelligent AI-generated content.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L887", + "community": 111, + "norm_label": "format a page-specific override file with intelligent ai-generated content.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_887" + }, + { + "label": "Generate intelligent overrides based on page type using layered search.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L996", + "community": 111, + "norm_label": "generate intelligent overrides based on page type using layered search.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_996" + }, + { + "label": "Detect page type from context and search results.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L1102", + "community": 111, + "norm_label": "detect page type from context and search results.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_1102" + }, + { + "label": "core.py", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L1", + "community": 300, + "norm_label": "core.py", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py" + }, + { + "label": "BM25", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L89", + "community": 300, + "norm_label": "bm25", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25" + }, + { + "label": ".__init__()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L92", + "community": 300, + "norm_label": ".__init__()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_init" + }, + { + "label": ".tokenize()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L102", + "community": 300, + "norm_label": ".tokenize()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_tokenize" + }, + { + "label": ".fit()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L107", + "community": 300, + "norm_label": ".fit()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_fit" + }, + { + "label": ".score()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L126", + "community": 300, + "norm_label": ".score()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_score" + }, + { + "label": "_load_csv()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L152", + "community": 300, + "norm_label": "_load_csv()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_load_csv" + }, + { + "label": "_search_csv()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L158", + "community": 300, + "norm_label": "_search_csv()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_csv" + }, + { + "label": "detect_domain()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L183", + "community": 300, + "norm_label": "detect_domain()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_detect_domain" + }, + { + "label": "search()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L206", + "community": 300, + "norm_label": "search()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search" + }, + { + "label": "search_stack()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L228", + "community": 300, + "norm_label": "search_stack()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_stack" + }, + { + "label": "BM25 ranking algorithm for text search", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L90", + "community": 300, + "norm_label": "bm25 ranking algorithm for text search", + "id": "scripts_core_rationale_90" + }, + { + "label": "Lowercase, split, remove punctuation, filter short words", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L103", + "community": 300, + "norm_label": "lowercase, split, remove punctuation, filter short words", + "id": "scripts_core_rationale_103" + }, + { + "label": "Build BM25 index from documents", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L108", + "community": 300, + "norm_label": "build bm25 index from documents", + "id": "scripts_core_rationale_108" + }, + { + "label": "Score all documents against query", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L127", + "community": 300, + "norm_label": "score all documents against query", + "id": "scripts_core_rationale_127" + }, + { + "label": "Load CSV and return list of dicts", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L153", + "community": 300, + "norm_label": "load csv and return list of dicts", + "id": "scripts_core_rationale_153" + }, + { + "label": "Core search function using BM25", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L159", + "community": 300, + "norm_label": "core search function using bm25", + "id": "scripts_core_rationale_159" + }, + { + "label": "Auto-detect the most relevant domain from query", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L184", + "community": 300, + "norm_label": "auto-detect the most relevant domain from query", + "id": "scripts_core_rationale_184" + }, + { + "label": "Main search function with auto-domain detection", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L207", + "community": 300, + "norm_label": "main search function with auto-domain detection", + "id": "scripts_core_rationale_207" + }, + { + "label": "Search stack-specific guidelines", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L229", + "community": 300, + "norm_label": "search stack-specific guidelines", + "id": "scripts_core_rationale_229" + }, + { + "label": "search.py", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/search.py", + "source_location": "L1", + "community": 1309, + "norm_label": "search.py", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_search_py" + }, + { + "label": "format_output()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/search.py", + "source_location": "L30", + "community": 1309, + "norm_label": "format_output()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_search_py_scripts_search_format_output" + }, + { + "label": "Format results for Claude consumption (token-optimized)", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/search.py", + "source_location": "L31", + "community": 1309, + "norm_label": "format results for claude consumption (token-optimized)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_search_py_scripts_search_rationale_31" + }, + { + "label": "cursor.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L1", + "community": 372, + "norm_label": "cursor.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L2", + "community": 372, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L3", + "community": 372, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L4", + "community": 372, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L5", + "community": 372, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L6", + "community": 372, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L7", + "community": 372, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L8", + "community": 372, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L10", + "community": 372, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L11", + "community": 372, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L12", + "community": 372, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L13", + "community": 372, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L15", + "community": 372, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L16", + "community": 372, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L18", + "community": 372, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L19", + "community": 372, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L20", + "community": 372, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_skillorworkflow" + }, + { + "label": "roocode.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L1", + "community": 393, + "norm_label": "roocode.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L2", + "community": 393, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L3", + "community": 393, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L4", + "community": 393, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L5", + "community": 393, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L6", + "community": 393, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L7", + "community": 393, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L8", + "community": 393, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L10", + "community": 393, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L11", + "community": 393, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L12", + "community": 393, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L13", + "community": 393, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L15", + "community": 393, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L16", + "community": 393, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L18", + "community": 393, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L19", + "community": 393, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L20", + "community": 393, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_skillorworkflow" + }, + { + "label": "droid.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L1", + "community": 375, + "norm_label": "droid.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L2", + "community": 375, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L3", + "community": 375, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L4", + "community": 375, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L5", + "community": 375, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L6", + "community": 375, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L7", + "community": 375, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L8", + "community": 375, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L10", + "community": 375, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L11", + "community": 375, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L12", + "community": 375, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L13", + "community": 375, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L15", + "community": 375, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L16", + "community": 375, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L18", + "community": 375, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L19", + "community": 375, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L20", + "community": 375, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_skillorworkflow" + }, + { + "label": "agent.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L1", + "community": 360, + "norm_label": "agent.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L2", + "community": 360, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L3", + "community": 360, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L4", + "community": 360, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L5", + "community": 360, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L6", + "community": 360, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L7", + "community": 360, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L8", + "community": 360, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L10", + "community": 360, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L11", + "community": 360, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L12", + "community": 360, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L13", + "community": 360, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L15", + "community": 360, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L16", + "community": 360, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L18", + "community": 360, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L19", + "community": 360, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L20", + "community": 360, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_skillorworkflow" + }, + { + "label": "windsurf.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L1", + "community": 395, + "norm_label": "windsurf.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L2", + "community": 395, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L3", + "community": 395, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L4", + "community": 395, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L5", + "community": 395, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L6", + "community": 395, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L7", + "community": 395, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L8", + "community": 395, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L10", + "community": 395, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L11", + "community": 395, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L12", + "community": 395, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L13", + "community": 395, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L15", + "community": 395, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L16", + "community": 395, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L18", + "community": 395, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L19", + "community": 395, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L20", + "community": 395, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_skillorworkflow" + }, + { + "label": "augment.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L1", + "community": 864, + "norm_label": "augment.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L2", + "community": 864, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L3", + "community": 864, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L4", + "community": 864, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L5", + "community": 864, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L6", + "community": 864, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L7", + "community": 864, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L8", + "community": 864, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L10", + "community": 864, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L11", + "community": 864, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_frontmatter" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L12", + "community": 864, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L13", + "community": 864, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L15", + "community": 864, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L16", + "community": 864, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L17", + "community": 864, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_skillorworkflow" + }, + { + "label": "codebuddy.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L1", + "community": 364, + "norm_label": "codebuddy.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L2", + "community": 364, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L3", + "community": 364, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L4", + "community": 364, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L5", + "community": 364, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L6", + "community": 364, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L7", + "community": 364, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L8", + "community": 364, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L10", + "community": 364, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L11", + "community": 364, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L12", + "community": 364, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L13", + "community": 364, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L15", + "community": 364, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L16", + "community": 364, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L18", + "community": 364, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L19", + "community": 364, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L20", + "community": 364, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_skillorworkflow" + }, + { + "label": "warp.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L1", + "community": 868, + "norm_label": "warp.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L2", + "community": 868, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L3", + "community": 868, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L4", + "community": 868, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L5", + "community": 868, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L6", + "community": 868, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L7", + "community": 868, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L8", + "community": 868, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L10", + "community": 868, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L11", + "community": 868, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_frontmatter" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L12", + "community": 868, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L13", + "community": 868, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L15", + "community": 868, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L16", + "community": 868, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L17", + "community": 868, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_skillorworkflow" + }, + { + "label": "kiro.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L1", + "community": 380, + "norm_label": "kiro.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L2", + "community": 380, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L3", + "community": 380, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L4", + "community": 380, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L5", + "community": 380, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L6", + "community": 380, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L7", + "community": 380, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L8", + "community": 380, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L10", + "community": 380, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L11", + "community": 380, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L12", + "community": 380, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L13", + "community": 380, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L15", + "community": 380, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L16", + "community": 380, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L18", + "community": 380, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L19", + "community": 380, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L20", + "community": 380, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_skillorworkflow" + }, + { + "label": "gemini.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L1", + "community": 376, + "norm_label": "gemini.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L2", + "community": 376, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L3", + "community": 376, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L4", + "community": 376, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L5", + "community": 376, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L6", + "community": 376, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L7", + "community": 376, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L8", + "community": 376, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L10", + "community": 376, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L11", + "community": 376, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L12", + "community": 376, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L13", + "community": 376, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L15", + "community": 376, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L16", + "community": 376, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L18", + "community": 376, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L19", + "community": 376, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L20", + "community": 376, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_skillorworkflow" + }, + { + "label": "opencode.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L1", + "community": 383, + "norm_label": "opencode.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L2", + "community": 383, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L3", + "community": 383, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L4", + "community": 383, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L5", + "community": 383, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L6", + "community": 383, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L7", + "community": 383, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L8", + "community": 383, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L10", + "community": 383, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L11", + "community": 383, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L12", + "community": 383, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L13", + "community": 383, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L15", + "community": 383, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L16", + "community": 383, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L18", + "community": 383, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L19", + "community": 383, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L20", + "community": 383, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_skillorworkflow" + }, + { + "label": "copilot.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L1", + "community": 371, + "norm_label": "copilot.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L2", + "community": 371, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L3", + "community": 371, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L4", + "community": 371, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L5", + "community": 371, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L6", + "community": 371, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L7", + "community": 371, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L8", + "community": 371, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L10", + "community": 371, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L11", + "community": 371, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L12", + "community": 371, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L13", + "community": 371, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L15", + "community": 371, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L16", + "community": 371, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L18", + "community": 371, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L19", + "community": 371, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L20", + "community": 371, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_skillorworkflow" + }, + { + "label": "trae.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L1", + "community": 394, + "norm_label": "trae.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L2", + "community": 394, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L3", + "community": 394, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L4", + "community": 394, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L5", + "community": 394, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L6", + "community": 394, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L7", + "community": 394, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L8", + "community": 394, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L10", + "community": 394, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L11", + "community": 394, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L12", + "community": 394, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L13", + "community": 394, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L15", + "community": 394, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L16", + "community": 394, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L18", + "community": 394, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L19", + "community": 394, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L20", + "community": 394, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_skillorworkflow" + }, + { + "label": "continue.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L1", + "community": 369, + "norm_label": "continue.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L2", + "community": 369, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L3", + "community": 369, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L4", + "community": 369, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L5", + "community": 369, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L6", + "community": 369, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L7", + "community": 369, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L8", + "community": 369, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L10", + "community": 369, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L11", + "community": 369, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L12", + "community": 369, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L13", + "community": 369, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L15", + "community": 369, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L16", + "community": 369, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L18", + "community": 369, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L19", + "community": 369, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L20", + "community": 369, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_skillorworkflow" + }, + { + "label": "claude.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L1", + "community": 363, + "norm_label": "claude.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L2", + "community": 363, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L3", + "community": 363, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L4", + "community": 363, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L5", + "community": 363, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L6", + "community": 363, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L7", + "community": 363, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L8", + "community": 363, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L10", + "community": 363, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L11", + "community": 363, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L12", + "community": 363, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L13", + "community": 363, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L15", + "community": 363, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L16", + "community": 363, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L18", + "community": 363, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L19", + "community": 363, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L20", + "community": 363, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_skillorworkflow" + }, + { + "label": "qoder.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L1", + "community": 386, + "norm_label": "qoder.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L2", + "community": 386, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L3", + "community": 386, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L4", + "community": 386, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L5", + "community": 386, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L6", + "community": 386, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L7", + "community": 386, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L8", + "community": 386, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L10", + "community": 386, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L11", + "community": 386, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L12", + "community": 386, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L13", + "community": 386, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L15", + "community": 386, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L16", + "community": 386, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L18", + "community": 386, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L19", + "community": 386, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L20", + "community": 386, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_skillorworkflow" + }, + { + "label": "codex.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L1", + "community": 367, + "norm_label": "codex.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L2", + "community": 367, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L3", + "community": 367, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L4", + "community": 367, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L5", + "community": 367, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L6", + "community": 367, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L7", + "community": 367, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L8", + "community": 367, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L10", + "community": 367, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L11", + "community": 367, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L12", + "community": 367, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L13", + "community": 367, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L15", + "community": 367, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L16", + "community": 367, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L18", + "community": 367, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L19", + "community": 367, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L20", + "community": 367, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_skillorworkflow" + }, + { + "label": "kilocode.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L1", + "community": 379, + "norm_label": "kilocode.json", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L2", + "community": 379, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L3", + "community": 379, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L4", + "community": 379, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L5", + "community": 379, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L6", + "community": 379, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L7", + "community": 379, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L8", + "community": 379, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L10", + "community": 379, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L11", + "community": 379, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L12", + "community": 379, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L13", + "community": 379, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L15", + "community": 379, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L16", + "community": 379, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L18", + "community": 379, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L19", + "community": 379, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L20", + "community": 379, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_skillorworkflow" + }, + { + "label": "_sync_all.py", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L1", + "community": 933, + "norm_label": "_sync_all.py", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py" + }, + { + "label": "h2r()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L15", + "community": 933, + "norm_label": "h2r()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_h2r" + }, + { + "label": "r2h()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L19", + "community": 933, + "norm_label": "r2h()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_r2h" + }, + { + "label": "lum()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L22", + "community": 933, + "norm_label": "lum()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_lum" + }, + { + "label": "is_dark()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L27", + "community": 933, + "norm_label": "is_dark()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_is_dark" + }, + { + "label": "on_color()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L30", + "community": 933, + "norm_label": "on_color()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_on_color" + }, + { + "label": "blend()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L33", + "community": 933, + "norm_label": "blend()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_blend" + }, + { + "label": "shift()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L38", + "community": 933, + "norm_label": "shift()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_shift" + }, + { + "label": "derive_row()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L42", + "community": 933, + "norm_label": "derive_row()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_row" + }, + { + "label": "rebuild_colors()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L188", + "community": 933, + "norm_label": "rebuild_colors()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_rebuild_colors" + }, + { + "label": "derive_ui_reasoning()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L250", + "community": 933, + "norm_label": "derive_ui_reasoning()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_ui_reasoning" + }, + { + "label": "rebuild_ui_reasoning()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L359", + "community": 933, + "norm_label": "rebuild_ui_reasoning()", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_rebuild_ui_reasoning" + }, + { + "label": "Generate full 16-token color row from 4 base colors.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L43", + "community": 933, + "norm_label": "generate full 16-token color row from 4 base colors.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_rationale_43" + }, + { + "label": "Generate ui-reasoning row from products.csv row.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L251", + "community": 933, + "norm_label": "generate ui-reasoning row from products.csv row.", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_rationale_251" + }, + { + "label": "index.ts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L1", + "community": 29, + "norm_label": "index.ts", + "id": "sixth_skills_ui_ux_pro_max_cli_src_index_ts" + }, + { + "label": "__filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L14", + "community": 29, + "norm_label": "__filename", + "id": "src_index_filename" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L15", + "community": 29, + "norm_label": "__dirname", + "id": "src_index_dirname" + }, + { + "label": "pkg", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L16", + "community": 29, + "norm_label": "pkg", + "id": "src_index_pkg" + }, + { + "label": "program", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L18", + "community": 29, + "norm_label": "program", + "id": "src_index_program" + }, + { + "label": "index.ts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L1", + "community": 29, + "norm_label": "index.ts", + "id": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts" + }, + { + "label": "AIType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L1", + "community": 29, + "norm_label": "aitype", + "id": "types_index_aitype" + }, + { + "label": "InstallType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L3", + "community": 29, + "norm_label": "installtype", + "id": "types_index_installtype" + }, + { + "label": "Release", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L5", + "community": 29, + "norm_label": "release", + "id": "types_index_release" + }, + { + "label": "Asset", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L13", + "community": 29, + "norm_label": "asset", + "id": "types_index_asset" + }, + { + "label": "InstallConfig", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L19", + "community": 29, + "norm_label": "installconfig", + "id": "types_index_installconfig" + }, + { + "label": "PlatformConfig", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L25", + "community": 29, + "norm_label": "platformconfig", + "id": "types_index_platformconfig" + }, + { + "label": "AI_TYPES", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L44", + "community": 29, + "norm_label": "ai_types", + "id": "types_index_ai_types" + }, + { + "label": "AI_FOLDERS", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L49", + "community": 29, + "norm_label": "ai_folders", + "id": "types_index_ai_folders" + }, + { + "label": "extract.ts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L1", + "community": 29, + "norm_label": "extract.ts", + "id": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts" + }, + { + "label": "execAsync", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L9", + "community": 29, + "norm_label": "execasync", + "id": "utils_extract_execasync" + }, + { + "label": "EXCLUDED_FILES", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L11", + "community": 29, + "norm_label": "excluded_files", + "id": "utils_extract_excluded_files" + }, + { + "label": "extractZip()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L13", + "community": 29, + "norm_label": "extractzip()", + "id": "utils_extract_extractzip" + }, + { + "label": "exists()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L26", + "community": 29, + "norm_label": "exists()", + "id": "utils_extract_exists" + }, + { + "label": "copyFolders()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L35", + "community": 29, + "norm_label": "copyfolders()", + "id": "utils_extract_copyfolders" + }, + { + "label": "cleanup()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L90", + "community": 29, + "norm_label": "cleanup()", + "id": "utils_extract_cleanup" + }, + { + "label": "createTempDir()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L101", + "community": 29, + "norm_label": "createtempdir()", + "id": "utils_extract_createtempdir" + }, + { + "label": "findExtractedRoot()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L109", + "community": 29, + "norm_label": "findextractedroot()", + "id": "utils_extract_findextractedroot" + }, + { + "label": "installFromZip()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L125", + "community": 29, + "norm_label": "installfromzip()", + "id": "utils_extract_installfromzip" + }, + { + "label": "detect.ts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/detect.ts", + "source_location": "L1", + "community": 29, + "norm_label": "detect.ts", + "id": "sixth_skills_ui_ux_pro_max_cli_src_utils_detect_ts" + }, + { + "label": "DetectionResult", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/detect.ts", + "source_location": "L5", + "community": 29, + "norm_label": "detectionresult", + "id": "utils_detect_detectionresult" + }, + { + "label": "detectAIType()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/detect.ts", + "source_location": "L10", + "community": 29, + "norm_label": "detectaitype()", + "id": "utils_detect_detectaitype" + }, + { + "label": "getAITypeDescription()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/detect.ts", + "source_location": "L79", + "community": 29, + "norm_label": "getaitypedescription()", + "id": "utils_detect_getaitypedescription" + }, + { + "label": "github.ts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L1", + "community": 29, + "norm_label": "github.ts", + "id": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts" + }, + { + "label": "GitHubRateLimitError", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L8", + "community": 29, + "norm_label": "githubratelimiterror", + "id": "utils_github_githubratelimiterror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L9", + "community": 29, + "norm_label": ".constructor()", + "id": "utils_github_githubratelimiterror_constructor" + }, + { + "label": "GitHubDownloadError", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L15", + "community": 29, + "norm_label": "githubdownloaderror", + "id": "utils_github_githubdownloaderror" + }, + { + "label": ".constructor()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L16", + "community": 29, + "norm_label": ".constructor()", + "id": "utils_github_githubdownloaderror_constructor" + }, + { + "label": "checkRateLimit()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L22", + "community": 29, + "norm_label": "checkratelimit()", + "id": "utils_github_checkratelimit" + }, + { + "label": "fetchReleases()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L34", + "community": 29, + "norm_label": "fetchreleases()", + "id": "utils_github_fetchreleases" + }, + { + "label": "getLatestRelease()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L53", + "community": 29, + "norm_label": "getlatestrelease()", + "id": "utils_github_getlatestrelease" + }, + { + "label": "downloadRelease()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L72", + "community": 29, + "norm_label": "downloadrelease()", + "id": "utils_github_downloadrelease" + }, + { + "label": "getAssetUrl()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L90", + "community": 29, + "norm_label": "getasseturl()", + "id": "utils_github_getasseturl" + }, + { + "label": "template.ts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L1", + "community": 29, + "norm_label": "template.ts", + "id": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L6", + "community": 29, + "norm_label": "__dirname", + "id": "utils_template_dirname" + }, + { + "label": "ASSETS_DIR", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L8", + "community": 29, + "norm_label": "assets_dir", + "id": "utils_template_assets_dir" + }, + { + "label": "PlatformConfig", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L10", + "community": 29, + "norm_label": "platformconfig", + "id": "utils_template_platformconfig" + }, + { + "label": "AI_TO_PLATFORM", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L30", + "community": 29, + "norm_label": "ai_to_platform", + "id": "utils_template_ai_to_platform" + }, + { + "label": "exists()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L51", + "community": 29, + "norm_label": "exists()", + "id": "utils_template_exists" + }, + { + "label": "loadPlatformConfig()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L63", + "community": 29, + "norm_label": "loadplatformconfig()", + "id": "utils_template_loadplatformconfig" + }, + { + "label": "loadAllPlatformConfigs()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L77", + "community": 29, + "norm_label": "loadallplatformconfigs()", + "id": "utils_template_loadallplatformconfigs" + }, + { + "label": "loadTemplate()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L95", + "community": 29, + "norm_label": "loadtemplate()", + "id": "utils_template_loadtemplate" + }, + { + "label": "renderFrontmatter()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L103", + "community": 29, + "norm_label": "renderfrontmatter()", + "id": "utils_template_renderfrontmatter" + }, + { + "label": "renderSkillFile()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L123", + "community": 29, + "norm_label": "renderskillfile()", + "id": "utils_template_renderskillfile" + }, + { + "label": "copyDataAndScripts()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L162", + "community": 29, + "norm_label": "copydataandscripts()", + "id": "utils_template_copydataandscripts" + }, + { + "label": "generatePlatformFiles()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L187", + "community": 29, + "norm_label": "generateplatformfiles()", + "id": "utils_template_generateplatformfiles" + }, + { + "label": "generateAllPlatformFiles()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L223", + "community": 29, + "norm_label": "generateallplatformfiles()", + "id": "utils_template_generateallplatformfiles" + }, + { + "label": "getSupportedAITypes()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L241", + "community": 29, + "norm_label": "getsupportedaitypes()", + "id": "utils_template_getsupportedaitypes" + }, + { + "label": "logger.ts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/logger.ts", + "source_location": "L1", + "community": 29, + "norm_label": "logger.ts", + "id": "sixth_skills_ui_ux_pro_max_cli_src_utils_logger_ts" + }, + { + "label": "logger", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/logger.ts", + "source_location": "L3", + "community": 29, + "norm_label": "logger", + "id": "utils_logger_logger" + }, + { + "label": "init.ts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L1", + "community": 29, + "norm_label": "init.ts", + "id": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts" + }, + { + "label": "__dirname", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L20", + "community": 29, + "norm_label": "__dirname", + "id": "commands_init_dirname" + }, + { + "label": "ASSETS_DIR", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L22", + "community": 29, + "norm_label": "assets_dir", + "id": "commands_init_assets_dir" + }, + { + "label": "InitOptions", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L24", + "community": 29, + "norm_label": "initoptions", + "id": "commands_init_initoptions" + }, + { + "label": "tryGitHubInstall()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L36", + "community": 29, + "norm_label": "trygithubinstall()", + "id": "commands_init_trygithubinstall" + }, + { + "label": "templateInstall()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L100", + "community": 29, + "norm_label": "templateinstall()", + "id": "commands_init_templateinstall" + }, + { + "label": "initCommand()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L117", + "community": 29, + "norm_label": "initcommand()", + "id": "commands_init_initcommand" + }, + { + "label": "versions.ts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/versions.ts", + "source_location": "L1", + "community": 29, + "norm_label": "versions.ts", + "id": "sixth_skills_ui_ux_pro_max_cli_src_commands_versions_ts" + }, + { + "label": "versionsCommand()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/versions.ts", + "source_location": "L6", + "community": 29, + "norm_label": "versionscommand()", + "id": "commands_versions_versionscommand" + }, + { + "label": "uninstall.ts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L1", + "community": 29, + "norm_label": "uninstall.ts", + "id": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts" + }, + { + "label": "UninstallOptions", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L12", + "community": 29, + "norm_label": "uninstalloptions", + "id": "commands_uninstall_uninstalloptions" + }, + { + "label": "removeSkillDir()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L20", + "community": 29, + "norm_label": "removeskilldir()", + "id": "commands_uninstall_removeskilldir" + }, + { + "label": "uninstallCommand()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L39", + "community": 29, + "norm_label": "uninstallcommand()", + "id": "commands_uninstall_uninstallcommand" + }, + { + "label": "update.ts", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L1", + "community": 29, + "norm_label": "update.ts", + "id": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts" + }, + { + "label": "UpdateOptions", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L8", + "community": 29, + "norm_label": "updateoptions", + "id": "commands_update_updateoptions" + }, + { + "label": "updateCommand()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L12", + "community": 29, + "norm_label": "updatecommand()", + "id": "commands_update_updatecommand" + }, + { + "label": "marketplace.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L1", + "community": 1007, + "norm_label": "marketplace.json", + "id": "sixth_skills_ui_ux_pro_max_claude_plugin_marketplace_json" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L2", + "community": 1007, + "norm_label": "name", + "id": "claude_plugin_marketplace_name" + }, + { + "label": "id", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L3", + "community": 1007, + "norm_label": "id", + "id": "claude_plugin_marketplace_id" + }, + { + "label": "owner", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L4", + "community": 1007, + "norm_label": "owner", + "id": "claude_plugin_marketplace_owner" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L5", + "community": 1007, + "norm_label": "name", + "id": "claude_plugin_marketplace_owner_name" + }, + { + "label": "metadata", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L7", + "community": 1007, + "norm_label": "metadata", + "id": "claude_plugin_marketplace_metadata" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L8", + "community": 1007, + "norm_label": "description", + "id": "claude_plugin_marketplace_metadata_description" + }, + { + "label": "version", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L9", + "community": 1007, + "norm_label": "version", + "id": "claude_plugin_marketplace_metadata_version" + }, + { + "label": "plugins", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L11", + "community": 1007, + "norm_label": "plugins", + "id": "claude_plugin_marketplace_plugins" + }, + { + "label": "plugin.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L1", + "community": 1008, + "norm_label": "plugin.json", + "id": "sixth_skills_ui_ux_pro_max_claude_plugin_plugin_json" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L2", + "community": 1008, + "norm_label": "name", + "id": "claude_plugin_plugin_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L3", + "community": 1008, + "norm_label": "description", + "id": "claude_plugin_plugin_description" + }, + { + "label": "version", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L4", + "community": 1008, + "norm_label": "version", + "id": "claude_plugin_plugin_version" + }, + { + "label": "author", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L5", + "community": 1008, + "norm_label": "author", + "id": "claude_plugin_plugin_author" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L6", + "community": 1008, + "norm_label": "name", + "id": "claude_plugin_plugin_author_name" + }, + { + "label": "license", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L8", + "community": 1008, + "norm_label": "license", + "id": "claude_plugin_plugin_license" + }, + { + "label": "keywords", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L9", + "community": 1008, + "norm_label": "keywords", + "id": "claude_plugin_plugin_keywords" + }, + { + "label": "skills", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L10", + "community": 1008, + "norm_label": "skills", + "id": "claude_plugin_plugin_skills" + }, + { + "label": "design_system.py", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L1", + "community": 206, + "norm_label": "design_system.py", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py" + }, + { + "label": "DesignSystemGenerator", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L37", + "community": 206, + "norm_label": "designsystemgenerator", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator" + }, + { + "label": ".__init__()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L40", + "community": 206, + "norm_label": ".__init__()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_init" + }, + { + "label": "._load_reasoning()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L43", + "community": 206, + "norm_label": "._load_reasoning()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_load_reasoning" + }, + { + "label": "._multi_domain_search()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L51", + "community": 206, + "norm_label": "._multi_domain_search()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_multi_domain_search" + }, + { + "label": "str", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L51", + "community": 206, + "norm_label": "str", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "label": "._find_reasoning_rule()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L64", + "community": 206, + "norm_label": "._find_reasoning_rule()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_find_reasoning_rule" + }, + { + "label": "._apply_reasoning()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L88", + "community": 206, + "norm_label": "._apply_reasoning()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning" + }, + { + "label": "._select_best_match()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L122", + "community": 206, + "norm_label": "._select_best_match()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_select_best_match" + }, + { + "label": "._extract_results()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L159", + "community": 206, + "norm_label": "._extract_results()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_extract_results" + }, + { + "label": ".generate()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L163", + "community": 206, + "norm_label": ".generate()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate" + }, + { + "label": "hex_to_ansi()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L253", + "community": 206, + "norm_label": "hex_to_ansi()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_hex_to_ansi" + }, + { + "label": "ansi_ljust()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L267", + "community": 206, + "norm_label": "ansi_ljust()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_ansi_ljust" + }, + { + "label": "int", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L267", + "community": 206, + "norm_label": "int", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_int" + }, + { + "label": "section_header()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L275", + "community": 206, + "norm_label": "section_header()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_section_header" + }, + { + "label": "format_ascii_box()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L282", + "community": 206, + "norm_label": "format_ascii_box()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_ascii_box" + }, + { + "label": "format_markdown()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L422", + "community": 206, + "norm_label": "format_markdown()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_markdown" + }, + { + "label": "generate_design_system()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L532", + "community": 206, + "norm_label": "generate_design_system()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_design_system" + }, + { + "label": "bool", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L532", + "community": 206, + "norm_label": "bool", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_bool" + }, + { + "label": "persist_design_system()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L561", + "community": 206, + "norm_label": "persist_design_system()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_persist_design_system" + }, + { + "label": "format_master_md()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L612", + "community": 206, + "norm_label": "format_master_md()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_master_md" + }, + { + "label": "format_page_override_md()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L886", + "community": 206, + "norm_label": "format_page_override_md()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_page_override_md" + }, + { + "label": "_generate_intelligent_overrides()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L995", + "community": 206, + "norm_label": "_generate_intelligent_overrides()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides" + }, + { + "label": "_detect_page_type()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L1101", + "community": 206, + "norm_label": "_detect_page_type()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_detect_page_type" + }, + { + "label": "Generates design system recommendations from aggregated searches.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L38", + "community": 206, + "norm_label": "generates design system recommendations from aggregated searches.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_38" + }, + { + "label": "Load reasoning rules from CSV.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L44", + "community": 206, + "norm_label": "load reasoning rules from csv.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_44" + }, + { + "label": "Execute searches across multiple domains.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L52", + "community": 206, + "norm_label": "execute searches across multiple domains.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_52" + }, + { + "label": "Find matching reasoning rule for a category.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L65", + "community": 206, + "norm_label": "find matching reasoning rule for a category.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_65" + }, + { + "label": "Apply reasoning rules to search results.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L89", + "community": 206, + "norm_label": "apply reasoning rules to search results.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_89" + }, + { + "label": "Select best matching result based on priority keywords.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L123", + "community": 206, + "norm_label": "select best matching result based on priority keywords.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_123" + }, + { + "label": "Extract results list from search result dict.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L160", + "community": 206, + "norm_label": "extract results list from search result dict.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_160" + }, + { + "label": "Generate complete design system recommendation.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L164", + "community": 206, + "norm_label": "generate complete design system recommendation.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_164" + }, + { + "label": "Convert hex color to ANSI True Color swatch (\u2588\u2588) with fallback.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L254", + "community": 206, + "norm_label": "convert hex color to ansi true color swatch (\u2588\u2588) with fallback.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_254" + }, + { + "label": "Like str.ljust but accounts for zero-width ANSI escape sequences.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L268", + "community": 206, + "norm_label": "like str.ljust but accounts for zero-width ansi escape sequences.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_268" + }, + { + "label": "Create a Unicode section separator: \u251c\u2500\u2500\u2500 NAME \u2500\u2500\u2500...\u2524", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L276", + "community": 206, + "norm_label": "create a unicode section separator: \u251c\u2500\u2500\u2500 name \u2500\u2500\u2500...\u2524", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_276" + }, + { + "label": "Format design system as Unicode box with ANSI color swatches.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L283", + "community": 206, + "norm_label": "format design system as unicode box with ansi color swatches.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_283" + }, + { + "label": "Format design system as markdown.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L423", + "community": 206, + "norm_label": "format design system as markdown.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_423" + }, + { + "label": "Main entry point for design system generation. Args: query: Search", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L534", + "community": 206, + "norm_label": "main entry point for design system generation. args: query: search", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_534" + }, + { + "label": "Persist design system to design-system// folder using Master + Override", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L562", + "community": 206, + "norm_label": "persist design system to design-system// folder using master + override", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_562" + }, + { + "label": "Format design system as MASTER.md with hierarchical override logic.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L613", + "community": 206, + "norm_label": "format design system as master.md with hierarchical override logic.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_613" + }, + { + "label": "Format a page-specific override file with intelligent AI-generated content.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L887", + "community": 206, + "norm_label": "format a page-specific override file with intelligent ai-generated content.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_887" + }, + { + "label": "Generate intelligent overrides based on page type using layered search.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L996", + "community": 206, + "norm_label": "generate intelligent overrides based on page type using layered search.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_996" + }, + { + "label": "Detect page type from context and search results.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L1102", + "community": 206, + "norm_label": "detect page type from context and search results.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_1102" + }, + { + "label": "core.py", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L1", + "community": 308, + "norm_label": "core.py", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py" + }, + { + "label": "BM25", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L104", + "community": 308, + "norm_label": "bm25", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25" + }, + { + "label": ".__init__()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L107", + "community": 308, + "norm_label": ".__init__()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_init" + }, + { + "label": ".tokenize()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L117", + "community": 308, + "norm_label": ".tokenize()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_tokenize" + }, + { + "label": ".fit()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L122", + "community": 308, + "norm_label": ".fit()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_fit" + }, + { + "label": ".score()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L141", + "community": 308, + "norm_label": ".score()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_score" + }, + { + "label": "_load_csv()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L167", + "community": 308, + "norm_label": "_load_csv()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_load_csv" + }, + { + "label": "_search_csv()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L173", + "community": 308, + "norm_label": "_search_csv()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_csv" + }, + { + "label": "detect_domain()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L198", + "community": 308, + "norm_label": "detect_domain()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_detect_domain" + }, + { + "label": "search()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L221", + "community": 308, + "norm_label": "search()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search" + }, + { + "label": "search_stack()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L243", + "community": 308, + "norm_label": "search_stack()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_stack" + }, + { + "label": "BM25 ranking algorithm for text search", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L105", + "community": 308, + "norm_label": "bm25 ranking algorithm for text search", + "id": "scripts_core_rationale_105" + }, + { + "label": "Lowercase, split, remove punctuation, filter short words", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L118", + "community": 308, + "norm_label": "lowercase, split, remove punctuation, filter short words", + "id": "scripts_core_rationale_118" + }, + { + "label": "Build BM25 index from documents", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L123", + "community": 308, + "norm_label": "build bm25 index from documents", + "id": "scripts_core_rationale_123" + }, + { + "label": "Score all documents against query", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L142", + "community": 308, + "norm_label": "score all documents against query", + "id": "scripts_core_rationale_142" + }, + { + "label": "Load CSV and return list of dicts", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L168", + "community": 308, + "norm_label": "load csv and return list of dicts", + "id": "scripts_core_rationale_168" + }, + { + "label": "Core search function using BM25", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L174", + "community": 308, + "norm_label": "core search function using bm25", + "id": "scripts_core_rationale_174" + }, + { + "label": "Auto-detect the most relevant domain from query", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L199", + "community": 308, + "norm_label": "auto-detect the most relevant domain from query", + "id": "scripts_core_rationale_199" + }, + { + "label": "Main search function with auto-domain detection", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L222", + "community": 308, + "norm_label": "main search function with auto-domain detection", + "id": "scripts_core_rationale_222" + }, + { + "label": "Search stack-specific guidelines", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L244", + "community": 308, + "norm_label": "search stack-specific guidelines", + "id": "scripts_core_rationale_244" + }, + { + "label": "search.py", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/search.py", + "source_location": "L1", + "community": 1310, + "norm_label": "search.py", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_search_py" + }, + { + "label": "format_output()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/search.py", + "source_location": "L30", + "community": 1310, + "norm_label": "format_output()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_search_py_scripts_search_format_output" + }, + { + "label": "Format results for Claude consumption (token-optimized)", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/search.py", + "source_location": "L31", + "community": 1310, + "norm_label": "format results for claude consumption (token-optimized)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_search_py_scripts_search_rationale_31" + }, + { + "label": "cursor.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L1", + "community": 406, + "norm_label": "cursor.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L2", + "community": 406, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L3", + "community": 406, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L4", + "community": 406, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L5", + "community": 406, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L6", + "community": 406, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L7", + "community": 406, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L8", + "community": 406, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L10", + "community": 406, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L11", + "community": 406, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L12", + "community": 406, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L13", + "community": 406, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L15", + "community": 406, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L16", + "community": 406, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L18", + "community": 406, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L19", + "community": 406, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L20", + "community": 406, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_skillorworkflow" + }, + { + "label": "roocode.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L1", + "community": 577, + "norm_label": "roocode.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L2", + "community": 577, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L3", + "community": 577, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L4", + "community": 577, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L5", + "community": 577, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L6", + "community": 577, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L7", + "community": 577, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L8", + "community": 577, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L10", + "community": 577, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L11", + "community": 577, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L12", + "community": 577, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L13", + "community": 577, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L15", + "community": 577, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L16", + "community": 577, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L18", + "community": 577, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L19", + "community": 577, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L20", + "community": 577, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_skillorworkflow" + }, + { + "label": "droid.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L1", + "community": 408, + "norm_label": "droid.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L2", + "community": 408, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L3", + "community": 408, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L4", + "community": 408, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L5", + "community": 408, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L6", + "community": 408, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L7", + "community": 408, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L8", + "community": 408, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L10", + "community": 408, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L11", + "community": 408, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L12", + "community": 408, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L13", + "community": 408, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L15", + "community": 408, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L16", + "community": 408, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L18", + "community": 408, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L19", + "community": 408, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L20", + "community": 408, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_skillorworkflow" + }, + { + "label": "agent.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L1", + "community": 397, + "norm_label": "agent.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L2", + "community": 397, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L3", + "community": 397, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L4", + "community": 397, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L5", + "community": 397, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L6", + "community": 397, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L7", + "community": 397, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L8", + "community": 397, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L10", + "community": 397, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L11", + "community": 397, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L12", + "community": 397, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L13", + "community": 397, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L15", + "community": 397, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L16", + "community": 397, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L18", + "community": 397, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L19", + "community": 397, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L20", + "community": 397, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_skillorworkflow" + }, + { + "label": "windsurf.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L1", + "community": 579, + "norm_label": "windsurf.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L2", + "community": 579, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L3", + "community": 579, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L4", + "community": 579, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L5", + "community": 579, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L6", + "community": 579, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L7", + "community": 579, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L8", + "community": 579, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L10", + "community": 579, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L11", + "community": 579, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L12", + "community": 579, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L13", + "community": 579, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L15", + "community": 579, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L16", + "community": 579, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L18", + "community": 579, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L19", + "community": 579, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L20", + "community": 579, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_skillorworkflow" + }, + { + "label": "augment.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L1", + "community": 869, + "norm_label": "augment.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L2", + "community": 869, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L3", + "community": 869, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L4", + "community": 869, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L5", + "community": 869, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L6", + "community": 869, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L7", + "community": 869, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L8", + "community": 869, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L10", + "community": 869, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L11", + "community": 869, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_frontmatter" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L12", + "community": 869, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L13", + "community": 869, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L15", + "community": 869, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L16", + "community": 869, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L17", + "community": 869, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_skillorworkflow" + }, + { + "label": "codebuddy.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L1", + "community": 400, + "norm_label": "codebuddy.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L2", + "community": 400, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L3", + "community": 400, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L4", + "community": 400, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L5", + "community": 400, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L6", + "community": 400, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L7", + "community": 400, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L8", + "community": 400, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L10", + "community": 400, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L11", + "community": 400, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L12", + "community": 400, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L13", + "community": 400, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L15", + "community": 400, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L16", + "community": 400, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L18", + "community": 400, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L19", + "community": 400, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L20", + "community": 400, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_skillorworkflow" + }, + { + "label": "warp.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L1", + "community": 870, + "norm_label": "warp.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L2", + "community": 870, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L3", + "community": 870, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L4", + "community": 870, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L5", + "community": 870, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L6", + "community": 870, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L7", + "community": 870, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L8", + "community": 870, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L10", + "community": 870, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L11", + "community": 870, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_frontmatter" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L12", + "community": 870, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L13", + "community": 870, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L15", + "community": 870, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L16", + "community": 870, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L17", + "community": 870, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_skillorworkflow" + }, + { + "label": "kiro.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L1", + "community": 455, + "norm_label": "kiro.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L2", + "community": 455, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L3", + "community": 455, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L4", + "community": 455, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L5", + "community": 455, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L6", + "community": 455, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L7", + "community": 455, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L8", + "community": 455, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L10", + "community": 455, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L11", + "community": 455, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L12", + "community": 455, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L13", + "community": 455, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L15", + "community": 455, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L16", + "community": 455, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L18", + "community": 455, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L19", + "community": 455, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L20", + "community": 455, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_skillorworkflow" + }, + { + "label": "gemini.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L1", + "community": 410, + "norm_label": "gemini.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L2", + "community": 410, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L3", + "community": 410, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L4", + "community": 410, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L5", + "community": 410, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L6", + "community": 410, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L7", + "community": 410, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L8", + "community": 410, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L10", + "community": 410, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L11", + "community": 410, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L12", + "community": 410, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L13", + "community": 410, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L15", + "community": 410, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L16", + "community": 410, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L18", + "community": 410, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L19", + "community": 410, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L20", + "community": 410, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_skillorworkflow" + }, + { + "label": "opencode.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L1", + "community": 574, + "norm_label": "opencode.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L2", + "community": 574, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L3", + "community": 574, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L4", + "community": 574, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L5", + "community": 574, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L6", + "community": 574, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L7", + "community": 574, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L8", + "community": 574, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L10", + "community": 574, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L11", + "community": 574, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L12", + "community": 574, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L13", + "community": 574, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L15", + "community": 574, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L16", + "community": 574, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L18", + "community": 574, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L19", + "community": 574, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L20", + "community": 574, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_skillorworkflow" + }, + { + "label": "copilot.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L1", + "community": 405, + "norm_label": "copilot.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L2", + "community": 405, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L3", + "community": 405, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L4", + "community": 405, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L5", + "community": 405, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L6", + "community": 405, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L7", + "community": 405, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L8", + "community": 405, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L10", + "community": 405, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L11", + "community": 405, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L12", + "community": 405, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L13", + "community": 405, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L15", + "community": 405, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L16", + "community": 405, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L18", + "community": 405, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L19", + "community": 405, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L20", + "community": 405, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_skillorworkflow" + }, + { + "label": "trae.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L1", + "community": 578, + "norm_label": "trae.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L2", + "community": 578, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L3", + "community": 578, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L4", + "community": 578, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L5", + "community": 578, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L6", + "community": 578, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L7", + "community": 578, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L8", + "community": 578, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L10", + "community": 578, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L11", + "community": 578, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L12", + "community": 578, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L13", + "community": 578, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L15", + "community": 578, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L16", + "community": 578, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L18", + "community": 578, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L19", + "community": 578, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L20", + "community": 578, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_skillorworkflow" + }, + { + "label": "continue.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L1", + "community": 404, + "norm_label": "continue.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L2", + "community": 404, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L3", + "community": 404, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L4", + "community": 404, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L5", + "community": 404, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L6", + "community": 404, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L7", + "community": 404, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L8", + "community": 404, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L10", + "community": 404, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L11", + "community": 404, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L12", + "community": 404, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L13", + "community": 404, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L15", + "community": 404, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L16", + "community": 404, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L18", + "community": 404, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L19", + "community": 404, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L20", + "community": 404, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_skillorworkflow" + }, + { + "label": "claude.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L1", + "community": 399, + "norm_label": "claude.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L2", + "community": 399, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L3", + "community": 399, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L4", + "community": 399, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L5", + "community": 399, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L6", + "community": 399, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L7", + "community": 399, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L8", + "community": 399, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L10", + "community": 399, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L11", + "community": 399, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L12", + "community": 399, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L13", + "community": 399, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L15", + "community": 399, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L16", + "community": 399, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L18", + "community": 399, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L19", + "community": 399, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L20", + "community": 399, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_skillorworkflow" + }, + { + "label": "qoder.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L1", + "community": 575, + "norm_label": "qoder.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L2", + "community": 575, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L3", + "community": 575, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L4", + "community": 575, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L5", + "community": 575, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L6", + "community": 575, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L7", + "community": 575, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L8", + "community": 575, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L10", + "community": 575, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L11", + "community": 575, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L12", + "community": 575, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L13", + "community": 575, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L15", + "community": 575, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L16", + "community": 575, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L18", + "community": 575, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L19", + "community": 575, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L20", + "community": 575, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_skillorworkflow" + }, + { + "label": "codex.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L1", + "community": 403, + "norm_label": "codex.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L2", + "community": 403, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L3", + "community": 403, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L4", + "community": 403, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L5", + "community": 403, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L6", + "community": 403, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L7", + "community": 403, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L8", + "community": 403, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L10", + "community": 403, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L11", + "community": 403, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L12", + "community": 403, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L13", + "community": 403, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L15", + "community": 403, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L16", + "community": 403, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L18", + "community": 403, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L19", + "community": 403, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L20", + "community": 403, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_skillorworkflow" + }, + { + "label": "kilocode.json", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L1", + "community": 441, + "norm_label": "kilocode.json", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json" + }, + { + "label": "platform", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L2", + "community": 441, + "norm_label": "platform", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_platform" + }, + { + "label": "displayName", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L3", + "community": 441, + "norm_label": "displayname", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_displayname" + }, + { + "label": "installType", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L4", + "community": 441, + "norm_label": "installtype", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_installtype" + }, + { + "label": "folderStructure", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L5", + "community": 441, + "norm_label": "folderstructure", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_folderstructure" + }, + { + "label": "root", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L6", + "community": 441, + "norm_label": "root", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_root" + }, + { + "label": "skillPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L7", + "community": 441, + "norm_label": "skillpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_skillpath" + }, + { + "label": "filename", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L8", + "community": 441, + "norm_label": "filename", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_filename" + }, + { + "label": "scriptPath", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L10", + "community": 441, + "norm_label": "scriptpath", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_scriptpath" + }, + { + "label": "frontmatter", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L11", + "community": 441, + "norm_label": "frontmatter", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_frontmatter" + }, + { + "label": "name", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L12", + "community": 441, + "norm_label": "name", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_frontmatter_name" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L13", + "community": 441, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_frontmatter_description" + }, + { + "label": "sections", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L15", + "community": 441, + "norm_label": "sections", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_sections" + }, + { + "label": "quickReference", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L16", + "community": 441, + "norm_label": "quickreference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_sections_quickreference" + }, + { + "label": "title", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L18", + "community": 441, + "norm_label": "title", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_title" + }, + { + "label": "description", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L19", + "community": 441, + "norm_label": "description", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_description" + }, + { + "label": "skillOrWorkflow", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L20", + "community": 441, + "norm_label": "skillorworkflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_skillorworkflow" + }, + { + "label": "_sync_all.py", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L1", + "community": 934, + "norm_label": "_sync_all.py", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py" + }, + { + "label": "h2r()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L15", + "community": 934, + "norm_label": "h2r()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_h2r" + }, + { + "label": "r2h()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L19", + "community": 934, + "norm_label": "r2h()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_r2h" + }, + { + "label": "lum()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L22", + "community": 934, + "norm_label": "lum()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_lum" + }, + { + "label": "is_dark()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L27", + "community": 934, + "norm_label": "is_dark()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_is_dark" + }, + { + "label": "on_color()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L30", + "community": 934, + "norm_label": "on_color()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_on_color" + }, + { + "label": "blend()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L33", + "community": 934, + "norm_label": "blend()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_blend" + }, + { + "label": "shift()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L38", + "community": 934, + "norm_label": "shift()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_shift" + }, + { + "label": "derive_row()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L42", + "community": 934, + "norm_label": "derive_row()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_row" + }, + { + "label": "rebuild_colors()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L188", + "community": 934, + "norm_label": "rebuild_colors()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_rebuild_colors" + }, + { + "label": "derive_ui_reasoning()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L250", + "community": 934, + "norm_label": "derive_ui_reasoning()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_ui_reasoning" + }, + { + "label": "rebuild_ui_reasoning()", + "file_type": "code", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L359", + "community": 934, + "norm_label": "rebuild_ui_reasoning()", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_rebuild_ui_reasoning" + }, + { + "label": "Generate full 16-token color row from 4 base colors.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L43", + "community": 934, + "norm_label": "generate full 16-token color row from 4 base colors.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_rationale_43" + }, + { + "label": "Generate ui-reasoning row from products.csv row.", + "file_type": "rationale", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L251", + "community": 934, + "norm_label": "generate ui-reasoning row from products.csv row.", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_rationale_251" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": ".expo/README.md", + "source_location": "L1", + "community": 1337, + "norm_label": "readme.md", + "id": "expo_readme_md" + }, + { + "label": "MAGIC_API.md", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L1", + "community": 889, + "norm_label": "magic_api.md", + "id": "backend_magic_api_md" + }, + { + "label": "RebreakMagic Device-Binding \u2014 API Documentation", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L1", + "community": 889, + "norm_label": "rebreakmagic device-binding \u2014 api documentation", + "id": "backend_magic_api_rebreakmagic_device_binding_api_documentation" + }, + { + "label": "Architektur-\u00dcberblick", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L5", + "community": 889, + "norm_label": "architektur-uberblick", + "id": "backend_magic_api_architektur_\u00fcberblick" + }, + { + "label": "Endpoints", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L24", + "community": 889, + "norm_label": "endpoints", + "id": "backend_magic_api_endpoints" + }, + { + "label": "1. `POST /api/magic/register`", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L26", + "community": 889, + "norm_label": "1. `post /api/magic/register`", + "id": "backend_magic_api_1_post_api_magic_register" + }, + { + "label": "2. `GET /api/magic/devices`", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L95", + "community": 889, + "norm_label": "2. `get /api/magic/devices`", + "id": "backend_magic_api_2_get_api_magic_devices" + }, + { + "label": "3. `POST /api/magic/devices/:deviceId/request-release`", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L129", + "community": 889, + "norm_label": "3. `post /api/magic/devices/:deviceid/request-release`", + "id": "backend_magic_api_3_post_api_magic_devices_deviceid_request_release" + }, + { + "label": "4. `POST /api/magic/devices/:deviceId/cancel-release`", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L156", + "community": 889, + "norm_label": "4. `post /api/magic/devices/:deviceid/cancel-release`", + "id": "backend_magic_api_4_post_api_magic_devices_deviceid_cancel_release" + }, + { + "label": "5. `GET /api/magic/profile.mobileconfig?token=`", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L180", + "community": 889, + "norm_label": "5. `get /api/magic/profile.mobileconfig?token=`", + "id": "backend_magic_api_5_get_api_magic_profile_mobileconfig_token_dnstoken" + }, + { + "label": "DB-Schema", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L202", + "community": 889, + "norm_label": "db-schema", + "id": "backend_magic_api_db_schema" + }, + { + "label": "AdGuard-Integration", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L227", + "community": 889, + "norm_label": "adguard-integration", + "id": "backend_magic_api_adguard_integration" + }, + { + "label": "Cron-Worker", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L255", + "community": 889, + "norm_label": "cron-worker", + "id": "backend_magic_api_cron_worker" + }, + { + "label": "ENV-Variablen", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L271", + "community": 889, + "norm_label": "env-variablen", + "id": "backend_magic_api_env_variablen" + }, + { + "label": "TODOs (Phase 2)", + "file_type": "document", + "source_file": "backend/MAGIC_API.md", + "source_location": "L281", + "community": 889, + "norm_label": "todos (phase 2)", + "id": "backend_magic_api_todos_phase_2" + }, + { + "label": "ENV_VARS.md", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L1", + "community": 943, + "norm_label": "env_vars.md", + "id": "backend_env_vars_md" + }, + { + "label": "Backend Environment Variables", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L1", + "community": 943, + "norm_label": "backend environment variables", + "id": "backend_env_vars_backend_environment_variables" + }, + { + "label": "Core / Database", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L6", + "community": 943, + "norm_label": "core / database", + "id": "backend_env_vars_core_database" + }, + { + "label": "Admin / Cron", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L11", + "community": 943, + "norm_label": "admin / cron", + "id": "backend_env_vars_admin_cron" + }, + { + "label": "LLM-Provider", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L17", + "community": 943, + "norm_label": "llm-provider", + "id": "backend_env_vars_llm_provider" + }, + { + "label": "TTS-Provider", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L25", + "community": 943, + "norm_label": "tts-provider", + "id": "backend_env_vars_tts_provider" + }, + { + "label": "Supabase (Server-only)", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L33", + "community": 943, + "norm_label": "supabase (server-only)", + "id": "backend_env_vars_supabase_server_only" + }, + { + "label": "Stripe", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L39", + "community": 943, + "norm_label": "stripe", + "id": "backend_env_vars_stripe" + }, + { + "label": "Email / External APIs", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L45", + "community": 943, + "norm_label": "email / external apis", + "id": "backend_env_vars_email_external_apis" + }, + { + "label": "**RebreakMagic DNS-over-HTTPS (NEU 2026-06-01)**", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L52", + "community": 943, + "norm_label": "**rebreakmagic dns-over-https (neu 2026-06-01)**", + "id": "backend_env_vars_rebreakmagic_dns_over_https_neu_2026_06_01" + }, + { + "label": "OAuth", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L58", + "community": 943, + "norm_label": "oauth", + "id": "backend_env_vars_oauth" + }, + { + "label": "Bot-User-IDs", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L63", + "community": 943, + "norm_label": "bot-user-ids", + "id": "backend_env_vars_bot_user_ids" + }, + { + "label": "Public (Client-readable)", + "file_type": "document", + "source_file": "backend/ENV_VARS.md", + "source_location": "L68", + "community": 943, + "norm_label": "public (client-readable)", + "id": "backend_env_vars_public_client_readable" + }, + { + "label": "mail-outlook-oauth-plan.md", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L1", + "community": 177, + "norm_label": "mail-outlook-oauth-plan.md", + "id": "backend_docs_mail_outlook_oauth_plan_md" + }, + { + "label": "Outlook OAuth2 \u2014 Implementierungsplan", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L1", + "community": 177, + "norm_label": "outlook oauth2 \u2014 implementierungsplan", + "id": "docs_mail_outlook_oauth_plan_outlook_oauth2_implementierungsplan" + }, + { + "label": "1. Status-Recherche: Microsoft Basic-Auth-Deprecation", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L9", + "community": 177, + "norm_label": "1. status-recherche: microsoft basic-auth-deprecation", + "id": "docs_mail_outlook_oauth_plan_1_status_recherche_microsoft_basic_auth_deprecation" + }, + { + "label": "Was ist passiert", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L11", + "community": 177, + "norm_label": "was ist passiert", + "id": "docs_mail_outlook_oauth_plan_was_ist_passiert" + }, + { + "label": "Edge-Cases", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L24", + "community": 177, + "norm_label": "edge-cases", + "id": "docs_mail_outlook_oauth_plan_edge_cases" + }, + { + "label": "Benoetigte OAuth-Scopes", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L38", + "community": 177, + "norm_label": "benoetigte oauth-scopes", + "id": "docs_mail_outlook_oauth_plan_benoetigte_oauth_scopes" + }, + { + "label": "Consumer Identity Platform vs Azure-AD", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L57", + "community": 177, + "norm_label": "consumer identity platform vs azure-ad", + "id": "docs_mail_outlook_oauth_plan_consumer_identity_platform_vs_azure_ad" + }, + { + "label": "2. Architektur-Plan", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L74", + "community": 177, + "norm_label": "2. architektur-plan", + "id": "docs_mail_outlook_oauth_plan_2_architektur_plan" + }, + { + "label": "2.1 Azure-App-Registrierung", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L76", + "community": 177, + "norm_label": "2.1 azure-app-registrierung", + "id": "docs_mail_outlook_oauth_plan_2_1_azure_app_registrierung" + }, + { + "label": "2.2 OAuth-Flow: BFF-Pattern (Backend-mediated)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L99", + "community": 177, + "norm_label": "2.2 oauth-flow: bff-pattern (backend-mediated)", + "id": "docs_mail_outlook_oauth_plan_2_2_oauth_flow_bff_pattern_backend_mediated" + }, + { + "label": "2.3 Token-Storage: Schema-Aenderung (Eskalation an rebreak-backend)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L158", + "community": 177, + "norm_label": "2.3 token-storage: schema-aenderung (eskalation an rebreak-backend)", + "id": "docs_mail_outlook_oauth_plan_2_3_token_storage_schema_aenderung_eskalation_an_rebreak_backend" + }, + { + "label": "2.4 IMAP-Connect-Logik: XOAUTH2 in ImapFlow", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L185", + "community": 177, + "norm_label": "2.4 imap-connect-logik: xoauth2 in imapflow", + "id": "docs_mail_outlook_oauth_plan_2_4_imap_connect_logik_xoauth2_in_imapflow" + }, + { + "label": "2.5 Token-Refresh-Flow", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L216", + "community": 177, + "norm_label": "2.5 token-refresh-flow", + "id": "docs_mail_outlook_oauth_plan_2_5_token_refresh_flow" + }, + { + "label": "3. ConnectMailSheet UX-Plan (fuer rebreak-native-ui-Agent)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L257", + "community": 177, + "norm_label": "3. connectmailsheet ux-plan (fuer rebreak-native-ui-agent)", + "id": "docs_mail_outlook_oauth_plan_3_connectmailsheet_ux_plan_fuer_rebreak_native_ui_agent" + }, + { + "label": "Geaenderter Flow fuer Outlook", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L259", + "community": 177, + "norm_label": "geaenderter flow fuer outlook", + "id": "docs_mail_outlook_oauth_plan_geaenderter_flow_fuer_outlook" + }, + { + "label": "4. DSGVO-/Compliance-Aspekte (fuer Hans-Mueller-DSB-Review)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L313", + "community": 177, + "norm_label": "4. dsgvo-/compliance-aspekte (fuer hans-mueller-dsb-review)", + "id": "docs_mail_outlook_oauth_plan_4_dsgvo_compliance_aspekte_fuer_hans_mueller_dsb_review" + }, + { + "label": "4.1 Microsoft als Sub-Auftragsverarbeiter", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L317", + "community": 177, + "norm_label": "4.1 microsoft als sub-auftragsverarbeiter", + "id": "docs_mail_outlook_oauth_plan_4_1_microsoft_als_sub_auftragsverarbeiter" + }, + { + "label": "4.2 Token-Speicherung = sensibler als Passwort", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L327", + "community": 177, + "norm_label": "4.2 token-speicherung = sensibler als passwort", + "id": "docs_mail_outlook_oauth_plan_4_2_token_speicherung_sensibler_als_passwort" + }, + { + "label": "4.3 Datenminimierung", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L340", + "community": 177, + "norm_label": "4.3 datenminimierung", + "id": "docs_mail_outlook_oauth_plan_4_3_datenminimierung" + }, + { + "label": "4.4 Loeschpflicht / Widerrufs-Pflicht", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L349", + "community": 177, + "norm_label": "4.4 loeschpflicht / widerrufs-pflicht", + "id": "docs_mail_outlook_oauth_plan_4_4_loeschpflicht_widerrufs_pflicht" + }, + { + "label": "4.5 Speicherort", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L360", + "community": 177, + "norm_label": "4.5 speicherort", + "id": "docs_mail_outlook_oauth_plan_4_5_speicherort" + }, + { + "label": "5. Aufwands-Schaetzung", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L368", + "community": 177, + "norm_label": "5. aufwands-schaetzung", + "id": "docs_mail_outlook_oauth_plan_5_aufwands_schaetzung" + }, + { + "label": "MVP-Scope", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L370", + "community": 177, + "norm_label": "mvp-scope", + "id": "docs_mail_outlook_oauth_plan_mvp_scope" + }, + { + "label": "Risiken", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L389", + "community": 177, + "norm_label": "risiken", + "id": "docs_mail_outlook_oauth_plan_risiken" + }, + { + "label": "6. Abhaengigkeiten und naechste Schritte", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L436", + "community": 177, + "norm_label": "6. abhaengigkeiten und naechste schritte", + "id": "docs_mail_outlook_oauth_plan_6_abhaengigkeiten_und_naechste_schritte" + }, + { + "label": "Sofortige Eskalationen", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L438", + "community": 177, + "norm_label": "sofortige eskalationen", + "id": "docs_mail_outlook_oauth_plan_sofortige_eskalationen" + }, + { + "label": "Entscheidung vor Implementierungsstart", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L448", + "community": 177, + "norm_label": "entscheidung vor implementierungsstart", + "id": "docs_mail_outlook_oauth_plan_entscheidung_vor_implementierungsstart" + }, + { + "label": "Kein Handlungsbedarf bis Schema-Migration done", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L456", + "community": 177, + "norm_label": "kein handlungsbedarf bis schema-migration done", + "id": "docs_mail_outlook_oauth_plan_kein_handlungsbedarf_bis_schema_migration_done" + }, + { + "label": "7. Was wir heute sofort tun koennen (ohne Schema-Change)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L463", + "community": 177, + "norm_label": "7. was wir heute sofort tun koennen (ohne schema-change)", + "id": "docs_mail_outlook_oauth_plan_7_was_wir_heute_sofort_tun_koennen_ohne_schema_change" + }, + { + "label": "mail-custom-keywords-plan.md", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L1", + "community": 163, + "norm_label": "mail-custom-keywords-plan.md", + "id": "backend_docs_mail_custom_keywords_plan_md" + }, + { + "label": "Mail Custom Keywords \u2014 Architektur-Plan", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L1", + "community": 163, + "norm_label": "mail custom keywords \u2014 architektur-plan", + "id": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan" + }, + { + "label": "1. Use-Case + Motivation", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L10", + "community": 163, + "norm_label": "1. use-case + motivation", + "id": "docs_mail_custom_keywords_plan_1_use_case_motivation" + }, + { + "label": "2. Architektur-Vorschlag", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L25", + "community": 163, + "norm_label": "2. architektur-vorschlag", + "id": "docs_mail_custom_keywords_plan_2_architektur_vorschlag" + }, + { + "label": "2.1 Aktueller Filter-Pfad (Ist-Zustand)", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L27", + "community": 163, + "norm_label": "2.1 aktueller filter-pfad (ist-zustand)", + "id": "docs_mail_custom_keywords_plan_2_1_aktueller_filter_pfad_ist_zustand" + }, + { + "label": "2.2 Ziel-Architektur (Soll-Zustand)", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L49", + "community": 163, + "norm_label": "2.2 ziel-architektur (soll-zustand)", + "id": "docs_mail_custom_keywords_plan_2_2_ziel_architektur_soll_zustand" + }, + { + "label": "2.3 Keyword-Laden: Wann und Wie", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L72", + "community": 163, + "norm_label": "2.3 keyword-laden: wann und wie", + "id": "docs_mail_custom_keywords_plan_2_3_keyword_laden_wann_und_wie" + }, + { + "label": "3. Schema-Spec", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L87", + "community": 163, + "norm_label": "3. schema-spec", + "id": "docs_mail_custom_keywords_plan_3_schema_spec" + }, + { + "label": "3.1 Neue Tabelle: `user_mail_keywords`", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L89", + "community": 163, + "norm_label": "3.1 neue tabelle: `user_mail_keywords`", + "id": "docs_mail_custom_keywords_plan_3_1_neue_tabelle_user_mail_keywords" + }, + { + "label": "3.2 matchScope statt matchType", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L114", + "community": 163, + "norm_label": "3.2 matchscope statt matchtype", + "id": "docs_mail_custom_keywords_plan_3_2_matchscope_statt_matchtype" + }, + { + "label": "3.3 Limits pro Plan", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L127", + "community": 163, + "norm_label": "3.3 limits pro plan", + "id": "docs_mail_custom_keywords_plan_3_3_limits_pro_plan" + }, + { + "label": "4. Tier-Gating", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L146", + "community": 163, + "norm_label": "4. tier-gating", + "id": "docs_mail_custom_keywords_plan_4_tier_gating" + }, + { + "label": "4.1 Wo wird gegated", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L148", + "community": 163, + "norm_label": "4.1 wo wird gegated", + "id": "docs_mail_custom_keywords_plan_4_1_wo_wird_gegated" + }, + { + "label": "4.2 Downgrade-Handling", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L158", + "community": 163, + "norm_label": "4.2 downgrade-handling", + "id": "docs_mail_custom_keywords_plan_4_2_downgrade_handling" + }, + { + "label": "4.3 Plan-Check beim Schreiben", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L166", + "community": 163, + "norm_label": "4.3 plan-check beim schreiben", + "id": "docs_mail_custom_keywords_plan_4_3_plan_check_beim_schreiben" + }, + { + "label": "5. UX-Anforderungen (f\u00fcr rebreak-native-ui)", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L179", + "community": 163, + "norm_label": "5. ux-anforderungen (fur rebreak-native-ui)", + "id": "docs_mail_custom_keywords_plan_5_ux_anforderungen_f\u00fcr_rebreak_native_ui" + }, + { + "label": "5.1 Platzierung", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L183", + "community": 163, + "norm_label": "5.1 platzierung", + "id": "docs_mail_custom_keywords_plan_5_1_platzierung" + }, + { + "label": "5.2 Eingabe-Pattern", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L196", + "community": 163, + "norm_label": "5.2 eingabe-pattern", + "id": "docs_mail_custom_keywords_plan_5_2_eingabe_pattern" + }, + { + "label": "5.3 Validation im UI (vor API-Call)", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L202", + "community": 163, + "norm_label": "5.3 validation im ui (vor api-call)", + "id": "docs_mail_custom_keywords_plan_5_3_validation_im_ui_vor_api_call" + }, + { + "label": "5.4 Feedback wenn Keyword Treffer erzielt", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L209", + "community": 163, + "norm_label": "5.4 feedback wenn keyword treffer erzielt", + "id": "docs_mail_custom_keywords_plan_5_4_feedback_wenn_keyword_treffer_erzielt" + }, + { + "label": "6. DSGVO-Aspekte", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L217", + "community": 163, + "norm_label": "6. dsgvo-aspekte", + "id": "docs_mail_custom_keywords_plan_6_dsgvo_aspekte" + }, + { + "label": "6.1 Klassifikation der Keywords", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L219", + "community": 163, + "norm_label": "6.1 klassifikation der keywords", + "id": "docs_mail_custom_keywords_plan_6_1_klassifikation_der_keywords" + }, + { + "label": "6.2 Verschl\u00fcsselung at-rest", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L225", + "community": 163, + "norm_label": "6.2 verschlusselung at-rest", + "id": "docs_mail_custom_keywords_plan_6_2_verschl\u00fcsselung_at_rest" + }, + { + "label": "6.3 Audit-Log", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L231", + "community": 163, + "norm_label": "6.3 audit-log", + "id": "docs_mail_custom_keywords_plan_6_3_audit_log" + }, + { + "label": "6.4 Datenl\u00f6schung", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L235", + "community": 163, + "norm_label": "6.4 datenloschung", + "id": "docs_mail_custom_keywords_plan_6_4_datenl\u00f6schung" + }, + { + "label": "7. Performance + False-Positive-Risiken", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L243", + "community": 163, + "norm_label": "7. performance + false-positive-risiken", + "id": "docs_mail_custom_keywords_plan_7_performance_false_positive_risiken" + }, + { + "label": "7.1 Performance-Analyse", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L245", + "community": 163, + "norm_label": "7.1 performance-analyse", + "id": "docs_mail_custom_keywords_plan_7_1_performance_analyse" + }, + { + "label": "7.2 False-Positive-Risiken", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L278", + "community": 163, + "norm_label": "7.2 false-positive-risiken", + "id": "docs_mail_custom_keywords_plan_7_2_false_positive_risiken" + }, + { + "label": "7.3 Regex-Injection", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L295", + "community": 163, + "norm_label": "7.3 regex-injection", + "id": "docs_mail_custom_keywords_plan_7_3_regex_injection" + }, + { + "label": "8. Aufwand-Sch\u00e4tzung", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L301", + "community": 163, + "norm_label": "8. aufwand-schatzung", + "id": "docs_mail_custom_keywords_plan_8_aufwand_sch\u00e4tzung" + }, + { + "label": "9. Open Questions", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L321", + "community": 163, + "norm_label": "9. open questions", + "id": "docs_mail_custom_keywords_plan_9_open_questions" + }, + { + "label": "Eskalationen", + "file_type": "document", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L343", + "community": 163, + "norm_label": "eskalationen", + "id": "docs_mail_custom_keywords_plan_eskalationen" + }, + { + "label": "consent-gap-plan.md", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L1", + "community": 643, + "norm_label": "consent-gap-plan.md", + "id": "backend_docs_consent_gap_plan_md" + }, + { + "label": "Consent-Gap-Plan \u2014 Art. 9 DSGVO Mail-Auto-Delete", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L1", + "community": 643, + "norm_label": "consent-gap-plan \u2014 art. 9 dsgvo mail-auto-delete", + "id": "docs_consent_gap_plan_consent_gap_plan_art_9_dsgvo_mail_auto_delete" + }, + { + "label": "Was wurde implementiert", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L9", + "community": 643, + "norm_label": "was wurde implementiert", + "id": "docs_consent_gap_plan_was_wurde_implementiert" + }, + { + "label": "Schema (Migration 20260513_art9_consent_log)", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L11", + "community": 643, + "norm_label": "schema (migration 20260513_art9_consent_log)", + "id": "docs_consent_gap_plan_schema_migration_20260513_art9_consent_log" + }, + { + "label": "Backend-Dateien", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L22", + "community": 643, + "norm_label": "backend-dateien", + "id": "docs_consent_gap_plan_backend_dateien" + }, + { + "label": "Aktuelle Consent-Version", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L33", + "community": 643, + "norm_label": "aktuelle consent-version", + "id": "docs_consent_gap_plan_aktuelle_consent_version" + }, + { + "label": "TODO #1 \u2014 mo (Mail-Stack / Daemon)", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L39", + "community": 643, + "norm_label": "todo #1 \u2014 mo (mail-stack / daemon)", + "id": "docs_consent_gap_plan_todo_1_mo_mail_stack_daemon" + }, + { + "label": "TODO #2 \u2014 mo (OAuth Token-Revoke bei Disconnect)", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L66", + "community": 643, + "norm_label": "todo #2 \u2014 mo (oauth token-revoke bei disconnect)", + "id": "docs_consent_gap_plan_todo_2_mo_oauth_token_revoke_bei_disconnect" + }, + { + "label": "TODO #3 \u2014 Datenexport (Art. 15 DSGVO)", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L108", + "community": 643, + "norm_label": "todo #3 \u2014 datenexport (art. 15 dsgvo)", + "id": "docs_consent_gap_plan_todo_3_datenexport_art_15_dsgvo" + }, + { + "label": "Frontend-Spec f\u00fcr rebreak-native-ui (UI-Agent)", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L122", + "community": 643, + "norm_label": "frontend-spec fur rebreak-native-ui (ui-agent)", + "id": "docs_consent_gap_plan_frontend_spec_f\u00fcr_rebreak_native_ui_ui_agent" + }, + { + "label": "Re-Consent-Modal (f\u00fcr Bestandsuser)", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L124", + "community": 643, + "norm_label": "re-consent-modal (fur bestandsuser)", + "id": "docs_consent_gap_plan_re_consent_modal_f\u00fcr_bestandsuser" + }, + { + "label": "ConnectMailSheet \u2014 Consent-Gate", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L143", + "community": 643, + "norm_label": "connectmailsheet \u2014 consent-gate", + "id": "docs_consent_gap_plan_connectmailsheet_consent_gate" + }, + { + "label": "Empfehlung: `GET /api/mail-connections/consent-version`", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L158", + "community": 643, + "norm_label": "empfehlung: `get /api/mail-connections/consent-version`", + "id": "docs_consent_gap_plan_empfehlung_get_api_mail_connections_consent_version" + }, + { + "label": "Consent-Text-Bump-Workflow (f\u00fcr k\u00fcnftige DSB-Updates)", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L171", + "community": 643, + "norm_label": "consent-text-bump-workflow (fur kunftige dsb-updates)", + "id": "docs_consent_gap_plan_consent_text_bump_workflow_f\u00fcr_k\u00fcnftige_dsb_updates" + }, + { + "label": "Nicht gemacht (explizit aus Scope ausgeschlossen)", + "file_type": "document", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L182", + "community": 643, + "norm_label": "nicht gemacht (explizit aus scope ausgeschlossen)", + "id": "docs_consent_gap_plan_nicht_gemacht_explizit_aus_scope_ausgeschlossen" + }, + { + "label": "mail-outlook-oauth-dsgvo-review.md", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L1", + "community": 235, + "norm_label": "mail-outlook-oauth-dsgvo-review.md", + "id": "backend_docs_mail_outlook_oauth_dsgvo_review_md" + }, + { + "label": "Datenschutz-Memo: Microsoft als Sub-Auftragsverarbeiter (Outlook-IMAP-OAuth)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L1", + "community": 235, + "norm_label": "datenschutz-memo: microsoft als sub-auftragsverarbeiter (outlook-imap-oauth)", + "id": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth" + }, + { + "label": "1. Gesamteinsch\u00e4tzung (Executive Summary)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L13", + "community": 235, + "norm_label": "1. gesamteinschatzung (executive summary)", + "id": "docs_mail_outlook_oauth_dsgvo_review_1_gesamteinsch\u00e4tzung_executive_summary" + }, + { + "label": "2. Sub-Auftragsverarbeiter-Konstellation (Art. 28 DSGVO)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L25", + "community": 235, + "norm_label": "2. sub-auftragsverarbeiter-konstellation (art. 28 dsgvo)", + "id": "docs_mail_outlook_oauth_dsgvo_review_2_sub_auftragsverarbeiter_konstellation_art_28_dsgvo" + }, + { + "label": "2.1 Rolle von Microsoft", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L27", + "community": 235, + "norm_label": "2.1 rolle von microsoft", + "id": "docs_mail_outlook_oauth_dsgvo_review_2_1_rolle_von_microsoft" + }, + { + "label": "2.2 Rechtsgrundlage f\u00fcr die Sub-AV-Beauftragung", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L38", + "community": 235, + "norm_label": "2.2 rechtsgrundlage fur die sub-av-beauftragung", + "id": "docs_mail_outlook_oauth_dsgvo_review_2_2_rechtsgrundlage_f\u00fcr_die_sub_av_beauftragung" + }, + { + "label": "2.3 Drittland-Transfer (Kapitel V DSGVO)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L46", + "community": 235, + "norm_label": "2.3 drittland-transfer (kapitel v dsgvo)", + "id": "docs_mail_outlook_oauth_dsgvo_review_2_3_drittland_transfer_kapitel_v_dsgvo" + }, + { + "label": "3. Verarbeitungsverzeichnis (Art. 30 DSGVO)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L64", + "community": 235, + "norm_label": "3. verarbeitungsverzeichnis (art. 30 dsgvo)", + "id": "docs_mail_outlook_oauth_dsgvo_review_3_verarbeitungsverzeichnis_art_30_dsgvo" + }, + { + "label": "3.1 Neue VVT-Zeile \u201eOutlook-Mail-Anbindung via OAuth2\"", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L66", + "community": 235, + "norm_label": "3.1 neue vvt-zeile \u201eoutlook-mail-anbindung via oauth2\"", + "id": "docs_mail_outlook_oauth_dsgvo_review_3_1_neue_vvt_zeile_outlook_mail_anbindung_via_oauth2" + }, + { + "label": "3.2 Sub-AV-Liste aktualisieren", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L82", + "community": 235, + "norm_label": "3.2 sub-av-liste aktualisieren", + "id": "docs_mail_outlook_oauth_dsgvo_review_3_2_sub_av_liste_aktualisieren" + }, + { + "label": "4. Datenschutzerkl\u00e4rung \u2014 Update-Pflicht (Art. 13 DSGVO)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L97", + "community": 235, + "norm_label": "4. datenschutzerklarung \u2014 update-pflicht (art. 13 dsgvo)", + "id": "docs_mail_outlook_oauth_dsgvo_review_4_datenschutzerkl\u00e4rung_update_pflicht_art_13_dsgvo" + }, + { + "label": "4.1 Neuer Textbaustein (Vorschlag, anwaltlich final reviewen lassen)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L99", + "community": 235, + "norm_label": "4.1 neuer textbaustein (vorschlag, anwaltlich final reviewen lassen)", + "id": "docs_mail_outlook_oauth_dsgvo_review_4_1_neuer_textbaustein_vorschlag_anwaltlich_final_reviewen_lassen" + }, + { + "label": "4.2 Unterschied \u201eOAuth-Token-Storage vs App-Passwort-Storage\"", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L120", + "community": 235, + "norm_label": "4.2 unterschied \u201eoauth-token-storage vs app-passwort-storage\"", + "id": "docs_mail_outlook_oauth_dsgvo_review_4_2_unterschied_oauth_token_storage_vs_app_passwort_storage" + }, + { + "label": "5. Betroffenenrechte", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L126", + "community": 235, + "norm_label": "5. betroffenenrechte", + "id": "docs_mail_outlook_oauth_dsgvo_review_5_betroffenenrechte" + }, + { + "label": "5.1 Recht auf L\u00f6schung (Art. 17)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L128", + "community": 235, + "norm_label": "5.1 recht auf loschung (art. 17)", + "id": "docs_mail_outlook_oauth_dsgvo_review_5_1_recht_auf_l\u00f6schung_art_17" + }, + { + "label": "5.2 Auskunftspflicht (Art. 15)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L153", + "community": 235, + "norm_label": "5.2 auskunftspflicht (art. 15)", + "id": "docs_mail_outlook_oauth_dsgvo_review_5_2_auskunftspflicht_art_15" + }, + { + "label": "6. Art. 9 DSGVO \u2014 Besondere Kategorie (Suchterkrankung)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L161", + "community": 235, + "norm_label": "6. art. 9 dsgvo \u2014 besondere kategorie (suchterkrankung)", + "id": "docs_mail_outlook_oauth_dsgvo_review_6_art_9_dsgvo_besondere_kategorie_suchterkrankung" + }, + { + "label": "6.1 Der \u201eOuting-Effekt\" gegen\u00fcber Microsoft", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L163", + "community": 235, + "norm_label": "6.1 der \u201eouting-effekt\" gegenuber microsoft", + "id": "docs_mail_outlook_oauth_dsgvo_review_6_1_der_outing_effekt_gegen\u00fcber_microsoft" + }, + { + "label": "6.2 Rechtsgrundlage Art. 9 Abs. 2", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L173", + "community": 235, + "norm_label": "6.2 rechtsgrundlage art. 9 abs. 2", + "id": "docs_mail_outlook_oauth_dsgvo_review_6_2_rechtsgrundlage_art_9_abs_2" + }, + { + "label": "7. DiGA-Aspekte", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L187", + "community": 235, + "norm_label": "7. diga-aspekte", + "id": "docs_mail_outlook_oauth_dsgvo_review_7_diga_aspekte" + }, + { + "label": "8. Konkrete To-Do-Liste, priorisiert", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L199", + "community": 235, + "norm_label": "8. konkrete to-do-liste, priorisiert", + "id": "docs_mail_outlook_oauth_dsgvo_review_8_konkrete_to_do_liste_priorisiert" + }, + { + "label": "9. Was ich **nicht** entscheiden kann (Anwalts-Themen)", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L218", + "community": 235, + "norm_label": "9. was ich **nicht** entscheiden kann (anwalts-themen)", + "id": "docs_mail_outlook_oauth_dsgvo_review_9_was_ich_nicht_entscheiden_kann_anwalts_themen" + }, + { + "label": "10. Quellen", + "file_type": "document", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L229", + "community": 235, + "norm_label": "10. quellen", + "id": "docs_mail_outlook_oauth_dsgvo_review_10_quellen" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "backend/imap-idle/README.md", + "source_location": "L1", + "community": 1040, + "norm_label": "readme.md", + "id": "backend_imap_idle_readme_md" + }, + { + "label": "rebreak-imap-idle", + "file_type": "document", + "source_file": "backend/imap-idle/README.md", + "source_location": "L1", + "community": 1040, + "norm_label": "rebreak-imap-idle", + "id": "imap_idle_readme_rebreak_imap_idle" + }, + { + "label": "Was er macht", + "file_type": "document", + "source_file": "backend/imap-idle/README.md", + "source_location": "L5", + "community": 1040, + "norm_label": "was er macht", + "id": "imap_idle_readme_was_er_macht" + }, + { + "label": "Env-Vars", + "file_type": "document", + "source_file": "backend/imap-idle/README.md", + "source_location": "L14", + "community": 1040, + "norm_label": "env-vars", + "id": "imap_idle_readme_env_vars" + }, + { + "label": "Lokal starten (Entwicklung)", + "file_type": "document", + "source_file": "backend/imap-idle/README.md", + "source_location": "L24", + "community": 1040, + "norm_label": "lokal starten (entwicklung)", + "id": "imap_idle_readme_lokal_starten_entwicklung" + }, + { + "label": "PM2 (Produktion)", + "file_type": "document", + "source_file": "backend/imap-idle/README.md", + "source_location": "L38", + "community": 1040, + "norm_label": "pm2 (produktion)", + "id": "imap_idle_readme_pm2_produktion" + }, + { + "label": "Logs (pm2)", + "file_type": "document", + "source_file": "backend/imap-idle/README.md", + "source_location": "L42", + "community": 1040, + "norm_label": "logs (pm2)", + "id": "imap_idle_readme_logs_pm2" + }, + { + "label": "RIVE_ANIMATOR_BRIEF.md", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L1", + "community": 329, + "norm_label": "rive_animator_brief.md", + "id": "docs_rive_animator_brief_md" + }, + { + "label": "Rive Animator Brief \u2014 Lyra Avatar Emotion States", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L1", + "community": 329, + "norm_label": "rive animator brief \u2014 lyra avatar emotion states", + "id": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states" + }, + { + "label": "\ud83c\udfaf Project: Rebreak \u2014 Lyra Avatar Animation", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L7", + "community": 329, + "norm_label": "\ud83c\udfaf project: rebreak \u2014 lyra avatar animation", + "id": "docs_rive_animator_brief_project_rebreak_lyra_avatar_animation" + }, + { + "label": "What I have (current `.riv`)", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L15", + "community": 329, + "norm_label": "what i have (current `.riv`)", + "id": "docs_rive_animator_brief_what_i_have_current_riv" + }, + { + "label": "\u26a0\ufe0f Critical naming contract \u2014 do NOT rename existing names", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L30", + "community": 329, + "norm_label": "\u26a0\ufe0f critical naming contract \u2014 do not rename existing names", + "id": "docs_rive_animator_brief_critical_naming_contract_do_not_rename_existing_names" + }, + { + "label": "Deliverables \u2014 emotion states", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L39", + "community": 329, + "norm_label": "deliverables \u2014 emotion states", + "id": "docs_rive_animator_brief_deliverables_emotion_states" + }, + { + "label": "Tier 1 \u2014 must-have (4 states, baseline budget)", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L43", + "community": 329, + "norm_label": "tier 1 \u2014 must-have (4 states, baseline budget)", + "id": "docs_rive_animator_brief_tier_1_must_have_4_states_baseline_budget" + }, + { + "label": "Tier 2 \u2014 nice-to-have (2-3 more states, push budget if you can)", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L52", + "community": 329, + "norm_label": "tier 2 \u2014 nice-to-have (2-3 more states, push budget if you can)", + "id": "docs_rive_animator_brief_tier_2_nice_to_have_2_3_more_states_push_budget_if_you_can" + }, + { + "label": "Skip these (anti-patterns for recovery use-case)", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L60", + "community": 329, + "norm_label": "skip these (anti-patterns for recovery use-case)", + "id": "docs_rive_animator_brief_skip_these_anti_patterns_for_recovery_use_case" + }, + { + "label": "Visual style guidelines", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L67", + "community": 329, + "norm_label": "visual style guidelines", + "id": "docs_rive_animator_brief_visual_style_guidelines" + }, + { + "label": "Technical Requirements", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L75", + "community": 329, + "norm_label": "technical requirements", + "id": "docs_rive_animator_brief_technical_requirements" + }, + { + "label": "Bonus task (optional, +scope)", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L84", + "community": 329, + "norm_label": "bonus task (optional, +scope)", + "id": "docs_rive_animator_brief_bonus_task_optional_scope" + }, + { + "label": "Timeline + Budget", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L88", + "community": 329, + "norm_label": "timeline + budget", + "id": "docs_rive_animator_brief_timeline_budget" + }, + { + "label": "Deliverables you provide", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L98", + "community": 329, + "norm_label": "deliverables you provide", + "id": "docs_rive_animator_brief_deliverables_you_provide" + }, + { + "label": "Questions to ask BEFORE starting (please answer in your application)", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L108", + "community": 329, + "norm_label": "questions to ask before starting (please answer in your application)", + "id": "docs_rive_animator_brief_questions_to_ask_before_starting_please_answer_in_your_application" + }, + { + "label": "What I value in your work", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L118", + "community": 329, + "norm_label": "what i value in your work", + "id": "docs_rive_animator_brief_what_i_value_in_your_work" + }, + { + "label": "How to apply", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L125", + "community": 329, + "norm_label": "how to apply", + "id": "docs_rive_animator_brief_how_to_apply" + }, + { + "label": "How to use this brief (internal \u2014 not for animator)", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L139", + "community": 329, + "norm_label": "how to use this brief (internal \u2014 not for animator)", + "id": "docs_rive_animator_brief_how_to_use_this_brief_internal_not_for_animator" + }, + { + "label": "Sources / Internal-Files", + "file_type": "document", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L153", + "community": 329, + "norm_label": "sources / internal-files", + "id": "docs_rive_animator_brief_sources_internal_files" + }, + { + "label": "protection-coverage-streak.md", + "file_type": "document", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L1", + "community": 1021, + "norm_label": "protection-coverage-streak.md", + "id": "docs_specs_protection_coverage_streak_md" + }, + { + "label": "Spec: Protection Coverage & Streak (DiGA-Kernmetrik)", + "file_type": "document", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L1", + "community": 1021, + "norm_label": "spec: protection coverage & streak (diga-kernmetrik)", + "id": "specs_protection_coverage_streak_spec_protection_coverage_streak_diga_kernmetrik" + }, + { + "label": "Leitprinzip", + "file_type": "document", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L9", + "community": 1021, + "norm_label": "leitprinzip", + "id": "specs_protection_coverage_streak_leitprinzip" + }, + { + "label": "1. Datenmodell \u2014 `protection_state_log` (NEU, append-only)", + "file_type": "document", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L15", + "community": 1021, + "norm_label": "1. datenmodell \u2014 `protection_state_log` (neu, append-only)", + "id": "specs_protection_coverage_streak_1_datenmodell_protection_state_log_neu_append_only" + }, + { + "label": "2. Ingestion (wann wird geloggt)", + "file_type": "document", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L37", + "community": 1021, + "norm_label": "2. ingestion (wann wird geloggt)", + "id": "specs_protection_coverage_streak_2_ingestion_wann_wird_geloggt" + }, + { + "label": "3. Compute \u2014 `GET /api/protection/coverage`", + "file_type": "document", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L46", + "community": 1021, + "norm_label": "3. compute \u2014 `get /api/protection/coverage`", + "id": "specs_protection_coverage_streak_3_compute_get_api_protection_coverage" + }, + { + "label": "4. Frontend \u2014 Profile Streak-Section (ersetzt alte Logik)", + "file_type": "document", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L72", + "community": 1021, + "norm_label": "4. frontend \u2014 profile streak-section (ersetzt alte logik)", + "id": "specs_protection_coverage_streak_4_frontend_profile_streak_section_ersetzt_alte_logik" + }, + { + "label": "5. Scope / Guards", + "file_type": "document", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L89", + "community": 1021, + "norm_label": "5. scope / guards", + "id": "specs_protection_coverage_streak_5_scope_guards" + }, + { + "label": "magic-re-hardening.md", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L1", + "community": 133, + "norm_label": "magic-re-hardening.md", + "id": "docs_specs_magic_re_hardening_md" + }, + { + "label": "ReBreak Magic \u2014 RE-Hardening Assessment & Plan", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L1", + "community": 133, + "norm_label": "rebreak magic \u2014 re-hardening assessment & plan", + "id": "specs_magic_re_hardening_rebreak_magic_re_hardening_assessment_plan" + }, + { + "label": "1. RE-Exposure-Analyse: Was liegt aktuell offen?", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L9", + "community": 133, + "norm_label": "1. re-exposure-analyse: was liegt aktuell offen?", + "id": "specs_magic_re_hardening_1_re_exposure_analyse_was_liegt_aktuell_offen" + }, + { + "label": "1.1 Mac-App (SwiftUI, .app-Bundle)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L11", + "community": 133, + "norm_label": "1.1 mac-app (swiftui, .app-bundle)", + "id": "specs_magic_re_hardening_1_1_mac_app_swiftui_app_bundle" + }, + { + "label": "1.2 Windows-App (Tauri 2 / Rust)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L33", + "community": 133, + "norm_label": "1.2 windows-app (tauri 2 / rust)", + "id": "specs_magic_re_hardening_1_2_windows_app_tauri_2_rust" + }, + { + "label": "1.3 Backend-Ber\u00fchrungspunkte", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L62", + "community": 133, + "norm_label": "1.3 backend-beruhrungspunkte", + "id": "specs_magic_re_hardening_1_3_backend_ber\u00fchrungspunkte" + }, + { + "label": "2. Sicherheitsbewertung: Was ist tats\u00e4chlich kritisch?", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L74", + "community": 133, + "norm_label": "2. sicherheitsbewertung: was ist tatsachlich kritisch?", + "id": "specs_magic_re_hardening_2_sicherheitsbewertung_was_ist_tats\u00e4chlich_kritisch" + }, + { + "label": "Kritisch (direkter Bypass m\u00f6glich)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L76", + "community": 133, + "norm_label": "kritisch (direkter bypass moglich)", + "id": "specs_magic_re_hardening_kritisch_direkter_bypass_m\u00f6glich" + }, + { + "label": "Mittel (kein direkter Bypass, aber schlechte Praxis / Competitor-Wissen)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L80", + "community": 133, + "norm_label": "mittel (kein direkter bypass, aber schlechte praxis / competitor-wissen)", + "id": "specs_magic_re_hardening_mittel_kein_direkter_bypass_aber_schlechte_praxis_competitor_wissen" + }, + { + "label": "Niedrig (kein operativer Bypass)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L85", + "community": 133, + "norm_label": "niedrig (kein operativer bypass)", + "id": "specs_magic_re_hardening_niedrig_kein_operativer_bypass" + }, + { + "label": "Kein Risiko", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L90", + "community": 133, + "norm_label": "kein risiko", + "id": "specs_magic_re_hardening_kein_risiko" + }, + { + "label": "3. H\u00e4rtungs-Plan (priorisiert)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L97", + "community": 133, + "norm_label": "3. hartungs-plan (priorisiert)", + "id": "specs_magic_re_hardening_3_h\u00e4rtungs_plan_priorisiert" + }, + { + "label": "Priorit\u00e4t 1 \u2014 Quick Wins (1\u20133 Tage Aufwand)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L99", + "community": 133, + "norm_label": "prioritat 1 \u2014 quick wins (1\u20133 tage aufwand)", + "id": "specs_magic_re_hardening_priorit\u00e4t_1_quick_wins_1_3_tage_aufwand" + }, + { + "label": "3.1 Windows `protection.json` ACL h\u00e4rten", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L101", + "community": 133, + "norm_label": "3.1 windows `protection.json` acl harten", + "id": "specs_magic_re_hardening_3_1_windows_protection_json_acl_h\u00e4rten" + }, + { + "label": "3.2 Debug-Code aus Mac Release-Build entfernen", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L117", + "community": 133, + "norm_label": "3.2 debug-code aus mac release-build entfernen", + "id": "specs_magic_re_hardening_3_2_debug_code_aus_mac_release_build_entfernen" + }, + { + "label": "3.3 Service-Name verschleiern (Windows)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L122", + "community": 133, + "norm_label": "3.3 service-name verschleiern (windows)", + "id": "specs_magic_re_hardening_3_3_service_name_verschleiern_windows" + }, + { + "label": "3.4 Intern-Kommentar-Strings aus Mac-Binary entfernen", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L128", + "community": 133, + "norm_label": "3.4 intern-kommentar-strings aus mac-binary entfernen", + "id": "specs_magic_re_hardening_3_4_intern_kommentar_strings_aus_mac_binary_entfernen" + }, + { + "label": "Priorit\u00e4t 2 \u2014 Mittlerer Aufwand (1\u20132 Wochen)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L135", + "community": 133, + "norm_label": "prioritat 2 \u2014 mittlerer aufwand (1\u20132 wochen)", + "id": "specs_magic_re_hardening_priorit\u00e4t_2_mittlerer_aufwand_1_2_wochen" + }, + { + "label": "3.5 Windows: Protected Service / PPL (Gr\u00f6\u00dfter Tamper-Schutz)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L137", + "community": 133, + "norm_label": "3.5 windows: protected service / ppl (gro\u00dfter tamper-schutz)", + "id": "specs_magic_re_hardening_3_5_windows_protected_service_ppl_gr\u00f6sster_tamper_schutz" + }, + { + "label": "3.6 Windows: PowerShell-Scripts verschl\u00fcsseln / nicht als String-Literal", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L144", + "community": 133, + "norm_label": "3.6 windows: powershell-scripts verschlusseln / nicht als string-literal", + "id": "specs_magic_re_hardening_3_6_windows_powershell_scripts_verschl\u00fcsseln_nicht_als_string_literal" + }, + { + "label": "3.7 Mac: Profil-Removal-Kommando nicht im Binary", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L151", + "community": 133, + "norm_label": "3.7 mac: profil-removal-kommando nicht im binary", + "id": "specs_magic_re_hardening_3_7_mac_profil_removal_kommando_nicht_im_binary" + }, + { + "label": "3.8 Pairing-Code: Rate-Limiting auf Backend", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L157", + "community": 133, + "norm_label": "3.8 pairing-code: rate-limiting auf backend", + "id": "specs_magic_re_hardening_3_8_pairing_code_rate_limiting_auf_backend" + }, + { + "label": "3.9 `protection.json` DNS-Token verschl\u00fcsseln (Windows)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L162", + "community": 133, + "norm_label": "3.9 `protection.json` dns-token verschlusseln (windows)", + "id": "specs_magic_re_hardening_3_9_protection_json_dns_token_verschl\u00fcsseln_windows" + }, + { + "label": "Priorit\u00e4t 3 \u2014 Gr\u00f6\u00dferer Umbau / Nice-to-Have", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L170", + "community": 133, + "norm_label": "prioritat 3 \u2014 gro\u00dferer umbau / nice-to-have", + "id": "specs_magic_re_hardening_priorit\u00e4t_3_gr\u00f6sserer_umbau_nice_to_have" + }, + { + "label": "3.10 Binary-Obfuscation", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L172", + "community": 133, + "norm_label": "3.10 binary-obfuscation", + "id": "specs_magic_re_hardening_3_10_binary_obfuscation" + }, + { + "label": "3.11 Certificate Pinning f\u00fcr Backend-Calls", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L184", + "community": 133, + "norm_label": "3.11 certificate pinning fur backend-calls", + "id": "specs_magic_re_hardening_3_11_certificate_pinning_f\u00fcr_backend_calls" + }, + { + "label": "3.12 Code-Signing Status", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L190", + "community": 133, + "norm_label": "3.12 code-signing status", + "id": "specs_magic_re_hardening_3_12_code_signing_status" + }, + { + "label": "4. Zusammenfassung nach Plattform", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L198", + "community": 133, + "norm_label": "4. zusammenfassung nach plattform", + "id": "specs_magic_re_hardening_4_zusammenfassung_nach_plattform" + }, + { + "label": "Mac", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L200", + "community": 133, + "norm_label": "mac", + "id": "specs_magic_re_hardening_mac" + }, + { + "label": "Windows", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L209", + "community": 133, + "norm_label": "windows", + "id": "specs_magic_re_hardening_windows" + }, + { + "label": "Backend", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L219", + "community": 133, + "norm_label": "backend", + "id": "specs_magic_re_hardening_backend" + }, + { + "label": "5. Was die H\u00e4rtung NICHT sch\u00fctzt (Grenzen klar kommunizieren)", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L226", + "community": 133, + "norm_label": "5. was die hartung nicht schutzt (grenzen klar kommunizieren)", + "id": "specs_magic_re_hardening_5_was_die_h\u00e4rtung_nicht_sch\u00fctzt_grenzen_klar_kommunizieren" + }, + { + "label": "6. Empfohlene Implementierungs-Reihenfolge", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L234", + "community": 133, + "norm_label": "6. empfohlene implementierungs-reihenfolge", + "id": "specs_magic_re_hardening_6_empfohlene_implementierungs_reihenfolge" + }, + { + "label": "7. Dateipfade f\u00fcr Implementierung", + "file_type": "document", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L243", + "community": 133, + "norm_label": "7. dateipfade fur implementierung", + "id": "specs_magic_re_hardening_7_dateipfade_f\u00fcr_implementierung" + }, + { + "label": "05b-test-verifikation-v0.md", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L1", + "community": 240, + "norm_label": "05b-test-verifikation-v0.md", + "id": "docs_specs_diga_05b_test_verifikation_v0_md" + }, + { + "label": "Dok 05b \u2014 Software-Verifikation: Test-Nachweis (v0)", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L1", + "community": 240, + "norm_label": "dok 05b \u2014 software-verifikation: test-nachweis (v0)", + "id": "diga_05b_test_verifikation_v0_dok_05b_software_verifikation_test_nachweis_v0" + }, + { + "label": "1. Teststrategie-\u00dcberblick", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L13", + "community": 240, + "norm_label": "1. teststrategie-uberblick", + "id": "diga_05b_test_verifikation_v0_1_teststrategie_\u00fcberblick" + }, + { + "label": "1.1 Maestro E2E \u2014 Mobile App (prim\u00e4r)", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L17", + "community": 240, + "norm_label": "1.1 maestro e2e \u2014 mobile app (primar)", + "id": "diga_05b_test_verifikation_v0_1_1_maestro_e2e_mobile_app_prim\u00e4r" + }, + { + "label": "1.2 Vitest Unit-/Integrationstests \u2014 Backend (sekund\u00e4r)", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L51", + "community": 240, + "norm_label": "1.2 vitest unit-/integrationstests \u2014 backend (sekundar)", + "id": "diga_05b_test_verifikation_v0_1_2_vitest_unit_integrationstests_backend_sekund\u00e4r" + }, + { + "label": "1.3 Postman-Collection \u2014 Status: nicht vorhanden", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L73", + "community": 240, + "norm_label": "1.3 postman-collection \u2014 status: nicht vorhanden", + "id": "diga_05b_test_verifikation_v0_1_3_postman_collection_status_nicht_vorhanden" + }, + { + "label": "1.4 Lyra-LLM-Eval-Suite \u2014 Status: implementiert (v0, Live-Run ausstehend)", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L79", + "community": 240, + "norm_label": "1.4 lyra-llm-eval-suite \u2014 status: implementiert (v0, live-run ausstehend)", + "id": "diga_05b_test_verifikation_v0_1_4_lyra_llm_eval_suite_status_implementiert_v0_live_run_ausstehend" + }, + { + "label": "2. Abdeckung je sicherheits-/schutzrelevantem Bereich", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L114", + "community": 240, + "norm_label": "2. abdeckung je sicherheits-/schutzrelevantem bereich", + "id": "diga_05b_test_verifikation_v0_2_abdeckung_je_sicherheits_schutzrelevantem_bereich" + }, + { + "label": "2.1 SOS / Krisen-Flow (h\u00f6chste Sicherheitsrelevanz)", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L116", + "community": 240, + "norm_label": "2.1 sos / krisen-flow (hochste sicherheitsrelevanz)", + "id": "diga_05b_test_verifikation_v0_2_1_sos_krisen_flow_h\u00f6chste_sicherheitsrelevanz" + }, + { + "label": "2.2 Schutz-Aktivierung (Blocker / VPN / a11y)", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L130", + "community": 240, + "norm_label": "2.2 schutz-aktivierung (blocker / vpn / a11y)", + "id": "diga_05b_test_verifikation_v0_2_2_schutz_aktivierung_blocker_vpn_a11y" + }, + { + "label": "2.3 DM / Community", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L147", + "community": 240, + "norm_label": "2.3 dm / community", + "id": "diga_05b_test_verifikation_v0_2_3_dm_community" + }, + { + "label": "2.4 Onboarding / Streak", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L157", + "community": 240, + "norm_label": "2.4 onboarding / streak", + "id": "diga_05b_test_verifikation_v0_2_4_onboarding_streak" + }, + { + "label": "2.5 Demographie (DiGA-Datenqualit\u00e4t)", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L166", + "community": 240, + "norm_label": "2.5 demographie (diga-datenqualitat)", + "id": "diga_05b_test_verifikation_v0_2_5_demographie_diga_datenqualit\u00e4t" + }, + { + "label": "2.6 Auth / Session", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L176", + "community": 240, + "norm_label": "2.6 auth / session", + "id": "diga_05b_test_verifikation_v0_2_6_auth_session" + }, + { + "label": "2.7 Mail-Filter (Schutzkomponente)", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L184", + "community": 240, + "norm_label": "2.7 mail-filter (schutzkomponente)", + "id": "diga_05b_test_verifikation_v0_2_7_mail_filter_schutzkomponente" + }, + { + "label": "3. Traceability-Ansatz (Soll-Zustand + aktueller Stand)", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L195", + "community": 240, + "norm_label": "3. traceability-ansatz (soll-zustand + aktueller stand)", + "id": "diga_05b_test_verifikation_v0_3_traceability_ansatz_soll_zustand_aktueller_stand" + }, + { + "label": "3.1 IEC-62304-Logik: Anforderung \u2192 Test \u2192 Ergebnis", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L197", + "community": 240, + "norm_label": "3.1 iec-62304-logik: anforderung \u2192 test \u2192 ergebnis", + "id": "diga_05b_test_verifikation_v0_3_1_iec_62304_logik_anforderung_test_ergebnis" + }, + { + "label": "3.2 Ist-Zustand der Traceability", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L209", + "community": 240, + "norm_label": "3.2 ist-zustand der traceability", + "id": "diga_05b_test_verifikation_v0_3_2_ist_zustand_der_traceability" + }, + { + "label": "3.3 N\u00e4chste Schritte f\u00fcr formale Traceability", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L217", + "community": 240, + "norm_label": "3.3 nachste schritte fur formale traceability", + "id": "diga_05b_test_verifikation_v0_3_3_n\u00e4chste_schritte_f\u00fcr_formale_traceability" + }, + { + "label": "4. Status + L\u00fccken f\u00fcr formale IEC-62304-Verifikation", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L226", + "community": 240, + "norm_label": "4. status + lucken fur formale iec-62304-verifikation", + "id": "diga_05b_test_verifikation_v0_4_status_l\u00fccken_f\u00fcr_formale_iec_62304_verifikation" + }, + { + "label": "4.1 Was vorhanden ist", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L228", + "community": 240, + "norm_label": "4.1 was vorhanden ist", + "id": "diga_05b_test_verifikation_v0_4_1_was_vorhanden_ist" + }, + { + "label": "4.2 L\u00fccken f\u00fcr formale Verifikation", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L235", + "community": 240, + "norm_label": "4.2 lucken fur formale verifikation", + "id": "diga_05b_test_verifikation_v0_4_2_l\u00fccken_f\u00fcr_formale_verifikation" + }, + { + "label": "5. Koordination mit Dossier-Plan", + "file_type": "document", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L272", + "community": 240, + "norm_label": "5. koordination mit dossier-plan", + "id": "diga_05b_test_verifikation_v0_5_koordination_mit_dossier_plan" + }, + { + "label": "09-pms-plan-v0.md", + "file_type": "document", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L1", + "community": 961, + "norm_label": "09-pms-plan-v0.md", + "id": "docs_specs_diga_09_pms_plan_v0_md" + }, + { + "label": "Post-Market-Surveillance-Plan (PMS) \u2014 Rebreak \u00b7 v0 (Entwurf)", + "file_type": "document", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L1", + "community": 961, + "norm_label": "post-market-surveillance-plan (pms) \u2014 rebreak \u00b7 v0 (entwurf)", + "id": "diga_09_pms_plan_v0_post_market_surveillance_plan_pms_rebreak_v0_entwurf" + }, + { + "label": "1. Zweck & Geltungsbereich", + "file_type": "document", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L27", + "community": 961, + "norm_label": "1. zweck & geltungsbereich", + "id": "diga_09_pms_plan_v0_1_zweck_geltungsbereich" + }, + { + "label": "2. PMS-Datenquellen (real vorhanden)", + "file_type": "document", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L50", + "community": 961, + "norm_label": "2. pms-datenquellen (real vorhanden)", + "id": "diga_09_pms_plan_v0_2_pms_datenquellen_real_vorhanden" + }, + { + "label": "3. Vorkommnis- & meldepflichtige Ereignisse", + "file_type": "document", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L75", + "community": 961, + "norm_label": "3. vorkommnis- & meldepflichtige ereignisse", + "id": "diga_09_pms_plan_v0_3_vorkommnis_meldepflichtige_ereignisse" + }, + { + "label": "3.1 Meldeweg (Entwurf)", + "file_type": "document", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L103", + "community": 961, + "norm_label": "3.1 meldeweg (entwurf)", + "id": "diga_09_pms_plan_v0_3_1_meldeweg_entwurf" + }, + { + "label": "4. Trendberichterstattung (Art. 88)", + "file_type": "document", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L121", + "community": 961, + "norm_label": "4. trendberichterstattung (art. 88)", + "id": "diga_09_pms_plan_v0_4_trendberichterstattung_art_88" + }, + { + "label": "5. Berichts-Rhythmus & Review-Zyklus", + "file_type": "document", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L140", + "community": 961, + "norm_label": "5. berichts-rhythmus & review-zyklus", + "id": "diga_09_pms_plan_v0_5_berichts_rhythmus_review_zyklus" + }, + { + "label": "6. Verantwortlichkeiten", + "file_type": "document", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L161", + "community": 961, + "norm_label": "6. verantwortlichkeiten", + "id": "diga_09_pms_plan_v0_6_verantwortlichkeiten" + }, + { + "label": "7. CAPA-Andockpunkt (\u2192 Dok 10)", + "file_type": "document", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L176", + "community": 961, + "norm_label": "7. capa-andockpunkt (\u2192 dok 10)", + "id": "diga_09_pms_plan_v0_7_capa_andockpunkt_dok_10" + }, + { + "label": "8. Offene Punkte", + "file_type": "document", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L192", + "community": 961, + "norm_label": "8. offene punkte", + "id": "diga_09_pms_plan_v0_8_offene_punkte" + }, + { + "label": "10-qms-templates-v0.md", + "file_type": "document", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L1", + "community": 979, + "norm_label": "10-qms-templates-v0.md", + "id": "docs_specs_diga_10_qms_templates_v0_md" + }, + { + "label": "QMS-Templates / ISO-13485-Ger\u00fcst \u2014 Rebreak \u00b7 v0 (Entwurf)", + "file_type": "document", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L1", + "community": 979, + "norm_label": "qms-templates / iso-13485-gerust \u2014 rebreak \u00b7 v0 (entwurf)", + "id": "diga_10_qms_templates_v0_qms_templates_iso_13485_ger\u00fcst_rebreak_v0_entwurf" + }, + { + "label": "0. QMS-Prozesslandkarte (\u00dcberblick)", + "file_type": "document", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L25", + "community": 979, + "norm_label": "0. qms-prozesslandkarte (uberblick)", + "id": "diga_10_qms_templates_v0_0_qms_prozesslandkarte_\u00fcberblick" + }, + { + "label": "1. Dokumentenlenkung (ISO 13485 \u00a74.2.4/\u00a74.2.5)", + "file_type": "document", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L40", + "community": 979, + "norm_label": "1. dokumentenlenkung (iso 13485 \u00a74.2.4/\u00a74.2.5)", + "id": "diga_10_qms_templates_v0_1_dokumentenlenkung_iso_13485_4_2_4_4_2_5" + }, + { + "label": "2. \u00c4nderungsmanagement & Software-Konfiguration (ISO 13485 \u00a77.3.9 / IEC 62304 \u00a78)", + "file_type": "document", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L66", + "community": 979, + "norm_label": "2. anderungsmanagement & software-konfiguration (iso 13485 \u00a77.3.9 / iec 62304 \u00a78)", + "id": "diga_10_qms_templates_v0_2_\u00e4nderungsmanagement_software_konfiguration_iso_13485_7_3_9_iec_62304_8" + }, + { + "label": "3. CAPA \u2014 Corrective and Preventive Action (ISO 13485 \u00a78.5.2/\u00a78.5.3)", + "file_type": "document", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L105", + "community": 979, + "norm_label": "3. capa \u2014 corrective and preventive action (iso 13485 \u00a78.5.2/\u00a78.5.3)", + "id": "diga_10_qms_templates_v0_3_capa_corrective_and_preventive_action_iso_13485_8_5_2_8_5_3" + }, + { + "label": "4. Schulung & Kompetenz (ISO 13485 \u00a76.2)", + "file_type": "document", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L137", + "community": 979, + "norm_label": "4. schulung & kompetenz (iso 13485 \u00a76.2)", + "id": "diga_10_qms_templates_v0_4_schulung_kompetenz_iso_13485_6_2" + }, + { + "label": "5. Lieferanten-/Subprozessor-Bewertung (ISO 13485 \u00a77.4)", + "file_type": "document", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L164", + "community": 979, + "norm_label": "5. lieferanten-/subprozessor-bewertung (iso 13485 \u00a77.4)", + "id": "diga_10_qms_templates_v0_5_lieferanten_subprozessor_bewertung_iso_13485_7_4" + }, + { + "label": "6. Management-Review (ISO 13485 \u00a75.6)", + "file_type": "document", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L196", + "community": 979, + "norm_label": "6. management-review (iso 13485 \u00a75.6)", + "id": "diga_10_qms_templates_v0_6_management_review_iso_13485_5_6" + }, + { + "label": "7. Offene Punkte", + "file_type": "document", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L223", + "community": 979, + "norm_label": "7. offene punkte", + "id": "diga_10_qms_templates_v0_7_offene_punkte" + }, + { + "label": "04-risiko-akte-v0.md", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L1", + "community": 926, + "norm_label": "04-risiko-akte-v0.md", + "id": "docs_specs_diga_04_risiko_akte_v0_md" + }, + { + "label": "Risikomanagement-Akte (Erstliste) \u2014 Rebreak \u00b7 v0 (Entwurf)", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L1", + "community": 926, + "norm_label": "risikomanagement-akte (erstliste) \u2014 rebreak \u00b7 v0 (entwurf)", + "id": "diga_04_risiko_akte_v0_risikomanagement_akte_erstliste_rebreak_v0_entwurf" + }, + { + "label": "1. Methodik & Bewertungsskalen", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L18", + "community": 926, + "norm_label": "1. methodik & bewertungsskalen", + "id": "diga_04_risiko_akte_v0_1_methodik_bewertungsskalen" + }, + { + "label": "2. Risikotabelle", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L49", + "community": 926, + "norm_label": "2. risikotabelle", + "id": "diga_04_risiko_akte_v0_2_risikotabelle" + }, + { + "label": "2.1 Lyra-Fehlverhalten / verpasste Krise (h\u00f6chste Priorit\u00e4t)", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L54", + "community": 926, + "norm_label": "2.1 lyra-fehlverhalten / verpasste krise (hochste prioritat)", + "id": "diga_04_risiko_akte_v0_2_1_lyra_fehlverhalten_verpasste_krise_h\u00f6chste_priorit\u00e4t" + }, + { + "label": "2.2 Falsche Sicherheit (User verl\u00e4sst sich auf l\u00fcckenhaften Schutz)", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L65", + "community": 926, + "norm_label": "2.2 falsche sicherheit (user verlasst sich auf luckenhaften schutz)", + "id": "diga_04_risiko_akte_v0_2_2_falsche_sicherheit_user_verl\u00e4sst_sich_auf_l\u00fcckenhaften_schutz" + }, + { + "label": "2.3 Schutz-Umgehung (Bypass im Impulsmoment)", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L76", + "community": 926, + "norm_label": "2.3 schutz-umgehung (bypass im impulsmoment)", + "id": "diga_04_risiko_akte_v0_2_3_schutz_umgehung_bypass_im_impulsmoment" + }, + { + "label": "2.4 Datenschutz / Art-9-Datenleck (Spiegelung zu Dok 08 \u2014 Owner: Hans)", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L85", + "community": 926, + "norm_label": "2.4 datenschutz / art-9-datenleck (spiegelung zu dok 08 \u2014 owner: hans)", + "id": "diga_04_risiko_akte_v0_2_4_datenschutz_art_9_datenleck_spiegelung_zu_dok_08_owner_hans" + }, + { + "label": "2.5 Mail-Filter-Fehlfunktion", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L104", + "community": 926, + "norm_label": "2.5 mail-filter-fehlfunktion", + "id": "diga_04_risiko_akte_v0_2_5_mail_filter_fehlfunktion" + }, + { + "label": "2.6 Spiele / SOS-Werkzeuge", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L112", + "community": 926, + "norm_label": "2.6 spiele / sos-werkzeuge", + "id": "diga_04_risiko_akte_v0_2_6_spiele_sos_werkzeuge" + }, + { + "label": "3. Top-Risiken (Priorisierung f\u00fcr Gr\u00fcnder & Profi)", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L120", + "community": 926, + "norm_label": "3. top-risiken (priorisierung fur grunder & profi)", + "id": "diga_04_risiko_akte_v0_3_top_risiken_priorisierung_f\u00fcr_gr\u00fcnder_profi" + }, + { + "label": "4. Offene Aktivit\u00e4ten (Risikomanagement-Prozess)", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L149", + "community": 926, + "norm_label": "4. offene aktivitaten (risikomanagement-prozess)", + "id": "diga_04_risiko_akte_v0_4_offene_aktivit\u00e4ten_risikomanagement_prozess" + }, + { + "label": "5. Andockpunkte (Koordination)", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L163", + "community": 926, + "norm_label": "5. andockpunkte (koordination)", + "id": "diga_04_risiko_akte_v0_5_andockpunkte_koordination" + }, + { + "label": "6. Quellen / Normen", + "file_type": "document", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L176", + "community": 926, + "norm_label": "6. quellen / normen", + "id": "diga_04_risiko_akte_v0_6_quellen_normen" + }, + { + "label": "00-dossier-plan.md", + "file_type": "document", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L1", + "community": 1042, + "norm_label": "00-dossier-plan.md", + "id": "docs_specs_diga_00_dossier_plan_md" + }, + { + "label": "DiGA / MDR \u2014 Dossier-Plan & Arbeitsteilung", + "file_type": "document", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L1", + "community": 1042, + "norm_label": "diga / mdr \u2014 dossier-plan & arbeitsteilung", + "id": "diga_00_dossier_plan_diga_mdr_dossier_plan_arbeitsteilung" + }, + { + "label": "Arbeitsteilung", + "file_type": "document", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L13", + "community": 1042, + "norm_label": "arbeitsteilung", + "id": "diga_00_dossier_plan_arbeitsteilung" + }, + { + "label": "Dokumenten-Landkarte + Status", + "file_type": "document", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L23", + "community": 1042, + "norm_label": "dokumenten-landkarte + status", + "id": "diga_00_dossier_plan_dokumenten_landkarte_status" + }, + { + "label": "Reihenfolge (was zuerst)", + "file_type": "document", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L43", + "community": 1042, + "norm_label": "reihenfolge (was zuerst)", + "id": "diga_00_dossier_plan_reihenfolge_was_zuerst" + }, + { + "label": "Optional: eigener DiGA-Agent", + "file_type": "document", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L55", + "community": 1042, + "norm_label": "optional: eigener diga-agent", + "id": "diga_00_dossier_plan_optional_eigener_diga_agent" + }, + { + "label": "\u00c4nderungshistorie", + "file_type": "document", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L64", + "community": 1042, + "norm_label": "anderungshistorie", + "id": "diga_00_dossier_plan_\u00e4nderungshistorie" + }, + { + "label": "01-zweckbestimmung-v0.md", + "file_type": "document", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L1", + "community": 960, + "norm_label": "01-zweckbestimmung-v0.md", + "id": "docs_specs_diga_01_zweckbestimmung_v0_md" + }, + { + "label": "Zweckbestimmung (Intended Use) \u2014 Rebreak \u00b7 v0 (Entwurf)", + "file_type": "document", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L1", + "community": 960, + "norm_label": "zweckbestimmung (intended use) \u2014 rebreak \u00b7 v0 (entwurf)", + "id": "diga_01_zweckbestimmung_v0_zweckbestimmung_intended_use_rebreak_v0_entwurf" + }, + { + "label": "1. Produkt & Hersteller", + "file_type": "document", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L10", + "community": 960, + "norm_label": "1. produkt & hersteller", + "id": "diga_01_zweckbestimmung_v0_1_produkt_hersteller" + }, + { + "label": "2. Zweckbestimmung (Kern-Aussage)", + "file_type": "document", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L17", + "community": 960, + "norm_label": "2. zweckbestimmung (kern-aussage)", + "id": "diga_01_zweckbestimmung_v0_2_zweckbestimmung_kern_aussage" + }, + { + "label": "3. Medizinischer Zweck & Indikation", + "file_type": "document", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L29", + "community": 960, + "norm_label": "3. medizinischer zweck & indikation", + "id": "diga_01_zweckbestimmung_v0_3_medizinischer_zweck_indikation" + }, + { + "label": "4. Vorgesehene Nutzer & Zielgruppe", + "file_type": "document", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L39", + "community": 960, + "norm_label": "4. vorgesehene nutzer & zielgruppe", + "id": "diga_01_zweckbestimmung_v0_4_vorgesehene_nutzer_zielgruppe" + }, + { + "label": "5. Funktionen / Wirkmechanismus (drei Ebenen)", + "file_type": "document", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L48", + "community": 960, + "norm_label": "5. funktionen / wirkmechanismus (drei ebenen)", + "id": "diga_01_zweckbestimmung_v0_5_funktionen_wirkmechanismus_drei_ebenen" + }, + { + "label": "6. Abgrenzung \u2014 was Rebreak NICHT ist", + "file_type": "document", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L72", + "community": 960, + "norm_label": "6. abgrenzung \u2014 was rebreak nicht ist", + "id": "diga_01_zweckbestimmung_v0_6_abgrenzung_was_rebreak_nicht_ist" + }, + { + "label": "7. Kontraindikationen & Warnhinweise", + "file_type": "document", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L80", + "community": 960, + "norm_label": "7. kontraindikationen & warnhinweise", + "id": "diga_01_zweckbestimmung_v0_7_kontraindikationen_warnhinweise" + }, + { + "label": "8. Anwendungsumgebung & Nutzungskontext", + "file_type": "document", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L89", + "community": 960, + "norm_label": "8. anwendungsumgebung & nutzungskontext", + "id": "diga_01_zweckbestimmung_v0_8_anwendungsumgebung_nutzungskontext" + }, + { + "label": "9. Hinweis zur Klassifizierung (offen)", + "file_type": "document", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L97", + "community": 960, + "norm_label": "9. hinweis zur klassifizierung (offen)", + "id": "diga_01_zweckbestimmung_v0_9_hinweis_zur_klassifizierung_offen" + }, + { + "label": "05-software-lifecycle-architektur-soup-v0.md", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L1", + "community": 645, + "norm_label": "05-software-lifecycle-architektur-soup-v0.md", + "id": "docs_specs_diga_05_software_lifecycle_architektur_soup_v0_md" + }, + { + "label": "Dok 05 \u2014 Software-Lifecycle, Architektur & SOUP (v0)", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L1", + "community": 645, + "norm_label": "dok 05 \u2014 software-lifecycle, architektur & soup (v0)", + "id": "diga_05_software_lifecycle_architektur_soup_v0_dok_05_software_lifecycle_architektur_soup_v0" + }, + { + "label": "0. Ehrliche Einordnung", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L17", + "community": 645, + "norm_label": "0. ehrliche einordnung", + "id": "diga_05_software_lifecycle_architektur_soup_v0_0_ehrliche_einordnung" + }, + { + "label": "1. Software-Sicherheitsklassifizierung (IEC 62304 \u00a74.3) \u2014 Vorschlag", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L34", + "community": 645, + "norm_label": "1. software-sicherheitsklassifizierung (iec 62304 \u00a74.3) \u2014 vorschlag", + "id": "diga_05_software_lifecycle_architektur_soup_v0_1_software_sicherheitsklassifizierung_iec_62304_4_3_vorschlag" + }, + { + "label": "2. Software-System-Architektur (IEC 62304 \u00a75.3)", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L51", + "community": 645, + "norm_label": "2. software-system-architektur (iec 62304 \u00a75.3)", + "id": "diga_05_software_lifecycle_architektur_soup_v0_2_software_system_architektur_iec_62304_5_3" + }, + { + "label": "2.1 Komponenten-Dekomposition", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L53", + "community": 645, + "norm_label": "2.1 komponenten-dekomposition", + "id": "diga_05_software_lifecycle_architektur_soup_v0_2_1_komponenten_dekomposition" + }, + { + "label": "2.2 Zentrale Schnittstellen (Datenfl\u00fcsse)", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L77", + "community": 645, + "norm_label": "2.2 zentrale schnittstellen (datenflusse)", + "id": "diga_05_software_lifecycle_architektur_soup_v0_2_2_zentrale_schnittstellen_datenfl\u00fcsse" + }, + { + "label": "2.3 Architektur-Belege aus dem Graph", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L89", + "community": 645, + "norm_label": "2.3 architektur-belege aus dem graph", + "id": "diga_05_software_lifecycle_architektur_soup_v0_2_3_architektur_belege_aus_dem_graph" + }, + { + "label": "3. SOUP-Liste (IEC 62304 \u00a75.3.3, \u00a78.1.2)", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L96", + "community": 645, + "norm_label": "3. soup-liste (iec 62304 \u00a75.3.3, \u00a78.1.2)", + "id": "diga_05_software_lifecycle_architektur_soup_v0_3_soup_liste_iec_62304_5_3_3_8_1_2" + }, + { + "label": "3.1 Backend (Nitro-API) \u2014 Runtime-SOUP", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L102", + "community": 645, + "norm_label": "3.1 backend (nitro-api) \u2014 runtime-soup", + "id": "diga_05_software_lifecycle_architektur_soup_v0_3_1_backend_nitro_api_runtime_soup" + }, + { + "label": "3.2 Native-App (Expo/RN) \u2014 sicherheits-/schutzrelevante SOUP (Auswahl)", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L120", + "community": 645, + "norm_label": "3.2 native-app (expo/rn) \u2014 sicherheits-/schutzrelevante soup (auswahl)", + "id": "diga_05_software_lifecycle_architektur_soup_v0_3_2_native_app_expo_rn_sicherheits_schutzrelevante_soup_auswahl" + }, + { + "label": "3.3 Build-/Test-Tooling (kein Runtime-SOUP, IEC \u00a75.1.9)", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L139", + "community": 645, + "norm_label": "3.3 build-/test-tooling (kein runtime-soup, iec \u00a75.1.9)", + "id": "diga_05_software_lifecycle_architektur_soup_v0_3_3_build_test_tooling_kein_runtime_soup_iec_5_1_9" + }, + { + "label": "3.4 SOUP-Anomalie-Bewertung (\u00a77.1.2) \u2014 offen", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L144", + "community": 645, + "norm_label": "3.4 soup-anomalie-bewertung (\u00a77.1.2) \u2014 offen", + "id": "diga_05_software_lifecycle_architektur_soup_v0_3_4_soup_anomalie_bewertung_7_1_2_offen" + }, + { + "label": "4. Software-Entwicklungs-Lifecycle & Konfigurationsmanagement (\u00a75.1, \u00a78)", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L151", + "community": 645, + "norm_label": "4. software-entwicklungs-lifecycle & konfigurationsmanagement (\u00a75.1, \u00a78)", + "id": "diga_05_software_lifecycle_architektur_soup_v0_4_software_entwicklungs_lifecycle_konfigurationsmanagement_5_1_8" + }, + { + "label": "5. Offene Punkte (Richtung formaler IEC-62304-Konformit\u00e4t)", + "file_type": "document", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L169", + "community": 645, + "norm_label": "5. offene punkte (richtung formaler iec-62304-konformitat)", + "id": "diga_05_software_lifecycle_architektur_soup_v0_5_offene_punkte_richtung_formaler_iec_62304_konformit\u00e4t" + }, + { + "label": "07-gebrauchsanweisung-labeling-v0.md", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L1", + "community": 192, + "norm_label": "07-gebrauchsanweisung-labeling-v0.md", + "id": "docs_specs_diga_07_gebrauchsanweisung_labeling_v0_md" + }, + { + "label": "Gebrauchsanweisung / Labeling \u2014 Rebreak \u00b7 v0 (Entwurf)", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L1", + "community": 192, + "norm_label": "gebrauchsanweisung / labeling \u2014 rebreak \u00b7 v0 (entwurf)", + "id": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf" + }, + { + "label": "1. Produkt- und Herstellerangaben", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L21", + "community": 192, + "norm_label": "1. produkt- und herstellerangaben", + "id": "diga_07_gebrauchsanweisung_labeling_v0_1_produkt_und_herstellerangaben" + }, + { + "label": "2. Zweckbestimmung", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L43", + "community": 192, + "norm_label": "2. zweckbestimmung", + "id": "diga_07_gebrauchsanweisung_labeling_v0_2_zweckbestimmung" + }, + { + "label": "3. F\u00fcr wen ist Rebreak gedacht?", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L59", + "community": 192, + "norm_label": "3. fur wen ist rebreak gedacht?", + "id": "diga_07_gebrauchsanweisung_labeling_v0_3_f\u00fcr_wen_ist_rebreak_gedacht" + }, + { + "label": "4. Bedienung der Kernfunktionen", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L76", + "community": 192, + "norm_label": "4. bedienung der kernfunktionen", + "id": "diga_07_gebrauchsanweisung_labeling_v0_4_bedienung_der_kernfunktionen" + }, + { + "label": "4.1 Schutz aktivieren (digitale Zugangserschwerung)", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L82", + "community": 192, + "norm_label": "4.1 schutz aktivieren (digitale zugangserschwerung)", + "id": "diga_07_gebrauchsanweisung_labeling_v0_4_1_schutz_aktivieren_digitale_zugangserschwerung" + }, + { + "label": "4.2 Eigene Trigger-Seiten hinzuf\u00fcgen (Pro/Legend)", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L106", + "community": 192, + "norm_label": "4.2 eigene trigger-seiten hinzufugen (pro/legend)", + "id": "diga_07_gebrauchsanweisung_labeling_v0_4_2_eigene_trigger_seiten_hinzuf\u00fcgen_pro_legend" + }, + { + "label": "4.3 Postfach-Schutz verbinden (Werbe-Mails entfernen)", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L120", + "community": 192, + "norm_label": "4.3 postfach-schutz verbinden (werbe-mails entfernen)", + "id": "diga_07_gebrauchsanweisung_labeling_v0_4_3_postfach_schutz_verbinden_werbe_mails_entfernen" + }, + { + "label": "4.4 Begleitung im Suchtdruck nutzen (Lyra & SOS)", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L137", + "community": 192, + "norm_label": "4.4 begleitung im suchtdruck nutzen (lyra & sos)", + "id": "diga_07_gebrauchsanweisung_labeling_v0_4_4_begleitung_im_suchtdruck_nutzen_lyra_sos" + }, + { + "label": "4.5 Selbstbindung \u201eRebreak Magic\" (inkl. ehrlichem Ausstieg)", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L156", + "community": 192, + "norm_label": "4.5 selbstbindung \u201erebreak magic\" (inkl. ehrlichem ausstieg)", + "id": "diga_07_gebrauchsanweisung_labeling_v0_4_5_selbstbindung_rebreak_magic_inkl_ehrlichem_ausstieg" + }, + { + "label": "5. Wichtige Warn- und Sicherheitshinweise", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L185", + "community": 192, + "norm_label": "5. wichtige warn- und sicherheitshinweise", + "id": "diga_07_gebrauchsanweisung_labeling_v0_5_wichtige_warn_und_sicherheitshinweise" + }, + { + "label": "5.1 Kein Ersatz f\u00fcr professionelle Hilfe \u2014 bei Krisen sofort Hilfe holen", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L190", + "community": 192, + "norm_label": "5.1 kein ersatz fur professionelle hilfe \u2014 bei krisen sofort hilfe holen", + "id": "diga_07_gebrauchsanweisung_labeling_v0_5_1_kein_ersatz_f\u00fcr_professionelle_hilfe_bei_krisen_sofort_hilfe_holen" + }, + { + "label": "5.2 Lyra ist kein Therapeut", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L205", + "community": 192, + "norm_label": "5.2 lyra ist kein therapeut", + "id": "diga_07_gebrauchsanweisung_labeling_v0_5_2_lyra_ist_kein_therapeut" + }, + { + "label": "5.3 Schutz erschwert \u2014 er garantiert nichts", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L211", + "community": 192, + "norm_label": "5.3 schutz erschwert \u2014 er garantiert nichts", + "id": "diga_07_gebrauchsanweisung_labeling_v0_5_3_schutz_erschwert_er_garantiert_nichts" + }, + { + "label": "5.4 Anzeige \u201espielfreie Tage\" ehrlich einordnen", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L224", + "community": 192, + "norm_label": "5.4 anzeige \u201espielfreie tage\" ehrlich einordnen", + "id": "diga_07_gebrauchsanweisung_labeling_v0_5_4_anzeige_spielfreie_tage_ehrlich_einordnen" + }, + { + "label": "5.5 Postfach-Schutz: seltene Fehleinordnungen", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L231", + "community": 192, + "norm_label": "5.5 postfach-schutz: seltene fehleinordnungen", + "id": "diga_07_gebrauchsanweisung_labeling_v0_5_5_postfach_schutz_seltene_fehleinordnungen" + }, + { + "label": "5.6 Selbstbindung: Ausstieg ist m\u00f6glich", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L237", + "community": 192, + "norm_label": "5.6 selbstbindung: ausstieg ist moglich", + "id": "diga_07_gebrauchsanweisung_labeling_v0_5_6_selbstbindung_ausstieg_ist_m\u00f6glich" + }, + { + "label": "5.7 Anwendungsbeschr\u00e4nkung", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L244", + "community": 192, + "norm_label": "5.7 anwendungsbeschrankung", + "id": "diga_07_gebrauchsanweisung_labeling_v0_5_7_anwendungsbeschr\u00e4nkung" + }, + { + "label": "6. Systemvoraussetzungen", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L251", + "community": 192, + "norm_label": "6. systemvoraussetzungen", + "id": "diga_07_gebrauchsanweisung_labeling_v0_6_systemvoraussetzungen" + }, + { + "label": "7. Datenschutz \u2014 Kurzhinweis", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L269", + "community": 192, + "norm_label": "7. datenschutz \u2014 kurzhinweis", + "id": "diga_07_gebrauchsanweisung_labeling_v0_7_datenschutz_kurzhinweis" + }, + { + "label": "8. Was tun bei Problemen? (Vorkommnisse melden)", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L286", + "community": 192, + "norm_label": "8. was tun bei problemen? (vorkommnisse melden)", + "id": "diga_07_gebrauchsanweisung_labeling_v0_8_was_tun_bei_problemen_vorkommnisse_melden" + }, + { + "label": "9. Symbole, Kennzeichnung und elektronische Bereitstellung (eIFU)", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L301", + "community": 192, + "norm_label": "9. symbole, kennzeichnung und elektronische bereitstellung (eifu)", + "id": "diga_07_gebrauchsanweisung_labeling_v0_9_symbole_kennzeichnung_und_elektronische_bereitstellung_eifu" + }, + { + "label": "10. Glossar (Nutzer-freundlich, optional)", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L316", + "community": 192, + "norm_label": "10. glossar (nutzer-freundlich, optional)", + "id": "diga_07_gebrauchsanweisung_labeling_v0_10_glossar_nutzer_freundlich_optional" + }, + { + "label": "11. Support & Kontakt", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L329", + "community": 192, + "norm_label": "11. support & kontakt", + "id": "diga_07_gebrauchsanweisung_labeling_v0_11_support_kontakt" + }, + { + "label": "12. Andockpunkte (Koordination)", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L338", + "community": 192, + "norm_label": "12. andockpunkte (koordination)", + "id": "diga_07_gebrauchsanweisung_labeling_v0_12_andockpunkte_koordination" + }, + { + "label": "13. Offene Punkte (Zusammenfassung)", + "file_type": "document", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L351", + "community": 192, + "norm_label": "13. offene punkte (zusammenfassung)", + "id": "diga_07_gebrauchsanweisung_labeling_v0_13_offene_punkte_zusammenfassung" + }, + { + "label": "03-requirements-v0.md", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L1", + "community": 891, + "norm_label": "03-requirements-v0.md", + "id": "docs_specs_diga_03_requirements_v0_md" + }, + { + "label": "Anforderungen / Requirements \u2014 Rebreak \u00b7 v0 (Entwurf)", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L1", + "community": 891, + "norm_label": "anforderungen / requirements \u2014 rebreak \u00b7 v0 (entwurf)", + "id": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf" + }, + { + "label": "0. Lesehilfe", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L27", + "community": 891, + "norm_label": "0. lesehilfe", + "id": "diga_03_requirements_v0_0_lesehilfe" + }, + { + "label": "1. Schutz / Blocker (ger\u00e4teweite Zugangserschwerung)", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L43", + "community": 891, + "norm_label": "1. schutz / blocker (gerateweite zugangserschwerung)", + "id": "diga_03_requirements_v0_1_schutz_blocker_ger\u00e4teweite_zugangserschwerung" + }, + { + "label": "2. Selbstbindung (RebreakMagic / Lock-Modus)", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L80", + "community": 891, + "norm_label": "2. selbstbindung (rebreakmagic / lock-modus)", + "id": "diga_03_requirements_v0_2_selbstbindung_rebreakmagic_lock_modus" + }, + { + "label": "3. Mail-Schutz (Trigger-Mail-Entfernung)", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L104", + "community": 891, + "norm_label": "3. mail-schutz (trigger-mail-entfernung)", + "id": "diga_03_requirements_v0_3_mail_schutz_trigger_mail_entfernung" + }, + { + "label": "4. Lyra (KI-Coach) & Krisen-Behandlung", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L121", + "community": 891, + "norm_label": "4. lyra (ki-coach) & krisen-behandlung", + "id": "diga_03_requirements_v0_4_lyra_ki_coach_krisen_behandlung" + }, + { + "label": "5. SOS-Werkzeuge (Atem\u00fcbung, Spiele, Urge-Logging)", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L148", + "community": 891, + "norm_label": "5. sos-werkzeuge (atemubung, spiele, urge-logging)", + "id": "diga_03_requirements_v0_5_sos_werkzeuge_atem\u00fcbung_spiele_urge_logging" + }, + { + "label": "6. Streak / Protected Days (Motivation & Tracking)", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L167", + "community": 891, + "norm_label": "6. streak / protected days (motivation & tracking)", + "id": "diga_03_requirements_v0_6_streak_protected_days_motivation_tracking" + }, + { + "label": "7. Community / DM / Anrufe", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L185", + "community": 891, + "norm_label": "7. community / dm / anrufe", + "id": "diga_03_requirements_v0_7_community_dm_anrufe" + }, + { + "label": "8. Authentifizierung, Ger\u00e4te-Limit & Onboarding", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L200", + "community": 891, + "norm_label": "8. authentifizierung, gerate-limit & onboarding", + "id": "diga_03_requirements_v0_8_authentifizierung_ger\u00e4te_limit_onboarding" + }, + { + "label": "9. Demographie (DiGA-Evidenz-Daten)", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L214", + "community": 891, + "norm_label": "9. demographie (diga-evidenz-daten)", + "id": "diga_03_requirements_v0_9_demographie_diga_evidenz_daten" + }, + { + "label": "10. Querschnittliche nicht-funktionale Anforderungen", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L227", + "community": 891, + "norm_label": "10. querschnittliche nicht-funktionale anforderungen", + "id": "diga_03_requirements_v0_10_querschnittliche_nicht_funktionale_anforderungen" + }, + { + "label": "11. Offene Punkte & Abgrenzungen", + "file_type": "document", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L240", + "community": 891, + "norm_label": "11. offene punkte & abgrenzungen", + "id": "diga_03_requirements_v0_11_offene_punkte_abgrenzungen" + }, + { + "label": "05c-lyra-eval-v0.md", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L1", + "community": 626, + "norm_label": "05c-lyra-eval-v0.md", + "id": "docs_specs_diga_05c_lyra_eval_v0_md" + }, + { + "label": "Dok 05c \u2014 Lyra LLM-Evaluierungssuite (v0)", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L1", + "community": 626, + "norm_label": "dok 05c \u2014 lyra llm-evaluierungssuite (v0)", + "id": "diga_05c_lyra_eval_v0_dok_05c_lyra_llm_evaluierungssuite_v0" + }, + { + "label": "1. Zweck und Sicherheitsrelevanz", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L11", + "community": 626, + "norm_label": "1. zweck und sicherheitsrelevanz", + "id": "diga_05c_lyra_eval_v0_1_zweck_und_sicherheitsrelevanz" + }, + { + "label": "2. Test-Set-Architektur", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L25", + "community": 626, + "norm_label": "2. test-set-architektur", + "id": "diga_05c_lyra_eval_v0_2_test_set_architektur" + }, + { + "label": "2.1 Prompt-Kategorien", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L27", + "community": 626, + "norm_label": "2.1 prompt-kategorien", + "id": "diga_05c_lyra_eval_v0_2_1_prompt_kategorien" + }, + { + "label": "2.2 Prompt-Schema", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L39", + "community": 626, + "norm_label": "2.2 prompt-schema", + "id": "diga_05c_lyra_eval_v0_2_2_prompt_schema" + }, + { + "label": "2.3 Regel-Typen", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L48", + "community": 626, + "norm_label": "2.3 regel-typen", + "id": "diga_05c_lyra_eval_v0_2_3_regel_typen" + }, + { + "label": "3. Haupt-Metrik: Crisis-Detection-Recall", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L60", + "community": 626, + "norm_label": "3. haupt-metrik: crisis-detection-recall", + "id": "diga_05c_lyra_eval_v0_3_haupt_metrik_crisis_detection_recall" + }, + { + "label": "4. Weitere Safety-Metriken", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L74", + "community": 626, + "norm_label": "4. weitere safety-metriken", + "id": "diga_05c_lyra_eval_v0_4_weitere_safety_metriken" + }, + { + "label": "5. Implementierung", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L87", + "community": 626, + "norm_label": "5. implementierung", + "id": "diga_05c_lyra_eval_v0_5_implementierung" + }, + { + "label": "5.1 Dateien", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L89", + "community": 626, + "norm_label": "5.1 dateien", + "id": "diga_05c_lyra_eval_v0_5_1_dateien" + }, + { + "label": "5.2 Ausf\u00fchrungsmodi", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L102", + "community": 626, + "norm_label": "5.2 ausfuhrungsmodi", + "id": "diga_05c_lyra_eval_v0_5_2_ausf\u00fchrungsmodi" + }, + { + "label": "5.3 Env-Vars", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L133", + "community": 626, + "norm_label": "5.3 env-vars", + "id": "diga_05c_lyra_eval_v0_5_3_env_vars" + }, + { + "label": "6. Ergebnis-Protokoll-Schema (f\u00fcr Release-Archiv)", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L146", + "community": 626, + "norm_label": "6. ergebnis-protokoll-schema (fur release-archiv)", + "id": "diga_05c_lyra_eval_v0_6_ergebnis_protokoll_schema_f\u00fcr_release_archiv" + }, + { + "label": "7. Bekannte L\u00fccken (v0)", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L170", + "community": 626, + "norm_label": "7. bekannte lucken (v0)", + "id": "diga_05c_lyra_eval_v0_7_bekannte_l\u00fccken_v0" + }, + { + "label": "8. Koordination mit Dossier-Plan", + "file_type": "document", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L183", + "community": 626, + "norm_label": "8. koordination mit dossier-plan", + "id": "diga_05c_lyra_eval_v0_8_koordination_mit_dossier_plan" + }, + { + "label": "08-datenschutz-audit-v0.md", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L1", + "community": 327, + "norm_label": "08-datenschutz-audit-v0.md", + "id": "docs_specs_diga_08_datenschutz_audit_v0_md" + }, + { + "label": "Datenschutz-Audit & Ma\u00dfnahmenplan \u2014 Rebreak \u00b7 v0 (Entwurf)", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L1", + "community": 327, + "norm_label": "datenschutz-audit & ma\u00dfnahmenplan \u2014 rebreak \u00b7 v0 (entwurf)", + "id": "diga_08_datenschutz_audit_v0_datenschutz_audit_massnahmenplan_rebreak_v0_entwurf" + }, + { + "label": "0. Vorbemerkung & Geltungsgrenzen", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L10", + "community": 327, + "norm_label": "0. vorbemerkung & geltungsgrenzen", + "id": "diga_08_datenschutz_audit_v0_0_vorbemerkung_geltungsgrenzen" + }, + { + "label": "1. Einordnung \u2014 h\u00f6chste Schutzstufe", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L34", + "community": 327, + "norm_label": "1. einordnung \u2014 hochste schutzstufe", + "id": "diga_08_datenschutz_audit_v0_1_einordnung_h\u00f6chste_schutzstufe" + }, + { + "label": "2. Ist-Zustand, L\u00fccken & M\u00e4ngel je Bereich", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L63", + "community": 327, + "norm_label": "2. ist-zustand, lucken & mangel je bereich", + "id": "diga_08_datenschutz_audit_v0_2_ist_zustand_l\u00fccken_m\u00e4ngel_je_bereich" + }, + { + "label": "2.1 Mail-Agent (IMAP-IDLE-Daemon) \u2014 gr\u00f6\u00dfte Datenschutz-Oberfl\u00e4che", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L67", + "community": 327, + "norm_label": "2.1 mail-agent (imap-idle-daemon) \u2014 gro\u00dfte datenschutz-oberflache", + "id": "diga_08_datenschutz_audit_v0_2_1_mail_agent_imap_idle_daemon_gr\u00f6sste_datenschutz_oberfl\u00e4che" + }, + { + "label": "2.2 Lyra (Groq, USA) \u2014 Art.-9-Daten im Drittland", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L120", + "community": 327, + "norm_label": "2.2 lyra (groq, usa) \u2014 art.-9-daten im drittland", + "id": "diga_08_datenschutz_audit_v0_2_2_lyra_groq_usa_art_9_daten_im_drittland" + }, + { + "label": "2.3 Auftragsverarbeiter \u2014 AV-Vertr\u00e4ge (Art. 28) & Drittland", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L223", + "community": 327, + "norm_label": "2.3 auftragsverarbeiter \u2014 av-vertrage (art. 28) & drittland", + "id": "diga_08_datenschutz_audit_v0_2_3_auftragsverarbeiter_av_vertr\u00e4ge_art_28_drittland" + }, + { + "label": "2.4 Anonymit\u00e4t by Design \u2014 verifizieren, dass nichts leakt", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L248", + "community": 327, + "norm_label": "2.4 anonymitat by design \u2014 verifizieren, dass nichts leakt", + "id": "diga_08_datenschutz_audit_v0_2_4_anonymit\u00e4t_by_design_verifizieren_dass_nichts_leakt" + }, + { + "label": "2.5 Auth (Supabase self-hosted) & Demographie-Daten", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L267", + "community": 327, + "norm_label": "2.5 auth (supabase self-hosted) & demographie-daten", + "id": "diga_08_datenschutz_audit_v0_2_5_auth_supabase_self_hosted_demographie_daten" + }, + { + "label": "2.6 Community", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L278", + "community": 327, + "norm_label": "2.6 community", + "id": "diga_08_datenschutz_audit_v0_2_6_community" + }, + { + "label": "2.7 Fehlende / zu pr\u00fcfende Pflicht-Dokumente & Prozesse", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L285", + "community": 327, + "norm_label": "2.7 fehlende / zu prufende pflicht-dokumente & prozesse", + "id": "diga_08_datenschutz_audit_v0_2_7_fehlende_zu_pr\u00fcfende_pflicht_dokumente_prozesse" + }, + { + "label": "3. DiGA-spezifische Datenschutz-Anforderungen (BfArM)", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L319", + "community": 327, + "norm_label": "3. diga-spezifische datenschutz-anforderungen (bfarm)", + "id": "diga_08_datenschutz_audit_v0_3_diga_spezifische_datenschutz_anforderungen_bfarm" + }, + { + "label": "4. Priorisierter Ma\u00dfnahmenplan (Eskalations-Treppe)", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L340", + "community": 327, + "norm_label": "4. priorisierter ma\u00dfnahmenplan (eskalations-treppe)", + "id": "diga_08_datenschutz_audit_v0_4_priorisierter_massnahmenplan_eskalations_treppe" + }, + { + "label": "Kritisch \u2014 sofort (Stufe 1\u20132)", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L344", + "community": 327, + "norm_label": "kritisch \u2014 sofort (stufe 1\u20132)", + "id": "diga_08_datenschutz_audit_v0_kritisch_sofort_stufe_1_2" + }, + { + "label": "Hoch (Stufe 1\u20133)", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L354", + "community": 327, + "norm_label": "hoch (stufe 1\u20133)", + "id": "diga_08_datenschutz_audit_v0_hoch_stufe_1_3" + }, + { + "label": "Mittel (Stufe 3\u20134)", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L365", + "community": 327, + "norm_label": "mittel (stufe 3\u20134)", + "id": "diga_08_datenschutz_audit_v0_mittel_stufe_3_4" + }, + { + "label": "5. Koordination mit `diga-regulatory` (Dr. Marlene Brandt)", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L380", + "community": 327, + "norm_label": "5. koordination mit `diga-regulatory` (dr. marlene brandt)", + "id": "diga_08_datenschutz_audit_v0_5_koordination_mit_diga_regulatory_dr_marlene_brandt" + }, + { + "label": "6. Quellen", + "file_type": "document", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L400", + "community": 327, + "norm_label": "6. quellen", + "id": "diga_08_datenschutz_audit_v0_6_quellen" + }, + { + "label": "05d-traceability-matrix-v0.md", + "file_type": "document", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L1", + "community": 978, + "norm_label": "05d-traceability-matrix-v0.md", + "id": "docs_specs_diga_05d_traceability_matrix_v0_md" + }, + { + "label": "Dok 05d \u2014 Traceability-Matrix: Anforderung \u2194 Risiko \u2194 Code \u2194 Verifikation (v0)", + "file_type": "document", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L1", + "community": 978, + "norm_label": "dok 05d \u2014 traceability-matrix: anforderung \u2194 risiko \u2194 code \u2194 verifikation (v0)", + "id": "diga_05d_traceability_matrix_v0_dok_05d_traceability_matrix_anforderung_risiko_code_verifikation_v0" + }, + { + "label": "0. Ehrliche Einordnung (bitte zuerst lesen)", + "file_type": "document", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L20", + "community": 978, + "norm_label": "0. ehrliche einordnung (bitte zuerst lesen)", + "id": "diga_05d_traceability_matrix_v0_0_ehrliche_einordnung_bitte_zuerst_lesen" + }, + { + "label": "1. Traceability-Logik (IEC 62304)", + "file_type": "document", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L42", + "community": 978, + "norm_label": "1. traceability-logik (iec 62304)", + "id": "diga_05d_traceability_matrix_v0_1_traceability_logik_iec_62304" + }, + { + "label": "2. Traceability-Matrix \u2014 Lyra-/Krisen-Strang (v0)", + "file_type": "document", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L70", + "community": 978, + "norm_label": "2. traceability-matrix \u2014 lyra-/krisen-strang (v0)", + "id": "diga_05d_traceability_matrix_v0_2_traceability_matrix_lyra_krisen_strang_v0" + }, + { + "label": "2a. Traceability-Matrix \u2014 Mail-Schutz-Strang (REQ-MAIL, v0)", + "file_type": "document", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L92", + "community": 978, + "norm_label": "2a. traceability-matrix \u2014 mail-schutz-strang (req-mail, v0)", + "id": "diga_05d_traceability_matrix_v0_2a_traceability_matrix_mail_schutz_strang_req_mail_v0" + }, + { + "label": "2b. Traceability-Matrix \u2014 Schutz-/Selbstbindungs-Strang (v0)", + "file_type": "document", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L144", + "community": 978, + "norm_label": "2b. traceability-matrix \u2014 schutz-/selbstbindungs-strang (v0)", + "id": "diga_05d_traceability_matrix_v0_2b_traceability_matrix_schutz_selbstbindungs_strang_v0" + }, + { + "label": "2c. Traceability-Matrix \u2014 Anonymit\u00e4ts-Strang (REQ-COMM-005, v0)", + "file_type": "document", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L194", + "community": 978, + "norm_label": "2c. traceability-matrix \u2014 anonymitats-strang (req-comm-005, v0)", + "id": "diga_05d_traceability_matrix_v0_2c_traceability_matrix_anonymit\u00e4ts_strang_req_comm_005_v0" + }, + { + "label": "3. Herkunft & Reproduzierbarkeit", + "file_type": "document", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L243", + "community": 978, + "norm_label": "3. herkunft & reproduzierbarkeit", + "id": "diga_05d_traceability_matrix_v0_3_herkunft_reproduzierbarkeit" + }, + { + "label": "4. Offene Schritte (Richtung formaler IEC-62304-Record)", + "file_type": "document", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L270", + "community": 978, + "norm_label": "4. offene schritte (richtung formaler iec-62304-record)", + "id": "diga_05d_traceability_matrix_v0_4_offene_schritte_richtung_formaler_iec_62304_record" + }, + { + "label": "2026-06-10-gpt-4o-mini.md", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L1", + "community": 944, + "norm_label": "2026-06-10-gpt-4o-mini.md", + "id": "docs_specs_diga_eval_records_2026_06_10_gpt_4o_mini_md" + }, + { + "label": "Lyra Eval-Record \u2014 2026-06-10 (gpt-4o-mini)", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L1", + "community": 944, + "norm_label": "lyra eval-record \u2014 2026-06-10 (gpt-4o-mini)", + "id": "eval_records_2026_06_10_gpt_4o_mini_lyra_eval_record_2026_06_10_gpt_4o_mini" + }, + { + "label": "Protokoll-Header", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L8", + "community": 944, + "norm_label": "protokoll-header", + "id": "eval_records_2026_06_10_gpt_4o_mini_protokoll_header" + }, + { + "label": "Ergebnis-Zusammenfassung", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L26", + "community": 944, + "norm_label": "ergebnis-zusammenfassung", + "id": "eval_records_2026_06_10_gpt_4o_mini_ergebnis_zusammenfassung" + }, + { + "label": "Crisis-Detection-Recall \u2014 Detail (SAFETY-REQ-LLM-001)", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L41", + "community": 944, + "norm_label": "crisis-detection-recall \u2014 detail (safety-req-llm-001)", + "id": "eval_records_2026_06_10_gpt_4o_mini_crisis_detection_recall_detail_safety_req_llm_001" + }, + { + "label": "Fehlgeschlagene Testf\u00e4lle gesamt", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L62", + "community": 944, + "norm_label": "fehlgeschlagene testfalle gesamt", + "id": "eval_records_2026_06_10_gpt_4o_mini_fehlgeschlagene_testf\u00e4lle_gesamt" + }, + { + "label": "Drang-Moment-Handling (2 Fehler von 5)", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L64", + "community": 944, + "norm_label": "drang-moment-handling (2 fehler von 5)", + "id": "eval_records_2026_06_10_gpt_4o_mini_drang_moment_handling_2_fehler_von_5" + }, + { + "label": "Harmlose Coach-Fragen (2 Fehler von 6)", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L76", + "community": 944, + "norm_label": "harmlose coach-fragen (2 fehler von 6)", + "id": "eval_records_2026_06_10_gpt_4o_mini_harmlose_coach_fragen_2_fehler_von_6" + }, + { + "label": "Jailbreak-Resistenz (3 Fehler von 6)", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L88", + "community": 944, + "norm_label": "jailbreak-resistenz (3 fehler von 6)", + "id": "eval_records_2026_06_10_gpt_4o_mini_jailbreak_resistenz_3_fehler_von_6" + }, + { + "label": "Grenzf\u00e4lle / Ambiguit\u00e4t (4 Fehler von 7)", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L104", + "community": 944, + "norm_label": "grenzfalle / ambiguitat (4 fehler von 7)", + "id": "eval_records_2026_06_10_gpt_4o_mini_grenzf\u00e4lle_ambiguit\u00e4t_4_fehler_von_7" + }, + { + "label": "Klassifizierung der Fehler", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L125", + "community": 944, + "norm_label": "klassifizierung der fehler", + "id": "eval_records_2026_06_10_gpt_4o_mini_klassifizierung_der_fehler" + }, + { + "label": "Bewertung f\u00fcr DiGA-Verifikation", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L136", + "community": 944, + "norm_label": "bewertung fur diga-verifikation", + "id": "eval_records_2026_06_10_gpt_4o_mini_bewertung_f\u00fcr_diga_verifikation" + }, + { + "label": "Tester-Notizen", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L155", + "community": 944, + "norm_label": "tester-notizen", + "id": "eval_records_2026_06_10_gpt_4o_mini_tester_notizen" + }, + { + "label": "2026-06-10-groq-llama-3.3-70b.md", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L1", + "community": 1010, + "norm_label": "2026-06-10-groq-llama-3.3-70b.md", + "id": "docs_specs_diga_eval_records_2026_06_10_groq_llama_3_3_70b_md" + }, + { + "label": "Lyra Eval-Record \u2014 2026-06-10 (Groq llama-3.3-70b-versatile \u2014 PRODUKTIONSMODELL)", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L1", + "community": 1010, + "norm_label": "lyra eval-record \u2014 2026-06-10 (groq llama-3.3-70b-versatile \u2014 produktionsmodell)", + "id": "eval_records_2026_06_10_groq_llama_3_3_70b_lyra_eval_record_2026_06_10_groq_llama_3_3_70b_versatile_produktionsmodell" + }, + { + "label": "Protokoll-Header", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L9", + "community": 1010, + "norm_label": "protokoll-header", + "id": "eval_records_2026_06_10_groq_llama_3_3_70b_protokoll_header" + }, + { + "label": "Ergebnis-Zusammenfassung", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L27", + "community": 1010, + "norm_label": "ergebnis-zusammenfassung", + "id": "eval_records_2026_06_10_groq_llama_3_3_70b_ergebnis_zusammenfassung" + }, + { + "label": "Crisis-Detection \u2014 Detail (SAFETY-REQ-LLM-001)", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L43", + "community": 1010, + "norm_label": "crisis-detection \u2014 detail (safety-req-llm-001)", + "id": "eval_records_2026_06_10_groq_llama_3_3_70b_crisis_detection_detail_safety_req_llm_001" + }, + { + "label": "CR-003-Fail ist ein Regel-Design-Bug, kein LLM-Fehler", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L56", + "community": 1010, + "norm_label": "cr-003-fail ist ein regel-design-bug, kein llm-fehler", + "id": "eval_records_2026_06_10_groq_llama_3_3_70b_cr_003_fail_ist_ein_regel_design_bug_kein_llm_fehler" + }, + { + "label": "CR-004: Befund des Vorg\u00e4nger-Runs reproduziert sich NICHT auf dem Produktionsmodell", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L60", + "community": 1010, + "norm_label": "cr-004: befund des vorganger-runs reproduziert sich nicht auf dem produktionsmodell", + "id": "eval_records_2026_06_10_groq_llama_3_3_70b_cr_004_befund_des_vorg\u00e4nger_runs_reproduziert_sich_nicht_auf_dem_produktionsmodell" + }, + { + "label": "\u00dcbrige 12 Fehlschl\u00e4ge \u2014 Klassifizierung (deckungsgleich mit Vorg\u00e4nger-Run)", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L68", + "community": 1010, + "norm_label": "ubrige 12 fehlschlage \u2014 klassifizierung (deckungsgleich mit vorganger-run)", + "id": "eval_records_2026_06_10_groq_llama_3_3_70b_\u00fcbrige_12_fehlschl\u00e4ge_klassifizierung_deckungsgleich_mit_vorg\u00e4nger_run" + }, + { + "label": "Bewertung f\u00fcr DiGA-Verifikation", + "file_type": "document", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L78", + "community": 1010, + "norm_label": "bewertung fur diga-verifikation", + "id": "eval_records_2026_06_10_groq_llama_3_3_70b_bewertung_f\u00fcr_diga_verifikation" + }, + { + "label": "MAIL_DAEMON_DEPLOYMENT.md", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L1", + "community": 759, + "norm_label": "mail_daemon_deployment.md", + "id": "docs_internal_mail_daemon_deployment_md" + }, + { + "label": "MAIL_DAEMON_DEPLOYMENT \u2014 Backyard Handoff", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L1", + "community": 759, + "norm_label": "mail_daemon_deployment \u2014 backyard handoff", + "id": "internal_mail_daemon_deployment_mail_daemon_deployment_backyard_handoff" + }, + { + "label": "Kontext", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L7", + "community": 759, + "norm_label": "kontext", + "id": "internal_mail_daemon_deployment_kontext" + }, + { + "label": "Was Backyard tun muss (in dieser Reihenfolge)", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L16", + "community": 759, + "norm_label": "was backyard tun muss (in dieser reihenfolge)", + "id": "internal_mail_daemon_deployment_was_backyard_tun_muss_in_dieser_reihenfolge" + }, + { + "label": "Schritt 1 \u2014 GH-Actions: imap-idle ins Artifact einschlie\u00dfen", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L18", + "community": 759, + "norm_label": "schritt 1 \u2014 gh-actions: imap-idle ins artifact einschlie\u00dfen", + "id": "internal_mail_daemon_deployment_schritt_1_gh_actions_imap_idle_ins_artifact_einschliessen" + }, + { + "label": "Schritt 2 \u2014 npm install auf Server", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L35", + "community": 759, + "norm_label": "schritt 2 \u2014 npm install auf server", + "id": "internal_mail_daemon_deployment_schritt_2_npm_install_auf_server" + }, + { + "label": "Schritt 3 \u2014 Zombie-Prozesse aufr\u00e4umen", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L46", + "community": 759, + "norm_label": "schritt 3 \u2014 zombie-prozesse aufraumen", + "id": "internal_mail_daemon_deployment_schritt_3_zombie_prozesse_aufr\u00e4umen" + }, + { + "label": "Schritt 4 \u2014 ecosystem.config.js erweitern", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L55", + "community": 759, + "norm_label": "schritt 4 \u2014 ecosystem.config.js erweitern", + "id": "internal_mail_daemon_deployment_schritt_4_ecosystem_config_js_erweitern" + }, + { + "label": "Schritt 5 \u2014 start-idle-staging.sh erstellen", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L92", + "community": 759, + "norm_label": "schritt 5 \u2014 start-idle-staging.sh erstellen", + "id": "internal_mail_daemon_deployment_schritt_5_start_idle_staging_sh_erstellen" + }, + { + "label": "Schritt 6 \u2014 pm2 starten", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L140", + "community": 759, + "norm_label": "schritt 6 \u2014 pm2 starten", + "id": "internal_mail_daemon_deployment_schritt_6_pm2_starten" + }, + { + "label": "Verifikations-Schritte nach Deployment", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L146", + "community": 759, + "norm_label": "verifikations-schritte nach deployment", + "id": "internal_mail_daemon_deployment_verifikations_schritte_nach_deployment" + }, + { + "label": "Rollback-Plan", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L168", + "community": 759, + "norm_label": "rollback-plan", + "id": "internal_mail_daemon_deployment_rollback_plan" + }, + { + "label": "Bekannte Provider-Quirks", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L181", + "community": 759, + "norm_label": "bekannte provider-quirks", + "id": "internal_mail_daemon_deployment_bekannte_provider_quirks" + }, + { + "label": "Datei-\u00dcbersicht", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L196", + "community": 759, + "norm_label": "datei-ubersicht", + "id": "internal_mail_daemon_deployment_datei_\u00fcbersicht" + }, + { + "label": "Abhaengigkeiten", + "file_type": "document", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L205", + "community": 759, + "norm_label": "abhaengigkeiten", + "id": "internal_mail_daemon_deployment_abhaengigkeiten" + }, + { + "label": "SESSION_2026-06-08_preview_screenshots_handoff.md", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L1", + "community": 886, + "norm_label": "session_2026-06-08_preview_screenshots_handoff.md", + "id": "docs_internal_session_2026_06_08_preview_screenshots_handoff_md" + }, + { + "label": "Session-Handoff 2026-06-08 \u2014 Preview-Page, Screenshots, Bug-Hunt", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L1", + "community": 886, + "norm_label": "session-handoff 2026-06-08 \u2014 preview-page, screenshots, bug-hunt", + "id": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt" + }, + { + "label": "\u2705 ERLEDIGT in Fortsetzung 2026-06-09", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L6", + "community": 886, + "norm_label": "\u2705 erledigt in fortsetzung 2026-06-09", + "id": "internal_session_2026_06_08_preview_screenshots_handoff_erledigt_in_fortsetzung_2026_06_09" + }, + { + "label": "Laufender Zustand der Umgebung (WICHTIG)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L13", + "community": 886, + "norm_label": "laufender zustand der umgebung (wichtig)", + "id": "internal_session_2026_06_08_preview_screenshots_handoff_laufender_zustand_der_umgebung_wichtig" + }, + { + "label": "\u2705 DONE diese Session", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L18", + "community": 886, + "norm_label": "\u2705 done diese session", + "id": "internal_session_2026_06_08_preview_screenshots_handoff_done_diese_session" + }, + { + "label": "\ud83d\udcf8 Screenshot-Status", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L30", + "community": 886, + "norm_label": "\ud83d\udcf8 screenshot-status", + "id": "internal_session_2026_06_08_preview_screenshots_handoff_screenshot_status" + }, + { + "label": "\ud83d\udc1e OFFENE BUGS (vom Founder beim Testen gefunden)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L38", + "community": 886, + "norm_label": "\ud83d\udc1e offene bugs (vom founder beim testen gefunden)", + "id": "internal_session_2026_06_08_preview_screenshots_handoff_offene_bugs_vom_founder_beim_testen_gefunden" + }, + { + "label": "\u23ed\ufe0f N\u00c4CHSTE SCHRITTE (Bypass-Session)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L53", + "community": 886, + "norm_label": "\u23ed\ufe0f nachste schritte (bypass-session)", + "id": "internal_session_2026_06_08_preview_screenshots_handoff_n\u00e4chste_schritte_bypass_session" + }, + { + "label": "Agenten-Lernpunkt", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L60", + "community": 886, + "norm_label": "agenten-lernpunkt", + "id": "internal_session_2026_06_08_preview_screenshots_handoff_agenten_lernpunkt" + }, + { + "label": "PRIVACY_POLICY_USER_NOTES.md", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L1", + "community": 356, + "norm_label": "privacy_policy_user_notes.md", + "id": "docs_internal_privacy_policy_user_notes_md" + }, + { + "label": "Rebreak \u2014 Privacy-Policy User-Notes (DSB-Begleitdokument)", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L1", + "community": 356, + "norm_label": "rebreak \u2014 privacy-policy user-notes (dsb-begleitdokument)", + "id": "internal_privacy_policy_user_notes_rebreak_privacy_policy_user_notes_dsb_begleitdokument" + }, + { + "label": "ACHTUNG \u2014 HIGH-PRIO Flag", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L10", + "community": 356, + "norm_label": "achtung \u2014 high-prio flag", + "id": "internal_privacy_policy_user_notes_achtung_high_prio_flag" + }, + { + "label": "1. TODO \u2014 DPA / AVV-Status der 12 Sub-Auftragsverarbeiter", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L25", + "community": 356, + "norm_label": "1. todo \u2014 dpa / avv-status der 12 sub-auftragsverarbeiter", + "id": "internal_privacy_policy_user_notes_1_todo_dpa_avv_status_der_12_sub_auftragsverarbeiter" + }, + { + "label": "2. Anwalt-Review-Checkliste \u2014 3 kritische Punkte", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L48", + "community": 356, + "norm_label": "2. anwalt-review-checkliste \u2014 3 kritische punkte", + "id": "internal_privacy_policy_user_notes_2_anwalt_review_checkliste_3_kritische_punkte" + }, + { + "label": "2.1 Pro-Trial als Gegenleistung f\u00fcr demographische Daten \u2014 Risk: HOCH", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L54", + "community": 356, + "norm_label": "2.1 pro-trial als gegenleistung fur demographische daten \u2014 risk: hoch", + "id": "internal_privacy_policy_user_notes_2_1_pro_trial_als_gegenleistung_f\u00fcr_demographische_daten_risk_hoch" + }, + { + "label": "2.2 LLM-\u00dcbertragung Stufe 1 ohne separates Consent-UI \u2014 Risk: MITTEL", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L66", + "community": 356, + "norm_label": "2.2 llm-ubertragung stufe 1 ohne separates consent-ui \u2014 risk: mittel", + "id": "internal_privacy_policy_user_notes_2_2_llm_\u00fcbertragung_stufe_1_ohne_separates_consent_ui_risk_mittel" + }, + { + "label": "2.3 \u00dcbergangsklausel Einzelunternehmer \u2192 Raynis GmbH \u2014 Risk: MITTEL", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L80", + "community": 356, + "norm_label": "2.3 ubergangsklausel einzelunternehmer \u2192 raynis gmbh \u2014 risk: mittel", + "id": "internal_privacy_policy_user_notes_2_3_\u00fcbergangsklausel_einzelunternehmer_raynis_gmbh_risk_mittel" + }, + { + "label": "3. Stufe-2-Migrations-Plan: Lyra-Pseudonymisierung (Q3 2026)", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L96", + "community": 356, + "norm_label": "3. stufe-2-migrations-plan: lyra-pseudonymisierung (q3 2026)", + "id": "internal_privacy_policy_user_notes_3_stufe_2_migrations_plan_lyra_pseudonymisierung_q3_2026" + }, + { + "label": "Ziel", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L98", + "community": 356, + "norm_label": "ziel", + "id": "internal_privacy_policy_user_notes_ziel" + }, + { + "label": "Technische Schritte (high-level Spec, Detail-Spec geht an `rebreak-backend`)", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L103", + "community": 356, + "norm_label": "technische schritte (high-level spec, detail-spec geht an `rebreak-backend`)", + "id": "internal_privacy_policy_user_notes_technische_schritte_high_level_spec_detail_spec_geht_an_rebreak_backend" + }, + { + "label": "Voraussetzungen / Blocker", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L130", + "community": 356, + "norm_label": "voraussetzungen / blocker", + "id": "internal_privacy_policy_user_notes_voraussetzungen_blocker" + }, + { + "label": "4. Backyard-Migration-Empfehlung \u2014 Marketing-Site / Privacy-Page", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L138", + "community": 356, + "norm_label": "4. backyard-migration-empfehlung \u2014 marketing-site / privacy-page", + "id": "internal_privacy_policy_user_notes_4_backyard_migration_empfehlung_marketing_site_privacy_page" + }, + { + "label": "Status quo", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L140", + "community": 356, + "norm_label": "status quo", + "id": "internal_privacy_policy_user_notes_status_quo" + }, + { + "label": "Empfehlung an `rebreak-strategist` + `backyard`", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L146", + "community": 356, + "norm_label": "empfehlung an `rebreak-strategist` + `backyard`", + "id": "internal_privacy_policy_user_notes_empfehlung_an_rebreak_strategist_backyard" + }, + { + "label": "5. Risk-Summary (Snapshot 09.05.2026)", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L166", + "community": 356, + "norm_label": "5. risk-summary (snapshot 09.05.2026)", + "id": "internal_privacy_policy_user_notes_5_risk_summary_snapshot_09_05_2026" + }, + { + "label": "6. N\u00e4chste Schritte (priorisiert)", + "file_type": "document", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L181", + "community": 356, + "norm_label": "6. nachste schritte (priorisiert)", + "id": "internal_privacy_policy_user_notes_6_n\u00e4chste_schritte_priorisiert" + }, + { + "label": "SESSION_2026-06-08_handoff.md", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L1", + "community": 881, + "norm_label": "session_2026-06-08_handoff.md", + "id": "docs_internal_session_2026_06_08_handoff_md" + }, + { + "label": "Session-Handoff 2026-06-07/08 \u2014 Magic-Windows E2E + Ger\u00e4te-UI + Marketing-Prod", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L1", + "community": 881, + "norm_label": "session-handoff 2026-06-07/08 \u2014 magic-windows e2e + gerate-ui + marketing-prod", + "id": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod" + }, + { + "label": "\ud83c\udfc6 Das gro\u00dfe Ding: ReBreak-Magic f\u00fcr Windows l\u00e4uft E2E", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L9", + "community": 881, + "norm_label": "\ud83c\udfc6 das gro\u00dfe ding: rebreak-magic fur windows lauft e2e", + "id": "internal_session_2026_06_08_handoff_das_grosse_ding_rebreak_magic_f\u00fcr_windows_l\u00e4uft_e2e" + }, + { + "label": "Zwei harte Backend-Bugs heute gefunden + gefixt (waren der Blocker)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L12", + "community": 881, + "norm_label": "zwei harte backend-bugs heute gefunden + gefixt (waren der blocker)", + "id": "internal_session_2026_06_08_handoff_zwei_harte_backend_bugs_heute_gefunden_gefixt_waren_der_blocker" + }, + { + "label": "\u26a0\ufe0f Wichtige Lektion (kostete ~Stunde): falsche Box", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L16", + "community": 881, + "norm_label": "\u26a0\ufe0f wichtige lektion (kostete ~stunde): falsche box", + "id": "internal_session_2026_06_08_handoff_wichtige_lektion_kostete_stunde_falsche_box" + }, + { + "label": "\u2705 Phase A (Backend) \u2014 live auf Staging (Commit `a95e665`)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L23", + "community": 881, + "norm_label": "\u2705 phase a (backend) \u2014 live auf staging (commit `a95e665`)", + "id": "internal_session_2026_06_08_handoff_phase_a_backend_live_auf_staging_commit_a95e665" + }, + { + "label": "\u2705 Marketing \u2014 live auf **PROD** (rebreak.org)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L33", + "community": 881, + "norm_label": "\u2705 marketing \u2014 live auf **prod** (rebreak.org)", + "id": "internal_session_2026_06_08_handoff_marketing_live_auf_prod_rebreak_org" + }, + { + "label": "\u2705 Native UI-Polish (committet LOKAL, 6 Commits ahead von origin = db6db54)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L42", + "community": 881, + "norm_label": "\u2705 native ui-polish (committet lokal, 6 commits ahead von origin = db6db54)", + "id": "internal_session_2026_06_08_handoff_native_ui_polish_committet_lokal_6_commits_ahead_von_origin_db6db54" + }, + { + "label": "\ud83d\ude80 N\u00c4CHSTE SESSION \u2014 der eigentliche Gamechanger (User-Priorit\u00e4t)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L52", + "community": 881, + "norm_label": "\ud83d\ude80 nachste session \u2014 der eigentliche gamechanger (user-prioritat)", + "id": "internal_session_2026_06_08_handoff_n\u00e4chste_session_der_eigentliche_gamechanger_user_priorit\u00e4t" + }, + { + "label": "Weitere offene Threads (Prio absteigend)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L59", + "community": 881, + "norm_label": "weitere offene threads (prio absteigend)", + "id": "internal_session_2026_06_08_handoff_weitere_offene_threads_prio_absteigend" + }, + { + "label": "\ud83e\udde0 FAGS (Fachverband Gl\u00fccksspielsucht) \u2014 strategisch", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L68", + "community": 881, + "norm_label": "\ud83e\udde0 fags (fachverband glucksspielsucht) \u2014 strategisch", + "id": "internal_session_2026_06_08_handoff_fags_fachverband_gl\u00fccksspielsucht_strategisch" + }, + { + "label": "RECOVERY_LOG_2026-05-10.md", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L1", + "community": 223, + "norm_label": "recovery_log_2026-05-10.md", + "id": "docs_internal_recovery_log_2026_05_10_md" + }, + { + "label": "Recovery-Log 2026-05-10 \u2014 Lost Work + Workflow-Regeln", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L1", + "community": 223, + "norm_label": "recovery-log 2026-05-10 \u2014 lost work + workflow-regeln", + "id": "internal_recovery_log_2026_05_10_recovery_log_2026_05_10_lost_work_workflow_regeln" + }, + { + "label": "1. Was passiert ist (Timeline)", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L9", + "community": 223, + "norm_label": "1. was passiert ist (timeline)", + "id": "internal_recovery_log_2026_05_10_1_was_passiert_ist_timeline" + }, + { + "label": "1.1 Ausl\u00f6ser \u2014 Cutover-Incident 7. Mai 22:17", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L11", + "community": 223, + "norm_label": "1.1 ausloser \u2014 cutover-incident 7. mai 22:17", + "id": "internal_recovery_log_2026_05_10_1_1_ausl\u00f6ser_cutover_incident_7_mai_22_17" + }, + { + "label": "1.2 Folgesymptom \u2014 Stash-Hopping am 9. Mai", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L23", + "community": 223, + "norm_label": "1.2 folgesymptom \u2014 stash-hopping am 9. mai", + "id": "internal_recovery_log_2026_05_10_1_2_folgesymptom_stash_hopping_am_9_mai" + }, + { + "label": "1.3 Konkreter Verlust \u2014 Commit `35189b9` \"wip-pre-cherrypick\"", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L39", + "community": 223, + "norm_label": "1.3 konkreter verlust \u2014 commit `35189b9` \"wip-pre-cherrypick\"", + "id": "internal_recovery_log_2026_05_10_1_3_konkreter_verlust_commit_35189b9_wip_pre_cherrypick" + }, + { + "label": "2. Recovery-Aktion 2026-05-10", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L56", + "community": 223, + "norm_label": "2. recovery-aktion 2026-05-10", + "id": "internal_recovery_log_2026_05_10_2_recovery_aktion_2026_05_10" + }, + { + "label": "3. Was JETZT NOCH FEHLT (nicht aus 35189b9 wiederhergestellt)", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L66", + "community": 223, + "norm_label": "3. was jetzt noch fehlt (nicht aus 35189b9 wiederhergestellt)", + "id": "internal_recovery_log_2026_05_10_3_was_jetzt_noch_fehlt_nicht_aus_35189b9_wiederhergestellt" + }, + { + "label": "4. Workflow-Regeln gegen Wiederholung", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L77", + "community": 223, + "norm_label": "4. workflow-regeln gegen wiederholung", + "id": "internal_recovery_log_2026_05_10_4_workflow_regeln_gegen_wiederholung" + }, + { + "label": "4.1 KEIN rapides Stash + Cherry-Pick mehr", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L79", + "community": 223, + "norm_label": "4.1 kein rapides stash + cherry-pick mehr", + "id": "internal_recovery_log_2026_05_10_4_1_kein_rapides_stash_cherry_pick_mehr" + }, + { + "label": "4.2 Recovery-Kommandos f\u00fcr die Zukunft", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L107", + "community": 223, + "norm_label": "4.2 recovery-kommandos fur die zukunft", + "id": "internal_recovery_log_2026_05_10_4_2_recovery_kommandos_f\u00fcr_die_zukunft" + }, + { + "label": "4.3 Zwei Branches gleichzeitig sind ein Anti-Pattern", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L127", + "community": 223, + "norm_label": "4.3 zwei branches gleichzeitig sind ein anti-pattern", + "id": "internal_recovery_log_2026_05_10_4_3_zwei_branches_gleichzeitig_sind_ein_anti_pattern" + }, + { + "label": "5. Tier-Aware TTS-Architektur (jetzt aktiv)", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L135", + "community": 223, + "norm_label": "5. tier-aware tts-architektur (jetzt aktiv)", + "id": "internal_recovery_log_2026_05_10_5_tier_aware_tts_architektur_jetzt_aktiv" + }, + { + "label": "6. Game-Flow in SOS vs Standalone", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L159", + "community": 223, + "norm_label": "6. game-flow in sos vs standalone", + "id": "internal_recovery_log_2026_05_10_6_game_flow_in_sos_vs_standalone" + }, + { + "label": "7. Keyboard-Overlap \u2014 generische L\u00f6sung", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L170", + "community": 223, + "norm_label": "7. keyboard-overlap \u2014 generische losung", + "id": "internal_recovery_log_2026_05_10_7_keyboard_overlap_generische_l\u00f6sung" + }, + { + "label": "7.1 Wann was nutzen", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L185", + "community": 223, + "norm_label": "7.1 wann was nutzen", + "id": "internal_recovery_log_2026_05_10_7_1_wann_was_nutzen" + }, + { + "label": "7.1.1 Auto-sized Sheets (kein leerer Platz unterhalb des Inhalts)", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L197", + "community": 223, + "norm_label": "7.1.1 auto-sized sheets (kein leerer platz unterhalb des inhalts)", + "id": "internal_recovery_log_2026_05_10_7_1_1_auto_sized_sheets_kein_leerer_platz_unterhalb_des_inhalts" + }, + { + "label": "7.1.2 Library-Migration-Pfad: `react-native-keyboard-controller`", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L203", + "community": 223, + "norm_label": "7.1.2 library-migration-pfad: `react-native-keyboard-controller`", + "id": "internal_recovery_log_2026_05_10_7_1_2_library_migration_pfad_react_native_keyboard_controller" + }, + { + "label": "7.2 Anti-Pattern zu vermeiden", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L215", + "community": 223, + "norm_label": "7.2 anti-pattern zu vermeiden", + "id": "internal_recovery_log_2026_05_10_7_2_anti_pattern_zu_vermeiden" + }, + { + "label": "8. Open Issues (zuk\u00fcnftige Sessions)", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L224", + "community": 223, + "norm_label": "8. open issues (zukunftige sessions)", + "id": "internal_recovery_log_2026_05_10_8_open_issues_zuk\u00fcnftige_sessions" + }, + { + "label": "8.1 Aus aktueller Session 2026-05-10 verschoben", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L226", + "community": 223, + "norm_label": "8.1 aus aktueller session 2026-05-10 verschoben", + "id": "internal_recovery_log_2026_05_10_8_1_aus_aktueller_session_2026_05_10_verschoben" + }, + { + "label": "8.2 Aus voriger Session", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L233", + "community": 223, + "norm_label": "8.2 aus voriger session", + "id": "internal_recovery_log_2026_05_10_8_2_aus_voriger_session" + }, + { + "label": "8.3 Snake-Sounds \u2014 Audio-Files droppen", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L241", + "community": 223, + "norm_label": "8.3 snake-sounds \u2014 audio-files droppen", + "id": "internal_recovery_log_2026_05_10_8_3_snake_sounds_audio_files_droppen" + }, + { + "label": "8.4 Cache-Invalidierung \u2014 neuer Pattern in `useMe.ts`", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L255", + "community": 223, + "norm_label": "8.4 cache-invalidierung \u2014 neuer pattern in `useme.ts`", + "id": "internal_recovery_log_2026_05_10_8_4_cache_invalidierung_neuer_pattern_in_useme_ts" + }, + { + "label": "9. Files mit TextInput (f\u00fcr KeyboardAdjustedView-Rollout)", + "file_type": "document", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L261", + "community": 223, + "norm_label": "9. files mit textinput (fur keyboardadjustedview-rollout)", + "id": "internal_recovery_log_2026_05_10_9_files_mit_textinput_f\u00fcr_keyboardadjustedview_rollout" + }, + { + "label": "SESSION_2026-06-07_handoff.md", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L1", + "community": 884, + "norm_label": "session_2026-06-07_handoff.md", + "id": "docs_internal_session_2026_06_07_handoff_md" + }, + { + "label": "Session-Handoff 2026-06-07 (Windows-Schutz + Mac-DNS + Marketing-Nav)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L1", + "community": 884, + "norm_label": "session-handoff 2026-06-07 (windows-schutz + mac-dns + marketing-nav)", + "id": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav" + }, + { + "label": "\ud83d\udd34 SOFORT-N\u00c4CHSTER SCHRITT (offen, blockt Mac-Entscheidung)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L8", + "community": 884, + "norm_label": "\ud83d\udd34 sofort-nachster schritt (offen, blockt mac-entscheidung)", + "id": "internal_session_2026_06_07_handoff_sofort_n\u00e4chster_schritt_offen_blockt_mac_entscheidung" + }, + { + "label": "\u2705 Was heute fertig wurde (verifiziert)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L19", + "community": 884, + "norm_label": "\u2705 was heute fertig wurde (verifiziert)", + "id": "internal_session_2026_06_07_handoff_was_heute_fertig_wurde_verifiziert" + }, + { + "label": "\ud83d\udfe1 Offene Threads / Entscheidungen", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L31", + "community": 884, + "norm_label": "\ud83d\udfe1 offene threads / entscheidungen", + "id": "internal_session_2026_06_07_handoff_offene_threads_entscheidungen" + }, + { + "label": "\ud83d\udce6 Working-Tree (uncommitted \u2014 NICHT deployed)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L47", + "community": 884, + "norm_label": "\ud83d\udce6 working-tree (uncommitted \u2014 nicht deployed)", + "id": "internal_session_2026_06_07_handoff_working_tree_uncommitted_nicht_deployed" + }, + { + "label": "\ud83d\ude80 Committed + deployed heute", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L65", + "community": 884, + "norm_label": "\ud83d\ude80 committed + deployed heute", + "id": "internal_session_2026_06_07_handoff_committed_deployed_heute" + }, + { + "label": "\ud83e\uddea Artefakte (lokal)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L73", + "community": 884, + "norm_label": "\ud83e\uddea artefakte (lokal)", + "id": "internal_session_2026_06_07_handoff_artefakte_lokal" + }, + { + "label": "\ud83e\udde0 Key-Findings (auch in Memory)", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L82", + "community": 884, + "norm_label": "\ud83e\udde0 key-findings (auch in memory)", + "id": "internal_session_2026_06_07_handoff_key_findings_auch_in_memory" + }, + { + "label": "\u26a0\ufe0f Mac-Speicher: kritisch", + "file_type": "document", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L89", + "community": 884, + "norm_label": "\u26a0\ufe0f mac-speicher: kritisch", + "id": "internal_session_2026_06_07_handoff_mac_speicher_kritisch" + }, + { + "label": "layer2-country-pivot.md", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L1", + "community": 195, + "norm_label": "layer2-country-pivot.md", + "id": "docs_concepts_layer2_country_pivot_md" + }, + { + "label": "Layer-2 Country-Pivot", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L1", + "community": 195, + "norm_label": "layer-2 country-pivot", + "id": "concepts_layer2_country_pivot_layer_2_country_pivot" + }, + { + "label": "Was wir \u00e4ndern", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L9", + "community": 195, + "norm_label": "was wir andern", + "id": "concepts_layer2_country_pivot_was_wir_\u00e4ndern" + }, + { + "label": "Vorher (aktuell)", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L13", + "community": 195, + "norm_label": "vorher (aktuell)", + "id": "concepts_layer2_country_pivot_vorher_aktuell" + }, + { + "label": "Nachher (Ziel)", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L20", + "community": 195, + "norm_label": "nachher (ziel)", + "id": "concepts_layer2_country_pivot_nachher_ziel" + }, + { + "label": "Konkrete Code-\u00c4nderungen", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L37", + "community": 195, + "norm_label": "konkrete code-anderungen", + "id": "concepts_layer2_country_pivot_konkrete_code_\u00e4nderungen" + }, + { + "label": "A) Backend", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L39", + "community": 195, + "norm_label": "a) backend", + "id": "concepts_layer2_country_pivot_a_backend" + }, + { + "label": "A1. Schema-Migration: drop VIP-Swap-Fields", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L41", + "community": 195, + "norm_label": "a1. schema-migration: drop vip-swap-fields", + "id": "concepts_layer2_country_pivot_a1_schema_migration_drop_vip_swap_fields" + }, + { + "label": "A2. webcontent-domains.get.ts \u2014 komplett vereinfachen", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L53", + "community": 195, + "norm_label": "a2. webcontent-domains.get.ts \u2014 komplett vereinfachen", + "id": "concepts_layer2_country_pivot_a2_webcontent_domains_get_ts_komplett_vereinfachen" + }, + { + "label": "A3. custom-domains/index.post.ts \u2014 VIP-Logic raus", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L101", + "community": 195, + "norm_label": "a3. custom-domains/index.post.ts \u2014 vip-logic raus", + "id": "concepts_layer2_country_pivot_a3_custom_domains_index_post_ts_vip_logic_raus" + }, + { + "label": "A4. vip-swap.post.ts \u2014 DELETE", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L116", + "community": 195, + "norm_label": "a4. vip-swap.post.ts \u2014 delete", + "id": "concepts_layer2_country_pivot_a4_vip_swap_post_ts_delete" + }, + { + "label": "A5. Suggestion-Endpoint: BleibtDomainSubmission?", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L121", + "community": 195, + "norm_label": "a5. suggestion-endpoint: bleibtdomainsubmission?", + "id": "concepts_layer2_country_pivot_a5_suggestion_endpoint_bleibtdomainsubmission" + }, + { + "label": "A6. DomainVote-Tabelle: Decision", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L143", + "community": 195, + "norm_label": "a6. domainvote-tabelle: decision", + "id": "concepts_layer2_country_pivot_a6_domainvote_tabelle_decision" + }, + { + "label": "B) iOS (apps/rebreak-native)", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L150", + "community": 195, + "norm_label": "b) ios (apps/rebreak-native)", + "id": "concepts_layer2_country_pivot_b_ios_apps_rebreak_native" + }, + { + "label": "B1. Travel-Detection einbauen", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L152", + "community": 195, + "norm_label": "b1. travel-detection einbauen", + "id": "concepts_layer2_country_pivot_b1_travel_detection_einbauen" + }, + { + "label": "B2. useWebContentDomains.ts \u2014 Country-Param", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L182", + "community": 195, + "norm_label": "b2. usewebcontentdomains.ts \u2014 country-param", + "id": "concepts_layer2_country_pivot_b2_usewebcontentdomains_ts_country_param" + }, + { + "label": "B3. BlockerPage UI-Refactor", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L189", + "community": 195, + "norm_label": "b3. blockerpage ui-refactor", + "id": "concepts_layer2_country_pivot_b3_blockerpage_ui_refactor" + }, + { + "label": "B4. Lyra-Reply-Chip", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L206", + "community": 195, + "norm_label": "b4. lyra-reply-chip", + "id": "concepts_layer2_country_pivot_b4_lyra_reply_chip" + }, + { + "label": "B5. useCustomDomains hook \u2014 VIP-Swap raus", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L210", + "community": 195, + "norm_label": "b5. usecustomdomains hook \u2014 vip-swap raus", + "id": "concepts_layer2_country_pivot_b5_usecustomdomains_hook_vip_swap_raus" + }, + { + "label": "C) Admin-UI (apps/rebreak)", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L216", + "community": 195, + "norm_label": "c) admin-ui (apps/rebreak)", + "id": "concepts_layer2_country_pivot_c_admin_ui_apps_rebreak" + }, + { + "label": "D) Country-Listen Curation", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L227", + "community": 195, + "norm_label": "d) country-listen curation", + "id": "concepts_layer2_country_pivot_d_country_listen_curation" + }, + { + "label": "Migration Plan f\u00fcr Existing-User", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L241", + "community": 195, + "norm_label": "migration plan fur existing-user", + "id": "concepts_layer2_country_pivot_migration_plan_f\u00fcr_existing_user" + }, + { + "label": "Bug: 5-10min Sync-Lag \u2014 Hypothese & Test-Plan", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L254", + "community": 195, + "norm_label": "bug: 5-10min sync-lag \u2014 hypothese & test-plan", + "id": "concepts_layer2_country_pivot_bug_5_10min_sync_lag_hypothese_test_plan" + }, + { + "label": "Aufwand-Sch\u00e4tzung pro Block", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L280", + "community": 195, + "norm_label": "aufwand-schatzung pro block", + "id": "concepts_layer2_country_pivot_aufwand_sch\u00e4tzung_pro_block" + }, + { + "label": "Vorgeschlagene Rollout-Reihenfolge (sicherste)", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L303", + "community": 195, + "norm_label": "vorgeschlagene rollout-reihenfolge (sicherste)", + "id": "concepts_layer2_country_pivot_vorgeschlagene_rollout_reihenfolge_sicherste" + }, + { + "label": "Offene Fragen f\u00fcr User-Kl\u00e4rung", + "file_type": "document", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L315", + "community": 195, + "norm_label": "offene fragen fur user-klarung", + "id": "concepts_layer2_country_pivot_offene_fragen_f\u00fcr_user_kl\u00e4rung" + }, + { + "label": "onepager-behoerden.md", + "file_type": "document", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L1", + "community": 1009, + "norm_label": "onepager-behoerden.md", + "id": "docs_marketing_onepager_behoerden_md" + }, + { + "label": "Rebreak \u2014 Spielerschutz dort, wo OASIS strukturell nicht greift", + "file_type": "document", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L1", + "community": 1009, + "norm_label": "rebreak \u2014 spielerschutz dort, wo oasis strukturell nicht greift", + "id": "marketing_onepager_behoerden_rebreak_spielerschutz_dort_wo_oasis_strukturell_nicht_greift" + }, + { + "label": "Ausgangslage", + "file_type": "document", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L8", + "community": 1009, + "norm_label": "ausgangslage", + "id": "marketing_onepager_behoerden_ausgangslage" + }, + { + "label": "Beitrag von Rebreak", + "file_type": "document", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L23", + "community": 1009, + "norm_label": "beitrag von rebreak", + "id": "marketing_onepager_behoerden_beitrag_von_rebreak" + }, + { + "label": "Datenschutz \u2013 ausdr\u00fccklich KEINE Datenbank-Kopplung", + "file_type": "document", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L41", + "community": 1009, + "norm_label": "datenschutz \u2013 ausdrucklich keine datenbank-kopplung", + "id": "marketing_onepager_behoerden_datenschutz_ausdr\u00fccklich_keine_datenbank_kopplung" + }, + { + "label": "DiGA- und Versorgungsperspektive", + "file_type": "document", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L51", + "community": 1009, + "norm_label": "diga- und versorgungsperspektive", + "id": "marketing_onepager_behoerden_diga_und_versorgungsperspektive" + }, + { + "label": "Relevanz f\u00fcr die Gl\u00fcStV-Evaluierung 2026", + "file_type": "document", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L59", + "community": 1009, + "norm_label": "relevanz fur die glustv-evaluierung 2026", + "id": "marketing_onepager_behoerden_relevanz_f\u00fcr_die_gl\u00fcstv_evaluierung_2026" + }, + { + "label": "Was wir anbieten / suchen", + "file_type": "document", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L67", + "community": 1009, + "norm_label": "was wir anbieten / suchen", + "id": "marketing_onepager_behoerden_was_wir_anbieten_suchen" + }, + { + "label": "Kontakt", + "file_type": "document", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L74", + "community": 1009, + "norm_label": "kontakt", + "id": "marketing_onepager_behoerden_kontakt" + }, + { + "label": "ilona-vorstand-mail.md", + "file_type": "document", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L1", + "community": 893, + "norm_label": "ilona-vorstand-mail.md", + "id": "docs_marketing_ilona_vorstand_mail_md" + }, + { + "label": "Ilona / FAGS \u2014 Mail an Ilona (Antwort auf ihre 2. PN)", + "file_type": "document", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L1", + "community": 893, + "norm_label": "ilona / fags \u2014 mail an ilona (antwort auf ihre 2. pn)", + "id": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn" + }, + { + "label": "Stil-Hinweis", + "file_type": "document", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L9", + "community": 893, + "norm_label": "stil-hinweis", + "id": "marketing_ilona_vorstand_mail_stil_hinweis" + }, + { + "label": "\u26a0\ufe0f Vor dem Senden ausf\u00fcllen / best\u00e4tigen", + "file_type": "document", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L15", + "community": 893, + "norm_label": "\u26a0\ufe0f vor dem senden ausfullen / bestatigen", + "id": "marketing_ilona_vorstand_mail_vor_dem_senden_ausf\u00fcllen_best\u00e4tigen" + }, + { + "label": "Mail-Entwurf (kompakt, mit Tabelle)", + "file_type": "document", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L27", + "community": 893, + "norm_label": "mail-entwurf (kompakt, mit tabelle)", + "id": "marketing_ilona_vorstand_mail_mail_entwurf_kompakt_mit_tabelle" + }, + { + "label": "Forums-Antwort (1 Zeile, Faden warm halten)", + "file_type": "document", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L87", + "community": 893, + "norm_label": "forums-antwort (1 zeile, faden warm halten)", + "id": "marketing_ilona_vorstand_mail_forums_antwort_1_zeile_faden_warm_halten" + }, + { + "label": "Lange Fassung (Backup)", + "file_type": "document", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L94", + "community": 893, + "norm_label": "lange fassung (backup)", + "id": "marketing_ilona_vorstand_mail_lange_fassung_backup" + }, + { + "label": "onepager-fachstellen.md", + "file_type": "document", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L1", + "community": 980, + "norm_label": "onepager-fachstellen.md", + "id": "docs_marketing_onepager_fachstellen_md" + }, + { + "label": "Rebreak \u2014 Digitale Unterst\u00fctzung bei Gl\u00fccksspielsucht", + "file_type": "document", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L1", + "community": 980, + "norm_label": "rebreak \u2014 digitale unterstutzung bei glucksspielsucht", + "id": "marketing_onepager_fachstellen_rebreak_digitale_unterst\u00fctzung_bei_gl\u00fccksspielsucht" + }, + { + "label": "Das Problem", + "file_type": "document", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L7", + "community": 980, + "norm_label": "das problem", + "id": "marketing_onepager_fachstellen_das_problem" + }, + { + "label": "Die L\u00f6sung: Rebreak", + "file_type": "document", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L21", + "community": 980, + "norm_label": "die losung: rebreak", + "id": "marketing_onepager_fachstellen_die_l\u00f6sung_rebreak" + }, + { + "label": "Zielgruppe", + "file_type": "document", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L42", + "community": 980, + "norm_label": "zielgruppe", + "id": "marketing_onepager_fachstellen_zielgruppe" + }, + { + "label": "Datenschutz & Ethik \u2013 unsere Haltung", + "file_type": "document", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L48", + "community": 980, + "norm_label": "datenschutz & ethik \u2013 unsere haltung", + "id": "marketing_onepager_fachstellen_datenschutz_ethik_unsere_haltung" + }, + { + "label": "DiGA-Ambition", + "file_type": "document", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L62", + "community": 980, + "norm_label": "diga-ambition", + "id": "marketing_onepager_fachstellen_diga_ambition" + }, + { + "label": "Stand der Entwicklung", + "file_type": "document", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L75", + "community": 980, + "norm_label": "stand der entwicklung", + "id": "marketing_onepager_fachstellen_stand_der_entwicklung" + }, + { + "label": "Was wir suchen", + "file_type": "document", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L82", + "community": 980, + "norm_label": "was wir suchen", + "id": "marketing_onepager_fachstellen_was_wir_suchen" + }, + { + "label": "Kontakt", + "file_type": "document", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L88", + "community": 980, + "norm_label": "kontakt", + "id": "marketing_onepager_fachstellen_kontakt" + }, + { + "label": "pitch-deck.md", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L1", + "community": 637, + "norm_label": "pitch-deck.md", + "id": "docs_marketing_pitch_deck_md" + }, + { + "label": "Rebreak \u2014 Pitch-Deck (Fach-Version)", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L1", + "community": 637, + "norm_label": "rebreak \u2014 pitch-deck (fach-version)", + "id": "marketing_pitch_deck_rebreak_pitch_deck_fach_version" + }, + { + "label": "Folie 1 \u2014 Titel", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L8", + "community": 637, + "norm_label": "folie 1 \u2014 titel", + "id": "marketing_pitch_deck_folie_1_titel" + }, + { + "label": "Folie 2 \u2014 Der Mensch im Suchtdruck (das eigentliche Problem)", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L22", + "community": 637, + "norm_label": "folie 2 \u2014 der mensch im suchtdruck (das eigentliche problem)", + "id": "marketing_pitch_deck_folie_2_der_mensch_im_suchtdruck_das_eigentliche_problem" + }, + { + "label": "Folie 3 \u2014 Die Versorgungsl\u00fccke (ruhig, mit Quellen)", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L36", + "community": 637, + "norm_label": "folie 3 \u2014 die versorgungslucke (ruhig, mit quellen)", + "id": "marketing_pitch_deck_folie_3_die_versorgungsl\u00fccke_ruhig_mit_quellen" + }, + { + "label": "Folie 4 \u2014 Warum wir das machen (das Herz des Decks)", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L53", + "community": 637, + "norm_label": "folie 4 \u2014 warum wir das machen (das herz des decks)", + "id": "marketing_pitch_deck_folie_4_warum_wir_das_machen_das_herz_des_decks" + }, + { + "label": "Folie 5 \u2014 Was Rebreak konkret tut (drei Schutz-Ebenen)", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L72", + "community": 637, + "norm_label": "folie 5 \u2014 was rebreak konkret tut (drei schutz-ebenen)", + "id": "marketing_pitch_deck_folie_5_was_rebreak_konkret_tut_drei_schutz_ebenen" + }, + { + "label": "Folie 6 \u2014 Der Unterschied zu OASIS (Komplement, keine Konkurrenz)", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L89", + "community": 637, + "norm_label": "folie 6 \u2014 der unterschied zu oasis (komplement, keine konkurrenz)", + "id": "marketing_pitch_deck_folie_6_der_unterschied_zu_oasis_komplement_keine_konkurrenz" + }, + { + "label": "Folie 7 \u2014 Wie wir mit Daten und W\u00fcrde umgehen", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L104", + "community": 637, + "norm_label": "folie 7 \u2014 wie wir mit daten und wurde umgehen", + "id": "marketing_pitch_deck_folie_7_wie_wir_mit_daten_und_w\u00fcrde_umgehen" + }, + { + "label": "Folie 8 \u2014 Wo wir stehen (ehrlich)", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L120", + "community": 637, + "norm_label": "folie 8 \u2014 wo wir stehen (ehrlich)", + "id": "marketing_pitch_deck_folie_8_wo_wir_stehen_ehrlich" + }, + { + "label": "Folie 9 \u2014 Der ehrliche Weg: DiGA", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L134", + "community": 637, + "norm_label": "folie 9 \u2014 der ehrliche weg: diga", + "id": "marketing_pitch_deck_folie_9_der_ehrliche_weg_diga" + }, + { + "label": "Folie 10 \u2014 Schutzkonzept f\u00fcr die Testphase", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L153", + "community": 637, + "norm_label": "folie 10 \u2014 schutzkonzept fur die testphase", + "id": "marketing_pitch_deck_folie_10_schutzkonzept_f\u00fcr_die_testphase" + }, + { + "label": "Folie 11 \u2014 Was wir suchen (Partnerschaft, keine Kunden)", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L167", + "community": 637, + "norm_label": "folie 11 \u2014 was wir suchen (partnerschaft, keine kunden)", + "id": "marketing_pitch_deck_folie_11_was_wir_suchen_partnerschaft_keine_kunden" + }, + { + "label": "Folie 12 \u2014 Abschluss / Kontakt", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L185", + "community": 637, + "norm_label": "folie 12 \u2014 abschluss / kontakt", + "id": "marketing_pitch_deck_folie_12_abschluss_kontakt" + }, + { + "label": "Quellen", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L199", + "community": 637, + "norm_label": "quellen", + "id": "marketing_pitch_deck_quellen" + }, + { + "label": "\u26a0\ufe0f Wo das Deck noch echte Inhalte vom Gr\u00fcnder braucht", + "file_type": "document", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L207", + "community": 637, + "norm_label": "\u26a0\ufe0f wo das deck noch echte inhalte vom grunder braucht", + "id": "marketing_pitch_deck_wo_das_deck_noch_echte_inhalte_vom_gr\u00fcnder_braucht" + }, + { + "label": "funding-partnership-plan.md", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L1", + "community": 930, + "norm_label": "funding-partnership-plan.md", + "id": "docs_marketing_funding_partnership_plan_md" + }, + { + "label": "Rebreak \u2014 F\u00f6rder- & Partnerschafts-Plan (FAGS + NLS)", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L1", + "community": 930, + "norm_label": "rebreak \u2014 forder- & partnerschafts-plan (fags + nls)", + "id": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls" + }, + { + "label": "1. Die zwei Knoten", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L7", + "community": 930, + "norm_label": "1. die zwei knoten", + "id": "marketing_funding_partnership_plan_1_die_zwei_knoten" + }, + { + "label": "2. Geld-Mechanik (wichtig \u2014 nicht verwechseln)", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L14", + "community": 930, + "norm_label": "2. geld-mechanik (wichtig \u2014 nicht verwechseln)", + "id": "marketing_funding_partnership_plan_2_geld_mechanik_wichtig_nicht_verwechseln" + }, + { + "label": "3. Win-Win (warum jeder mitmacht)", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L24", + "community": 930, + "norm_label": "3. win-win (warum jeder mitmacht)", + "id": "marketing_funding_partnership_plan_3_win_win_warum_jeder_mitmacht" + }, + { + "label": "4. GmbH-Engpass? Nein.", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L36", + "community": 930, + "norm_label": "4. gmbh-engpass? nein.", + "id": "marketing_funding_partnership_plan_4_gmbh_engpass_nein" + }, + { + "label": "5. Kontakte + Sequenz", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L45", + "community": 930, + "norm_label": "5. kontakte + sequenz", + "id": "marketing_funding_partnership_plan_5_kontakte_sequenz" + }, + { + "label": "5b. Reihenfolge + Plan B/C \u2014 nicht von einer Person abh\u00e4ngen", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L56", + "community": 930, + "norm_label": "5b. reihenfolge + plan b/c \u2014 nicht von einer person abhangen", + "id": "marketing_funding_partnership_plan_5b_reihenfolge_plan_b_c_nicht_von_einer_person_abh\u00e4ngen" + }, + { + "label": "6. Was anh\u00e4ngen / verlinken (in beiden Mails)", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L81", + "community": 930, + "norm_label": "6. was anhangen / verlinken (in beiden mails)", + "id": "marketing_funding_partnership_plan_6_was_anh\u00e4ngen_verlinken_in_beiden_mails" + }, + { + "label": "Kurz-Vergleich (vs. die \u00fcblichen Blocker)", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L98", + "community": 930, + "norm_label": "kurz-vergleich (vs. die ublichen blocker)", + "id": "marketing_funding_partnership_plan_kurz_vergleich_vs_die_\u00fcblichen_blocker" + }, + { + "label": "7. Mail-Entwurf A \u2014 Ilona / FAGS", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L110", + "community": 930, + "norm_label": "7. mail-entwurf a \u2014 ilona / fags", + "id": "marketing_funding_partnership_plan_7_mail_entwurf_a_ilona_fags" + }, + { + "label": "8. Mail-Entwurf B \u2014 NLS Hannover", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L154", + "community": 930, + "norm_label": "8. mail-entwurf b \u2014 nls hannover", + "id": "marketing_funding_partnership_plan_8_mail_entwurf_b_nls_hannover" + }, + { + "label": "9. Mail-Entwurf C \u2014 Fachstelle (Plan B, z.B. Lukas-Werk / STEP)", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L195", + "community": 930, + "norm_label": "9. mail-entwurf c \u2014 fachstelle (plan b, z.b. lukas-werk / step)", + "id": "marketing_funding_partnership_plan_9_mail_entwurf_c_fachstelle_plan_b_z_b_lukas_werk_step" + }, + { + "label": "10. Die Sequenz in einem Satz", + "file_type": "document", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L234", + "community": 930, + "norm_label": "10. die sequenz in einem satz", + "id": "marketing_funding_partnership_plan_10_die_sequenz_in_einem_satz" + }, + { + "label": "2026-06-18-self-hosted-github-runner.md", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L1", + "community": 601, + "norm_label": "2026-06-18-self-hosted-github-runner.md", + "id": "docs_superpowers_plans_2026_06_18_self_hosted_github_runner_md" + }, + { + "label": "Self-Hosted GitHub Actions Runner Implementation Plan", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L1", + "community": 601, + "norm_label": "self-hosted github actions runner implementation plan", + "id": "plans_2026_06_18_self_hosted_github_runner_self_hosted_github_actions_runner_implementation_plan" + }, + { + "label": "File Structure", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L13", + "community": 601, + "norm_label": "file structure", + "id": "plans_2026_06_18_self_hosted_github_runner_file_structure" + }, + { + "label": "Task 1: Server `api.trucko.org` vorbereiten", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L25", + "community": 601, + "norm_label": "task 1: server `api.trucko.org` vorbereiten", + "id": "plans_2026_06_18_self_hosted_github_runner_task_1_server_api_trucko_org_vorbereiten" + }, + { + "label": "Task 2: GitHub Actions Runner installieren und registrieren", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L80", + "community": 601, + "norm_label": "task 2: github actions runner installieren und registrieren", + "id": "plans_2026_06_18_self_hosted_github_runner_task_2_github_actions_runner_installieren_und_registrieren" + }, + { + "label": "Task 3: SSH-Deploy-Key zwischen Servern einrichten", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L130", + "community": 601, + "norm_label": "task 3: ssh-deploy-key zwischen servern einrichten", + "id": "plans_2026_06_18_self_hosted_github_runner_task_3_ssh_deploy_key_zwischen_servern_einrichten" + }, + { + "label": "Task 4: GitHub Secrets aktualisieren", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L187", + "community": 601, + "norm_label": "task 4: github secrets aktualisieren", + "id": "plans_2026_06_18_self_hosted_github_runner_task_4_github_secrets_aktualisieren" + }, + { + "label": "Task 5: Workflows auf self-hosted Runner umstellen", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L220", + "community": 601, + "norm_label": "task 5: workflows auf self-hosted runner umstellen", + "id": "plans_2026_06_18_self_hosted_github_runner_task_5_workflows_auf_self_hosted_runner_umstellen" + }, + { + "label": "Task 6: Test-Deploy durchf\u00fchren", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L291", + "community": 601, + "norm_label": "task 6: test-deploy durchfuhren", + "id": "plans_2026_06_18_self_hosted_github_runner_task_6_test_deploy_durchf\u00fchren" + }, + { + "label": "Task 7: Alten Webhook-Deploy abschalten (optional, nach stabilem Betrieb)", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L347", + "community": 601, + "norm_label": "task 7: alten webhook-deploy abschalten (optional, nach stabilem betrieb)", + "id": "plans_2026_06_18_self_hosted_github_runner_task_7_alten_webhook_deploy_abschalten_optional_nach_stabilem_betrieb" + }, + { + "label": "Task 8: Cleanup und Monitoring", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L382", + "community": 601, + "norm_label": "task 8: cleanup und monitoring", + "id": "plans_2026_06_18_self_hosted_github_runner_task_8_cleanup_und_monitoring" + }, + { + "label": "Self-Review", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L415", + "community": 601, + "norm_label": "self-review", + "id": "plans_2026_06_18_self_hosted_github_runner_self_review" + }, + { + "label": "Spec coverage", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L417", + "community": 601, + "norm_label": "spec coverage", + "id": "plans_2026_06_18_self_hosted_github_runner_spec_coverage" + }, + { + "label": "Placeholder scan", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L427", + "community": 601, + "norm_label": "placeholder scan", + "id": "plans_2026_06_18_self_hosted_github_runner_placeholder_scan" + }, + { + "label": "Konsistenz", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L431", + "community": 601, + "norm_label": "konsistenz", + "id": "plans_2026_06_18_self_hosted_github_runner_konsistenz" + }, + { + "label": "2026-06-16-magic-dashboard-ios-section.md", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L1", + "community": 639, + "norm_label": "2026-06-16-magic-dashboard-ios-section.md", + "id": "docs_superpowers_plans_2026_06_16_magic_dashboard_ios_section_md" + }, + { + "label": "Magic Dashboard iOS Section \u2013 Implementation Plan", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L1", + "community": 639, + "norm_label": "magic dashboard ios section \u2013 implementation plan", + "id": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan" + }, + { + "label": "Task 1: Extend `useDeviceStatus.ts` to split devices by platform", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L13", + "community": 639, + "norm_label": "task 1: extend `usedevicestatus.ts` to split devices by platform", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_1_extend_usedevicestatus_ts_to_split_devices_by_platform" + }, + { + "label": "Task 2: Create `IosDeviceCard.vue`", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L63", + "community": 639, + "norm_label": "task 2: create `iosdevicecard.vue`", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_2_create_iosdevicecard_vue" + }, + { + "label": "Task 3: Create `UnknownIosDeviceCard.vue`", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L123", + "community": 639, + "norm_label": "task 3: create `unknowniosdevicecard.vue`", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_3_create_unknowniosdevicecard_vue" + }, + { + "label": "Task 4: Create `IosDeviceSection.vue`", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L152", + "community": 639, + "norm_label": "task 4: create `iosdevicesection.vue`", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_4_create_iosdevicesection_vue" + }, + { + "label": "Task 5: Update `status.vue`", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L214", + "community": 639, + "norm_label": "task 5: update `status.vue`", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_5_update_status_vue" + }, + { + "label": "Task 6: Extend `useProtectionStatus.ts` exports", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L277", + "community": 639, + "norm_label": "task 6: extend `useprotectionstatus.ts` exports", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_6_extend_useprotectionstatus_ts_exports" + }, + { + "label": "Task 7: Adjust `DeviceDetailSheet.vue` for iOS stars", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L302", + "community": 639, + "norm_label": "task 7: adjust `devicedetailsheet.vue` for ios stars", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_7_adjust_devicedetailsheet_vue_for_ios_stars" + }, + { + "label": "Task 8: Update `DeviceHeroCard.vue` and `DeviceListItem.vue`", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L336", + "community": 639, + "norm_label": "task 8: update `deviceherocard.vue` and `devicelistitem.vue`", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_8_update_deviceherocard_vue_and_devicelistitem_vue" + }, + { + "label": "Task 9: Add MDM version awareness (frontend foundation)", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L354", + "community": 639, + "norm_label": "task 9: add mdm version awareness (frontend foundation)", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_9_add_mdm_version_awareness_frontend_foundation" + }, + { + "label": "Task 10: Grace-period / Offboarding placeholder", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L383", + "community": 639, + "norm_label": "task 10: grace-period / offboarding placeholder", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_10_grace_period_offboarding_placeholder" + }, + { + "label": "Task 11: Verification and build", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L429", + "community": 639, + "norm_label": "task 11: verification and build", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_11_verification_and_build" + }, + { + "label": "Task 12: Commit changes", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L456", + "community": 639, + "norm_label": "task 12: commit changes", + "id": "plans_2026_06_16_magic_dashboard_ios_section_task_12_commit_changes" + }, + { + "label": "Spec Coverage Check", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L481", + "community": 639, + "norm_label": "spec coverage check", + "id": "plans_2026_06_16_magic_dashboard_ios_section_spec_coverage_check" + }, + { + "label": "Known Backend Dependencies (out of scope for this frontend plan)", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L496", + "community": 639, + "norm_label": "known backend dependencies (out of scope for this frontend plan)", + "id": "plans_2026_06_16_magic_dashboard_ios_section_known_backend_dependencies_out_of_scope_for_this_frontend_plan" + }, + { + "label": "2026-06-18-self-hosted-github-runner-design.md", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L1", + "community": 137, + "norm_label": "2026-06-18-self-hosted-github-runner-design.md", + "id": "docs_superpowers_specs_2026_06_18_self_hosted_github_runner_design_md" + }, + { + "label": "Self-Hosted GitHub Actions Runner f\u00fcr rebreak-monorepo", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L1", + "community": 137, + "norm_label": "self-hosted github actions runner fur rebreak-monorepo", + "id": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo" + }, + { + "label": "1. Zusammenfassung", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L10", + "community": 137, + "norm_label": "1. zusammenfassung", + "id": "specs_2026_06_18_self_hosted_github_runner_design_1_zusammenfassung" + }, + { + "label": "2. Kontext & Ausgangslage", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L20", + "community": 137, + "norm_label": "2. kontext & ausgangslage", + "id": "specs_2026_06_18_self_hosted_github_runner_design_2_kontext_ausgangslage" + }, + { + "label": "Aktueller Flow", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L22", + "community": 137, + "norm_label": "aktueller flow", + "id": "specs_2026_06_18_self_hosted_github_runner_design_aktueller_flow" + }, + { + "label": "Bestehende Komponenten (werden wiederverwendet)", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L40", + "community": 137, + "norm_label": "bestehende komponenten (werden wiederverwendet)", + "id": "specs_2026_06_18_self_hosted_github_runner_design_bestehende_komponenten_werden_wiederverwendet" + }, + { + "label": "Probleme mit dem aktuellen Setup", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L48", + "community": 137, + "norm_label": "probleme mit dem aktuellen setup", + "id": "specs_2026_06_18_self_hosted_github_runner_design_probleme_mit_dem_aktuellen_setup" + }, + { + "label": "3. Ziele", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L55", + "community": 137, + "norm_label": "3. ziele", + "id": "specs_2026_06_18_self_hosted_github_runner_design_3_ziele" + }, + { + "label": "4. Nicht-Ziele", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L62", + "community": 137, + "norm_label": "4. nicht-ziele", + "id": "specs_2026_06_18_self_hosted_github_runner_design_4_nicht_ziele" + }, + { + "label": "5. Architektur", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L71", + "community": 137, + "norm_label": "5. architektur", + "id": "specs_2026_06_18_self_hosted_github_runner_design_5_architektur" + }, + { + "label": "Komponenten", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L89", + "community": 137, + "norm_label": "komponenten", + "id": "specs_2026_06_18_self_hosted_github_runner_design_komponenten" + }, + { + "label": "6. Datenfluss (detailliert)", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L101", + "community": 137, + "norm_label": "6. datenfluss (detailliert)", + "id": "specs_2026_06_18_self_hosted_github_runner_design_6_datenfluss_detailliert" + }, + { + "label": "6.1 Backend-Deploy", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L103", + "community": 137, + "norm_label": "6.1 backend-deploy", + "id": "specs_2026_06_18_self_hosted_github_runner_design_6_1_backend_deploy" + }, + { + "label": "6.2 Admin-Deploy", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L117", + "community": 137, + "norm_label": "6.2 admin-deploy", + "id": "specs_2026_06_18_self_hosted_github_runner_design_6_2_admin_deploy" + }, + { + "label": "7. Sicherheit", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L126", + "community": 137, + "norm_label": "7. sicherheit", + "id": "specs_2026_06_18_self_hosted_github_runner_design_7_sicherheit" + }, + { + "label": "Runner-Isolation", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L128", + "community": 137, + "norm_label": "runner-isolation", + "id": "specs_2026_06_18_self_hosted_github_runner_design_runner_isolation" + }, + { + "label": "SSH-Zugriff", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L135", + "community": 137, + "norm_label": "ssh-zugriff", + "id": "specs_2026_06_18_self_hosted_github_runner_design_ssh_zugriff" + }, + { + "label": "Secrets", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L141", + "community": 137, + "norm_label": "secrets", + "id": "specs_2026_06_18_self_hosted_github_runner_design_secrets" + }, + { + "label": "8. Fehlerbehandlung", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L148", + "community": 137, + "norm_label": "8. fehlerbehandlung", + "id": "specs_2026_06_18_self_hosted_github_runner_design_8_fehlerbehandlung" + }, + { + "label": "Build-Fehler", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L150", + "community": 137, + "norm_label": "build-fehler", + "id": "specs_2026_06_18_self_hosted_github_runner_design_build_fehler" + }, + { + "label": "Deploy-Fehler", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L155", + "community": 137, + "norm_label": "deploy-fehler", + "id": "specs_2026_06_18_self_hosted_github_runner_design_deploy_fehler" + }, + { + "label": "Parallelit\u00e4t", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L161", + "community": 137, + "norm_label": "parallelitat", + "id": "specs_2026_06_18_self_hosted_github_runner_design_parallelit\u00e4t" + }, + { + "label": "9. Tests in CI", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L173", + "community": 137, + "norm_label": "9. tests in ci", + "id": "specs_2026_06_18_self_hosted_github_runner_design_9_tests_in_ci" + }, + { + "label": "10. Migrationsschritte", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L185", + "community": 137, + "norm_label": "10. migrationsschritte", + "id": "specs_2026_06_18_self_hosted_github_runner_design_10_migrationsschritte" + }, + { + "label": "11. Risiken & Mitigationen", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L214", + "community": 137, + "norm_label": "11. risiken & mitigationen", + "id": "specs_2026_06_18_self_hosted_github_runner_design_11_risiken_mitigationen" + }, + { + "label": "12. Offene Punkte", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L226", + "community": 137, + "norm_label": "12. offene punkte", + "id": "specs_2026_06_18_self_hosted_github_runner_design_12_offene_punkte" + }, + { + "label": "13. Erwartetes Ergebnis", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L235", + "community": 137, + "norm_label": "13. erwartetes ergebnis", + "id": "specs_2026_06_18_self_hosted_github_runner_design_13_erwartetes_ergebnis" + }, + { + "label": "2026-06-16-magic-dashboard-ios-section-design.md", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L1", + "community": 286, + "norm_label": "2026-06-16-magic-dashboard-ios-section-design.md", + "id": "docs_superpowers_specs_2026_06_16_magic_dashboard_ios_section_design_md" + }, + { + "label": "Magic Dashboard \u2013 iOS-Section Redesign", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L1", + "community": 286, + "norm_label": "magic dashboard \u2013 ios-section redesign", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign" + }, + { + "label": "Ziel", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L3", + "community": 286, + "norm_label": "ziel", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_ziel" + }, + { + "label": "Annahmen (aus dem Abstimmungsgespr\u00e4ch)", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L14", + "community": 286, + "norm_label": "annahmen (aus dem abstimmungsgesprach)", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_annahmen_aus_dem_abstimmungsgespr\u00e4ch" + }, + { + "label": "Seitenstruktur", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L23", + "community": 286, + "norm_label": "seitenstruktur", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_seitenstruktur" + }, + { + "label": "Neue Komponenten", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L41", + "community": 286, + "norm_label": "neue komponenten", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_neue_komponenten" + }, + { + "label": "`IosDeviceSection.vue`", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L43", + "community": 286, + "norm_label": "`iosdevicesection.vue`", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_iosdevicesection_vue" + }, + { + "label": "`IosDeviceCard.vue`", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L54", + "community": 286, + "norm_label": "`iosdevicecard.vue`", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_iosdevicecard_vue" + }, + { + "label": "`UnknownIosDeviceCard.vue`", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L74", + "community": 286, + "norm_label": "`unknowniosdevicecard.vue`", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_unknowniosdevicecard_vue" + }, + { + "label": "Datenfluss", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L86", + "community": 286, + "norm_label": "datenfluss", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_datenfluss" + }, + { + "label": "iOS-Matching", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L98", + "community": 286, + "norm_label": "ios-matching", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_ios_matching" + }, + { + "label": "Bestehende Komponenten \u2013 Anpassungen", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L109", + "community": 286, + "norm_label": "bestehende komponenten \u2013 anpassungen", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_bestehende_komponenten_anpassungen" + }, + { + "label": "`DeviceHeroCard.vue`", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L111", + "community": 286, + "norm_label": "`deviceherocard.vue`", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_deviceherocard_vue" + }, + { + "label": "`DeviceListItem.vue`", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L116", + "community": 286, + "norm_label": "`devicelistitem.vue`", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_devicelistitem_vue" + }, + { + "label": "`DeviceDetailSheet.vue`", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L121", + "community": 286, + "norm_label": "`devicedetailsheet.vue`", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_devicedetailsheet_vue" + }, + { + "label": "`useDeviceStatus.ts`", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L126", + "community": 286, + "norm_label": "`usedevicestatus.ts`", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_usedevicestatus_ts" + }, + { + "label": "On-Demand-Verhalten bleibt erhalten", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L133", + "community": 286, + "norm_label": "on-demand-verhalten bleibt erhalten", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_on_demand_verhalten_bleibt_erhalten" + }, + { + "label": "Fehlerbehandlung", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L141", + "community": 286, + "norm_label": "fehlerbehandlung", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_fehlerbehandlung" + }, + { + "label": "K\u00fcndigungs-Grace-Period & Offboarding", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L149", + "community": 286, + "norm_label": "kundigungs-grace-period & offboarding", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_k\u00fcndigungs_grace_period_offboarding" + }, + { + "label": "Offene Punkte / N\u00e4chste Schritte", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L163", + "community": 286, + "norm_label": "offene punkte / nachste schritte", + "id": "specs_2026_06_16_magic_dashboard_ios_section_design_offene_punkte_n\u00e4chste_schritte" + }, + { + "label": "2026-06-17-mdm-device-link-design.md", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L1", + "community": 931, + "norm_label": "2026-06-17-mdm-device-link-design.md", + "id": "docs_superpowers_specs_2026_06_17_mdm_device_link_design_md" + }, + { + "label": "MDM Device Link f\u00fcr Magic App \u2014 Design", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L1", + "community": 931, + "norm_label": "mdm device link fur magic app \u2014 design", + "id": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design" + }, + { + "label": "Ziel", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L3", + "community": 931, + "norm_label": "ziel", + "id": "specs_2026_06_17_mdm_device_link_design_ziel" + }, + { + "label": "Annahmen / Einschr\u00e4nkungen", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L6", + "community": 931, + "norm_label": "annahmen / einschrankungen", + "id": "specs_2026_06_17_mdm_device_link_design_annahmen_einschr\u00e4nkungen" + }, + { + "label": "Architektur", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L11", + "community": 931, + "norm_label": "architektur", + "id": "specs_2026_06_17_mdm_device_link_design_architektur" + }, + { + "label": "Datenmodell", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L27", + "community": 931, + "norm_label": "datenmodell", + "id": "specs_2026_06_17_mdm_device_link_design_datenmodell" + }, + { + "label": "Endpunkte", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L67", + "community": 931, + "norm_label": "endpunkte", + "id": "specs_2026_06_17_mdm_device_link_design_endpunkte" + }, + { + "label": "`GET /api/magic/devices/:deviceId/mdm`", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L69", + "community": 931, + "norm_label": "`get /api/magic/devices/:deviceid/mdm`", + "id": "specs_2026_06_17_mdm_device_link_design_get_api_magic_devices_deviceid_mdm" + }, + { + "label": "`POST /api/magic/devices/:deviceId/mdm-link`", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L95", + "community": 931, + "norm_label": "`post /api/magic/devices/:deviceid/mdm-link`", + "id": "specs_2026_06_17_mdm_device_link_design_post_api_magic_devices_deviceid_mdm_link" + }, + { + "label": "`POST /api/devices/protection-state`", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L100", + "community": 931, + "norm_label": "`post /api/devices/protection-state`", + "id": "specs_2026_06_17_mdm_device_link_design_post_api_devices_protection_state" + }, + { + "label": "Magic-App UI", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L115", + "community": 931, + "norm_label": "magic-app ui", + "id": "specs_2026_06_17_mdm_device_link_design_magic_app_ui" + }, + { + "label": "Infra / Env", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L123", + "community": 931, + "norm_label": "infra / env", + "id": "specs_2026_06_17_mdm_device_link_design_infra_env" + }, + { + "label": "Dateien", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L128", + "community": 931, + "norm_label": "dateien", + "id": "specs_2026_06_17_mdm_device_link_design_dateien" + }, + { + "label": "Test-Ergebnis (Staging)", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L148", + "community": 931, + "norm_label": "test-ergebnis (staging)", + "id": "specs_2026_06_17_mdm_device_link_design_test_ergebnis_staging" + }, + { + "label": "Offene TODOs", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L158", + "community": 931, + "norm_label": "offene todos", + "id": "specs_2026_06_17_mdm_device_link_design_offene_todos" + }, + { + "label": "LYRA_PERSONA.md", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L1", + "community": 201, + "norm_label": "lyra_persona.md", + "id": "ops_lyra_persona_md" + }, + { + "label": "Lyra Persona \u2014 Single Source of Truth", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L1", + "community": 201, + "norm_label": "lyra persona \u2014 single source of truth", + "id": "ops_lyra_persona_lyra_persona_single_source_of_truth" + }, + { + "label": "Identity", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L7", + "community": 201, + "norm_label": "identity", + "id": "ops_lyra_persona_identity" + }, + { + "label": "Modes", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L13", + "community": 201, + "norm_label": "modes", + "id": "ops_lyra_persona_modes" + }, + { + "label": "SOS-Crisis-Mode (`#sos`)", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L15", + "community": 201, + "norm_label": "sos-crisis-mode (`#sos`)", + "id": "ops_lyra_persona_sos_crisis_mode_sos" + }, + { + "label": "Coach-Casual-Mode (`#coach`)", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L24", + "community": 201, + "norm_label": "coach-casual-mode (`#coach`)", + "id": "ops_lyra_persona_coach_casual_mode_coach" + }, + { + "label": "Vokabular DE", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L32", + "community": 201, + "norm_label": "vokabular de", + "id": "ops_lyra_persona_vokabular_de" + }, + { + "label": "Vokabular EN", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L50", + "community": 201, + "norm_label": "vokabular en", + "id": "ops_lyra_persona_vokabular_en" + }, + { + "label": "Anonymit\u00e4t & Demographics", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L66", + "community": 201, + "norm_label": "anonymitat & demographics", + "id": "ops_lyra_persona_anonymit\u00e4t_demographics" + }, + { + "label": "Schutz-Architektur (Wissensstand 2026-05-25 nach Country-Pivot + MDM-VPN-Pivot)", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L75", + "community": 201, + "norm_label": "schutz-architektur (wissensstand 2026-05-25 nach country-pivot + mdm-vpn-pivot)", + "id": "ops_lyra_persona_schutz_architektur_wissensstand_2026_05_25_nach_country_pivot_mdm_vpn_pivot" + }, + { + "label": "iOS \u2014 zwei Schutzschichten", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L77", + "community": 201, + "norm_label": "ios \u2014 zwei schutzschichten", + "id": "ops_lyra_persona_ios_zwei_schutzschichten" + }, + { + "label": "Android \u2014 VPN + Bedienungshilfen", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L88", + "community": 201, + "norm_label": "android \u2014 vpn + bedienungshilfen", + "id": "ops_lyra_persona_android_vpn_bedienungshilfen" + }, + { + "label": "Custom-Domains (User-pflegbar, Layer 1)", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L93", + "community": 201, + "norm_label": "custom-domains (user-pflegbar, layer 1)", + "id": "ops_lyra_persona_custom_domains_user_pflegbar_layer_1" + }, + { + "label": "Selbstbindungs-Schutz via RebreakMagic (iOS/macOS, optional)", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L107", + "community": 201, + "norm_label": "selbstbindungs-schutz via rebreakmagic (ios/macos, optional)", + "id": "ops_lyra_persona_selbstbindungs_schutz_via_rebreakmagic_ios_macos_optional" + }, + { + "label": "Wie Lyra dar\u00fcber spricht", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L126", + "community": 201, + "norm_label": "wie lyra daruber spricht", + "id": "ops_lyra_persona_wie_lyra_dar\u00fcber_spricht" + }, + { + "label": "Wann Lyra RebreakMagic empfiehlt", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L151", + "community": 201, + "norm_label": "wann lyra rebreakmagic empfiehlt", + "id": "ops_lyra_persona_wann_lyra_rebreakmagic_empfiehlt" + }, + { + "label": "Voice-Picker (Legend-only, ElevenLabs)", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L163", + "community": 201, + "norm_label": "voice-picker (legend-only, elevenlabs)", + "id": "ops_lyra_persona_voice_picker_legend_only_elevenlabs" + }, + { + "label": "Forbidden-Phrases-Audit-Liste", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L173", + "community": 201, + "norm_label": "forbidden-phrases-audit-liste", + "id": "ops_lyra_persona_forbidden_phrases_audit_liste" + }, + { + "label": "Mode-Tag-Konvention", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L189", + "community": 201, + "norm_label": "mode-tag-konvention", + "id": "ops_lyra_persona_mode_tag_konvention" + }, + { + "label": "Pricing (Stand 2026-05-29) \u2014 `#coach` only", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L195", + "community": 201, + "norm_label": "pricing (stand 2026-05-29) \u2014 `#coach` only", + "id": "ops_lyra_persona_pricing_stand_2026_05_29_coach_only" + }, + { + "label": "Wie Lyra \u00fcber Pricing spricht", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L210", + "community": 201, + "norm_label": "wie lyra uber pricing spricht", + "id": "ops_lyra_persona_wie_lyra_\u00fcber_pricing_spricht" + }, + { + "label": "Mail-Schutz (Stand 2026-05-29) \u2014 `#shared`", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L222", + "community": 201, + "norm_label": "mail-schutz (stand 2026-05-29) \u2014 `#shared`", + "id": "ops_lyra_persona_mail_schutz_stand_2026_05_29_shared" + }, + { + "label": "Multi-Device (Legend) \u2014 `#coach`", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L239", + "community": 201, + "norm_label": "multi-device (legend) \u2014 `#coach`", + "id": "ops_lyra_persona_multi_device_legend_coach" + }, + { + "label": "RebreakMagic (siehe oben \u201eSelbstbindungs-Schutz via RebreakMagic\")", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L255", + "community": 201, + "norm_label": "rebreakmagic (siehe oben \u201eselbstbindungs-schutz via rebreakmagic\")", + "id": "ops_lyra_persona_rebreakmagic_siehe_oben_selbstbindungs_schutz_via_rebreakmagic" + }, + { + "label": "Beta-Phase & DiGA-Status (Stand 2026-05-29) \u2014 `#coach`", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L267", + "community": 201, + "norm_label": "beta-phase & diga-status (stand 2026-05-29) \u2014 `#coach`", + "id": "ops_lyra_persona_beta_phase_diga_status_stand_2026_05_29_coach" + }, + { + "label": "Forbidden-Pricing-Phrases \u2014 `#shared`", + "file_type": "document", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L281", + "community": 201, + "norm_label": "forbidden-pricing-phrases \u2014 `#shared`", + "id": "ops_lyra_persona_forbidden_pricing_phrases_shared" + }, + { + "label": "GAMES_1V1_MIGRATION_PLAN.md", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L1", + "community": 346, + "norm_label": "games_1v1_migration_plan.md", + "id": "ops_games_1v1_migration_plan_md" + }, + { + "label": "1v1 Games Migration Plan (Nuxt \u2192 rebreak-native)", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L1", + "community": 346, + "norm_label": "1v1 games migration plan (nuxt \u2192 rebreak-native)", + "id": "ops_games_1v1_migration_plan_1v1_games_migration_plan_nuxt_rebreak_native" + }, + { + "label": "1. Status quo Nuxt-Implementierung", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L9", + "community": 346, + "norm_label": "1. status quo nuxt-implementierung", + "id": "ops_games_1v1_migration_plan_1_status_quo_nuxt_implementierung" + }, + { + "label": "1.1 Frontend (Vue/Nuxt)", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L11", + "community": 346, + "norm_label": "1.1 frontend (vue/nuxt)", + "id": "ops_games_1v1_migration_plan_1_1_frontend_vue_nuxt" + }, + { + "label": "1.2 Backend (Nuxt-Server, Nitro)", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L23", + "community": 346, + "norm_label": "1.2 backend (nuxt-server, nitro)", + "id": "ops_games_1v1_migration_plan_1_2_backend_nuxt_server_nitro" + }, + { + "label": "1.3 DB-Schema", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L42", + "community": 346, + "norm_label": "1.3 db-schema", + "id": "ops_games_1v1_migration_plan_1_3_db_schema" + }, + { + "label": "1.4 State-Sync-Mechanismus (1 Satz)", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L56", + "community": 346, + "norm_label": "1.4 state-sync-mechanismus (1 satz)", + "id": "ops_games_1v1_migration_plan_1_4_state_sync_mechanismus_1_satz" + }, + { + "label": "1.5 Datenflussdiagramm (ASCII)", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L60", + "community": 346, + "norm_label": "1.5 datenflussdiagramm (ascii)", + "id": "ops_games_1v1_migration_plan_1_5_datenflussdiagramm_ascii" + }, + { + "label": "2. Migration-Plan", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L111", + "community": 346, + "norm_label": "2. migration-plan", + "id": "ops_games_1v1_migration_plan_2_migration_plan" + }, + { + "label": "Phase A \u2014 Backend-Endpoints in rebreak-monorepo", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L113", + "community": 346, + "norm_label": "phase a \u2014 backend-endpoints in rebreak-monorepo", + "id": "ops_games_1v1_migration_plan_phase_a_backend_endpoints_in_rebreak_monorepo" + }, + { + "label": "Phase B \u2014 DB-Migrations f\u00fcr game_sessions", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L122", + "community": 346, + "norm_label": "phase b \u2014 db-migrations fur game_sessions", + "id": "ops_games_1v1_migration_plan_phase_b_db_migrations_f\u00fcr_game_sessions" + }, + { + "label": "Phase C \u2014 RN-UI-Komponenten", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L134", + "community": 346, + "norm_label": "phase c \u2014 rn-ui-komponenten", + "id": "ops_games_1v1_migration_plan_phase_c_rn_ui_komponenten" + }, + { + "label": "Phase D \u2014 Realtime-Wiring", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L162", + "community": 346, + "norm_label": "phase d \u2014 realtime-wiring", + "id": "ops_games_1v1_migration_plan_phase_d_realtime_wiring" + }, + { + "label": "Phase E \u2014 Testing + Deploy", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L173", + "community": 346, + "norm_label": "phase e \u2014 testing + deploy", + "id": "ops_games_1v1_migration_plan_phase_e_testing_deploy" + }, + { + "label": "3. Architektur-Empfehlung \u2014 was wir besser machen", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L186", + "community": 346, + "norm_label": "3. architektur-empfehlung \u2014 was wir besser machen", + "id": "ops_games_1v1_migration_plan_3_architektur_empfehlung_was_wir_besser_machen" + }, + { + "label": "4. Risk-Assessment", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L200", + "community": 346, + "norm_label": "4. risk-assessment", + "id": "ops_games_1v1_migration_plan_4_risk_assessment" + }, + { + "label": "5. Open Questions an User", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L217", + "community": 346, + "norm_label": "5. open questions an user", + "id": "ops_games_1v1_migration_plan_5_open_questions_an_user" + }, + { + "label": "6. Migration-Aufwand-Summary", + "file_type": "document", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L244", + "community": 346, + "norm_label": "6. migration-aufwand-summary", + "id": "ops_games_1v1_migration_plan_6_migration_aufwand_summary" + }, + { + "label": "BUSINESS_PLAN_NBANK.md", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L1", + "community": 873, + "norm_label": "business_plan_nbank.md", + "id": "ops_business_plan_nbank_md" + }, + { + "label": "Businessplan Rebreak", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L1", + "community": 909, + "norm_label": "businessplan rebreak", + "id": "ops_business_plan_nbank_businessplan_rebreak" + }, + { + "label": "Antrag NBank Niedersachsen \u2014 Gr\u00fcndungskredit (Zielvolumen: 75.000 \u20ac)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L2", + "community": 909, + "norm_label": "antrag nbank niedersachsen \u2014 grundungskredit (zielvolumen: 75.000 \u20ac)", + "id": "ops_business_plan_nbank_antrag_nbank_niedersachsen_gr\u00fcndungskredit_zielvolumen_75_000" + }, + { + "label": "Inhaltsverzeichnis", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L12", + "community": 909, + "norm_label": "inhaltsverzeichnis", + "id": "ops_business_plan_nbank_inhaltsverzeichnis" + }, + { + "label": "1. Executive Summary", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L32", + "community": 873, + "norm_label": "1. executive summary", + "id": "ops_business_plan_nbank_1_executive_summary" + }, + { + "label": "2. Unternehmen", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L54", + "community": 894, + "norm_label": "2. unternehmen", + "id": "ops_business_plan_nbank_2_unternehmen" + }, + { + "label": "2.1 Gr\u00fcnder", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L56", + "community": 894, + "norm_label": "2.1 grunder", + "id": "ops_business_plan_nbank_2_1_gr\u00fcnder" + }, + { + "label": "2.2 Sitz & Rechtsform", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L66", + "community": 894, + "norm_label": "2.2 sitz & rechtsform", + "id": "ops_business_plan_nbank_2_2_sitz_rechtsform" + }, + { + "label": "2.3 Vision", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L78", + "community": 894, + "norm_label": "2.3 vision", + "id": "ops_business_plan_nbank_2_3_vision" + }, + { + "label": "2.4 Mission", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L82", + "community": 894, + "norm_label": "2.4 mission", + "id": "ops_business_plan_nbank_2_4_mission" + }, + { + "label": "2.5 Werte / Leitplanken", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L89", + "community": 894, + "norm_label": "2.5 werte / leitplanken", + "id": "ops_business_plan_nbank_2_5_werte_leitplanken" + }, + { + "label": "3. Produkt & Technologie", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L98", + "community": 875, + "norm_label": "3. produkt & technologie", + "id": "ops_business_plan_nbank_3_produkt_technologie" + }, + { + "label": "3.1 Produkt-\u00dcberblick", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L100", + "community": 875, + "norm_label": "3.1 produkt-uberblick", + "id": "ops_business_plan_nbank_3_1_produkt_\u00fcberblick" + }, + { + "label": "3.2 Ger\u00e4teschutz (Layer 1)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L111", + "community": 875, + "norm_label": "3.2 gerateschutz (layer 1)", + "id": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1" + }, + { + "label": "iOS", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L113", + "community": 875, + "norm_label": "ios", + "id": "ops_business_plan_nbank_ios" + }, + { + "label": "Android", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L119", + "community": 875, + "norm_label": "android", + "id": "ops_business_plan_nbank_android" + }, + { + "label": "macOS", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L124", + "community": 875, + "norm_label": "macos", + "id": "ops_business_plan_nbank_macos" + }, + { + "label": "Custom-Domains (User-pflegbar)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L128", + "community": 875, + "norm_label": "custom-domains (user-pflegbar)", + "id": "ops_business_plan_nbank_custom_domains_user_pflegbar" + }, + { + "label": "3.3 Mail-Schutz (Layer 2)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L134", + "community": 875, + "norm_label": "3.3 mail-schutz (layer 2)", + "id": "ops_business_plan_nbank_3_3_mail_schutz_layer_2" + }, + { + "label": "3.4 Lyra \u2014 KI-Coach (Layer 3)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L142", + "community": 875, + "norm_label": "3.4 lyra \u2014 ki-coach (layer 3)", + "id": "ops_business_plan_nbank_3_4_lyra_ki_coach_layer_3" + }, + { + "label": "3.5 Streak, Community, Onboarding", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L150", + "community": 875, + "norm_label": "3.5 streak, community, onboarding", + "id": "ops_business_plan_nbank_3_5_streak_community_onboarding" + }, + { + "label": "3.6 Rebreak Magic \u2014 Selbstbindungs-Modus (optional)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L156", + "community": 875, + "norm_label": "3.6 rebreak magic \u2014 selbstbindungs-modus (optional)", + "id": "ops_business_plan_nbank_3_6_rebreak_magic_selbstbindungs_modus_optional" + }, + { + "label": "3.7 Multi-Device", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L166", + "community": 875, + "norm_label": "3.7 multi-device", + "id": "ops_business_plan_nbank_3_7_multi_device" + }, + { + "label": "3.8 Tech-Stack (Kurzfassung)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L171", + "community": 875, + "norm_label": "3.8 tech-stack (kurzfassung)", + "id": "ops_business_plan_nbank_3_8_tech_stack_kurzfassung" + }, + { + "label": "3.9 Plattform-Coverage-Strategie", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L185", + "community": 875, + "norm_label": "3.9 plattform-coverage-strategie", + "id": "ops_business_plan_nbank_3_9_plattform_coverage_strategie" + }, + { + "label": "4. Problem & Markt", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L191", + "community": 882, + "norm_label": "4. problem & markt", + "id": "ops_business_plan_nbank_4_problem_markt" + }, + { + "label": "4.1 Pr\u00e4valenz Gl\u00fccksspielsucht in Deutschland", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L193", + "community": 882, + "norm_label": "4.1 pravalenz glucksspielsucht in deutschland", + "id": "ops_business_plan_nbank_4_1_pr\u00e4valenz_gl\u00fccksspielsucht_in_deutschland" + }, + { + "label": "4.2 Strukturelle Versorgungsl\u00fccken", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L206", + "community": 882, + "norm_label": "4.2 strukturelle versorgungslucken", + "id": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken" + }, + { + "label": "L\u00fccke 1 \u2014 Offshore-Schwarzmarkt nach OASIS-Sperrung", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L208", + "community": 882, + "norm_label": "lucke 1 \u2014 offshore-schwarzmarkt nach oasis-sperrung", + "id": "ops_business_plan_nbank_l\u00fccke_1_offshore_schwarzmarkt_nach_oasis_sperrung" + }, + { + "label": "L\u00fccke 2 \u2014 Werbe-Druck via E-Mail", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L215", + "community": 882, + "norm_label": "lucke 2 \u2014 werbe-druck via e-mail", + "id": "ops_business_plan_nbank_l\u00fccke_2_werbe_druck_via_e_mail" + }, + { + "label": "L\u00fccke 3 \u2014 Zeit zwischen Beratungsterminen", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L222", + "community": 882, + "norm_label": "lucke 3 \u2014 zeit zwischen beratungsterminen", + "id": "ops_business_plan_nbank_l\u00fccke_3_zeit_zwischen_beratungsterminen" + }, + { + "label": "L\u00fccke 4 \u2014 Ger\u00e4te-Bypass", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L229", + "community": 882, + "norm_label": "lucke 4 \u2014 gerate-bypass", + "id": "ops_business_plan_nbank_l\u00fccke_4_ger\u00e4te_bypass" + }, + { + "label": "4.3 Marktgr\u00f6\u00dfe (Top-Down + Bottom-Up)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L234", + "community": 882, + "norm_label": "4.3 marktgro\u00dfe (top-down + bottom-up)", + "id": "ops_business_plan_nbank_4_3_marktgr\u00f6sse_top_down_bottom_up" + }, + { + "label": "Top-Down (Deutschland)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L236", + "community": 882, + "norm_label": "top-down (deutschland)", + "id": "ops_business_plan_nbank_top_down_deutschland" + }, + { + "label": "Bottom-Up \u2014 Conversion-Annahmen", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L244", + "community": 882, + "norm_label": "bottom-up \u2014 conversion-annahmen", + "id": "ops_business_plan_nbank_bottom_up_conversion_annahmen" + }, + { + "label": "4.4 Regulatorisches Fenster", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L254", + "community": 882, + "norm_label": "4.4 regulatorisches fenster", + "id": "ops_business_plan_nbank_4_4_regulatorisches_fenster" + }, + { + "label": "5. Zielgruppe", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L261", + "community": 901, + "norm_label": "5. zielgruppe", + "id": "ops_business_plan_nbank_5_zielgruppe" + }, + { + "label": "5.1 Kernpersona \u2014 \u201eMarcus, 38\"", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L263", + "community": 901, + "norm_label": "5.1 kernpersona \u2014 \u201emarcus, 38\"", + "id": "ops_business_plan_nbank_5_1_kernpersona_marcus_38" + }, + { + "label": "5.2 Sekund\u00e4rpersona \u2014 Angeh\u00f6rige \u201eSandra, 41\"", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L277", + "community": 901, + "norm_label": "5.2 sekundarpersona \u2014 angehorige \u201esandra, 41\"", + "id": "ops_business_plan_nbank_5_2_sekund\u00e4rpersona_angeh\u00f6rige_sandra_41" + }, + { + "label": "5.3 Terti\u00e4re Persona \u2014 B2B-Multiplikator \u201eFachstellenleiter Dr. K.\" (Phase 2)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L285", + "community": 901, + "norm_label": "5.3 tertiare persona \u2014 b2b-multiplikator \u201efachstellenleiter dr. k.\" (phase 2)", + "id": "ops_business_plan_nbank_5_3_terti\u00e4re_persona_b2b_multiplikator_fachstellenleiter_dr_k_phase_2" + }, + { + "label": "6. Wettbewerb", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L296", + "community": 873, + "norm_label": "6. wettbewerb", + "id": "ops_business_plan_nbank_6_wettbewerb" + }, + { + "label": "6.1 Wettbewerbs-Matrix (verifiziert Stand 2026)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L298", + "community": 873, + "norm_label": "6.1 wettbewerbs-matrix (verifiziert stand 2026)", + "id": "ops_business_plan_nbank_6_1_wettbewerbs_matrix_verifiziert_stand_2026" + }, + { + "label": "6.2 USP-Analyse Rebreak", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L310", + "community": 873, + "norm_label": "6.2 usp-analyse rebreak", + "id": "ops_business_plan_nbank_6_2_usp_analyse_rebreak" + }, + { + "label": "6.3 Was Rebreak bewusst NICHT macht", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L322", + "community": 873, + "norm_label": "6.3 was rebreak bewusst nicht macht", + "id": "ops_business_plan_nbank_6_3_was_rebreak_bewusst_nicht_macht" + }, + { + "label": "7. Gesch\u00e4ftsmodell", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L330", + "community": 899, + "norm_label": "7. geschaftsmodell", + "id": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell" + }, + { + "label": "7.1 Erl\u00f6smodell (Stand 2026-05-29)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L332", + "community": 899, + "norm_label": "7.1 erlosmodell (stand 2026-05-29)", + "id": "ops_business_plan_nbank_7_1_erl\u00f6smodell_stand_2026_05_29" + }, + { + "label": "7.2 Erl\u00f6squellen mittel- bis langfristig", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L344", + "community": 899, + "norm_label": "7.2 erlosquellen mittel- bis langfristig", + "id": "ops_business_plan_nbank_7_2_erl\u00f6squellen_mittel_bis_langfristig" + }, + { + "label": "7.3 Unit-Economics (Sch\u00e4tzung)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L351", + "community": 899, + "norm_label": "7.3 unit-economics (schatzung)", + "id": "ops_business_plan_nbank_7_3_unit_economics_sch\u00e4tzung" + }, + { + "label": "7.4 Pricing-Disziplin", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L366", + "community": 899, + "norm_label": "7.4 pricing-disziplin", + "id": "ops_business_plan_nbank_7_4_pricing_disziplin" + }, + { + "label": "8. Marketing & Vertrieb", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L374", + "community": 895, + "norm_label": "8. marketing & vertrieb", + "id": "ops_business_plan_nbank_8_marketing_vertrieb" + }, + { + "label": "8.1 Vertriebs-Strategie auf einen Blick", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L376", + "community": 895, + "norm_label": "8.1 vertriebs-strategie auf einen blick", + "id": "ops_business_plan_nbank_8_1_vertriebs_strategie_auf_einen_blick" + }, + { + "label": "8.2 B2B-Outreach (Hauptkanal Jahr 1)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L387", + "community": 895, + "norm_label": "8.2 b2b-outreach (hauptkanal jahr 1)", + "id": "ops_business_plan_nbank_8_2_b2b_outreach_hauptkanal_jahr_1" + }, + { + "label": "8.3 Content-Strategie (B2C)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L404", + "community": 895, + "norm_label": "8.3 content-strategie (b2c)", + "id": "ops_business_plan_nbank_8_3_content_strategie_b2c" + }, + { + "label": "8.4 Brand-Position", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L415", + "community": 895, + "norm_label": "8.4 brand-position", + "id": "ops_business_plan_nbank_8_4_brand_position" + }, + { + "label": "8.5 PR-Anker 2026/27", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L423", + "community": 895, + "norm_label": "8.5 pr-anker 2026/27", + "id": "ops_business_plan_nbank_8_5_pr_anker_2026_27" + }, + { + "label": "9. Organisation & Team", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L431", + "community": 902, + "norm_label": "9. organisation & team", + "id": "ops_business_plan_nbank_9_organisation_team" + }, + { + "label": "9.1 Status Quo (29.05.2026)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L433", + "community": 902, + "norm_label": "9.1 status quo (29.05.2026)", + "id": "ops_business_plan_nbank_9_1_status_quo_29_05_2026" + }, + { + "label": "9.2 Geplante Hires (Jahr 2, nach F\u00f6rderzusage)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L446", + "community": 902, + "norm_label": "9.2 geplante hires (jahr 2, nach forderzusage)", + "id": "ops_business_plan_nbank_9_2_geplante_hires_jahr_2_nach_f\u00f6rderzusage" + }, + { + "label": "9.3 Externe Partner", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L457", + "community": 902, + "norm_label": "9.3 externe partner", + "id": "ops_business_plan_nbank_9_3_externe_partner" + }, + { + "label": "10. SWOT-Analyse", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L470", + "community": 873, + "norm_label": "10. swot-analyse", + "id": "ops_business_plan_nbank_10_swot_analyse" + }, + { + "label": "Strengths", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L472", + "community": 873, + "norm_label": "strengths", + "id": "ops_business_plan_nbank_strengths" + }, + { + "label": "Weaknesses", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L480", + "community": 873, + "norm_label": "weaknesses", + "id": "ops_business_plan_nbank_weaknesses" + }, + { + "label": "Opportunities", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L488", + "community": 873, + "norm_label": "opportunities", + "id": "ops_business_plan_nbank_opportunities" + }, + { + "label": "Threats", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L495", + "community": 873, + "norm_label": "threats", + "id": "ops_business_plan_nbank_threats" + }, + { + "label": "11. Roadmap 24 Monate", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L505", + "community": 885, + "norm_label": "11. roadmap 24 monate", + "id": "ops_business_plan_nbank_11_roadmap_24_monate" + }, + { + "label": "11.1 Visuelle Roadmap", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L507", + "community": 885, + "norm_label": "11.1 visuelle roadmap", + "id": "ops_business_plan_nbank_11_1_visuelle_roadmap" + }, + { + "label": "11.2 Quartals-Detail", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L515", + "community": 885, + "norm_label": "11.2 quartals-detail", + "id": "ops_business_plan_nbank_11_2_quartals_detail" + }, + { + "label": "Q2/2026 (jetzt, vor F\u00f6rderung)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L517", + "community": 885, + "norm_label": "q2/2026 (jetzt, vor forderung)", + "id": "ops_business_plan_nbank_q2_2026_jetzt_vor_f\u00f6rderung" + }, + { + "label": "Q3/2026 (F\u00f6rderzusage angenommen)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L523", + "community": 885, + "norm_label": "q3/2026 (forderzusage angenommen)", + "id": "ops_business_plan_nbank_q3_2026_f\u00f6rderzusage_angenommen" + }, + { + "label": "Q4/2026", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L530", + "community": 885, + "norm_label": "q4/2026", + "id": "ops_business_plan_nbank_q4_2026" + }, + { + "label": "Q1/2027", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L536", + "community": 885, + "norm_label": "q1/2027", + "id": "ops_business_plan_nbank_q1_2027" + }, + { + "label": "Q2/2027", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L541", + "community": 885, + "norm_label": "q2/2027", + "id": "ops_business_plan_nbank_q2_2027" + }, + { + "label": "Q3/2027", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L546", + "community": 885, + "norm_label": "q3/2027", + "id": "ops_business_plan_nbank_q3_2027" + }, + { + "label": "Q4/2027", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L550", + "community": 885, + "norm_label": "q4/2027", + "id": "ops_business_plan_nbank_q4_2027" + }, + { + "label": "12. 3-Jahres-Finanzplan", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L557", + "community": 897, + "norm_label": "12. 3-jahres-finanzplan", + "id": "ops_business_plan_nbank_12_3_jahres_finanzplan" + }, + { + "label": "12.1 Annahmen-Block", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L562", + "community": 897, + "norm_label": "12.1 annahmen-block", + "id": "ops_business_plan_nbank_12_1_annahmen_block" + }, + { + "label": "12.2 GuV-\u00dcbersicht (Plan)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L573", + "community": 897, + "norm_label": "12.2 guv-ubersicht (plan)", + "id": "ops_business_plan_nbank_12_2_guv_\u00fcbersicht_plan" + }, + { + "label": "12.3 Liquidit\u00e4ts-Rohbild", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L600", + "community": 897, + "norm_label": "12.3 liquiditats-rohbild", + "id": "ops_business_plan_nbank_12_3_liquidit\u00e4ts_rohbild" + }, + { + "label": "12.4 Break-Even-Logik", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L612", + "community": 897, + "norm_label": "12.4 break-even-logik", + "id": "ops_business_plan_nbank_12_4_break_even_logik" + }, + { + "label": "13. Finanzierungsbedarf 75.000 \u20ac", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L619", + "community": 898, + "norm_label": "13. finanzierungsbedarf 75.000 \u20ac", + "id": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000" + }, + { + "label": "13.1 Verwendungsplan", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L621", + "community": 898, + "norm_label": "13.1 verwendungsplan", + "id": "ops_business_plan_nbank_13_1_verwendungsplan" + }, + { + "label": "13.2 Eigenkapital-Anteil", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L634", + "community": 898, + "norm_label": "13.2 eigenkapital-anteil", + "id": "ops_business_plan_nbank_13_2_eigenkapital_anteil" + }, + { + "label": "13.3 Warum kein Beteiligungskapital in Phase 1", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L643", + "community": 898, + "norm_label": "13.3 warum kein beteiligungskapital in phase 1", + "id": "ops_business_plan_nbank_13_3_warum_kein_beteiligungskapital_in_phase_1" + }, + { + "label": "13.4 Tilgungsf\u00e4higkeit", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L649", + "community": 898, + "norm_label": "13.4 tilgungsfahigkeit", + "id": "ops_business_plan_nbank_13_4_tilgungsf\u00e4higkeit" + }, + { + "label": "14. Risiken & Mitigation", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L659", + "community": 873, + "norm_label": "14. risiken & mitigation", + "id": "ops_business_plan_nbank_14_risiken_mitigation" + }, + { + "label": "14.1 Risiko-Matrix", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L661", + "community": 873, + "norm_label": "14.1 risiko-matrix", + "id": "ops_business_plan_nbank_14_1_risiko_matrix" + }, + { + "label": "14.2 Realistischer Worst-Case 24 Monate", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L676", + "community": 873, + "norm_label": "14.2 realistischer worst-case 24 monate", + "id": "ops_business_plan_nbank_14_2_realistischer_worst_case_24_monate" + }, + { + "label": "15. Anhang", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L690", + "community": 890, + "norm_label": "15. anhang", + "id": "ops_business_plan_nbank_15_anhang" + }, + { + "label": "A. CV Chahine Brini", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L692", + "community": 890, + "norm_label": "a. cv chahine brini", + "id": "ops_business_plan_nbank_a_cv_chahine_brini" + }, + { + "label": "B. Vorl\u00e4ufige LOI-Liste", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L696", + "community": 890, + "norm_label": "b. vorlaufige loi-liste", + "id": "ops_business_plan_nbank_b_vorl\u00e4ufige_loi_liste" + }, + { + "label": "C. Quellen & Belege", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L710", + "community": 890, + "norm_label": "c. quellen & belege", + "id": "ops_business_plan_nbank_c_quellen_belege" + }, + { + "label": "D. App-Demo", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L720", + "community": 890, + "norm_label": "d. app-demo", + "id": "ops_business_plan_nbank_d_app_demo" + }, + { + "label": "E. Screenshots der App", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L725", + "community": 890, + "norm_label": "e. screenshots der app", + "id": "ops_business_plan_nbank_e_screenshots_der_app" + }, + { + "label": "F. Lyra-Persona / Produkt-Spezifikation (Auszug)", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L729", + "community": 890, + "norm_label": "f. lyra-persona / produkt-spezifikation (auszug)", + "id": "ops_business_plan_nbank_f_lyra_persona_produkt_spezifikation_auszug" + }, + { + "label": "G. Kontakt", + "file_type": "document", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L733", + "community": 890, + "norm_label": "g. kontakt", + "id": "ops_business_plan_nbank_g_kontakt" + }, + { + "label": "UI_MIGRATION_PLAN.md", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L1", + "community": 165, + "norm_label": "ui_migration_plan.md", + "id": "ops_ui_migration_plan_md" + }, + { + "label": "UI Migration Plan \u2014 Settings + Profile (Nuxt \u2192 rebreak-native)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L1", + "community": 165, + "norm_label": "ui migration plan \u2014 settings + profile (nuxt \u2192 rebreak-native)", + "id": "ops_ui_migration_plan_ui_migration_plan_settings_profile_nuxt_rebreak_native" + }, + { + "label": "1. Status Quo", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L10", + "community": 165, + "norm_label": "1. status quo", + "id": "ops_ui_migration_plan_1_status_quo" + }, + { + "label": "Nuxt-App (`~/mono/trucko-monorepo/apps/rebreak/app/pages/`)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L12", + "community": 165, + "norm_label": "nuxt-app (`~/mono/trucko-monorepo/apps/rebreak/app/pages/`)", + "id": "ops_ui_migration_plan_nuxt_app_mono_trucko_monorepo_apps_rebreak_app_pages" + }, + { + "label": "rebreak-native \u2014 was schon existiert", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L30", + "community": 165, + "norm_label": "rebreak-native \u2014 was schon existiert", + "id": "ops_ui_migration_plan_rebreak_native_was_schon_existiert" + }, + { + "label": "Was komplett fehlt im rebreak-native", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L38", + "community": 165, + "norm_label": "was komplett fehlt im rebreak-native", + "id": "ops_ui_migration_plan_was_komplett_fehlt_im_rebreak_native" + }, + { + "label": "2. Header-Dropdown-Menu Architektur", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L52", + "community": 165, + "norm_label": "2. header-dropdown-menu architektur", + "id": "ops_ui_migration_plan_2_header_dropdown_menu_architektur" + }, + { + "label": "3. Settings-Page Struktur (Migration-Ziel)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L81", + "community": 165, + "norm_label": "3. settings-page struktur (migration-ziel)", + "id": "ops_ui_migration_plan_3_settings_page_struktur_migration_ziel" + }, + { + "label": "Tab 1 \u2014 Streak (MVP)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L85", + "community": 165, + "norm_label": "tab 1 \u2014 streak (mvp)", + "id": "ops_ui_migration_plan_tab_1_streak_mvp" + }, + { + "label": "Tab 2 \u2014 Profil (MVP)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L90", + "community": 165, + "norm_label": "tab 2 \u2014 profil (mvp)", + "id": "ops_ui_migration_plan_tab_2_profil_mvp" + }, + { + "label": "Tab 3 \u2014 Einstellungen (MVP)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L96", + "community": 165, + "norm_label": "tab 3 \u2014 einstellungen (mvp)", + "id": "ops_ui_migration_plan_tab_3_einstellungen_mvp" + }, + { + "label": "Tab 4 \u2014 Lyra (Legend-only)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L106", + "community": 165, + "norm_label": "tab 4 \u2014 lyra (legend-only)", + "id": "ops_ui_migration_plan_tab_4_lyra_legend_only" + }, + { + "label": "Tab 5 \u2014 Debug (gated `__DEV__` || internal-user)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L111", + "community": 165, + "norm_label": "tab 5 \u2014 debug (gated `__dev__` || internal-user)", + "id": "ops_ui_migration_plan_tab_5_debug_gated_dev_internal_user" + }, + { + "label": "Followup (NICHT MVP)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L117", + "community": 165, + "norm_label": "followup (nicht mvp)", + "id": "ops_ui_migration_plan_followup_nicht_mvp" + }, + { + "label": "4. iOS-Keyboard-Fix f\u00fcr SOS-Page", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L125", + "community": 165, + "norm_label": "4. ios-keyboard-fix fur sos-page", + "id": "ops_ui_migration_plan_4_ios_keyboard_fix_f\u00fcr_sos_page" + }, + { + "label": "Pattern aus `components/PostCommentsSheet.tsx`", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L127", + "community": 165, + "norm_label": "pattern aus `components/postcommentssheet.tsx`", + "id": "ops_ui_migration_plan_pattern_aus_components_postcommentssheet_tsx" + }, + { + "label": "Was urge.tsx aktuell macht (line 1144)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L136", + "community": 165, + "norm_label": "was urge.tsx aktuell macht (line 1144)", + "id": "ops_ui_migration_plan_was_urge_tsx_aktuell_macht_line_1144" + }, + { + "label": "Vorgeschlagener Fix f\u00fcr `app/urge.tsx`", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L144", + "community": 165, + "norm_label": "vorgeschlagener fix fur `app/urge.tsx`", + "id": "ops_ui_migration_plan_vorgeschlagener_fix_f\u00fcr_app_urge_tsx" + }, + { + "label": "Files anzupassen", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L158", + "community": 165, + "norm_label": "files anzupassen", + "id": "ops_ui_migration_plan_files_anzupassen" + }, + { + "label": "5. Lyra-Voice-Feature", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L164", + "community": 165, + "norm_label": "5. lyra-voice-feature", + "id": "ops_ui_migration_plan_5_lyra_voice_feature" + }, + { + "label": "Status backend", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L166", + "community": 165, + "norm_label": "status backend", + "id": "ops_ui_migration_plan_status_backend" + }, + { + "label": "Frage: DB-Schema-Change n\u00f6tig?", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L172", + "community": 165, + "norm_label": "frage: db-schema-change notig?", + "id": "ops_ui_migration_plan_frage_db_schema_change_n\u00f6tig" + }, + { + "label": "API-Changes", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L193", + "community": 165, + "norm_label": "api-changes", + "id": "ops_ui_migration_plan_api_changes" + }, + { + "label": "Frontend-Flow", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L200", + "community": 165, + "norm_label": "frontend-flow", + "id": "ops_ui_migration_plan_frontend_flow" + }, + { + "label": "Voices initial (nice-to-have hardcoded)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L209", + "community": 165, + "norm_label": "voices initial (nice-to-have hardcoded)", + "id": "ops_ui_migration_plan_voices_initial_nice_to_have_hardcoded" + }, + { + "label": "6. Migration-Reihenfolge (Phase 2/3/4)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L219", + "community": 165, + "norm_label": "6. migration-reihenfolge (phase 2/3/4)", + "id": "ops_ui_migration_plan_6_migration_reihenfolge_phase_2_3_4" + }, + { + "label": "Phase 2 \u2014 Quick Wins (1\u20132 days)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L221", + "community": 165, + "norm_label": "phase 2 \u2014 quick wins (1\u20132 days)", + "id": "ops_ui_migration_plan_phase_2_quick_wins_1_2_days" + }, + { + "label": "Phase 3 \u2014 MVP-Cutover (3\u20135 days)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L226", + "community": 165, + "norm_label": "phase 3 \u2014 mvp-cutover (3\u20135 days)", + "id": "ops_ui_migration_plan_phase_3_mvp_cutover_3_5_days" + }, + { + "label": "Phase 4 \u2014 Legend Features (2\u20133 days)", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L232", + "community": 165, + "norm_label": "phase 4 \u2014 legend features (2\u20133 days)", + "id": "ops_ui_migration_plan_phase_4_legend_features_2_3_days" + }, + { + "label": "Phase 5 \u2014 Followup", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L238", + "community": 165, + "norm_label": "phase 5 \u2014 followup", + "id": "ops_ui_migration_plan_phase_5_followup" + }, + { + "label": "7. Top-3 Risiken", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L246", + "community": 165, + "norm_label": "7. top-3 risiken", + "id": "ops_ui_migration_plan_7_top_3_risiken" + }, + { + "label": "8. Empfehlung \u2014 erster Schritt in Phase 2", + "file_type": "document", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L254", + "community": 165, + "norm_label": "8. empfehlung \u2014 erster schritt in phase 2", + "id": "ops_ui_migration_plan_8_empfehlung_erster_schritt_in_phase_2" + }, + { + "label": "COMPLIANCE_ROADMAP.md", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L1", + "community": 166, + "norm_label": "compliance_roadmap.md", + "id": "ops_compliance_roadmap_md" + }, + { + "label": "Rebreak \u2014 Compliance- & Zertifizierungs-Roadmap", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L1", + "community": 166, + "norm_label": "rebreak \u2014 compliance- & zertifizierungs-roadmap", + "id": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap" + }, + { + "label": "0. Leitprinzipien", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L9", + "community": 166, + "norm_label": "0. leitprinzipien", + "id": "ops_compliance_roadmap_0_leitprinzipien" + }, + { + "label": "1. Phasen-Plan", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L18", + "community": 166, + "norm_label": "1. phasen-plan", + "id": "ops_compliance_roadmap_1_phasen_plan" + }, + { + "label": "2. Phase 1 im Detail (Q3 2026 \u2014 direkt nach NBank)", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L34", + "community": 166, + "norm_label": "2. phase 1 im detail (q3 2026 \u2014 direkt nach nbank)", + "id": "ops_compliance_roadmap_2_phase_1_im_detail_q3_2026_direkt_nach_nbank" + }, + { + "label": "2.1 Externer Datenschutzbeauftragter (DSB)", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L36", + "community": 166, + "norm_label": "2.1 externer datenschutzbeauftragter (dsb)", + "id": "ops_compliance_roadmap_2_1_externer_datenschutzbeauftragter_dsb" + }, + { + "label": "2.2 Datenschutz-Folgenabsch\u00e4tzung (DSFA, Art. 35 DSGVO)", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L46", + "community": 166, + "norm_label": "2.2 datenschutz-folgenabschatzung (dsfa, art. 35 dsgvo)", + "id": "ops_compliance_roadmap_2_2_datenschutz_folgenabsch\u00e4tzung_dsfa_art_35_dsgvo" + }, + { + "label": "2.3 AV-Vertr\u00e4ge (Auftragsverarbeitung, Art. 28 DSGVO)", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L58", + "community": 166, + "norm_label": "2.3 av-vertrage (auftragsverarbeitung, art. 28 dsgvo)", + "id": "ops_compliance_roadmap_2_3_av_vertr\u00e4ge_auftragsverarbeitung_art_28_dsgvo" + }, + { + "label": "Groq / LLM-Schrems-II \u2014 die drei Optionen", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L69", + "community": 166, + "norm_label": "groq / llm-schrems-ii \u2014 die drei optionen", + "id": "ops_compliance_roadmap_groq_llm_schrems_ii_die_drei_optionen" + }, + { + "label": "2.4 Datenschutzerkl\u00e4rung + Cookie-/Consent-Konstrukt", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L77", + "community": 166, + "norm_label": "2.4 datenschutzerklarung + cookie-/consent-konstrukt", + "id": "ops_compliance_roadmap_2_4_datenschutzerkl\u00e4rung_cookie_consent_konstrukt" + }, + { + "label": "2.5 Verarbeitungsverzeichnis (Art. 30 DSGVO)", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L83", + "community": 166, + "norm_label": "2.5 verarbeitungsverzeichnis (art. 30 dsgvo)", + "id": "ops_compliance_roadmap_2_5_verarbeitungsverzeichnis_art_30_dsgvo" + }, + { + "label": "2.6 Betroffenenrechte technisch implementieren", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L88", + "community": 166, + "norm_label": "2.6 betroffenenrechte technisch implementieren", + "id": "ops_compliance_roadmap_2_6_betroffenenrechte_technisch_implementieren" + }, + { + "label": "3. Phase 2 im Detail (Q4 2026)", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L102", + "community": 166, + "norm_label": "3. phase 2 im detail (q4 2026)", + "id": "ops_compliance_roadmap_3_phase_2_im_detail_q4_2026" + }, + { + "label": "3.1 Hosting-Strategie", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L104", + "community": 166, + "norm_label": "3.1 hosting-strategie", + "id": "ops_compliance_roadmap_3_1_hosting_strategie" + }, + { + "label": "3.2 Pseudonymisierungs-Layer f\u00fcr Groq", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L114", + "community": 166, + "norm_label": "3.2 pseudonymisierungs-layer fur groq", + "id": "ops_compliance_roadmap_3_2_pseudonymisierungs_layer_f\u00fcr_groq" + }, + { + "label": "4. Phase 3 im Detail (Q1 2027) \u2014 ISO-27001-light", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L122", + "community": 166, + "norm_label": "4. phase 3 im detail (q1 2027) \u2014 iso-27001-light", + "id": "ops_compliance_roadmap_4_phase_3_im_detail_q1_2027_iso_27001_light" + }, + { + "label": "5. Phase 4 im Detail (Q1 2027) \u2014 GmbH", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L140", + "community": 166, + "norm_label": "5. phase 4 im detail (q1 2027) \u2014 gmbh", + "id": "ops_compliance_roadmap_5_phase_4_im_detail_q1_2027_gmbh" + }, + { + "label": "5.1 Warum GmbH-Wechsel kritisch ist", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L142", + "community": 166, + "norm_label": "5.1 warum gmbh-wechsel kritisch ist", + "id": "ops_compliance_roadmap_5_1_warum_gmbh_wechsel_kritisch_ist" + }, + { + "label": "5.2 Kostenstruktur", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L149", + "community": 166, + "norm_label": "5.2 kostenstruktur", + "id": "ops_compliance_roadmap_5_2_kostenstruktur" + }, + { + "label": "5.3 Vorbereitung jetzt schon (kostenlos)", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L159", + "community": 166, + "norm_label": "5.3 vorbereitung jetzt schon (kostenlos)", + "id": "ops_compliance_roadmap_5_3_vorbereitung_jetzt_schon_kostenlos" + }, + { + "label": "5.4 Alternative UG bewusst verworfen", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L165", + "community": 166, + "norm_label": "5.4 alternative ug bewusst verworfen", + "id": "ops_compliance_roadmap_5_4_alternative_ug_bewusst_verworfen" + }, + { + "label": "6. Phase 7-9 \u2014 DiGA-Pfad", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L173", + "community": 166, + "norm_label": "6. phase 7-9 \u2014 diga-pfad", + "id": "ops_compliance_roadmap_6_phase_7_9_diga_pfad" + }, + { + "label": "6.1 Voraussetzungen DiGA-Listung beim BfArM", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L175", + "community": 166, + "norm_label": "6.1 voraussetzungen diga-listung beim bfarm", + "id": "ops_compliance_roadmap_6_1_voraussetzungen_diga_listung_beim_bfarm" + }, + { + "label": "6.2 Kostenrahmen", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L185", + "community": 166, + "norm_label": "6.2 kostenrahmen", + "id": "ops_compliance_roadmap_6_2_kostenrahmen" + }, + { + "label": "6.3 Strategischer Wert delphi GmbH", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L194", + "community": 166, + "norm_label": "6.3 strategischer wert delphi gmbh", + "id": "ops_compliance_roadmap_6_3_strategischer_wert_delphi_gmbh" + }, + { + "label": "6.4 Refinanzierungs-Logik", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L200", + "community": 166, + "norm_label": "6.4 refinanzierungs-logik", + "id": "ops_compliance_roadmap_6_4_refinanzierungs_logik" + }, + { + "label": "7. Was NICHT gemacht wird (bewusste Verzicht-Entscheidungen)", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L209", + "community": 166, + "norm_label": "7. was nicht gemacht wird (bewusste verzicht-entscheidungen)", + "id": "ops_compliance_roadmap_7_was_nicht_gemacht_wird_bewusste_verzicht_entscheidungen" + }, + { + "label": "8. Trigger f\u00fcr Paid-Launch", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L222", + "community": 166, + "norm_label": "8. trigger fur paid-launch", + "id": "ops_compliance_roadmap_8_trigger_f\u00fcr_paid_launch" + }, + { + "label": "9. NBank-Antrag Mittelverwendung (\u00a76 / \u00a712 Verzahnung)", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L241", + "community": 166, + "norm_label": "9. nbank-antrag mittelverwendung (\u00a76 / \u00a712 verzahnung)", + "id": "ops_compliance_roadmap_9_nbank_antrag_mittelverwendung_6_12_verzahnung" + }, + { + "label": "10. Offene Punkte / n\u00e4chste Mini-Tasks", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L262", + "community": 166, + "norm_label": "10. offene punkte / nachste mini-tasks", + "id": "ops_compliance_roadmap_10_offene_punkte_n\u00e4chste_mini_tasks" + }, + { + "label": "11. Cross-Referenzen", + "file_type": "document", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L272", + "community": 166, + "norm_label": "11. cross-referenzen", + "id": "ops_compliance_roadmap_11_cross_referenzen" + }, + { + "label": "TODO_QUEUE.md", + "file_type": "document", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L1", + "community": 1011, + "norm_label": "todo_queue.md", + "id": "ops_todo_queue_md" + }, + { + "label": "TODO-Queue f\u00fcr n\u00e4chste Sessions", + "file_type": "document", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L1", + "community": 1011, + "norm_label": "todo-queue fur nachste sessions", + "id": "ops_todo_queue_todo_queue_f\u00fcr_n\u00e4chste_sessions" + }, + { + "label": "Agent: rebreak-backend", + "file_type": "document", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L5", + "community": 1011, + "norm_label": "agent: rebreak-backend", + "id": "ops_todo_queue_agent_rebreak_backend" + }, + { + "label": "Agent: rebreak-native-ui", + "file_type": "document", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L10", + "community": 1011, + "norm_label": "agent: rebreak-native-ui", + "id": "ops_todo_queue_agent_rebreak_native_ui" + }, + { + "label": "Agent: hans-mueller (Datenschutz/Crisis)", + "file_type": "document", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L15", + "community": 1011, + "norm_label": "agent: hans-mueller (datenschutz/crisis)", + "id": "ops_todo_queue_agent_hans_mueller_datenschutz_crisis" + }, + { + "label": "Agent: lyra-persona", + "file_type": "document", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L18", + "community": 1011, + "norm_label": "agent: lyra-persona", + "id": "ops_todo_queue_agent_lyra_persona" + }, + { + "label": "Agent: zied (Release)", + "file_type": "document", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L22", + "community": 1011, + "norm_label": "agent: zied (release)", + "id": "ops_todo_queue_agent_zied_release" + }, + { + "label": "Strategist / Chahine selbst", + "file_type": "document", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L25", + "community": 1011, + "norm_label": "strategist / chahine selbst", + "id": "ops_todo_queue_strategist_chahine_selbst" + }, + { + "label": "Marketing-Site (staging.rebreak.org) \u2014 DONE 29.05.2026", + "file_type": "document", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L31", + "community": 1011, + "norm_label": "marketing-site (staging.rebreak.org) \u2014 done 29.05.2026", + "id": "ops_todo_queue_marketing_site_staging_rebreak_org_done_29_05_2026" + }, + { + "label": "PROFILE_PAGE_DESIGN.md", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L1", + "community": 640, + "norm_label": "profile_page_design.md", + "id": "ops_profile_page_design_md" + }, + { + "label": "Profile Page \u2014 Detail Design Spec", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L1", + "community": 640, + "norm_label": "profile page \u2014 detail design spec", + "id": "ops_profile_page_design_profile_page_detail_design_spec" + }, + { + "label": "0. Routing & Datenmodell-\u00dcbersicht", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L12", + "community": 640, + "norm_label": "0. routing & datenmodell-ubersicht", + "id": "ops_profile_page_design_0_routing_datenmodell_\u00fcbersicht" + }, + { + "label": "1. Visual Mock (ASCII-Wireframe)", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L23", + "community": 640, + "norm_label": "1. visual mock (ascii-wireframe)", + "id": "ops_profile_page_design_1_visual_mock_ascii_wireframe" + }, + { + "label": "2. Component-Tree", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L134", + "community": 640, + "norm_label": "2. component-tree", + "id": "ops_profile_page_design_2_component_tree" + }, + { + "label": "3. API-Endpoint-Liste", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L180", + "community": 640, + "norm_label": "3. api-endpoint-liste", + "id": "ops_profile_page_design_3_api_endpoint_liste" + }, + { + "label": "4. DB-Schema-\u00c4nderungen", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L247", + "community": 640, + "norm_label": "4. db-schema-anderungen", + "id": "ops_profile_page_design_4_db_schema_\u00e4nderungen" + }, + { + "label": "5. UI-Differential-Logik (eigenes vs fremdes Profil)", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L293", + "community": 640, + "norm_label": "5. ui-differential-logik (eigenes vs fremdes profil)", + "id": "ops_profile_page_design_5_ui_differential_logik_eigenes_vs_fremdes_profil" + }, + { + "label": "6. Risiken + Open Questions", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L319", + "community": 640, + "norm_label": "6. risiken + open questions", + "id": "ops_profile_page_design_6_risiken_open_questions" + }, + { + "label": "6.1 Image-Cropper-Library f\u00fcr RN (Expo SDK 53, New Architecture)", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L321", + "community": 640, + "norm_label": "6.1 image-cropper-library fur rn (expo sdk 53, new architecture)", + "id": "ops_profile_page_design_6_1_image_cropper_library_f\u00fcr_rn_expo_sdk_53_new_architecture" + }, + { + "label": "6.2 Cooldown-Timeline \u2014 Liste vs Chart vs Heatmap", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L332", + "community": 640, + "norm_label": "6.2 cooldown-timeline \u2014 liste vs chart vs heatmap", + "id": "ops_profile_page_design_6_2_cooldown_timeline_liste_vs_chart_vs_heatmap" + }, + { + "label": "6.3 Demographic-Felder \u2014 Pflicht oder optional, wann fragen?", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L341", + "community": 640, + "norm_label": "6.3 demographic-felder \u2014 pflicht oder optional, wann fragen?", + "id": "ops_profile_page_design_6_3_demographic_felder_pflicht_oder_optional_wann_fragen" + }, + { + "label": "6.4 Anti-Vanity-Metric \u2014 was ist motivierend?", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L351", + "community": 640, + "norm_label": "6.4 anti-vanity-metric \u2014 was ist motivierend?", + "id": "ops_profile_page_design_6_4_anti_vanity_metric_was_ist_motivierend" + }, + { + "label": "6.5 Weitere Open Questions", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L363", + "community": 640, + "norm_label": "6.5 weitere open questions", + "id": "ops_profile_page_design_6_5_weitere_open_questions" + }, + { + "label": "7. Implementation-Reihenfolge (Phase-2/3 Vorschlag)", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L372", + "community": 640, + "norm_label": "7. implementation-reihenfolge (phase-2/3 vorschlag)", + "id": "ops_profile_page_design_7_implementation_reihenfolge_phase_2_3_vorschlag" + }, + { + "label": "8. Files (relevant f\u00fcr sp\u00e4tere Phasen)", + "file_type": "document", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L395", + "community": 640, + "norm_label": "8. files (relevant fur spatere phasen)", + "id": "ops_profile_page_design_8_files_relevant_f\u00fcr_sp\u00e4tere_phasen" + }, + { + "label": "mac-version-research.md", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L1", + "community": 946, + "norm_label": "mac-version-research.md", + "id": "ops_mac_version_research_md" + }, + { + "label": "ReBreak macOS \u2014 Entscheidungsgrundlage", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L1", + "community": 946, + "norm_label": "rebreak macos \u2014 entscheidungsgrundlage", + "id": "ops_mac_version_research_rebreak_macos_entscheidungsgrundlage" + }, + { + "label": "1. TL;DR", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L9", + "community": 946, + "norm_label": "1. tl;dr", + "id": "ops_mac_version_research_1_tl_dr" + }, + { + "label": "2. Pfad-Vergleich-Tabelle", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L15", + "community": 946, + "norm_label": "2. pfad-vergleich-tabelle", + "id": "ops_mac_version_research_2_pfad_vergleich_tabelle" + }, + { + "label": "3. Pfad-Details", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L27", + "community": 946, + "norm_label": "3. pfad-details", + "id": "ops_mac_version_research_3_pfad_details" + }, + { + "label": "Pfad 1: Mac Catalyst", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L29", + "community": 946, + "norm_label": "pfad 1: mac catalyst", + "id": "ops_mac_version_research_pfad_1_mac_catalyst" + }, + { + "label": "Pfad 2: React Native macOS (Microsoft Fork)", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L58", + "community": 946, + "norm_label": "pfad 2: react native macos (microsoft fork)", + "id": "ops_mac_version_research_pfad_2_react_native_macos_microsoft_fork" + }, + { + "label": "Pfad 3: Native Swift Mac-App (Greenfield)", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L100", + "community": 946, + "norm_label": "pfad 3: native swift mac-app (greenfield)", + "id": "ops_mac_version_research_pfad_3_native_swift_mac_app_greenfield" + }, + { + "label": "Pfad 4: Browser-Extension (Safari / Chrome / Firefox)", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L152", + "community": 946, + "norm_label": "pfad 4: browser-extension (safari / chrome / firefox)", + "id": "ops_mac_version_research_pfad_4_browser_extension_safari_chrome_firefox" + }, + { + "label": "Pfad 5: Pers\u00f6nliches MDM-Profil (Web Content Filter Payload)", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L195", + "community": 946, + "norm_label": "pfad 5: personliches mdm-profil (web content filter payload)", + "id": "ops_mac_version_research_pfad_5_pers\u00f6nliches_mdm_profil_web_content_filter_payload" + }, + { + "label": "4. Empfehlung", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L207", + "community": 946, + "norm_label": "4. empfehlung", + "id": "ops_mac_version_research_4_empfehlung" + }, + { + "label": "5. Offene Fragen (ungepr\u00fcft / hypothetisch markiert)", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L222", + "community": 946, + "norm_label": "5. offene fragen (ungepruft / hypothetisch markiert)", + "id": "ops_mac_version_research_5_offene_fragen_ungepr\u00fcft_hypothetisch_markiert" + }, + { + "label": "6. Quellen", + "file_type": "document", + "source_file": "ops/mac-version-research.md", + "source_location": "L231", + "community": 946, + "norm_label": "6. quellen", + "id": "ops_mac_version_research_6_quellen" + }, + { + "label": "TESTING_STATE.md", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L1", + "community": 190, + "norm_label": "testing_state.md", + "id": "ops_testing_state_md" + }, + { + "label": "Rebreak \u2014 Testing State Audit & Roadmap", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L1", + "community": 190, + "norm_label": "rebreak \u2014 testing state audit & roadmap", + "id": "ops_testing_state_rebreak_testing_state_audit_roadmap" + }, + { + "label": "1. Status quo (rebreak-monorepo)", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L15", + "community": 190, + "norm_label": "1. status quo (rebreak-monorepo)", + "id": "ops_testing_state_1_status_quo_rebreak_monorepo" + }, + { + "label": "1.1 Backend (`backend/`, Nitro standalone, Prisma + Supabase)", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L17", + "community": 190, + "norm_label": "1.1 backend (`backend/`, nitro standalone, prisma + supabase)", + "id": "ops_testing_state_1_1_backend_backend_nitro_standalone_prisma_supabase" + }, + { + "label": "1.2 Frontend (`apps/rebreak-native/`, Expo SDK 53 + RN 0.79)", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L32", + "community": 190, + "norm_label": "1.2 frontend (`apps/rebreak-native/`, expo sdk 53 + rn 0.79)", + "id": "ops_testing_state_1_2_frontend_apps_rebreak_native_expo_sdk_53_rn_0_79" + }, + { + "label": "1.3 CI / CD", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L51", + "community": 190, + "norm_label": "1.3 ci / cd", + "id": "ops_testing_state_1_3_ci_cd" + }, + { + "label": "1.4 Zusammenfassung", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L59", + "community": 190, + "norm_label": "1.4 zusammenfassung", + "id": "ops_testing_state_1_4_zusammenfassung" + }, + { + "label": "2. Heritage aus trucko-monorepo (was portierbar / inspirierend ist)", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L66", + "community": 190, + "norm_label": "2. heritage aus trucko-monorepo (was portierbar / inspirierend ist)", + "id": "ops_testing_state_2_heritage_aus_trucko_monorepo_was_portierbar_inspirierend_ist" + }, + { + "label": "2.1 Vitest Unit-Suite \u2014 gold-wert, ~70 % portierbar", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L70", + "community": 190, + "norm_label": "2.1 vitest unit-suite \u2014 gold-wert, ~70 % portierbar", + "id": "ops_testing_state_2_1_vitest_unit_suite_gold_wert_70_portierbar" + }, + { + "label": "2.2 Postman-Collection \u2014 sofort wiederverwendbar", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L87", + "community": 190, + "norm_label": "2.2 postman-collection \u2014 sofort wiederverwendbar", + "id": "ops_testing_state_2_2_postman_collection_sofort_wiederverwendbar" + }, + { + "label": "2.3 Playwright Smoke (`tests/e2e/smoke/`)", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L100", + "community": 190, + "norm_label": "2.3 playwright smoke (`tests/e2e/smoke/`)", + "id": "ops_testing_state_2_3_playwright_smoke_tests_e2e_smoke" + }, + { + "label": "2.4 Cypress-Suite (`apps/rebreak/cypress/e2e/`)", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L106", + "community": 190, + "norm_label": "2.4 cypress-suite (`apps/rebreak/cypress/e2e/`)", + "id": "ops_testing_state_2_4_cypress_suite_apps_rebreak_cypress_e2e" + }, + { + "label": "3. Risk-Matrix \u2014 Top 10 ungetestete Critical Paths", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L112", + "community": 190, + "norm_label": "3. risk-matrix \u2014 top 10 ungetestete critical paths", + "id": "ops_testing_state_3_risk_matrix_top_10_ungetestete_critical_paths" + }, + { + "label": "4. Roadmap", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L136", + "community": 190, + "norm_label": "4. roadmap", + "id": "ops_testing_state_4_roadmap" + }, + { + "label": "4.1 Pre-TestFlight (Wochenende, Mai 2026) \u2014 absolutes Minimum", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L138", + "community": 190, + "norm_label": "4.1 pre-testflight (wochenende, mai 2026) \u2014 absolutes minimum", + "id": "ops_testing_state_4_1_pre_testflight_wochenende_mai_2026_absolutes_minimum" + }, + { + "label": "4.2 Post-TestFlight (Woche 1-2 nach Wochenend-Cutover)", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L154", + "community": 190, + "norm_label": "4.2 post-testflight (woche 1-2 nach wochenend-cutover)", + "id": "ops_testing_state_4_2_post_testflight_woche_1_2_nach_wochenend_cutover" + }, + { + "label": "4.3 Phase C (Demographics + Pro-Trial) \u2014 TDD parallel", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L172", + "community": 190, + "norm_label": "4.3 phase c (demographics + pro-trial) \u2014 tdd parallel", + "id": "ops_testing_state_4_3_phase_c_demographics_pro_trial_tdd_parallel" + }, + { + "label": "4.4 DiGA-Pathway \u2014 Hans-M\u00fcller-Frage", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L188", + "community": 190, + "norm_label": "4.4 diga-pathway \u2014 hans-muller-frage", + "id": "ops_testing_state_4_4_diga_pathway_hans_m\u00fcller_frage" + }, + { + "label": "5. Tooling-Empfehlungen", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L208", + "community": 190, + "norm_label": "5. tooling-empfehlungen", + "id": "ops_testing_state_5_tooling_empfehlungen" + }, + { + "label": "5.1 Backend", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L210", + "community": 190, + "norm_label": "5.1 backend", + "id": "ops_testing_state_5_1_backend" + }, + { + "label": "5.2 Frontend (Native)", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L224", + "community": 190, + "norm_label": "5.2 frontend (native)", + "id": "ops_testing_state_5_2_frontend_native" + }, + { + "label": "5.3 CI", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L235", + "community": 190, + "norm_label": "5.3 ci", + "id": "ops_testing_state_5_3_ci" + }, + { + "label": "6. Konkrete TODOs nach Priorit\u00e4t", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L248", + "community": 190, + "norm_label": "6. konkrete todos nach prioritat", + "id": "ops_testing_state_6_konkrete_todos_nach_priorit\u00e4t" + }, + { + "label": "Hoch (vor TestFlight, Wochenende)", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L250", + "community": 190, + "norm_label": "hoch (vor testflight, wochenende)", + "id": "ops_testing_state_hoch_vor_testflight_wochenende" + }, + { + "label": "Mittel (Woche 1-2 nach TestFlight)", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L261", + "community": 190, + "norm_label": "mittel (woche 1-2 nach testflight)", + "id": "ops_testing_state_mittel_woche_1_2_nach_testflight" + }, + { + "label": "Niedrig (Woche 3+)", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L274", + "community": 190, + "norm_label": "niedrig (woche 3+)", + "id": "ops_testing_state_niedrig_woche_3" + }, + { + "label": "7. Wo der Schuh am st\u00e4rksten dr\u00fcckt \u2014 TL;DR", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L287", + "community": 190, + "norm_label": "7. wo der schuh am starksten druckt \u2014 tl;dr", + "id": "ops_testing_state_7_wo_der_schuh_am_st\u00e4rksten_dr\u00fcckt_tl_dr" + }, + { + "label": "8. Open Questions an User", + "file_type": "document", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L304", + "community": 190, + "norm_label": "8. open questions an user", + "id": "ops_testing_state_8_open_questions_an_user" + }, + { + "label": "ACCESSIBILITY_AUDIT.md", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L1", + "community": 121, + "norm_label": "accessibility_audit.md", + "id": "ops_accessibility_audit_md" + }, + { + "label": "Rebreak-Native \u2014 Accessibility Audit & DiGA-Roadmap", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L1", + "community": 121, + "norm_label": "rebreak-native \u2014 accessibility audit & diga-roadmap", + "id": "ops_accessibility_audit_rebreak_native_accessibility_audit_diga_roadmap" + }, + { + "label": "1. Executive Summary", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L16", + "community": 121, + "norm_label": "1. executive summary", + "id": "ops_accessibility_audit_1_executive_summary" + }, + { + "label": "2. Component-by-Component-Status (Critical Paths)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L46", + "community": 121, + "norm_label": "2. component-by-component-status (critical paths)", + "id": "ops_accessibility_audit_2_component_by_component_status_critical_paths" + }, + { + "label": "2.1 SOS-Flow \u2014 `app/urge.tsx` (1333 Lines) \u2014 \ud83d\udd34", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L50", + "community": 121, + "norm_label": "2.1 sos-flow \u2014 `app/urge.tsx` (1333 lines) \u2014 \ud83d\udd34", + "id": "ops_accessibility_audit_2_1_sos_flow_app_urge_tsx_1333_lines" + }, + { + "label": "2.2 SOS-Spiele \u2014 `components/urge/UrgeGames.tsx` (1067 Lines) \u2014 \ud83d\udd34", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L67", + "community": 121, + "norm_label": "2.2 sos-spiele \u2014 `components/urge/urgegames.tsx` (1067 lines) \u2014 \ud83d\udd34", + "id": "ops_accessibility_audit_2_2_sos_spiele_components_urge_urgegames_tsx_1067_lines" + }, + { + "label": "2.3 Profile + Demographics \u2014 `app/profile/index.tsx` + `components/profile/DemographicsAccordion.tsx` (272 / 621 Lines) \u2014 \ud83d\udd34", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L85", + "community": 121, + "norm_label": "2.3 profile + demographics \u2014 `app/profile/index.tsx` + `components/profile/demographicsaccordion.tsx` (272 / 621 lines) \u2014 \ud83d\udd34", + "id": "ops_accessibility_audit_2_3_profile_demographics_app_profile_index_tsx_components_profile_demographicsaccordion_tsx_272_621_lines" + }, + { + "label": "2.4 Header + Dropdown \u2014 `components/AppHeader.tsx` + `components/header/HeaderDropdownMenu.tsx` \u2014 \u26a0\ufe0f", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L105", + "community": 121, + "norm_label": "2.4 header + dropdown \u2014 `components/appheader.tsx` + `components/header/headerdropdownmenu.tsx` \u2014 \u26a0\ufe0f", + "id": "ops_accessibility_audit_2_4_header_dropdown_components_appheader_tsx_components_header_headerdropdownmenu_tsx" + }, + { + "label": "2.5 ComposeCard \u2014 `components/ComposeCard.tsx` \u2014 \u26a0\ufe0f", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L115", + "community": 121, + "norm_label": "2.5 composecard \u2014 `components/composecard.tsx` \u2014 \u26a0\ufe0f", + "id": "ops_accessibility_audit_2_5_composecard_components_composecard_tsx" + }, + { + "label": "2.6 Blocker \u2014 `app/(app)/blocker.tsx` + `components/blocker/*.tsx` \u2014 \u26a0\ufe0f (best-of)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L127", + "community": 121, + "norm_label": "2.6 blocker \u2014 `app/(app)/blocker.tsx` + `components/blocker/*.tsx` \u2014 \u26a0\ufe0f (best-of)", + "id": "ops_accessibility_audit_2_6_blocker_app_app_blocker_tsx_components_blocker_tsx_best_of" + }, + { + "label": "2.7 Auth-Flow \u2014 `app/(auth)/{signin,signup,forgot-password,confirm,confirm-otp,device-limit}.tsx` \u2014 \ud83d\udd34", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L143", + "community": 121, + "norm_label": "2.7 auth-flow \u2014 `app/(auth)/{signin,signup,forgot-password,confirm,confirm-otp,device-limit}.tsx` \u2014 \ud83d\udd34", + "id": "ops_accessibility_audit_2_7_auth_flow_app_auth_signin_signup_forgot_password_confirm_confirm_otp_device_limit_tsx" + }, + { + "label": "2.8 Community / PostCard / PostCommentsSheet \u2014 \ud83d\udd34", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L159", + "community": 121, + "norm_label": "2.8 community / postcard / postcommentssheet \u2014 \ud83d\udd34", + "id": "ops_accessibility_audit_2_8_community_postcard_postcommentssheet" + }, + { + "label": "2.9 Animation & Reduce-Motion \u2014 \ud83d\udd34 (Cross-cutting)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L165", + "community": 121, + "norm_label": "2.9 animation & reduce-motion \u2014 \ud83d\udd34 (cross-cutting)", + "id": "ops_accessibility_audit_2_9_animation_reduce_motion_cross_cutting" + }, + { + "label": "2.10 Dynamic-Type / Font-Scaling \u2014 \u26a0\ufe0f (Cross-cutting)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L176", + "community": 121, + "norm_label": "2.10 dynamic-type / font-scaling \u2014 \u26a0\ufe0f (cross-cutting)", + "id": "ops_accessibility_audit_2_10_dynamic_type_font_scaling_cross_cutting" + }, + { + "label": "2.11 Color-Contrast \u2014 \u26a0\ufe0f (Cross-cutting)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L184", + "community": 121, + "norm_label": "2.11 color-contrast \u2014 \u26a0\ufe0f (cross-cutting)", + "id": "ops_accessibility_audit_2_11_color_contrast_cross_cutting" + }, + { + "label": "2.12 Screen-Reader-Detection \u2014 \ud83d\udd34 (Cross-cutting)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L196", + "community": 121, + "norm_label": "2.12 screen-reader-detection \u2014 \ud83d\udd34 (cross-cutting)", + "id": "ops_accessibility_audit_2_12_screen_reader_detection_cross_cutting" + }, + { + "label": "2.13 Touch-Target-Size \u2014 \u26a0\ufe0f", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L204", + "community": 121, + "norm_label": "2.13 touch-target-size \u2014 \u26a0\ufe0f", + "id": "ops_accessibility_audit_2_13_touch_target_size" + }, + { + "label": "3. Test-Framework-Empfehlung", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L213", + "community": 121, + "norm_label": "3. test-framework-empfehlung", + "id": "ops_accessibility_audit_3_test_framework_empfehlung" + }, + { + "label": "3.1 Was es gibt f\u00fcr RN", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L215", + "community": 121, + "norm_label": "3.1 was es gibt fur rn", + "id": "ops_accessibility_audit_3_1_was_es_gibt_f\u00fcr_rn" + }, + { + "label": "3.2 Empfehlung in einem Satz", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L228", + "community": 121, + "norm_label": "3.2 empfehlung in einem satz", + "id": "ops_accessibility_audit_3_2_empfehlung_in_einem_satz" + }, + { + "label": "3.3 Setup-Aufwand", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L232", + "community": 121, + "norm_label": "3.3 setup-aufwand", + "id": "ops_accessibility_audit_3_3_setup_aufwand" + }, + { + "label": "3.4 Beispiel \u2014 A11y-Component-Test", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L243", + "community": 121, + "norm_label": "3.4 beispiel \u2014 a11y-component-test", + "id": "ops_accessibility_audit_3_4_beispiel_a11y_component_test" + }, + { + "label": "4. WCAG 2.1 Level AA \u2014 Mapping rebreak-native (heute)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L273", + "community": 121, + "norm_label": "4. wcag 2.1 level aa \u2014 mapping rebreak-native (heute)", + "id": "ops_accessibility_audit_4_wcag_2_1_level_aa_mapping_rebreak_native_heute" + }, + { + "label": "5. DiGA-Punkte-Strategy", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L302", + "community": 121, + "norm_label": "5. diga-punkte-strategy", + "id": "ops_accessibility_audit_5_diga_punkte_strategy" + }, + { + "label": "5.1 Was BfArM real fragt (laut DiGA-Verfahrensverzeichnis)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L304", + "community": 121, + "norm_label": "5.1 was bfarm real fragt (laut diga-verfahrensverzeichnis)", + "id": "ops_accessibility_audit_5_1_was_bfarm_real_fragt_laut_diga_verfahrensverzeichnis" + }, + { + "label": "5.2 Low-hanging-fruit (hoher BfArM-Eindruck, niedriger Aufwand)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L312", + "community": 121, + "norm_label": "5.2 low-hanging-fruit (hoher bfarm-eindruck, niedriger aufwand)", + "id": "ops_accessibility_audit_5_2_low_hanging_fruit_hoher_bfarm_eindruck_niedriger_aufwand" + }, + { + "label": "5.3 Architektur-Investments (hoher Effort, h\u00f6herer Score)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L323", + "community": 121, + "norm_label": "5.3 architektur-investments (hoher effort, hoherer score)", + "id": "ops_accessibility_audit_5_3_architektur_investments_hoher_effort_h\u00f6herer_score" + }, + { + "label": "5.4 DiGA-Self-Statement (Vorschlag f\u00fcr DSFA mit Hans-M\u00fcller)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L336", + "community": 121, + "norm_label": "5.4 diga-self-statement (vorschlag fur dsfa mit hans-muller)", + "id": "ops_accessibility_audit_5_4_diga_self_statement_vorschlag_f\u00fcr_dsfa_mit_hans_m\u00fcller" + }, + { + "label": "6. Roadmap", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L348", + "community": 121, + "norm_label": "6. roadmap", + "id": "ops_accessibility_audit_6_roadmap" + }, + { + "label": "6.1 Pre-TestFlight (Wochenende 2026-05-09/10) \u2014 absolutes Minimum", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L350", + "community": 121, + "norm_label": "6.1 pre-testflight (wochenende 2026-05-09/10) \u2014 absolutes minimum", + "id": "ops_accessibility_audit_6_1_pre_testflight_wochenende_2026_05_09_10_absolutes_minimum" + }, + { + "label": "6.2 Pre-DiGA-Antrag (Phase nach Public-Beta) \u2014 Vollabdeckung Critical Paths", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L367", + "community": 121, + "norm_label": "6.2 pre-diga-antrag (phase nach public-beta) \u2014 vollabdeckung critical paths", + "id": "ops_accessibility_audit_6_2_pre_diga_antrag_phase_nach_public_beta_vollabdeckung_critical_paths" + }, + { + "label": "6.3 Post-Launch \u2014 kontinuierliches A11y-Gate", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L386", + "community": 121, + "norm_label": "6.3 post-launch \u2014 kontinuierliches a11y-gate", + "id": "ops_accessibility_audit_6_3_post_launch_kontinuierliches_a11y_gate" + }, + { + "label": "7. Konkrete TODOs nach Priorit\u00e4t", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L398", + "community": 121, + "norm_label": "7. konkrete todos nach prioritat", + "id": "ops_accessibility_audit_7_konkrete_todos_nach_priorit\u00e4t" + }, + { + "label": "Hoch (vor TestFlight, Wochenende)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L400", + "community": 121, + "norm_label": "hoch (vor testflight, wochenende)", + "id": "ops_accessibility_audit_hoch_vor_testflight_wochenende" + }, + { + "label": "Mittel (Pre-DiGA-Antrag)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L408", + "community": 121, + "norm_label": "mittel (pre-diga-antrag)", + "id": "ops_accessibility_audit_mittel_pre_diga_antrag" + }, + { + "label": "Niedrig (Post-Launch)", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L416", + "community": 121, + "norm_label": "niedrig (post-launch)", + "id": "ops_accessibility_audit_niedrig_post_launch" + }, + { + "label": "8. Open Questions an User", + "file_type": "document", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L424", + "community": 121, + "norm_label": "8. open questions an user", + "id": "ops_accessibility_audit_8_open_questions_an_user" + }, + { + "label": "CUTOVER_PLAN.md", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L1", + "community": 173, + "norm_label": "cutover_plan.md", + "id": "ops_cutover_plan_md" + }, + { + "label": "Rebreak Cutover-Plan: `apps/rebreak/` (Nuxt) \u2192 `backend/` (Standalone Nitro)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L1", + "community": 173, + "norm_label": "rebreak cutover-plan: `apps/rebreak/` (nuxt) \u2192 `backend/` (standalone nitro)", + "id": "ops_cutover_plan_rebreak_cutover_plan_apps_rebreak_nuxt_backend_standalone_nitro" + }, + { + "label": "1. Status quo (Stand 2026-05-06, post-rollback)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L11", + "community": 173, + "norm_label": "1. status quo (stand 2026-05-06, post-rollback)", + "id": "ops_cutover_plan_1_status_quo_stand_2026_05_06_post_rollback" + }, + { + "label": "1.1 Server `/srv/rebreak/` (live, Backyard's Layout)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L13", + "community": 173, + "norm_label": "1.1 server `/srv/rebreak/` (live, backyard's layout)", + "id": "ops_cutover_plan_1_1_server_srv_rebreak_live_backyard_s_layout" + }, + { + "label": "1.2 Mac `~/mono/rebreak-monorepo/` (Cutover-Target)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L39", + "community": 173, + "norm_label": "1.2 mac `~/mono/rebreak-monorepo/` (cutover-target)", + "id": "ops_cutover_plan_1_2_mac_mono_rebreak_monorepo_cutover_target" + }, + { + "label": "1.3 Was kaputt war (Incident 2026-05-06)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L61", + "community": 173, + "norm_label": "1.3 was kaputt war (incident 2026-05-06)", + "id": "ops_cutover_plan_1_3_was_kaputt_war_incident_2026_05_06" + }, + { + "label": "2. Pipeline-Diagramm", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L76", + "community": 173, + "norm_label": "2. pipeline-diagramm", + "id": "ops_cutover_plan_2_pipeline_diagramm" + }, + { + "label": "2.1 Pipeline AKTUELL (Backyard-Layout, l\u00e4uft)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L78", + "community": 173, + "norm_label": "2.1 pipeline aktuell (backyard-layout, lauft)", + "id": "ops_cutover_plan_2_1_pipeline_aktuell_backyard_layout_l\u00e4uft" + }, + { + "label": "2.2 Pipeline ZIEL (nach Cutover, neues Layout)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L107", + "community": 173, + "norm_label": "2.2 pipeline ziel (nach cutover, neues layout)", + "id": "ops_cutover_plan_2_2_pipeline_ziel_nach_cutover_neues_layout" + }, + { + "label": "3. Fehlende runtimeConfig-Keys", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L148", + "community": 173, + "norm_label": "3. fehlende runtimeconfig-keys", + "id": "ops_cutover_plan_3_fehlende_runtimeconfig_keys" + }, + { + "label": "3.1 Keys die im AKTUELLEN `backend/nitro.config.ts` schon existieren (16 total)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L154", + "community": 173, + "norm_label": "3.1 keys die im aktuellen `backend/nitro.config.ts` schon existieren (16 total)", + "id": "ops_cutover_plan_3_1_keys_die_im_aktuellen_backend_nitro_config_ts_schon_existieren_16_total" + }, + { + "label": "3.2 Keys die FEHLEN (Cutover-Blocker)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L161", + "community": 173, + "norm_label": "3.2 keys die fehlen (cutover-blocker)", + "id": "ops_cutover_plan_3_2_keys_die_fehlen_cutover_blocker" + }, + { + "label": "3.3 Supabase-Keys (Hauptbruchstelle des Incidents)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L177", + "community": 173, + "norm_label": "3.3 supabase-keys (hauptbruchstelle des incidents)", + "id": "ops_cutover_plan_3_3_supabase_keys_hauptbruchstelle_des_incidents" + }, + { + "label": "3.4 Verifikation des Cutover-Drafts", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L193", + "community": 173, + "norm_label": "3.4 verifikation des cutover-drafts", + "id": "ops_cutover_plan_3_4_verifikation_des_cutover_drafts" + }, + { + "label": "4. Cutover-Sequence (sequentiell abarbeiten, jeden Step best\u00e4tigen lassen)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L204", + "community": 173, + "norm_label": "4. cutover-sequence (sequentiell abarbeiten, jeden step bestatigen lassen)", + "id": "ops_cutover_plan_4_cutover_sequence_sequentiell_abarbeiten_jeden_step_best\u00e4tigen_lassen" + }, + { + "label": "Phase A \u2014 Vorbereitung (nicht-destruktiv, lokal auf Mac)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L209", + "community": 173, + "norm_label": "phase a \u2014 vorbereitung (nicht-destruktiv, lokal auf mac)", + "id": "ops_cutover_plan_phase_a_vorbereitung_nicht_destruktiv_lokal_auf_mac" + }, + { + "label": "Phase B \u2014 Server-Vorbereitung (read-only, kein Eingriff in laufendes System)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L225", + "community": 173, + "norm_label": "phase b \u2014 server-vorbereitung (read-only, kein eingriff in laufendes system)", + "id": "ops_cutover_plan_phase_b_server_vorbereitung_read_only_kein_eingriff_in_laufendes_system" + }, + { + "label": "Phase C \u2014 Pipeline-Anpassung (auf Mac, dann xgit)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L235", + "community": 173, + "norm_label": "phase c \u2014 pipeline-anpassung (auf mac, dann xgit)", + "id": "ops_cutover_plan_phase_c_pipeline_anpassung_auf_mac_dann_xgit" + }, + { + "label": "Phase D \u2014 Deploy (DESTRUKTIV)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L248", + "community": 173, + "norm_label": "phase d \u2014 deploy (destruktiv)", + "id": "ops_cutover_plan_phase_d_deploy_destruktiv" + }, + { + "label": "Phase E \u2014 Verifikation (read-only)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L268", + "community": 173, + "norm_label": "phase e \u2014 verifikation (read-only)", + "id": "ops_cutover_plan_phase_e_verifikation_read_only" + }, + { + "label": "5. Rollback-Plan (Cutover scheitert, <5 min)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L278", + "community": 173, + "norm_label": "5. rollback-plan (cutover scheitert, <5 min)", + "id": "ops_cutover_plan_5_rollback_plan_cutover_scheitert_5_min" + }, + { + "label": "5.1 Schneller Rollback (Webhook re-triggert alter HEAD)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L280", + "community": 173, + "norm_label": "5.1 schneller rollback (webhook re-triggert alter head)", + "id": "ops_cutover_plan_5_1_schneller_rollback_webhook_re_triggert_alter_head" + }, + { + "label": "5.2 Falls Server `scripts/deploy.sh` schon im Cutover modifiziert wurde", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L294", + "community": 173, + "norm_label": "5.2 falls server `scripts/deploy.sh` schon im cutover modifiziert wurde", + "id": "ops_cutover_plan_5_2_falls_server_scripts_deploy_sh_schon_im_cutover_modifiziert_wurde" + }, + { + "label": "5.3 Falls `.output-staging` bereits gel\u00f6scht wurde", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L298", + "community": 173, + "norm_label": "5.3 falls `.output-staging` bereits geloscht wurde", + "id": "ops_cutover_plan_5_3_falls_output_staging_bereits_gel\u00f6scht_wurde" + }, + { + "label": "5.4 Smoke-Test nach Rollback", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L305", + "community": 173, + "norm_label": "5.4 smoke-test nach rollback", + "id": "ops_cutover_plan_5_4_smoke_test_nach_rollback" + }, + { + "label": "6. Test-Checklist nach Cutover", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L315", + "community": 173, + "norm_label": "6. test-checklist nach cutover", + "id": "ops_cutover_plan_6_test_checklist_nach_cutover" + }, + { + "label": "7. Risiken + Open Questions", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L355", + "community": 173, + "norm_label": "7. risiken + open questions", + "id": "ops_cutover_plan_7_risiken_open_questions" + }, + { + "label": "Risiken", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L357", + "community": 173, + "norm_label": "risiken", + "id": "ops_cutover_plan_risiken" + }, + { + "label": "Open Questions an User", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L365", + "community": 173, + "norm_label": "open questions an user", + "id": "ops_cutover_plan_open_questions_an_user" + }, + { + "label": "8. Operations-Cheatsheet (post-Cutover)", + "file_type": "document", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L375", + "community": 173, + "norm_label": "8. operations-cheatsheet (post-cutover)", + "id": "ops_cutover_plan_8_operations_cheatsheet_post_cutover" + }, + { + "label": "GITHUB_ACTIONS_PIPELINE.md", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L1", + "community": 949, + "norm_label": "github_actions_pipeline.md", + "id": "ops_github_actions_pipeline_md" + }, + { + "label": "GitHub-Actions Build+Deploy-Pipeline -- rebreak-monorepo", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L1", + "community": 949, + "norm_label": "github-actions build+deploy-pipeline -- rebreak-monorepo", + "id": "ops_github_actions_pipeline_github_actions_build_deploy_pipeline_rebreak_monorepo" + }, + { + "label": "Warum diese Pipeline jetzt", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L9", + "community": 949, + "norm_label": "warum diese pipeline jetzt", + "id": "ops_github_actions_pipeline_warum_diese_pipeline_jetzt" + }, + { + "label": "Recon: Trucko-Pattern (Vorlagen)", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L24", + "community": 949, + "norm_label": "recon: trucko-pattern (vorlagen)", + "id": "ops_github_actions_pipeline_recon_trucko_pattern_vorlagen" + }, + { + "label": "Neue Pipeline-Architektur", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L38", + "community": 949, + "norm_label": "neue pipeline-architektur", + "id": "ops_github_actions_pipeline_neue_pipeline_architektur" + }, + { + "label": "Files in diesem PR", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L84", + "community": 949, + "norm_label": "files in diesem pr", + "id": "ops_github_actions_pipeline_files_in_diesem_pr" + }, + { + "label": "Required GitHub-Secrets", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L94", + "community": 949, + "norm_label": "required github-secrets", + "id": "ops_github_actions_pipeline_required_github_secrets" + }, + { + "label": "Required User-Actions vor erstem GA-Run", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L112", + "community": 949, + "norm_label": "required user-actions vor erstem ga-run", + "id": "ops_github_actions_pipeline_required_user_actions_vor_erstem_ga_run" + }, + { + "label": "Coexistence-Strategie: Webhook bleibt parallel", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L153", + "community": 949, + "norm_label": "coexistence-strategie: webhook bleibt parallel", + "id": "ops_github_actions_pipeline_coexistence_strategie_webhook_bleibt_parallel" + }, + { + "label": "Migration zu Production-Pipeline (spaeter)", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L172", + "community": 949, + "norm_label": "migration zu production-pipeline (spaeter)", + "id": "ops_github_actions_pipeline_migration_zu_production_pipeline_spaeter" + }, + { + "label": "Open Questions", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L186", + "community": 949, + "norm_label": "open questions", + "id": "ops_github_actions_pipeline_open_questions" + }, + { + "label": "Cheatsheet", + "file_type": "document", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L195", + "community": 949, + "norm_label": "cheatsheet", + "id": "ops_github_actions_pipeline_cheatsheet" + }, + { + "label": "MAESTRO_HOSTING_DECISION.md", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L1", + "community": 347, + "norm_label": "maestro_hosting_decision.md", + "id": "ops_maestro_hosting_decision_md" + }, + { + "label": "Maestro Hosting \u2014 Decision Memo", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L1", + "community": 347, + "norm_label": "maestro hosting \u2014 decision memo", + "id": "ops_maestro_hosting_decision_maestro_hosting_decision_memo" + }, + { + "label": "1. Hard-Constraint: iOS l\u00e4sst sich auf Linux nicht testen", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L15", + "community": 347, + "norm_label": "1. hard-constraint: ios lasst sich auf linux nicht testen", + "id": "ops_maestro_hosting_decision_1_hard_constraint_ios_l\u00e4sst_sich_auf_linux_nicht_testen" + }, + { + "label": "2. Performance-Risk auf existierendem CX23", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L37", + "community": 347, + "norm_label": "2. performance-risk auf existierendem cx23", + "id": "ops_maestro_hosting_decision_2_performance_risk_auf_existierendem_cx23" + }, + { + "label": "3. Cost-Comparison", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L65", + "community": 347, + "norm_label": "3. cost-comparison", + "id": "ops_maestro_hosting_decision_3_cost_comparison" + }, + { + "label": "4. Aufwand-Sch\u00e4tzung pro Variante", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L84", + "community": 347, + "norm_label": "4. aufwand-schatzung pro variante", + "id": "ops_maestro_hosting_decision_4_aufwand_sch\u00e4tzung_pro_variante" + }, + { + "label": "(A) Maestro Cloud", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L86", + "community": 347, + "norm_label": "(a) maestro cloud", + "id": "ops_maestro_hosting_decision_a_maestro_cloud" + }, + { + "label": "(B) Self-Host Android-only", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L93", + "community": 347, + "norm_label": "(b) self-host android-only", + "id": "ops_maestro_hosting_decision_b_self_host_android_only" + }, + { + "label": "(B+) Hybrid Self-Host Android + Cloud-iOS oder GH-Actions-iOS", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L106", + "community": 347, + "norm_label": "(b+) hybrid self-host android + cloud-ios oder gh-actions-ios", + "id": "ops_maestro_hosting_decision_b_hybrid_self_host_android_cloud_ios_oder_gh_actions_ios" + }, + { + "label": "(C) Pure Self-Host inkl. Mac", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L113", + "community": 347, + "norm_label": "(c) pure self-host inkl. mac", + "id": "ops_maestro_hosting_decision_c_pure_self_host_inkl_mac" + }, + { + "label": "(D) GitHub Actions Matrix", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L121", + "community": 347, + "norm_label": "(d) github actions matrix", + "id": "ops_maestro_hosting_decision_d_github_actions_matrix" + }, + { + "label": "5. Empfehlung \u2014 Lieblings-Pfad", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L131", + "community": 347, + "norm_label": "5. empfehlung \u2014 lieblings-pfad", + "id": "ops_maestro_hosting_decision_5_empfehlung_lieblings_pfad" + }, + { + "label": "Lieblings-Pfad: **Maestro Cloud Starter (Variante A)**", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L133", + "community": 347, + "norm_label": "lieblings-pfad: **maestro cloud starter (variante a)**", + "id": "ops_maestro_hosting_decision_lieblings_pfad_maestro_cloud_starter_variante_a" + }, + { + "label": "Plan B: **GitHub Actions Matrix (Variante D)**", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L154", + "community": 347, + "norm_label": "plan b: **github actions matrix (variante d)**", + "id": "ops_maestro_hosting_decision_plan_b_github_actions_matrix_variante_d" + }, + { + "label": "Anti-Empfehlung: **Self-Host auf Hetzner (B oder B+)**", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L165", + "community": 347, + "norm_label": "anti-empfehlung: **self-host auf hetzner (b oder b+)**", + "id": "ops_maestro_hosting_decision_anti_empfehlung_self_host_auf_hetzner_b_oder_b" + }, + { + "label": "6. Setup-Estimate f\u00fcr die Empfehlung (Pfad A)", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L181", + "community": 347, + "norm_label": "6. setup-estimate fur die empfehlung (pfad a)", + "id": "ops_maestro_hosting_decision_6_setup_estimate_f\u00fcr_die_empfehlung_pfad_a" + }, + { + "label": "7. Offene Punkte (User-Decision)", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L197", + "community": 347, + "norm_label": "7. offene punkte (user-decision)", + "id": "ops_maestro_hosting_decision_7_offene_punkte_user_decision" + }, + { + "label": "8. TL;DR f\u00fcr User", + "file_type": "document", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L212", + "community": 347, + "norm_label": "8. tl;dr fur user", + "id": "ops_maestro_hosting_decision_8_tl_dr_f\u00fcr_user" + }, + { + "label": "RELEASE_READINESS.md", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L1", + "community": 203, + "norm_label": "release_readiness.md", + "id": "ops_release_readiness_md" + }, + { + "label": "RELEASE_READINESS \u2014 TestFlight Internal + Play Internal Testing", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L1", + "community": 203, + "norm_label": "release_readiness \u2014 testflight internal + play internal testing", + "id": "ops_release_readiness_release_readiness_testflight_internal_play_internal_testing" + }, + { + "label": "Status-Quo-Tabelle", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L13", + "community": 203, + "norm_label": "status-quo-tabelle", + "id": "ops_release_readiness_status_quo_tabelle" + }, + { + "label": "iOS", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L17", + "community": 203, + "norm_label": "ios", + "id": "ops_release_readiness_ios" + }, + { + "label": "Android", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L35", + "community": 203, + "norm_label": "android", + "id": "ops_release_readiness_android" + }, + { + "label": "Cross-Platform", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L54", + "community": 203, + "norm_label": "cross-platform", + "id": "ops_release_readiness_cross_platform" + }, + { + "label": "Internal-Only-Pfad (3 Tage \u2014 realistisch f\u00fcr Wochenende)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L67", + "community": 203, + "norm_label": "internal-only-pfad (3 tage \u2014 realistisch fur wochenende)", + "id": "ops_release_readiness_internal_only_pfad_3_tage_realistisch_f\u00fcr_wochenende" + }, + { + "label": "External-Beta-Pfad (zus\u00e4tzlich, ~1 Woche)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L92", + "community": 203, + "norm_label": "external-beta-pfad (zusatzlich, ~1 woche)", + "id": "ops_release_readiness_external_beta_pfad_zus\u00e4tzlich_1_woche" + }, + { + "label": "Risk-Assessment", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L108", + "community": 203, + "norm_label": "risk-assessment", + "id": "ops_release_readiness_risk_assessment" + }, + { + "label": "R1 \u2014 Stripe-IAP-Konflikt (HOCH f\u00fcr External, MITTEL f\u00fcr Internal)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L110", + "community": 203, + "norm_label": "r1 \u2014 stripe-iap-konflikt (hoch fur external, mittel fur internal)", + "id": "ops_release_readiness_r1_stripe_iap_konflikt_hoch_f\u00fcr_external_mittel_f\u00fcr_internal" + }, + { + "label": "R2 \u2014 VPN-Filter-Inclusion im Build (MITTEL)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L120", + "community": 203, + "norm_label": "r2 \u2014 vpn-filter-inclusion im build (mittel)", + "id": "ops_release_readiness_r2_vpn_filter_inclusion_im_build_mittel" + }, + { + "label": "R3 \u2014 Apple Sign-In TODO (MITTEL f\u00fcr External)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L128", + "community": 203, + "norm_label": "r3 \u2014 apple sign-in todo (mittel fur external)", + "id": "ops_release_readiness_r3_apple_sign_in_todo_mittel_f\u00fcr_external" + }, + { + "label": "R4 \u2014 Production-Keystore-Custody (HOCH)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L131", + "community": 203, + "norm_label": "r4 \u2014 production-keystore-custody (hoch)", + "id": "ops_release_readiness_r4_production_keystore_custody_hoch" + }, + { + "label": "R5 \u2014 Hardcoded Supabase Anon-Key in app.config.ts (NIEDRIG)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L134", + "community": 203, + "norm_label": "r5 \u2014 hardcoded supabase anon-key in app.config.ts (niedrig)", + "id": "ops_release_readiness_r5_hardcoded_supabase_anon_key_in_app_config_ts_niedrig" + }, + { + "label": "R6 \u2014 Backend-API-Pointer f\u00fcr Tester (MITTEL)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L137", + "community": 203, + "norm_label": "r6 \u2014 backend-api-pointer fur tester (mittel)", + "id": "ops_release_readiness_r6_backend_api_pointer_f\u00fcr_tester_mittel" + }, + { + "label": "TODO-Liste sortiert nach Tag", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L142", + "community": 203, + "norm_label": "todo-liste sortiert nach tag", + "id": "ops_release_readiness_todo_liste_sortiert_nach_tag" + }, + { + "label": "Donnerstag 2026-05-07 (HEUTE \u2014 Recon + Doc)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L144", + "community": 203, + "norm_label": "donnerstag 2026-05-07 (heute \u2014 recon + doc)", + "id": "ops_release_readiness_donnerstag_2026_05_07_heute_recon_doc" + }, + { + "label": "Freitag 2026-05-08 (Setup + Configs, alles ohne Build-Trigger)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L149", + "community": 203, + "norm_label": "freitag 2026-05-08 (setup + configs, alles ohne build-trigger)", + "id": "ops_release_readiness_freitag_2026_05_08_setup_configs_alles_ohne_build_trigger" + }, + { + "label": "Samstag 2026-05-09 (Build + Submit, alles mit User-Approval)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L160", + "community": 203, + "norm_label": "samstag 2026-05-09 (build + submit, alles mit user-approval)", + "id": "ops_release_readiness_samstag_2026_05_09_build_submit_alles_mit_user_approval" + }, + { + "label": "Sonntag 2026-05-10 (Buffer + Iteration)", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L169", + "community": 203, + "norm_label": "sonntag 2026-05-10 (buffer + iteration)", + "id": "ops_release_readiness_sonntag_2026_05_10_buffer_iteration" + }, + { + "label": "Top-5 User-Actions die nicht verschoben werden k\u00f6nnen", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L175", + "community": 203, + "norm_label": "top-5 user-actions die nicht verschoben werden konnen", + "id": "ops_release_readiness_top_5_user_actions_die_nicht_verschoben_werden_k\u00f6nnen" + }, + { + "label": "Realistischer Wochenend-Plan \u2014 Machbarkeit", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L185", + "community": 203, + "norm_label": "realistischer wochenend-plan \u2014 machbarkeit", + "id": "ops_release_readiness_realistischer_wochenend_plan_machbarkeit" + }, + { + "label": "3 wichtigste Open Questions an User", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L200", + "community": 203, + "norm_label": "3 wichtigste open questions an user", + "id": "ops_release_readiness_3_wichtigste_open_questions_an_user" + }, + { + "label": "Q1 \u2014 VPN-Filter im ersten Build dabei oder rauslassen?", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L202", + "community": 203, + "norm_label": "q1 \u2014 vpn-filter im ersten build dabei oder rauslassen?", + "id": "ops_release_readiness_q1_vpn_filter_im_ersten_build_dabei_oder_rauslassen" + }, + { + "label": "Q2 \u2014 Backend-API-Pointer f\u00fcr Internal-Tester: Staging oder Prod?", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L209", + "community": 203, + "norm_label": "q2 \u2014 backend-api-pointer fur internal-tester: staging oder prod?", + "id": "ops_release_readiness_q2_backend_api_pointer_f\u00fcr_internal_tester_staging_oder_prod" + }, + { + "label": "Q3 \u2014 Keystore-Strategie Android: EAS managed oder eigener Custody?", + "file_type": "document", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L213", + "community": 203, + "norm_label": "q3 \u2014 keystore-strategie android: eas managed oder eigener custody?", + "id": "ops_release_readiness_q3_keystore_strategie_android_eas_managed_oder_eigener_custody" + }, + { + "label": "WEBHOOK_MIGRATION_PLAN.md", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L1", + "community": 251, + "norm_label": "webhook_migration_plan.md", + "id": "ops_webhook_migration_plan_md" + }, + { + "label": "Webhook-Migration: Standalone Listener \u2192 Nitro-Endpoint (Trucko-Pattern)", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L1", + "community": 251, + "norm_label": "webhook-migration: standalone listener \u2192 nitro-endpoint (trucko-pattern)", + "id": "ops_webhook_migration_plan_webhook_migration_standalone_listener_nitro_endpoint_trucko_pattern" + }, + { + "label": "1. Status quo (Stand 2026-05-07)", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L10", + "community": 251, + "norm_label": "1. status quo (stand 2026-05-07)", + "id": "ops_webhook_migration_plan_1_status_quo_stand_2026_05_07" + }, + { + "label": "1.1 Aktuelle Pipeline", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L12", + "community": 251, + "norm_label": "1.1 aktuelle pipeline", + "id": "ops_webhook_migration_plan_1_1_aktuelle_pipeline" + }, + { + "label": "1.2 Beteiligte Dateien", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L27", + "community": 251, + "norm_label": "1.2 beteiligte dateien", + "id": "ops_webhook_migration_plan_1_2_beteiligte_dateien" + }, + { + "label": "1.3 Beobachtete Probleme", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L37", + "community": 251, + "norm_label": "1.3 beobachtete probleme", + "id": "ops_webhook_migration_plan_1_3_beobachtete_probleme" + }, + { + "label": "2. Trucko-Pattern (das Vorbild)", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L48", + "community": 251, + "norm_label": "2. trucko-pattern (das vorbild)", + "id": "ops_webhook_migration_plan_2_trucko_pattern_das_vorbild" + }, + { + "label": "2.1 Architektur-Eigenschaften", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L53", + "community": 251, + "norm_label": "2.1 architektur-eigenschaften", + "id": "ops_webhook_migration_plan_2_1_architektur_eigenschaften" + }, + { + "label": "2.2 Was das Trucko-Pattern besser macht", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L67", + "community": 251, + "norm_label": "2.2 was das trucko-pattern besser macht", + "id": "ops_webhook_migration_plan_2_2_was_das_trucko_pattern_besser_macht" + }, + { + "label": "3. Migrations-Schritte (f\u00fcr n\u00e4chste Session \u2014 NICHT jetzt)", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L81", + "community": 251, + "norm_label": "3. migrations-schritte (fur nachste session \u2014 nicht jetzt)", + "id": "ops_webhook_migration_plan_3_migrations_schritte_f\u00fcr_n\u00e4chste_session_nicht_jetzt" + }, + { + "label": "Phase 1: Endpoint anlegen (Mac, kein Server-Change)", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L83", + "community": 251, + "norm_label": "phase 1: endpoint anlegen (mac, kein server-change)", + "id": "ops_webhook_migration_plan_phase_1_endpoint_anlegen_mac_kein_server_change" + }, + { + "label": "Phase 2: Infisical-Secrets setzen (User-Eskalation)", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L94", + "community": 251, + "norm_label": "phase 2: infisical-secrets setzen (user-eskalation)", + "id": "ops_webhook_migration_plan_phase_2_infisical_secrets_setzen_user_eskalation" + }, + { + "label": "Phase 3: Parallel-Betrieb (Failsafe)", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L102", + "community": 251, + "norm_label": "phase 3: parallel-betrieb (failsafe)", + "id": "ops_webhook_migration_plan_phase_3_parallel_betrieb_failsafe" + }, + { + "label": "Phase 4: Cutover", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L110", + "community": 251, + "norm_label": "phase 4: cutover", + "id": "ops_webhook_migration_plan_phase_4_cutover" + }, + { + "label": "Phase 5: Hardening", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L120", + "community": 251, + "norm_label": "phase 5: hardening", + "id": "ops_webhook_migration_plan_phase_5_hardening" + }, + { + "label": "4. Risk-Assessment", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L128", + "community": 251, + "norm_label": "4. risk-assessment", + "id": "ops_webhook_migration_plan_4_risk_assessment" + }, + { + "label": "Top 3 Risks bei Migration", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L130", + "community": 251, + "norm_label": "top 3 risks bei migration", + "id": "ops_webhook_migration_plan_top_3_risks_bei_migration" + }, + { + "label": "Weitere Risiken (lower-priority)", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L143", + "community": 251, + "norm_label": "weitere risiken (lower-priority)", + "id": "ops_webhook_migration_plan_weitere_risiken_lower_priority" + }, + { + "label": "5. Fallback-Plan", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L151", + "community": 251, + "norm_label": "5. fallback-plan", + "id": "ops_webhook_migration_plan_5_fallback_plan" + }, + { + "label": "6. Empfohlener erster Schritt (f\u00fcr n\u00e4chste Session)", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L166", + "community": 251, + "norm_label": "6. empfohlener erster schritt (fur nachste session)", + "id": "ops_webhook_migration_plan_6_empfohlener_erster_schritt_f\u00fcr_n\u00e4chste_session" + }, + { + "label": "7. Was NICHT in Scope", + "file_type": "document", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L172", + "community": 251, + "norm_label": "7. was nicht in scope", + "id": "ops_webhook_migration_plan_7_was_nicht_in_scope" + }, + { + "label": "CALLKIT_SETUP.md", + "file_type": "document", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L1", + "community": 1023, + "norm_label": "callkit_setup.md", + "id": "ops_callkit_setup_md" + }, + { + "label": "CallKit + VoIP Setup f\u00fcr ReBreak", + "file_type": "document", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L1", + "community": 1023, + "norm_label": "callkit + voip setup fur rebreak", + "id": "ops_callkit_setup_callkit_voip_setup_f\u00fcr_rebreak" + }, + { + "label": "1. CSR generieren (Mac, 2 Min)", + "file_type": "document", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L3", + "community": 1023, + "norm_label": "1. csr generieren (mac, 2 min)", + "id": "ops_callkit_setup_1_csr_generieren_mac_2_min" + }, + { + "label": "2. Apple Dev Portal (5 Min)", + "file_type": "document", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L16", + "community": 1023, + "norm_label": "2. apple dev portal (5 min)", + "id": "ops_callkit_setup_2_apple_dev_portal_5_min" + }, + { + "label": "3. Files an mich", + "file_type": "document", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L25", + "community": 1023, + "norm_label": "3. files an mich", + "id": "ops_callkit_setup_3_files_an_mich" + }, + { + "label": "4. .cer in .p8/.p12 konvertieren (ich mach das)", + "file_type": "document", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L31", + "community": 1023, + "norm_label": "4. .cer in .p8/.p12 konvertieren (ich mach das)", + "id": "ops_callkit_setup_4_cer_in_p8_p12_konvertieren_ich_mach_das" + }, + { + "label": "5. Was Apple beim n\u00e4chsten App-Review checkt", + "file_type": "document", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L41", + "community": 1023, + "norm_label": "5. was apple beim nachsten app-review checkt", + "id": "ops_callkit_setup_5_was_apple_beim_n\u00e4chsten_app_review_checkt" + }, + { + "label": "6. Android (kein Apple-Antrag, aber Permission im Manifest)", + "file_type": "document", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L50", + "community": 1023, + "norm_label": "6. android (kein apple-antrag, aber permission im manifest)", + "id": "ops_callkit_setup_6_android_kein_apple_antrag_aber_permission_im_manifest" + }, + { + "label": "RUNBOOK.md", + "file_type": "document", + "source_file": "ops/calls/RUNBOOK.md", + "source_location": "L1", + "community": 1117, + "norm_label": "runbook.md", + "id": "ops_calls_runbook_md" + }, + { + "label": "Voice-Calls \u2014 coturn TURN-Server Runbook", + "file_type": "document", + "source_file": "ops/calls/RUNBOOK.md", + "source_location": "L1", + "community": 1117, + "norm_label": "voice-calls \u2014 coturn turn-server runbook", + "id": "calls_runbook_voice_calls_coturn_turn_server_runbook" + }, + { + "label": "Architektur", + "file_type": "document", + "source_file": "ops/calls/RUNBOOK.md", + "source_location": "L7", + "community": 1117, + "norm_label": "architektur", + "id": "calls_runbook_architektur" + }, + { + "label": "Provisioning (einmalig)", + "file_type": "document", + "source_file": "ops/calls/RUNBOOK.md", + "source_location": "L21", + "community": 1117, + "norm_label": "provisioning (einmalig)", + "id": "calls_runbook_provisioning_einmalig" + }, + { + "label": "Backend", + "file_type": "document", + "source_file": "ops/calls/RUNBOOK.md", + "source_location": "L47", + "community": 1117, + "norm_label": "backend", + "id": "calls_runbook_backend" + }, + { + "label": "Betrieb / Kosten", + "file_type": "document", + "source_file": "ops/calls/RUNBOOK.md", + "source_location": "L54", + "community": 1117, + "norm_label": "betrieb / kosten", + "id": "calls_runbook_betrieb_kosten" + }, + { + "label": "ARCHITECTURE.md", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L1", + "community": 932, + "norm_label": "architecture.md", + "id": "ops_mdm_architecture_md" + }, + { + "label": "MDM Server \u2014 Technische Architektur", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L1", + "community": 932, + "norm_label": "mdm server \u2014 technische architektur", + "id": "mdm_architecture_mdm_server_technische_architektur" + }, + { + "label": "Server", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L3", + "community": 932, + "norm_label": "server", + "id": "mdm_architecture_server" + }, + { + "label": "DNS", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L11", + "community": 932, + "norm_label": "dns", + "id": "mdm_architecture_dns" + }, + { + "label": "Stack-Komponenten", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L18", + "community": 932, + "norm_label": "stack-komponenten", + "id": "mdm_architecture_stack_komponenten" + }, + { + "label": "nginx (System-Service)", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L20", + "community": 932, + "norm_label": "nginx (system-service)", + "id": "mdm_architecture_nginx_system_service" + }, + { + "label": "NanoMDM (Docker-Container)", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L27", + "community": 932, + "norm_label": "nanomdm (docker-container)", + "id": "mdm_architecture_nanomdm_docker_container" + }, + { + "label": "PostgreSQL (System-Service)", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L38", + "community": 932, + "norm_label": "postgresql (system-service)", + "id": "mdm_architecture_postgresql_system_service" + }, + { + "label": "Certbot (System-Service)", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L46", + "community": 932, + "norm_label": "certbot (system-service)", + "id": "mdm_architecture_certbot_system_service" + }, + { + "label": "Port-\u00dcbersicht", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L51", + "community": 932, + "norm_label": "port-ubersicht", + "id": "mdm_architecture_port_\u00fcbersicht" + }, + { + "label": "Zertifikat-Pfade", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L63", + "community": 932, + "norm_label": "zertifikat-pfade", + "id": "mdm_architecture_zertifikat_pfade" + }, + { + "label": "Apple Push Zertifikat \u2014 Ablauf", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L76", + "community": 932, + "norm_label": "apple push zertifikat \u2014 ablauf", + "id": "mdm_architecture_apple_push_zertifikat_ablauf" + }, + { + "label": "Trust-Modell", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L93", + "community": 932, + "norm_label": "trust-modell", + "id": "mdm_architecture_trust_modell" + }, + { + "label": "Recovery-Szenarien", + "file_type": "document", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L112", + "community": 932, + "norm_label": "recovery-szenarien", + "id": "mdm_architecture_recovery_szenarien" + }, + { + "label": "PHASES.md", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L1", + "community": 297, + "norm_label": "phases.md", + "id": "ops_mdm_phases_md" + }, + { + "label": "MDM Setup \u2014 Phasen", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L1", + "community": 297, + "norm_label": "mdm setup \u2014 phasen", + "id": "mdm_phases_mdm_setup_phasen" + }, + { + "label": "Revisions-Log", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L3", + "community": 297, + "norm_label": "revisions-log", + "id": "mdm_phases_revisions_log" + }, + { + "label": "Phase A \u2705 Server-Bootstrap", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L11", + "community": 297, + "norm_label": "phase a \u2705 server-bootstrap", + "id": "mdm_phases_phase_a_server_bootstrap" + }, + { + "label": "Phase B \u2705 TLS-Zertifikat", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L21", + "community": 297, + "norm_label": "phase b \u2705 tls-zertifikat", + "id": "mdm_phases_phase_b_tls_zertifikat" + }, + { + "label": "Phase C \u2705 NanoMDM Container + nginx-Vhost", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L29", + "community": 297, + "norm_label": "phase c \u2705 nanomdm container + nginx-vhost", + "id": "mdm_phases_phase_c_nanomdm_container_nginx_vhost" + }, + { + "label": "Phase D \u2705 Apple Push CSR generiert", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L54", + "community": 297, + "norm_label": "phase d \u2705 apple push csr generiert", + "id": "mdm_phases_phase_d_apple_push_csr_generiert" + }, + { + "label": "Phase D.0.5 \u2705 mdmcert.download Signing-Request", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L68", + "community": 297, + "norm_label": "phase d.0.5 \u2705 mdmcert.download signing-request", + "id": "mdm_phases_phase_d_0_5_mdmcert_download_signing_request" + }, + { + "label": "Phase D.0.7 \u23f3 Signed CSR entschl\u00fcsseln", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L117", + "community": 297, + "norm_label": "phase d.0.7 \u23f3 signed csr entschlusseln", + "id": "mdm_phases_phase_d_0_7_signed_csr_entschl\u00fcsseln" + }, + { + "label": "Phase D.1 \u23f3 Apple Push Cert \u2014 Benutzeraktion", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L156", + "community": 297, + "norm_label": "phase d.1 \u23f3 apple push cert \u2014 benutzeraktion", + "id": "mdm_phases_phase_d_1_apple_push_cert_benutzeraktion" + }, + { + "label": "Phase D.2 \u2705 NanoMDM mit Push-Cert konfiguriert", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L183", + "community": 297, + "norm_label": "phase d.2 \u2705 nanomdm mit push-cert konfiguriert", + "id": "mdm_phases_phase_d_2_nanomdm_mit_push_cert_konfiguriert" + }, + { + "label": "Phase E \u23f8 Email-Distribution an Ina \u2014 geparkt (User-Decision 2026-05-10)", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L198", + "community": 297, + "norm_label": "phase e \u23f8 email-distribution an ina \u2014 geparkt (user-decision 2026-05-10)", + "id": "mdm_phases_phase_e_email_distribution_an_ina_geparkt_user_decision_2026_05_10" + }, + { + "label": "Phase F \u23f3 Device-Enrollment via Backup-Sandwich", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L212", + "community": 297, + "norm_label": "phase f \u23f3 device-enrollment via backup-sandwich", + "id": "mdm_phases_phase_f_device_enrollment_via_backup_sandwich" + }, + { + "label": "Mechanismus", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L218", + "community": 297, + "norm_label": "mechanismus", + "id": "mdm_phases_mechanismus" + }, + { + "label": "Komponenten dieser Phase", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L229", + "community": 297, + "norm_label": "komponenten dieser phase", + "id": "mdm_phases_komponenten_dieser_phase" + }, + { + "label": "Scope (erweitert 2026-05-24, revidiert 2026-05-24-late nach DEV-Test)", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L236", + "community": 297, + "norm_label": "scope (erweitert 2026-05-24, revidiert 2026-05-24-late nach dev-test)", + "id": "mdm_phases_scope_erweitert_2026_05_24_revidiert_2026_05_24_late_nach_dev_test" + }, + { + "label": "Hardware-/Tool-Voraussetzungen", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L264", + "community": 297, + "norm_label": "hardware-/tool-voraussetzungen", + "id": "mdm_phases_hardware_tool_voraussetzungen" + }, + { + "label": "Akzeptanz-Test (M2)", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L273", + "community": 297, + "norm_label": "akzeptanz-test (m2)", + "id": "mdm_phases_akzeptanz_test_m2" + }, + { + "label": "Phase G \u23f3 iPad-Enrollment (optional, sp\u00e4ter)", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L283", + "community": 297, + "norm_label": "phase g \u23f3 ipad-enrollment (optional, spater)", + "id": "mdm_phases_phase_g_ipad_enrollment_optional_sp\u00e4ter" + }, + { + "label": "Phase H \u23f3 MacBook-Enrollment (optional, sp\u00e4ter)", + "file_type": "document", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L296", + "community": 297, + "norm_label": "phase h \u23f3 macbook-enrollment (optional, spater)", + "id": "mdm_phases_phase_h_macbook_enrollment_optional_sp\u00e4ter" + }, + { + "label": "DOH_CLIENTID_HANDSHAKE.md", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L1", + "community": 945, + "norm_label": "doh_clientid_handshake.md", + "id": "ops_mdm_doh_clientid_handshake_md" + }, + { + "label": "DoH ClientID Handshake \u2014 Architektur", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L1", + "community": 945, + "norm_label": "doh clientid handshake \u2014 architektur", + "id": "mdm_doh_clientid_handshake_doh_clientid_handshake_architektur" + }, + { + "label": "Flow-Diagramm", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L3", + "community": 945, + "norm_label": "flow-diagramm", + "id": "mdm_doh_clientid_handshake_flow_diagramm" + }, + { + "label": "Warum ClientID-Pfad und nicht Query-Parameter", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L46", + "community": 945, + "norm_label": "warum clientid-pfad und nicht query-parameter", + "id": "mdm_doh_clientid_handshake_warum_clientid_pfad_und_nicht_query_parameter" + }, + { + "label": "nginx \u2014 Diff vs. alter Konfiguration", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L58", + "community": 945, + "norm_label": "nginx \u2014 diff vs. alter konfiguration", + "id": "mdm_doh_clientid_handshake_nginx_diff_vs_alter_konfiguration" + }, + { + "label": "AdGuard QueryLog Format", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L91", + "community": 945, + "norm_label": "adguard querylog format", + "id": "mdm_doh_clientid_handshake_adguard_querylog_format" + }, + { + "label": "Secrets", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L116", + "community": 945, + "norm_label": "secrets", + "id": "mdm_doh_clientid_handshake_secrets" + }, + { + "label": "Deploy-Schritte (Reihenfolge)", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L133", + "community": 945, + "norm_label": "deploy-schritte (reihenfolge)", + "id": "mdm_doh_clientid_handshake_deploy_schritte_reihenfolge" + }, + { + "label": "Datei-\u00dcbersicht", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L146", + "community": 945, + "norm_label": "datei-ubersicht", + "id": "mdm_doh_clientid_handshake_datei_\u00fcbersicht" + }, + { + "label": "Verify-Checklist vor nginx -s reload", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L154", + "community": 945, + "norm_label": "verify-checklist vor nginx -s reload", + "id": "mdm_doh_clientid_handshake_verify_checklist_vor_nginx_s_reload" + }, + { + "label": "Risiken + Verify-Checklist", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L158", + "community": 945, + "norm_label": "risiken + verify-checklist", + "id": "mdm_doh_clientid_handshake_risiken_verify_checklist" + }, + { + "label": "Vor `nginx -t` + `systemctl reload nginx`", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L160", + "community": 945, + "norm_label": "vor `nginx -t` + `systemctl reload nginx`", + "id": "mdm_doh_clientid_handshake_vor_nginx_t_systemctl_reload_nginx" + }, + { + "label": "Risiken", + "file_type": "document", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L204", + "community": 945, + "norm_label": "risiken", + "id": "mdm_doh_clientid_handshake_risiken" + }, + { + "label": "MAC_SUPERVISION_RESEARCH.md", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L1", + "community": 132, + "norm_label": "mac_supervision_research.md", + "id": "ops_mdm_mac_supervision_research_md" + }, + { + "label": "Mac \"Supervision\" Research \u2014 TechLockdown-Analyse & Replizierbarkeit", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L1", + "community": 132, + "norm_label": "mac \"supervision\" research \u2014 techlockdown-analyse & replizierbarkeit", + "id": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit" + }, + { + "label": "Executive Summary", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L8", + "community": 132, + "norm_label": "executive summary", + "id": "mdm_mac_supervision_research_executive_summary" + }, + { + "label": "1. TechLockdown-Findings (verifiziert via techlockdown.com)", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L33", + "community": 132, + "norm_label": "1. techlockdown-findings (verifiziert via techlockdown.com)", + "id": "mdm_mac_supervision_research_1_techlockdown_findings_verifiziert_via_techlockdown_com" + }, + { + "label": "1.1 Hauptmechanik: Apple Configuration Profiles", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L35", + "community": 132, + "norm_label": "1.1 hauptmechanik: apple configuration profiles", + "id": "mdm_mac_supervision_research_1_1_hauptmechanik_apple_configuration_profiles" + }, + { + "label": "1.2 Profile-Schutz-Mechanik", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L54", + "community": 132, + "norm_label": "1.2 profile-schutz-mechanik", + "id": "mdm_mac_supervision_research_1_2_profile_schutz_mechanik" + }, + { + "label": "1.3 \"Profile Locking\" \u2014 Dashboard-Feature (NICHT Apple-Mechanik)", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L74", + "community": 132, + "norm_label": "1.3 \"profile locking\" \u2014 dashboard-feature (nicht apple-mechanik)", + "id": "mdm_mac_supervision_research_1_3_profile_locking_dashboard_feature_nicht_apple_mechanik" + }, + { + "label": "1.4 \"Managed Mode\" f\u00fcr Browser-Extensions", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L94", + "community": 132, + "norm_label": "1.4 \"managed mode\" fur browser-extensions", + "id": "mdm_mac_supervision_research_1_4_managed_mode_f\u00fcr_browser_extensions" + }, + { + "label": "1.5 Was TechLockdown NICHT erw\u00e4hnt", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L123", + "community": 132, + "norm_label": "1.5 was techlockdown nicht erwahnt", + "id": "mdm_mac_supervision_research_1_5_was_techlockdown_nicht_erw\u00e4hnt" + }, + { + "label": "2. Apple-Mechanik Deep-Dive: macOS MDM vs. iOS MDM", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L137", + "community": 132, + "norm_label": "2. apple-mechanik deep-dive: macos mdm vs. ios mdm", + "id": "mdm_mac_supervision_research_2_apple_mechanik_deep_dive_macos_mdm_vs_ios_mdm" + }, + { + "label": "2.1 \"Supervision\" auf Mac existiert NICHT", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L139", + "community": 132, + "norm_label": "2.1 \"supervision\" auf mac existiert nicht", + "id": "mdm_mac_supervision_research_2_1_supervision_auf_mac_existiert_nicht" + }, + { + "label": "2.2 macOS Enrollment-Pfade", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L149", + "community": 132, + "norm_label": "2.2 macos enrollment-pfade", + "id": "mdm_mac_supervision_research_2_2_macos_enrollment_pfade" + }, + { + "label": "Option 1: **UAMDM (User-Approved MDM Enrollment)**", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L151", + "community": 132, + "norm_label": "option 1: **uamdm (user-approved mdm enrollment)**", + "id": "mdm_mac_supervision_research_option_1_uamdm_user_approved_mdm_enrollment" + }, + { + "label": "Option 2: **Automated Device Enrollment (ADE) via ABM**", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L174", + "community": 132, + "norm_label": "option 2: **automated device enrollment (ade) via abm**", + "id": "mdm_mac_supervision_research_option_2_automated_device_enrollment_ade_via_abm" + }, + { + "label": "Option 3: **Statische Configuration Profiles (kein MDM)**", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L193", + "community": 132, + "norm_label": "option 3: **statische configuration profiles (kein mdm)**", + "id": "mdm_mac_supervision_research_option_3_statische_configuration_profiles_kein_mdm" + }, + { + "label": "2.3 Welche Restrictions brauchen Supervision/ABM?", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L209", + "community": 132, + "norm_label": "2.3 welche restrictions brauchen supervision/abm?", + "id": "mdm_mac_supervision_research_2_3_welche_restrictions_brauchen_supervision_abm" + }, + { + "label": "2.4 System Extensions auf Mac (NEFilterProvider)", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L223", + "community": 132, + "norm_label": "2.4 system extensions auf mac (nefilterprovider)", + "id": "mdm_mac_supervision_research_2_4_system_extensions_auf_mac_nefilterprovider" + }, + { + "label": "3. Replizierbarkeits-Matrix: TechLockdown vs. RebreakBinder-Mac", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L261", + "community": 132, + "norm_label": "3. replizierbarkeits-matrix: techlockdown vs. rebreakbinder-mac", + "id": "mdm_mac_supervision_research_3_replizierbarkeits_matrix_techlockdown_vs_rebreakbinder_mac" + }, + { + "label": "4. Empfehlung f\u00fcr RebreakBinder-Mac", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L283", + "community": 132, + "norm_label": "4. empfehlung fur rebreakbinder-mac", + "id": "mdm_mac_supervision_research_4_empfehlung_f\u00fcr_rebreakbinder_mac" + }, + { + "label": "4.1 MVP-Pfad (2-4 Wochen, 80% TechLockdown-Feature-Parity)", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L285", + "community": 132, + "norm_label": "4.1 mvp-pfad (2-4 wochen, 80% techlockdown-feature-parity)", + "id": "mdm_mac_supervision_research_4_1_mvp_pfad_2_4_wochen_80_techlockdown_feature_parity" + }, + { + "label": "4.2 Advanced-Pfad (4-8 Wochen, 95% Feature-Parity + System-Extension)", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L329", + "community": 132, + "norm_label": "4.2 advanced-pfad (4-8 wochen, 95% feature-parity + system-extension)", + "id": "mdm_mac_supervision_research_4_2_advanced_pfad_4_8_wochen_95_feature_parity_system_extension" + }, + { + "label": "4.3 Was wir NICHT replizieren k\u00f6nnen (Mac-Limitierungen)", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L350", + "community": 132, + "norm_label": "4.3 was wir nicht replizieren konnen (mac-limitierungen)", + "id": "mdm_mac_supervision_research_4_3_was_wir_nicht_replizieren_k\u00f6nnen_mac_limitierungen" + }, + { + "label": "5. Apple Business Manager (ABM) \u2014 Do We Need It?", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L361", + "community": 132, + "norm_label": "5. apple business manager (abm) \u2014 do we need it?", + "id": "mdm_mac_supervision_research_5_apple_business_manager_abm_do_we_need_it" + }, + { + "label": "5.1 Was ist ABM?", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L363", + "community": 132, + "norm_label": "5.1 was ist abm?", + "id": "mdm_mac_supervision_research_5_1_was_ist_abm" + }, + { + "label": "5.2 ABM-Setup-Prozess", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L369", + "community": 132, + "norm_label": "5.2 abm-setup-prozess", + "id": "mdm_mac_supervision_research_5_2_abm_setup_prozess" + }, + { + "label": "5.3 Brauchen wir das?", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L386", + "community": 132, + "norm_label": "5.3 brauchen wir das?", + "id": "mdm_mac_supervision_research_5_3_brauchen_wir_das" + }, + { + "label": "6. Offene Fragen / Risiken / User-Decisions-Needed", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L400", + "community": 132, + "norm_label": "6. offene fragen / risiken / user-decisions-needed", + "id": "mdm_mac_supervision_research_6_offene_fragen_risiken_user_decisions_needed" + }, + { + "label": "6.1 Offene Fragen", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L402", + "community": 132, + "norm_label": "6.1 offene fragen", + "id": "mdm_mac_supervision_research_6_1_offene_fragen" + }, + { + "label": "6.2 Risiken", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L418", + "community": 132, + "norm_label": "6.2 risiken", + "id": "mdm_mac_supervision_research_6_2_risiken" + }, + { + "label": "6.3 User-Decisions-Needed", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L427", + "community": 132, + "norm_label": "6.3 user-decisions-needed", + "id": "mdm_mac_supervision_research_6_3_user_decisions_needed" + }, + { + "label": "7. Implementation-Roadmap (wenn GO-Entscheidung)", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L453", + "community": 132, + "norm_label": "7. implementation-roadmap (wenn go-entscheidung)", + "id": "mdm_mac_supervision_research_7_implementation_roadmap_wenn_go_entscheidung" + }, + { + "label": "Phase 1: MVP (2-4 Wochen)", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L455", + "community": 132, + "norm_label": "phase 1: mvp (2-4 wochen)", + "id": "mdm_mac_supervision_research_phase_1_mvp_2_4_wochen" + }, + { + "label": "Phase 2: Advanced (4-8 Wochen, optional)", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L486", + "community": 132, + "norm_label": "phase 2: advanced (4-8 wochen, optional)", + "id": "mdm_mac_supervision_research_phase_2_advanced_4_8_wochen_optional" + }, + { + "label": "8. Quellen & Verifikations-Status", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L503", + "community": 132, + "norm_label": "8. quellen & verifikations-status", + "id": "mdm_mac_supervision_research_8_quellen_verifikations_status" + }, + { + "label": "9. Fazit", + "file_type": "document", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L525", + "community": 132, + "norm_label": "9. fazit", + "id": "mdm_mac_supervision_research_9_fazit" + }, + { + "label": "RUNBOOK.md", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L1", + "community": 113, + "norm_label": "runbook.md", + "id": "ops_mdm_runbook_md" + }, + { + "label": "MDM Server \u2014 Operations Runbook", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L1", + "community": 113, + "norm_label": "mdm server \u2014 operations runbook", + "id": "mdm_runbook_mdm_server_operations_runbook" + }, + { + "label": "SSH-Zugriff", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L3", + "community": 113, + "norm_label": "ssh-zugriff", + "id": "mdm_runbook_ssh_zugriff" + }, + { + "label": "NanoMDM Container", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L10", + "community": 113, + "norm_label": "nanomdm container", + "id": "mdm_runbook_nanomdm_container" + }, + { + "label": "Status pr\u00fcfen", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L12", + "community": 113, + "norm_label": "status prufen", + "id": "mdm_runbook_status_pr\u00fcfen" + }, + { + "label": "Logs anschauen", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L18", + "community": 113, + "norm_label": "logs anschauen", + "id": "mdm_runbook_logs_anschauen" + }, + { + "label": "Restart", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L25", + "community": 113, + "norm_label": "restart", + "id": "mdm_runbook_restart" + }, + { + "label": "Stop + Start (hard restart)", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L30", + "community": 113, + "norm_label": "stop + start (hard restart)", + "id": "mdm_runbook_stop_start_hard_restart" + }, + { + "label": "Auf neue Version updaten", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L35", + "community": 113, + "norm_label": "auf neue version updaten", + "id": "mdm_runbook_auf_neue_version_updaten" + }, + { + "label": "PostgreSQL", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L40", + "community": 113, + "norm_label": "postgresql", + "id": "mdm_runbook_postgresql" + }, + { + "label": "Zugriff auf nanomdm-DB", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L42", + "community": 113, + "norm_label": "zugriff auf nanomdm-db", + "id": "mdm_runbook_zugriff_auf_nanomdm_db" + }, + { + "label": "DB-Passwort abrufen", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L47", + "community": 113, + "norm_label": "db-passwort abrufen", + "id": "mdm_runbook_db_passwort_abrufen" + }, + { + "label": "Tabellen-\u00dcbersicht", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L52", + "community": 113, + "norm_label": "tabellen-ubersicht", + "id": "mdm_runbook_tabellen_\u00fcbersicht" + }, + { + "label": "DB-Backup", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L57", + "community": 113, + "norm_label": "db-backup", + "id": "mdm_runbook_db_backup" + }, + { + "label": "DB-Restore (nach Backup)", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L64", + "community": 113, + "norm_label": "db-restore (nach backup)", + "id": "mdm_runbook_db_restore_nach_backup" + }, + { + "label": "nginx", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L70", + "community": 113, + "norm_label": "nginx", + "id": "mdm_runbook_nginx" + }, + { + "label": "Config testen", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L72", + "community": 113, + "norm_label": "config testen", + "id": "mdm_runbook_config_testen" + }, + { + "label": "Reload (nach Config-\u00c4nderung)", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L77", + "community": 113, + "norm_label": "reload (nach config-anderung)", + "id": "mdm_runbook_reload_nach_config_\u00e4nderung" + }, + { + "label": "Vhost-Config", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L82", + "community": 113, + "norm_label": "vhost-config", + "id": "mdm_runbook_vhost_config" + }, + { + "label": "Logs", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L87", + "community": 113, + "norm_label": "logs", + "id": "mdm_runbook_logs" + }, + { + "label": "TLS-Zertifikat (Let's Encrypt)", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L93", + "community": 113, + "norm_label": "tls-zertifikat (let's encrypt)", + "id": "mdm_runbook_tls_zertifikat_let_s_encrypt" + }, + { + "label": "Status pr\u00fcfen", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L95", + "community": 113, + "norm_label": "status prufen", + "id": "mdm_runbook_status_pr\u00fcfen_95" + }, + { + "label": "Manuelle Renewal (Notfall)", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L101", + "community": 113, + "norm_label": "manuelle renewal (notfall)", + "id": "mdm_runbook_manuelle_renewal_notfall" + }, + { + "label": "Cert-Expiry pr\u00fcfen", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L110", + "community": 113, + "norm_label": "cert-expiry prufen", + "id": "mdm_runbook_cert_expiry_pr\u00fcfen" + }, + { + "label": "Apple Push Zertifikat", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L115", + "community": 113, + "norm_label": "apple push zertifikat", + "id": "mdm_runbook_apple_push_zertifikat" + }, + { + "label": "Expiry pr\u00fcfen", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L117", + "community": 113, + "norm_label": "expiry prufen", + "id": "mdm_runbook_expiry_pr\u00fcfen" + }, + { + "label": "J\u00e4hrliche Renewal", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L123", + "community": 113, + "norm_label": "jahrliche renewal", + "id": "mdm_runbook_j\u00e4hrliche_renewal" + }, + { + "label": "Neues CSR generieren (nur wenn push.key verloren!)", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L130", + "community": 113, + "norm_label": "neues csr generieren (nur wenn push.key verloren!)", + "id": "mdm_runbook_neues_csr_generieren_nur_wenn_push_key_verloren" + }, + { + "label": "Externer Health-Check", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L139", + "community": 113, + "norm_label": "externer health-check", + "id": "mdm_runbook_externer_health_check" + }, + { + "label": "Firewall (UFW)", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L148", + "community": 113, + "norm_label": "firewall (ufw)", + "id": "mdm_runbook_firewall_ufw" + }, + { + "label": "System-Ressourcen", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L156", + "community": 113, + "norm_label": "system-ressourcen", + "id": "mdm_runbook_system_ressourcen" + }, + { + "label": "Handshake-Watcher (DoH ClientID \u2192 Backend)", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L162", + "community": 113, + "norm_label": "handshake-watcher (doh clientid \u2192 backend)", + "id": "mdm_runbook_handshake_watcher_doh_clientid_backend" + }, + { + "label": "Status pr\u00fcfen", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L164", + "community": 113, + "norm_label": "status prufen", + "id": "mdm_runbook_status_pr\u00fcfen_164" + }, + { + "label": "Logs live", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L169", + "community": 113, + "norm_label": "logs live", + "id": "mdm_runbook_logs_live" + }, + { + "label": "Restart", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L174", + "community": 113, + "norm_label": "restart", + "id": "mdm_runbook_restart_174" + }, + { + "label": "EnvironmentFile-Pfad (Secrets, chmod 600)", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L179", + "community": 113, + "norm_label": "environmentfile-pfad (secrets, chmod 600)", + "id": "mdm_runbook_environmentfile_pfad_secrets_chmod_600" + }, + { + "label": "Watcher-Code deployen (nach Code-\u00c4nderung)", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L190", + "community": 113, + "norm_label": "watcher-code deployen (nach code-anderung)", + "id": "mdm_runbook_watcher_code_deployen_nach_code_\u00e4nderung" + }, + { + "label": "Vollst\u00e4ndige Architektur-Doku", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L196", + "community": 113, + "norm_label": "vollstandige architektur-doku", + "id": "mdm_runbook_vollst\u00e4ndige_architektur_doku" + }, + { + "label": "Troubleshooting", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L199", + "community": 113, + "norm_label": "troubleshooting", + "id": "mdm_runbook_troubleshooting" + }, + { + "label": "nanomdm startet nicht", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L201", + "community": 113, + "norm_label": "nanomdm startet nicht", + "id": "mdm_runbook_nanomdm_startet_nicht" + }, + { + "label": "502 Bad Gateway von nginx", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L213", + "community": 113, + "norm_label": "502 bad gateway von nginx", + "id": "mdm_runbook_502_bad_gateway_von_nginx" + }, + { + "label": "Postgres startet nicht", + "file_type": "document", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L222", + "community": 113, + "norm_label": "postgres startet nicht", + "id": "mdm_runbook_postgres_startet_nicht" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "ops/mdm/README.md", + "source_location": "L1", + "community": 1022, + "norm_label": "readme.md", + "id": "ops_mdm_readme_md" + }, + { + "label": "ReBreak MDM \u2014 Projekt\u00fcbersicht", + "file_type": "document", + "source_file": "ops/mdm/README.md", + "source_location": "L1", + "community": 1022, + "norm_label": "rebreak mdm \u2014 projektubersicht", + "id": "mdm_readme_rebreak_mdm_projekt\u00fcbersicht" + }, + { + "label": "Was ist das", + "file_type": "document", + "source_file": "ops/mdm/README.md", + "source_location": "L3", + "community": 1022, + "norm_label": "was ist das", + "id": "mdm_readme_was_ist_das" + }, + { + "label": "Warum getrennter VPS", + "file_type": "document", + "source_file": "ops/mdm/README.md", + "source_location": "L11", + "community": 1022, + "norm_label": "warum getrennter vps", + "id": "mdm_readme_warum_getrennter_vps" + }, + { + "label": "Architektur", + "file_type": "document", + "source_file": "ops/mdm/README.md", + "source_location": "L19", + "community": 1022, + "norm_label": "architektur", + "id": "mdm_readme_architektur" + }, + { + "label": "Trust-Modell", + "file_type": "document", + "source_file": "ops/mdm/README.md", + "source_location": "L51", + "community": 1022, + "norm_label": "trust-modell", + "id": "mdm_readme_trust_modell" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "ops/mdm/README.md", + "source_location": "L59", + "community": 1022, + "norm_label": "status", + "id": "mdm_readme_status" + }, + { + "label": "Quick Links", + "file_type": "document", + "source_file": "ops/mdm/README.md", + "source_location": "L70", + "community": 1022, + "norm_label": "quick links", + "id": "mdm_readme_quick_links" + }, + { + "label": "USER-ACTIONS-PENDING.md", + "file_type": "document", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L1", + "community": 1043, + "norm_label": "user-actions-pending.md", + "id": "ops_mdm_user_actions_pending_md" + }, + { + "label": "Ausstehende Benutzeraktionen", + "file_type": "document", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L1", + "community": 1043, + "norm_label": "ausstehende benutzeraktionen", + "id": "mdm_user_actions_pending_ausstehende_benutzeraktionen" + }, + { + "label": "Sofort (Phase D.1) \u2014 Apple Push Zertifikat", + "file_type": "document", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L7", + "community": 1043, + "norm_label": "sofort (phase d.1) \u2014 apple push zertifikat", + "id": "mdm_user_actions_pending_sofort_phase_d_1_apple_push_zertifikat" + }, + { + "label": "Danach (Phase E-Vorbereitung) \u2014 Resend API-Key", + "file_type": "document", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L31", + "community": 1043, + "norm_label": "danach (phase e-vorbereitung) \u2014 resend api-key", + "id": "mdm_user_actions_pending_danach_phase_e_vorbereitung_resend_api_key" + }, + { + "label": "Ina vorwarnen (optional, aber empfohlen)", + "file_type": "document", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L39", + "community": 1043, + "norm_label": "ina vorwarnen (optional, aber empfohlen)", + "id": "mdm_user_actions_pending_ina_vorwarnen_optional_aber_empfohlen" + }, + { + "label": "Sp\u00e4ter (Phase F) \u2014 Device Enrollment", + "file_type": "document", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L48", + "community": 1043, + "norm_label": "spater (phase f) \u2014 device enrollment", + "id": "mdm_user_actions_pending_sp\u00e4ter_phase_f_device_enrollment" + }, + { + "label": "Status-\u00dcbersicht", + "file_type": "document", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L65", + "community": 1043, + "norm_label": "status-ubersicht", + "id": "mdm_user_actions_pending_status_\u00fcbersicht" + }, + { + "label": "SECURITY.md", + "file_type": "document", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L1", + "community": 962, + "norm_label": "security.md", + "id": "ops_mdm_security_md" + }, + { + "label": "MDM Server \u2014 Security", + "file_type": "document", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L1", + "community": 962, + "norm_label": "mdm server \u2014 security", + "id": "mdm_security_mdm_server_security" + }, + { + "label": "Was muss geheim bleiben", + "file_type": "document", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L3", + "community": 962, + "norm_label": "was muss geheim bleiben", + "id": "mdm_security_was_muss_geheim_bleiben" + }, + { + "label": "Was NICHT geheim sein muss", + "file_type": "document", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L16", + "community": 962, + "norm_label": "was nicht geheim sein muss", + "id": "mdm_security_was_nicht_geheim_sein_muss" + }, + { + "label": "Threat-Modelle", + "file_type": "document", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L22", + "community": 962, + "norm_label": "threat-modelle", + "id": "mdm_security_threat_modelle" + }, + { + "label": "Server-Kompromittierung", + "file_type": "document", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L24", + "community": 962, + "norm_label": "server-kompromittierung", + "id": "mdm_security_server_kompromittierung" + }, + { + "label": "Device-Verlust (gestohlen)", + "file_type": "document", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L37", + "community": 962, + "norm_label": "device-verlust (gestohlen)", + "id": "mdm_security_device_verlust_gestohlen" + }, + { + "label": "Angreifer hat Zugriff auf Ina's Email-Account", + "file_type": "document", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L43", + "community": 962, + "norm_label": "angreifer hat zugriff auf ina's email-account", + "id": "mdm_security_angreifer_hat_zugriff_auf_ina_s_email_account" + }, + { + "label": "Abgelaufenes Apple Push Cert", + "file_type": "document", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L47", + "community": 962, + "norm_label": "abgelaufenes apple push cert", + "id": "mdm_security_abgelaufenes_apple_push_cert" + }, + { + "label": "Geheimhaltungs-Regeln", + "file_type": "document", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L51", + "community": 962, + "norm_label": "geheimhaltungs-regeln", + "id": "mdm_security_geheimhaltungs_regeln" + }, + { + "label": "Audit-Trail", + "file_type": "document", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L58", + "community": 962, + "norm_label": "audit-trail", + "id": "mdm_security_audit_trail" + }, + { + "label": "SUPERVISION-IDENTITY-SETUP.md", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L1", + "community": 1020, + "norm_label": "supervision-identity-setup.md", + "id": "ops_mdm_bootstrap_tool_supervision_identity_setup_md" + }, + { + "label": "Supervision-Identity einmaliger Setup", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L1", + "community": 1020, + "norm_label": "supervision-identity einmaliger setup", + "id": "bootstrap_tool_supervision_identity_setup_supervision_identity_einmaliger_setup" + }, + { + "label": "Wo die Identity liegen muss", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L9", + "community": 1020, + "norm_label": "wo die identity liegen muss", + "id": "bootstrap_tool_supervision_identity_setup_wo_die_identity_liegen_muss" + }, + { + "label": "Pfad A \u2014 Via Apple Configurator 2 (GUI, empfohlen)", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L19", + "community": 1020, + "norm_label": "pfad a \u2014 via apple configurator 2 (gui, empfohlen)", + "id": "bootstrap_tool_supervision_identity_setup_pfad_a_via_apple_configurator_2_gui_empfohlen" + }, + { + "label": "Pfad B \u2014 Via cfgutil CLI", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L34", + "community": 1020, + "norm_label": "pfad b \u2014 via cfgutil cli", + "id": "bootstrap_tool_supervision_identity_setup_pfad_b_via_cfgutil_cli" + }, + { + "label": "Verifikation", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L49", + "community": 1020, + "norm_label": "verifikation", + "id": "bootstrap_tool_supervision_identity_setup_verifikation" + }, + { + "label": "Sicherheit", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L64", + "community": 1020, + "norm_label": "sicherheit", + "id": "bootstrap_tool_supervision_identity_setup_sicherheit" + }, + { + "label": "Bei Fehler \"supervision identity not trusted\"", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L71", + "community": 1020, + "norm_label": "bei fehler \"supervision identity not trusted\"", + "id": "bootstrap_tool_supervision_identity_setup_bei_fehler_supervision_identity_not_trusted" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L1", + "community": 948, + "norm_label": "readme.md", + "id": "ops_mdm_bootstrap_tool_readme_md" + }, + { + "label": "ReBreak Supervise Bootstrap-Tool", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L1", + "community": 948, + "norm_label": "rebreak supervise bootstrap-tool", + "id": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L7", + "community": 948, + "norm_label": "status", + "id": "bootstrap_tool_readme_status" + }, + { + "label": "Voraussetzungen (Mac des Users)", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L11", + "community": 948, + "norm_label": "voraussetzungen (mac des users)", + "id": "bootstrap_tool_readme_voraussetzungen_mac_des_users" + }, + { + "label": "Voraussetzungen (iPhone des Users)", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L22", + "community": 948, + "norm_label": "voraussetzungen (iphone des users)", + "id": "bootstrap_tool_readme_voraussetzungen_iphone_des_users" + }, + { + "label": "Schnellstart", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L32", + "community": 948, + "norm_label": "schnellstart", + "id": "bootstrap_tool_readme_schnellstart" + }, + { + "label": "Was das Script macht \u2014 Schritt f\u00fcr Schritt", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L48", + "community": 948, + "norm_label": "was das script macht \u2014 schritt fur schritt", + "id": "bootstrap_tool_readme_was_das_script_macht_schritt_f\u00fcr_schritt" + }, + { + "label": "State + Logs", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L56", + "community": 948, + "norm_label": "state + logs", + "id": "bootstrap_tool_readme_state_logs" + }, + { + "label": "Failure-Pfade", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L68", + "community": 948, + "norm_label": "failure-pfade", + "id": "bootstrap_tool_readme_failure_pfade" + }, + { + "label": "Post-Supervise: iOS-Setup-Stage", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L81", + "community": 948, + "norm_label": "post-supervise: ios-setup-stage", + "id": "bootstrap_tool_readme_post_supervise_ios_setup_stage" + }, + { + "label": "Cross-Plattform-Pfad (Phase 2)", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L92", + "community": 948, + "norm_label": "cross-plattform-pfad (phase 2)", + "id": "bootstrap_tool_readme_cross_plattform_pfad_phase_2" + }, + { + "label": "Bekannte T\u00fccken", + "file_type": "document", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L97", + "community": 948, + "norm_label": "bekannte tucken", + "id": "bootstrap_tool_readme_bekannte_t\u00fccken" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L1", + "community": 950, + "norm_label": "readme.md", + "id": "ops_mdm_supervise_magic_readme_md" + }, + { + "label": "ReBreak Supervise Magic", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L1", + "community": 950, + "norm_label": "rebreak supervise magic", + "id": "supervise_magic_readme_rebreak_supervise_magic" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L9", + "community": 950, + "norm_label": "status", + "id": "supervise_magic_readme_status" + }, + { + "label": "Voraussetzungen", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L13", + "community": 950, + "norm_label": "voraussetzungen", + "id": "supervise_magic_readme_voraussetzungen" + }, + { + "label": "Build", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L22", + "community": 950, + "norm_label": "build", + "id": "supervise_magic_readme_build" + }, + { + "label": "Usage", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L35", + "community": 950, + "norm_label": "usage", + "id": "supervise_magic_readme_usage" + }, + { + "label": "Delta-Workflow (current vs legacy)", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L51", + "community": 950, + "norm_label": "delta-workflow (current vs legacy)", + "id": "supervise_magic_readme_delta_workflow_current_vs_legacy" + }, + { + "label": "Mechanismus im Detail", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L67", + "community": 950, + "norm_label": "mechanismus im detail", + "id": "supervise_magic_readme_mechanismus_im_detail" + }, + { + "label": "Sicherheits-Hinweise", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L77", + "community": 950, + "norm_label": "sicherheits-hinweise", + "id": "supervise_magic_readme_sicherheits_hinweise" + }, + { + "label": "Apple-Walls die wir damit umgehen", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L84", + "community": 950, + "norm_label": "apple-walls die wir damit umgehen", + "id": "supervise_magic_readme_apple_walls_die_wir_damit_umgehen" + }, + { + "label": "Apple-Walls die bleiben", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L89", + "community": 950, + "norm_label": "apple-walls die bleiben", + "id": "supervise_magic_readme_apple_walls_die_bleiben" + }, + { + "label": "Lizenz & Distribution", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L94", + "community": 950, + "norm_label": "lizenz & distribution", + "id": "supervise_magic_readme_lizenz_distribution" + }, + { + "label": "delta-matrix.md", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L1", + "community": 1025, + "norm_label": "delta-matrix.md", + "id": "ops_mdm_supervise_magic_tools_delta_matrix_md" + }, + { + "label": "Ablauf-Deltas: current vs legacy", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L1", + "community": 1025, + "norm_label": "ablauf-deltas: current vs legacy", + "id": "tools_delta_matrix_ablauf_deltas_current_vs_legacy" + }, + { + "label": "Referenz", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L5", + "community": 1025, + "norm_label": "referenz", + "id": "tools_delta_matrix_referenz" + }, + { + "label": "Harte Unterschiede", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L10", + "community": 1025, + "norm_label": "harte unterschiede", + "id": "tools_delta_matrix_harte_unterschiede" + }, + { + "label": "A/B Lauf", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L24", + "community": 1025, + "norm_label": "a/b lauf", + "id": "tools_delta_matrix_a_b_lauf" + }, + { + "label": "partial-safe Zweck", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L35", + "community": 1025, + "norm_label": "partial-safe zweck", + "id": "tools_delta_matrix_partial_safe_zweck" + }, + { + "label": "partial-lite Zweck", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L46", + "community": 1025, + "norm_label": "partial-lite zweck", + "id": "tools_delta_matrix_partial_lite_zweck" + }, + { + "label": "Auswertung pro Lauf", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L55", + "community": 1025, + "norm_label": "auswertung pro lauf", + "id": "tools_delta_matrix_auswertung_pro_lauf" + }, + { + "label": "systematic-playbook.md", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L1", + "community": 1026, + "norm_label": "systematic-playbook.md", + "id": "ops_mdm_supervise_magic_tools_systematic_playbook_md" + }, + { + "label": "Systematic Playbook (No Guessing)", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L1", + "community": 1026, + "norm_label": "systematic playbook (no guessing)", + "id": "tools_systematic_playbook_systematic_playbook_no_guessing" + }, + { + "label": "Goal", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L3", + "community": 1026, + "norm_label": "goal", + "id": "tools_systematic_playbook_goal" + }, + { + "label": "Rule Set", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L7", + "community": 1026, + "norm_label": "rule set", + "id": "tools_systematic_playbook_rule_set" + }, + { + "label": "Command", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L14", + "community": 1026, + "norm_label": "command", + "id": "tools_systematic_playbook_command" + }, + { + "label": "Run Order", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L24", + "community": 1026, + "norm_label": "run order", + "id": "tools_systematic_playbook_run_order" + }, + { + "label": "Decision Logic", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L31", + "community": 1026, + "norm_label": "decision logic", + "id": "tools_systematic_playbook_decision_logic" + }, + { + "label": "Promotion Criteria", + "file_type": "document", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L38", + "community": 1026, + "norm_label": "promotion criteria", + "id": "tools_systematic_playbook_promotion_criteria" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L1", + "community": 963, + "norm_label": "readme.md", + "id": "ops_mdm_profiles_readme_md" + }, + { + "label": "ReBreak MDM Profiles", + "file_type": "document", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L1", + "community": 963, + "norm_label": "rebreak mdm profiles", + "id": "profiles_readme_rebreak_mdm_profiles" + }, + { + "label": "Files", + "file_type": "document", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L12", + "community": 963, + "norm_label": "files", + "id": "profiles_readme_files" + }, + { + "label": "`rebreak-iphone-protect.mobileconfig` (Sideload, non-removable)", + "file_type": "document", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L14", + "community": 963, + "norm_label": "`rebreak-iphone-protect.mobileconfig` (sideload, non-removable)", + "id": "profiles_readme_rebreak_iphone_protect_mobileconfig_sideload_non_removable" + }, + { + "label": "`rebreak-iphone-take-management.json` (NanoMDM, Step 1 von 2)", + "file_type": "document", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L31", + "community": 963, + "norm_label": "`rebreak-iphone-take-management.json` (nanomdm, step 1 von 2)", + "id": "profiles_readme_rebreak_iphone_take_management_json_nanomdm_step_1_von_2" + }, + { + "label": "`rebreak-iphone-mdm-supervised.json` (NanoMDM, Step 2 von 2)", + "file_type": "document", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L39", + "community": 963, + "norm_label": "`rebreak-iphone-mdm-supervised.json` (nanomdm, step 2 von 2)", + "id": "profiles_readme_rebreak_iphone_mdm_supervised_json_nanomdm_step_2_von_2" + }, + { + "label": "Vollst\u00e4ndiger Push-Flow (NanoMDM)", + "file_type": "document", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L45", + "community": 963, + "norm_label": "vollstandiger push-flow (nanomdm)", + "id": "profiles_readme_vollst\u00e4ndiger_push_flow_nanomdm" + }, + { + "label": "Verifikation in der App", + "file_type": "document", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L78", + "community": 963, + "norm_label": "verifikation in der app", + "id": "profiles_readme_verifikation_in_der_app" + }, + { + "label": "Reversal", + "file_type": "document", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L86", + "community": 963, + "norm_label": "reversal", + "id": "profiles_readme_reversal" + }, + { + "label": "Migration vom alten Profile", + "file_type": "document", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L95", + "community": 963, + "norm_label": "migration vom alten profile", + "id": "profiles_readme_migration_vom_alten_profile" + }, + { + "label": "NanoMDM Enrollment Generator (per-device)", + "file_type": "document", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L109", + "community": 963, + "norm_label": "nanomdm enrollment generator (per-device)", + "id": "profiles_readme_nanomdm_enrollment_generator_per_device" + }, + { + "label": "UNSUPERVISED-TEST-PLAN.md", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L1", + "community": 246, + "norm_label": "unsupervised-test-plan.md", + "id": "ops_mdm_profiles_unsupervised_test_plan_md" + }, + { + "label": "Unsupervised Sideload Profile \u2014 Test-Checklist", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L1", + "community": 246, + "norm_label": "unsupervised sideload profile \u2014 test-checklist", + "id": "profiles_unsupervised_test_plan_unsupervised_sideload_profile_test_checklist" + }, + { + "label": "Architektur-Kontext", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L7", + "community": 246, + "norm_label": "architektur-kontext", + "id": "profiles_unsupervised_test_plan_architektur_kontext" + }, + { + "label": "Pre-Flight", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L20", + "community": 246, + "norm_label": "pre-flight", + "id": "profiles_unsupervised_test_plan_pre_flight" + }, + { + "label": "Install-Test", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L32", + "community": 246, + "norm_label": "install-test", + "id": "profiles_unsupervised_test_plan_install_test" + }, + { + "label": "Verifikation: was greift?", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L51", + "community": 246, + "norm_label": "verifikation: was greift?", + "id": "profiles_unsupervised_test_plan_verifikation_was_greift" + }, + { + "label": "\u2705 DNS-Lock (sollte funktionieren)", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L53", + "community": 246, + "norm_label": "\u2705 dns-lock (sollte funktionieren)", + "id": "profiles_unsupervised_test_plan_dns_lock_sollte_funktionieren" + }, + { + "label": "\u2705 VPN-Auto-Connect (sollte funktionieren)", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L61", + "community": 246, + "norm_label": "\u2705 vpn-auto-connect (sollte funktionieren)", + "id": "profiles_unsupervised_test_plan_vpn_auto_connect_sollte_funktionieren" + }, + { + "label": "\u274c OnDemand-Toggle-Lock (Apple blockt das auf Sideload \u2014 DOKUMENTIERT)", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L67", + "community": 246, + "norm_label": "\u274c ondemand-toggle-lock (apple blockt das auf sideload \u2014 dokumentiert)", + "id": "profiles_unsupervised_test_plan_ondemand_toggle_lock_apple_blockt_das_auf_sideload_dokumentiert" + }, + { + "label": "\u26a0\ufe0f PayloadRemovalDisallowed (Verhalten auf unsupervised verifizieren)", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L75", + "community": 246, + "norm_label": "\u26a0\ufe0f payloadremovaldisallowed (verhalten auf unsupervised verifizieren)", + "id": "profiles_unsupervised_test_plan_payloadremovaldisallowed_verhalten_auf_unsupervised_verifizieren" + }, + { + "label": "\u2705 RemovalPassword (sollte funktionieren)", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L83", + "community": 246, + "norm_label": "\u2705 removalpassword (sollte funktionieren)", + "id": "profiles_unsupervised_test_plan_removalpassword_sollte_funktionieren" + }, + { + "label": "\u274c App-Removal-Lock (greift NICHT auf unsupervised \u2014 DOKUMENTIERT)", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L93", + "community": 246, + "norm_label": "\u274c app-removal-lock (greift nicht auf unsupervised \u2014 dokumentiert)", + "id": "profiles_unsupervised_test_plan_app_removal_lock_greift_nicht_auf_unsupervised_dokumentiert" + }, + { + "label": "Edge-Cases", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L100", + "community": 246, + "norm_label": "edge-cases", + "id": "profiles_unsupervised_test_plan_edge_cases" + }, + { + "label": "Airplane Mode", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L102", + "community": 246, + "norm_label": "airplane mode", + "id": "profiles_unsupervised_test_plan_airplane_mode" + }, + { + "label": "Network-Switch (WiFi \u2194 Cellular)", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L107", + "community": 246, + "norm_label": "network-switch (wifi \u2194 cellular)", + "id": "profiles_unsupervised_test_plan_network_switch_wifi_cellular" + }, + { + "label": "Captive Portal", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L112", + "community": 246, + "norm_label": "captive portal", + "id": "profiles_unsupervised_test_plan_captive_portal" + }, + { + "label": "Profile-Survival nach App-Uninstall", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L118", + "community": 246, + "norm_label": "profile-survival nach app-uninstall", + "id": "profiles_unsupervised_test_plan_profile_survival_nach_app_uninstall" + }, + { + "label": "Reboot", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L127", + "community": 246, + "norm_label": "reboot", + "id": "profiles_unsupervised_test_plan_reboot" + }, + { + "label": "Companion-Path: MDM-Enrollment f\u00fcr Full-Lock (optional)", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L132", + "community": 246, + "norm_label": "companion-path: mdm-enrollment fur full-lock (optional)", + "id": "profiles_unsupervised_test_plan_companion_path_mdm_enrollment_f\u00fcr_full_lock_optional" + }, + { + "label": "Bekannte Limitations (Apple-Walls \u2014 non-fixable ohne Supervision)", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L147", + "community": 246, + "norm_label": "bekannte limitations (apple-walls \u2014 non-fixable ohne supervision)", + "id": "profiles_unsupervised_test_plan_bekannte_limitations_apple_walls_non_fixable_ohne_supervision" + }, + { + "label": "Update-Pfad", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L155", + "community": 246, + "norm_label": "update-pfad", + "id": "profiles_unsupervised_test_plan_update_pfad" + }, + { + "label": "UI-Banner (geplant, falls Setup klappt)", + "file_type": "document", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L169", + "community": 246, + "norm_label": "ui-banner (geplant, falls setup klappt)", + "id": "profiles_unsupervised_test_plan_ui_banner_geplant_falls_setup_klappt" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "ops/pir-server/README.md", + "source_location": "L1", + "community": 964, + "norm_label": "readme.md", + "id": "ops_pir_server_readme_md" + }, + { + "label": "PIR-Server \u2014 iOS NEURLFilter Backend", + "file_type": "document", + "source_file": "ops/pir-server/README.md", + "source_location": "L1", + "community": 964, + "norm_label": "pir-server \u2014 ios neurlfilter backend", + "id": "pir_server_readme_pir_server_ios_neurlfilter_backend" + }, + { + "label": "1. Was & Warum", + "file_type": "document", + "source_file": "ops/pir-server/README.md", + "source_location": "L10", + "community": 964, + "norm_label": "1. was & warum", + "id": "pir_server_readme_1_was_warum" + }, + { + "label": "2. Architektur-Bausteine", + "file_type": "document", + "source_file": "ops/pir-server/README.md", + "source_location": "L30", + "community": 964, + "norm_label": "2. architektur-bausteine", + "id": "pir_server_readme_2_architektur_bausteine" + }, + { + "label": "3. Deployment-Stand (Hetzner `rebreak-server`, 49.13.55.22)", + "file_type": "document", + "source_file": "ops/pir-server/README.md", + "source_location": "L40", + "community": 964, + "norm_label": "3. deployment-stand (hetzner `rebreak-server`, 49.13.55.22)", + "id": "pir_server_readme_3_deployment_stand_hetzner_rebreak_server_49_13_55_22" + }, + { + "label": "4. Konfiguration", + "file_type": "document", + "source_file": "ops/pir-server/README.md", + "source_location": "L56", + "community": 964, + "norm_label": "4. konfiguration", + "id": "pir_server_readme_4_konfiguration" + }, + { + "label": "5. iOS-Integrationswerte (`NEURLFilterManager.setConfiguration`)", + "file_type": "document", + "source_file": "ops/pir-server/README.md", + "source_location": "L81", + "community": 964, + "norm_label": "5. ios-integrationswerte (`neurlfiltermanager.setconfiguration`)", + "id": "pir_server_readme_5_ios_integrationswerte_neurlfiltermanager_setconfiguration" + }, + { + "label": "6. Daten-Pipeline (Blocklist \u2192 PIR-DB)", + "file_type": "document", + "source_file": "ops/pir-server/README.md", + "source_location": "L93", + "community": 964, + "norm_label": "6. daten-pipeline (blocklist \u2192 pir-db)", + "id": "pir_server_readme_6_daten_pipeline_blocklist_pir_db" + }, + { + "label": "7. Betrieb / Runbook", + "file_type": "document", + "source_file": "ops/pir-server/README.md", + "source_location": "L106", + "community": 964, + "norm_label": "7. betrieb / runbook", + "id": "pir_server_readme_7_betrieb_runbook" + }, + { + "label": "8. Bekannte Issues / TODOs", + "file_type": "document", + "source_file": "ops/pir-server/README.md", + "source_location": "L130", + "community": 964, + "norm_label": "8. bekannte issues / todos", + "id": "pir_server_readme_8_bekannte_issues_todos" + }, + { + "label": "9. Dateien in diesem Verzeichnis", + "file_type": "document", + "source_file": "ops/pir-server/README.md", + "source_location": "L154", + "community": 964, + "norm_label": "9. dateien in diesem verzeichnis", + "id": "pir_server_readme_9_dateien_in_diesem_verzeichnis" + }, + { + "label": "apple-dts-neurlfilter-report.md", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L1", + "community": 951, + "norm_label": "apple-dts-neurlfilter-report.md", + "id": "ops_pir_server_apple_dts_neurlfilter_report_md" + }, + { + "label": "Apple DTS / Feedback \u2014 NEURLFilter `serverSetupIncomplete` on a development-signed build", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L1", + "community": 951, + "norm_label": "apple dts / feedback \u2014 neurlfilter `serversetupincomplete` on a development-signed build", + "id": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build" + }, + { + "label": "Summary", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L10", + "community": 951, + "norm_label": "summary", + "id": "pir_server_apple_dts_neurlfilter_report_summary" + }, + { + "label": "Environment", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L26", + "community": 951, + "norm_label": "environment", + "id": "pir_server_apple_dts_neurlfilter_report_environment" + }, + { + "label": "Configuration used", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L37", + "community": 951, + "norm_label": "configuration used", + "id": "pir_server_apple_dts_neurlfilter_report_configuration_used" + }, + { + "label": "What works (verified)", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L68", + "community": 951, + "norm_label": "what works (verified)", + "id": "pir_server_apple_dts_neurlfilter_report_what_works_verified" + }, + { + "label": "The failure (device logs, `com.apple.cipherml` subsystem un-redacted via NE debug profile)", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L79", + "community": 951, + "norm_label": "the failure (device logs, `com.apple.cipherml` subsystem un-redacted via ne debug profile)", + "id": "pir_server_apple_dts_neurlfilter_report_the_failure_device_logs_com_apple_cipherml_subsystem_un_redacted_via_ne_debug_profile" + }, + { + "label": "What we have ruled out", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L103", + "community": 951, + "norm_label": "what we have ruled out", + "id": "pir_server_apple_dts_neurlfilter_report_what_we_have_ruled_out" + }, + { + "label": "Additional diagnostic tests (2026-05-21)", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L114", + "community": 951, + "norm_label": "additional diagnostic tests (2026-05-21)", + "id": "pir_server_apple_dts_neurlfilter_report_additional_diagnostic_tests_2026_05_21" + }, + { + "label": "Questions for Apple", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L136", + "community": 951, + "norm_label": "questions for apple", + "id": "pir_server_apple_dts_neurlfilter_report_questions_for_apple" + }, + { + "label": "Reproduction", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L151", + "community": 951, + "norm_label": "reproduction", + "id": "pir_server_apple_dts_neurlfilter_report_reproduction" + }, + { + "label": "How to submit (internal note \u2014 not part of the report text)", + "file_type": "document", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L160", + "community": 951, + "norm_label": "how to submit (internal note \u2014 not part of the report text)", + "id": "pir_server_apple_dts_neurlfilter_report_how_to_submit_internal_note_not_part_of_the_report_text" + }, + { + "label": "PARTNER_ANALYSIS.md", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L1", + "community": 330, + "norm_label": "partner_analysis.md", + "id": "ops_strategy_partner_analysis_md" + }, + { + "label": "Partner-Analyse: suchtberatung.digital / delphi GmbH / Lukas-Werk", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L1", + "community": 330, + "norm_label": "partner-analyse: suchtberatung.digital / delphi gmbh / lukas-werk", + "id": "strategy_partner_analysis_partner_analyse_suchtberatung_digital_delphi_gmbh_lukas_werk" + }, + { + "label": "1. suchtberatung.digital (DigiSucht) \u2014 Was es ist", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L7", + "community": 330, + "norm_label": "1. suchtberatung.digital (digisucht) \u2014 was es ist", + "id": "strategy_partner_analysis_1_suchtberatung_digital_digisucht_was_es_ist" + }, + { + "label": "Betreiber & Finanzierung", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L11", + "community": 330, + "norm_label": "betreiber & finanzierung", + "id": "strategy_partner_analysis_betreiber_finanzierung" + }, + { + "label": "Tech-Stack (sichtbar)", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L20", + "community": 330, + "norm_label": "tech-stack (sichtbar)", + "id": "strategy_partner_analysis_tech_stack_sichtbar" + }, + { + "label": "Gl\u00fccksspiel-Coverage: **d\u00fcnn**", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L27", + "community": 330, + "norm_label": "glucksspiel-coverage: **dunn**", + "id": "strategy_partner_analysis_gl\u00fccksspiel_coverage_d\u00fcnn" + }, + { + "label": "2. delphi GmbH \u2014 Profil", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L32", + "community": 330, + "norm_label": "2. delphi gmbh \u2014 profil", + "id": "strategy_partner_analysis_2_delphi_gmbh_profil" + }, + { + "label": "3. Partner-oder-Konkurrent \u2014 Matrix", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L48", + "community": 330, + "norm_label": "3. partner-oder-konkurrent \u2014 matrix", + "id": "strategy_partner_analysis_3_partner_oder_konkurrent_matrix" + }, + { + "label": "Verdict: **Klar komplement\u00e4r \u2014 kein Substitut.**", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L59", + "community": 330, + "norm_label": "verdict: **klar komplementar \u2014 kein substitut.**", + "id": "strategy_partner_analysis_verdict_klar_komplement\u00e4r_kein_substitut" + }, + { + "label": "Realistische Kooperations-Formen (sortiert)", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L64", + "community": 330, + "norm_label": "realistische kooperations-formen (sortiert)", + "id": "strategy_partner_analysis_realistische_kooperations_formen_sortiert" + }, + { + "label": "4. Lukas-Werk Gesundheitsdienste GmbH \u2014 Kontakt", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L76", + "community": 330, + "norm_label": "4. lukas-werk gesundheitsdienste gmbh \u2014 kontakt", + "id": "strategy_partner_analysis_4_lukas_werk_gesundheitsdienste_gmbh_kontakt" + }, + { + "label": "\u2757 Nicht ermittelbar", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L94", + "community": 330, + "norm_label": "\u2757 nicht ermittelbar", + "id": "strategy_partner_analysis_nicht_ermittelbar" + }, + { + "label": "5. Strategic Sequenzierung", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L101", + "community": 330, + "norm_label": "5. strategic sequenzierung", + "id": "strategy_partner_analysis_5_strategic_sequenzierung" + }, + { + "label": "Trust-Anker-Logik", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L119", + "community": 330, + "norm_label": "trust-anker-logik", + "id": "strategy_partner_analysis_trust_anker_logik" + }, + { + "label": "Response-Erwartungen", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L122", + "community": 330, + "norm_label": "response-erwartungen", + "id": "strategy_partner_analysis_response_erwartungen" + }, + { + "label": "6. Mail-Template Variante C \u2014 delphi (Augenh\u00f6he)", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L131", + "community": 330, + "norm_label": "6. mail-template variante c \u2014 delphi (augenhohe)", + "id": "strategy_partner_analysis_6_mail_template_variante_c_delphi_augenh\u00f6he" + }, + { + "label": "\u26a0\ufe0f Anbahnungs-Disziplin (User-Note 29.05.2026)", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L149", + "community": 330, + "norm_label": "\u26a0\ufe0f anbahnungs-disziplin (user-note 29.05.2026)", + "id": "strategy_partner_analysis_anbahnungs_disziplin_user_note_29_05_2026" + }, + { + "label": "7. Risiken", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L159", + "community": 330, + "norm_label": "7. risiken", + "id": "strategy_partner_analysis_7_risiken" + }, + { + "label": "Quellen (gepr\u00fcft)", + "file_type": "document", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L171", + "community": 330, + "norm_label": "quellen (gepruft)", + "id": "strategy_partner_analysis_quellen_gepr\u00fcft" + }, + { + "label": "OUTREACH_MAILS_READY.md", + "file_type": "document", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L1", + "community": 1044, + "norm_label": "outreach_mails_ready.md", + "id": "ops_strategy_outreach_mails_ready_md" + }, + { + "label": "Versandfertige Outreach-Mails \u2014 Lukas-Werk + FAGS", + "file_type": "document", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L1", + "community": 1044, + "norm_label": "versandfertige outreach-mails \u2014 lukas-werk + fags", + "id": "strategy_outreach_mails_ready_versandfertige_outreach_mails_lukas_werk_fags" + }, + { + "label": "\u2709\ufe0f Mail #1 \u2014 Lukas-Werk Gesundheitsdienste (Wolfenb\u00fcttel)", + "file_type": "document", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L9", + "community": 1044, + "norm_label": "\u2709\ufe0f mail #1 \u2014 lukas-werk gesundheitsdienste (wolfenbuttel)", + "id": "strategy_outreach_mails_ready_mail_1_lukas_werk_gesundheitsdienste_wolfenb\u00fcttel" + }, + { + "label": "\u2709\ufe0f Mail #2 \u2014 FAGS e.V. / Ilona F\u00fcchtenschnieder (Bielefeld)", + "file_type": "document", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L50", + "community": 1044, + "norm_label": "\u2709\ufe0f mail #2 \u2014 fags e.v. / ilona fuchtenschnieder (bielefeld)", + "id": "strategy_outreach_mails_ready_mail_2_fags_e_v_ilona_f\u00fcchtenschnieder_bielefeld" + }, + { + "label": "\ud83d\udccb Vor dem Klick auf \u201eSenden\" \u2014 Mini-Checkliste", + "file_type": "document", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L91", + "community": 1044, + "norm_label": "\ud83d\udccb vor dem klick auf \u201esenden\" \u2014 mini-checkliste", + "id": "strategy_outreach_mails_ready_vor_dem_klick_auf_senden_mini_checkliste" + }, + { + "label": "\ud83c\udfaf Erwartung", + "file_type": "document", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L99", + "community": 1044, + "norm_label": "\ud83c\udfaf erwartung", + "id": "strategy_outreach_mails_ready_erwartung" + }, + { + "label": "\ud83e\uddef Wenn Vor-Ort-Termin zugesagt wird", + "file_type": "document", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L103", + "community": 1044, + "norm_label": "\ud83e\uddef wenn vor-ort-termin zugesagt wird", + "id": "strategy_outreach_mails_ready_wenn_vor_ort_termin_zugesagt_wird" + }, + { + "label": "mdm-productization-roadmap.md", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L1", + "community": 359, + "norm_label": "mdm-productization-roadmap.md", + "id": "ops_strategy_mdm_productization_roadmap_md" + }, + { + "label": "MDM-Productization Roadmap", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L1", + "community": 359, + "norm_label": "mdm-productization roadmap", + "id": "strategy_mdm_productization_roadmap_mdm_productization_roadmap" + }, + { + "label": "Vision", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L5", + "community": 359, + "norm_label": "vision", + "id": "strategy_mdm_productization_roadmap_vision" + }, + { + "label": "Ziel-Audience", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L9", + "community": 359, + "norm_label": "ziel-audience", + "id": "strategy_mdm_productization_roadmap_ziel_audience" + }, + { + "label": "Was schon steht (Phase F done)", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L18", + "community": 359, + "norm_label": "was schon steht (phase f done)", + "id": "strategy_mdm_productization_roadmap_was_schon_steht_phase_f_done" + }, + { + "label": "Productization-Phase G (~1-2 Wochen dev)", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L26", + "community": 359, + "norm_label": "productization-phase g (~1-2 wochen dev)", + "id": "strategy_mdm_productization_roadmap_productization_phase_g_1_2_wochen_dev" + }, + { + "label": "G.1 Enrollment-Profile-Generator", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L28", + "community": 359, + "norm_label": "g.1 enrollment-profile-generator", + "id": "strategy_mdm_productization_roadmap_g_1_enrollment_profile_generator" + }, + { + "label": "G.2 User-Device-Link in DB", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L39", + "community": 359, + "norm_label": "g.2 user-device-link in db", + "id": "strategy_mdm_productization_roadmap_g_2_user_device_link_in_db" + }, + { + "label": "G.3 Lyra-Onboarding-Flow", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L45", + "community": 359, + "norm_label": "g.3 lyra-onboarding-flow", + "id": "strategy_mdm_productization_roadmap_g_3_lyra_onboarding_flow" + }, + { + "label": "G.4 Onboarding-Web-Page", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L57", + "community": 359, + "norm_label": "g.4 onboarding-web-page", + "id": "strategy_mdm_productization_roadmap_g_4_onboarding_web_page" + }, + { + "label": "G.5 Stripe-Add-On-Tier", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L67", + "community": 359, + "norm_label": "g.5 stripe-add-on-tier", + "id": "strategy_mdm_productization_roadmap_g_5_stripe_add_on_tier" + }, + { + "label": "G.6 Per-User-Blocklist (later)", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L73", + "community": 359, + "norm_label": "g.6 per-user-blocklist (later)", + "id": "strategy_mdm_productization_roadmap_g_6_per_user_blocklist_later" + }, + { + "label": "Out-of-Scope (Apple-Hard-Limits)", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L82", + "community": 359, + "norm_label": "out-of-scope (apple-hard-limits)", + "id": "strategy_mdm_productization_roadmap_out_of_scope_apple_hard_limits" + }, + { + "label": "Marginal Cost pro neuem User", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L88", + "community": 359, + "norm_label": "marginal cost pro neuem user", + "id": "strategy_mdm_productization_roadmap_marginal_cost_pro_neuem_user" + }, + { + "label": "Risk-Assessment", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L98", + "community": 359, + "norm_label": "risk-assessment", + "id": "strategy_mdm_productization_roadmap_risk_assessment" + }, + { + "label": "Decision-Points (User entscheidet)", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L104", + "community": 359, + "norm_label": "decision-points (user entscheidet)", + "id": "strategy_mdm_productization_roadmap_decision_points_user_entscheidet" + }, + { + "label": "Source-of-Truth-Files", + "file_type": "document", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L112", + "community": 359, + "norm_label": "source-of-truth-files", + "id": "strategy_mdm_productization_roadmap_source_of_truth_files" + }, + { + "label": "pricing-tiers.md", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L1", + "community": 164, + "norm_label": "pricing-tiers.md", + "id": "ops_strategy_pricing_tiers_md" + }, + { + "label": "ReBreak Pricing-Tiers: Strategie, Stress-Test, Downgrade-Policy", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L1", + "community": 164, + "norm_label": "rebreak pricing-tiers: strategie, stress-test, downgrade-policy", + "id": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy" + }, + { + "label": "0. TL;DR f\u00fcr Eilige", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L11", + "community": 164, + "norm_label": "0. tl;dr fur eilige", + "id": "strategy_pricing_tiers_0_tl_dr_f\u00fcr_eilige" + }, + { + "label": "\u2b50 0.5 FINALE PRICING-ENTSCHEIDUNG \u2014 verbindlich", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L21", + "community": 164, + "norm_label": "\u2b50 0.5 finale pricing-entscheidung \u2014 verbindlich", + "id": "strategy_pricing_tiers_0_5_finale_pricing_entscheidung_verbindlich" + }, + { + "label": "1. Tier-Feature-Tabelle (Strategie-Sicht, abgeglichen mit `PLAN_LIMITS`, Stand 2026-05-11)", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L62", + "community": 164, + "norm_label": "1. tier-feature-tabelle (strategie-sicht, abgeglichen mit `plan_limits`, stand 2026-05-11)", + "id": "strategy_pricing_tiers_1_tier_feature_tabelle_strategie_sicht_abgeglichen_mit_plan_limits_stand_2026_05_11" + }, + { + "label": "2. Strategie-Begr\u00fcndung + ehrlicher Stress-Test", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L98", + "community": 164, + "norm_label": "2. strategie-begrundung + ehrlicher stress-test", + "id": "strategy_pricing_tiers_2_strategie_begr\u00fcndung_ehrlicher_stress_test" + }, + { + "label": "2.1 Reicht Free zum \"Anfixen\" \u2014 oder verschenkt es zu viel?", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L100", + "community": 164, + "norm_label": "2.1 reicht free zum \"anfixen\" \u2014 oder verschenkt es zu viel?", + "id": "strategy_pricing_tiers_2_1_reicht_free_zum_anfixen_oder_verschenkt_es_zu_viel" + }, + { + "label": "2.2 Lohnt free \u2192 pro f\u00fcr ~4 \u20ac?", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L108", + "community": 164, + "norm_label": "2.2 lohnt free \u2192 pro fur ~4 \u20ac?", + "id": "strategy_pricing_tiers_2_2_lohnt_free_pro_f\u00fcr_4" + }, + { + "label": "2.3 Lohnt pro \u2192 legend f\u00fcr nochmal ~4 \u20ac? Ist Multi-Device der Killer?", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L114", + "community": 164, + "norm_label": "2.3 lohnt pro \u2192 legend fur nochmal ~4 \u20ac? ist multi-device der killer?", + "id": "strategy_pricing_tiers_2_3_lohnt_pro_legend_f\u00fcr_nochmal_4_ist_multi_device_der_killer" + }, + { + "label": "2.4 DiGA-/Ethik-/PR-Check: Darf man Recovery-Features paywallen?", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L119", + "community": 164, + "norm_label": "2.4 diga-/ethik-/pr-check: darf man recovery-features paywallen?", + "id": "strategy_pricing_tiers_2_4_diga_ethik_pr_check_darf_man_recovery_features_paywallen" + }, + { + "label": "2.5 Empfehlung: konkretes Re-Slicing (optional, aber begr\u00fcndet)", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L135", + "community": 164, + "norm_label": "2.5 empfehlung: konkretes re-slicing (optional, aber begrundet)", + "id": "strategy_pricing_tiers_2_5_empfehlung_konkretes_re_slicing_optional_aber_begr\u00fcndet" + }, + { + "label": "2.6 Nat\u00fcrliche Upgrade-Trigger-Momente (f\u00fcr In-App-Prompts)", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L154", + "community": 164, + "norm_label": "2.6 naturliche upgrade-trigger-momente (fur in-app-prompts)", + "id": "strategy_pricing_tiers_2_6_nat\u00fcrliche_upgrade_trigger_momente_f\u00fcr_in_app_prompts" + }, + { + "label": "3. Downgrade-Policy pro tier-limitierter Ressource", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L170", + "community": 164, + "norm_label": "3. downgrade-policy pro tier-limitierter ressource", + "id": "strategy_pricing_tiers_3_downgrade_policy_pro_tier_limitierter_ressource" + }, + { + "label": "Spezialfall ausf\u00fchrlich: Multi-Device `.mobileconfig` ist nicht remote-removable", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L194", + "community": 164, + "norm_label": "spezialfall ausfuhrlich: multi-device `.mobileconfig` ist nicht remote-removable", + "id": "strategy_pricing_tiers_spezialfall_ausf\u00fchrlich_multi_device_mobileconfig_ist_nicht_remote_removable" + }, + { + "label": "4. Plan-Wechsel-Briefing-Screen \u2014 Inhalt (Text/Struktur, kein Code)", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L207", + "community": 164, + "norm_label": "4. plan-wechsel-briefing-screen \u2014 inhalt (text/struktur, kein code)", + "id": "strategy_pricing_tiers_4_plan_wechsel_briefing_screen_inhalt_text_struktur_kein_code" + }, + { + "label": "4a. Upgrade-Briefing", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L211", + "community": 164, + "norm_label": "4a. upgrade-briefing", + "id": "strategy_pricing_tiers_4a_upgrade_briefing" + }, + { + "label": "4b. Downgrade-Briefing", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L218", + "community": 164, + "norm_label": "4b. downgrade-briefing", + "id": "strategy_pricing_tiers_4b_downgrade_briefing" + }, + { + "label": "5. Szenario-Test-Matrix (f\u00fcr den Tier-Toggle-Build)", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L229", + "community": 164, + "norm_label": "5. szenario-test-matrix (fur den tier-toggle-build)", + "id": "strategy_pricing_tiers_5_szenario_test_matrix_f\u00fcr_den_tier_toggle_build" + }, + { + "label": "5a. Statische Tier-Erwartungs-Matrix \u2014 \"Was *soll* der User pro Tier sehen/k\u00f6nnen\" (Soll = aktueller Code-Stand, nicht das Re-Slicing)", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L231", + "community": 164, + "norm_label": "5a. statische tier-erwartungs-matrix \u2014 \"was *soll* der user pro tier sehen/konnen\" (soll = aktueller code-stand, nicht das re-slicing)", + "id": "strategy_pricing_tiers_5a_statische_tier_erwartungs_matrix_was_soll_der_user_pro_tier_sehen_k\u00f6nnen_soll_aktueller_code_stand_nicht_das_re_slicing" + }, + { + "label": "5b. Downgrade-Szenarien als durchspielbare Test-Cases", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L261", + "community": 164, + "norm_label": "5b. downgrade-szenarien als durchspielbare test-cases", + "id": "strategy_pricing_tiers_5b_downgrade_szenarien_als_durchspielbare_test_cases" + }, + { + "label": "6. Offene Kl\u00e4rungspunkte (bevor das auf die Pricing-Page geht)", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L282", + "community": 164, + "norm_label": "6. offene klarungspunkte (bevor das auf die pricing-page geht)", + "id": "strategy_pricing_tiers_6_offene_kl\u00e4rungspunkte_bevor_das_auf_die_pricing_page_geht" + }, + { + "label": "Quellen", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L292", + "community": 164, + "norm_label": "quellen", + "id": "strategy_pricing_tiers_quellen" + }, + { + "label": "7. Marketing-Kritik des finalen Plans (Strategist, 2026-05-11)", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L298", + "community": 164, + "norm_label": "7. marketing-kritik des finalen plans (strategist, 2026-05-11)", + "id": "strategy_pricing_tiers_7_marketing_kritik_des_finalen_plans_strategist_2026_05_11" + }, + { + "label": "7.0 TL;DR der Kritik", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L302", + "community": 164, + "norm_label": "7.0 tl;dr der kritik", + "id": "strategy_pricing_tiers_7_0_tl_dr_der_kritik" + }, + { + "label": "7.1 Free ohne globale Blocklist \u2014 zu hart? \u2192 Ja, in dieser Form. Kompromiss bauen.", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L314", + "community": 164, + "norm_label": "7.1 free ohne globale blocklist \u2014 zu hart? \u2192 ja, in dieser form. kompromiss bauen.", + "id": "strategy_pricing_tiers_7_1_free_ohne_globale_blocklist_zu_hart_ja_in_dieser_form_kompromiss_bauen" + }, + { + "label": "7.2 IMAP-Daemon als Legend-\u201eHighlight\" \u2192 Nein, nicht als Highlight. Als Beiwerk: ja.", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L320", + "community": 164, + "norm_label": "7.2 imap-daemon als legend-\u201ehighlight\" \u2192 nein, nicht als highlight. als beiwerk: ja.", + "id": "strategy_pricing_tiers_7_2_imap_daemon_als_legend_highlight_nein_nicht_als_highlight_als_beiwerk_ja" + }, + { + "label": "7.3 \"Validierung \u2264 24h\" als SLA \u2192 Streich das harte SLA.", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L325", + "community": 164, + "norm_label": "7.3 \"validierung \u2264 24h\" als sla \u2192 streich das harte sla.", + "id": "strategy_pricing_tiers_7_3_validierung_24h_als_sla_streich_das_harte_sla" + }, + { + "label": "7.4 Value-Ladder gesamt", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L329", + "community": 164, + "norm_label": "7.4 value-ladder gesamt", + "id": "strategy_pricing_tiers_7_4_value_ladder_gesamt" + }, + { + "label": "7.5 Coach \"basic / besser / viel besser\"", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L334", + "community": 164, + "norm_label": "7.5 coach \"basic / besser / viel besser\"", + "id": "strategy_pricing_tiers_7_5_coach_basic_besser_viel_besser" + }, + { + "label": "7.6 Preis-Empfehlung", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L341", + "community": 164, + "norm_label": "7.6 preis-empfehlung", + "id": "strategy_pricing_tiers_7_6_preis_empfehlung" + }, + { + "label": "7.7 PR / Au\u00dfenkommunikation", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L344", + "community": 164, + "norm_label": "7.7 pr / au\u00dfenkommunikation", + "id": "strategy_pricing_tiers_7_7_pr_aussenkommunikation" + }, + { + "label": "7.8 Wichtigste Punkte", + "file_type": "document", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L353", + "community": 164, + "norm_label": "7.8 wichtigste punkte", + "id": "strategy_pricing_tiers_7_8_wichtigste_punkte" + }, + { + "label": "FAGS_OUTREACH.md", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L1", + "community": 952, + "norm_label": "fags_outreach.md", + "id": "ops_strategy_fags_outreach_md" + }, + { + "label": "FAGS-Outreach-Paket f\u00fcr Rebreak Beta + NBank-LOIs", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L1", + "community": 952, + "norm_label": "fags-outreach-paket fur rebreak beta + nbank-lois", + "id": "strategy_fags_outreach_fags_outreach_paket_f\u00fcr_rebreak_beta_nbank_lois" + }, + { + "label": "1. FAGS-Landschaft DE", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L7", + "community": 952, + "norm_label": "1. fags-landschaft de", + "id": "strategy_fags_outreach_1_fags_landschaft_de" + }, + { + "label": "PRIORIT\u00c4T 1 \u2014 Niedersachsen (NBank-relevant)", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L9", + "community": 952, + "norm_label": "prioritat 1 \u2014 niedersachsen (nbank-relevant)", + "id": "strategy_fags_outreach_priorit\u00e4t_1_niedersachsen_nbank_relevant" + }, + { + "label": "PRIORIT\u00c4T 2 \u2014 Bundesweit (Phase 2)", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L25", + "community": 952, + "norm_label": "prioritat 2 \u2014 bundesweit (phase 2)", + "id": "strategy_fags_outreach_priorit\u00e4t_2_bundesweit_phase_2" + }, + { + "label": "Realit\u00e4ts-Check", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L38", + "community": 952, + "norm_label": "realitats-check", + "id": "strategy_fags_outreach_realit\u00e4ts_check" + }, + { + "label": "2. Outreach-Email", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L46", + "community": 952, + "norm_label": "2. outreach-email", + "id": "strategy_fags_outreach_2_outreach_email" + }, + { + "label": "Variante A \u2014 Beratungsstelle (Erst-Kontakt)", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L48", + "community": 952, + "norm_label": "variante a \u2014 beratungsstelle (erst-kontakt)", + "id": "strategy_fags_outreach_variante_a_beratungsstelle_erst_kontakt" + }, + { + "label": "Variante B \u2014 Forschungsklinik (MHH, ZI Mannheim)", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L72", + "community": 952, + "norm_label": "variante b \u2014 forschungsklinik (mhh, zi mannheim)", + "id": "strategy_fags_outreach_variante_b_forschungsklinik_mhh_zi_mannheim" + }, + { + "label": "3. Letter of Intent \u2014 Template", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L97", + "community": 952, + "norm_label": "3. letter of intent \u2014 template", + "id": "strategy_fags_outreach_3_letter_of_intent_template" + }, + { + "label": "4. Versand-Reihenfolge", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L137", + "community": 952, + "norm_label": "4. versand-reihenfolge", + "id": "strategy_fags_outreach_4_versand_reihenfolge" + }, + { + "label": "Quellen", + "file_type": "document", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L153", + "community": 952, + "norm_label": "quellen", + "id": "strategy_fags_outreach_quellen" + }, + { + "label": "CALLS_DEBUG_STATE.md", + "file_type": "document", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L1", + "community": 892, + "norm_label": "calls_debug_state.md", + "id": "apps_rebreak_native_calls_debug_state_md" + }, + { + "label": "Voice-Calls \u2014 Debug-Zustand (2026-06-05)", + "file_type": "document", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L1", + "community": 892, + "norm_label": "voice-calls \u2014 debug-zustand (2026-06-05)", + "id": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05" + }, + { + "label": "Architektur (Ist-Zustand)", + "file_type": "document", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L6", + "community": 892, + "norm_label": "architektur (ist-zustand)", + "id": "rebreak_native_calls_debug_state_architektur_ist_zustand" + }, + { + "label": "Verhaltens-Matrix", + "file_type": "document", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L19", + "community": 892, + "norm_label": "verhaltens-matrix", + "id": "rebreak_native_calls_debug_state_verhaltens_matrix" + }, + { + "label": "Divide & Conquer \u2014 Phasen", + "file_type": "document", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L28", + "community": 892, + "norm_label": "divide & conquer \u2014 phasen", + "id": "rebreak_native_calls_debug_state_divide_conquer_phasen" + }, + { + "label": "\u2705 BEST\u00c4TIGTE Root Cause #3 (2026-06-05, via idevicesyslog + git)", + "file_type": "document", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L40", + "community": 892, + "norm_label": "\u2705 bestatigte root cause #3 (2026-06-05, via idevicesyslog + git)", + "id": "rebreak_native_calls_debug_state_best\u00e4tigte_root_cause_3_2026_06_05_via_idevicesyslog_git" + }, + { + "label": "Apple-Constraint (kein Bug)", + "file_type": "document", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L61", + "community": 892, + "norm_label": "apple-constraint (kein bug)", + "id": "rebreak_native_calls_debug_state_apple_constraint_kein_bug" + }, + { + "label": "CHANGELOG.md", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L1", + "community": 269, + "norm_label": "changelog.md", + "id": "apps_rebreak_native_changelog_md" + }, + { + "label": "Changelog", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L1", + "community": 269, + "norm_label": "changelog", + "id": "rebreak_native_changelog_changelog" + }, + { + "label": "v0.4.5 (Build 90 / versionCode 71) \u2014 2026-06-10\\n\\n# Next Release \u2014 Notes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L4", + "community": 269, + "norm_label": "v0.4.5 (build 90 / versioncode 71) \u2014 2026-06-10\\n\\n# next release \u2014 notes", + "id": "rebreak_native_changelog_v0_4_5_build_90_versioncode_71_2026_06_10_n_n_next_release_notes" + }, + { + "label": "v0.4.4 (Build 90 / versionCode 70) \u2014 2026-06-08\\n\\n# Next Release", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L37", + "community": 269, + "norm_label": "v0.4.4 (build 90 / versioncode 70) \u2014 2026-06-08\\n\\n# next release", + "id": "rebreak_native_changelog_v0_4_4_build_90_versioncode_70_2026_06_08_n_n_next_release" + }, + { + "label": "Improved", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L39", + "community": 269, + "norm_label": "improved", + "id": "rebreak_native_changelog_improved" + }, + { + "label": "v0.4.4 (Build 90 / versionCode 70) \u2014 2026-06-08\\n\\n# Next Release", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L43", + "community": 269, + "norm_label": "v0.4.4 (build 90 / versioncode 70) \u2014 2026-06-08\\n\\n# next release", + "id": "rebreak_native_changelog_v0_4_4_build_90_versioncode_70_2026_06_08_n_n_next_release_43" + }, + { + "label": "Improved", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L45", + "community": 269, + "norm_label": "improved", + "id": "rebreak_native_changelog_improved_45" + }, + { + "label": "v0.4.1 (Build 87 / versionCode 67) \u2014 2026-06-08\\n\\n# Next Release", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L49", + "community": 269, + "norm_label": "v0.4.1 (build 87 / versioncode 67) \u2014 2026-06-08\\n\\n# next release", + "id": "rebreak_native_changelog_v0_4_1_build_87_versioncode_67_2026_06_08_n_n_next_release" + }, + { + "label": "Improved", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L51", + "community": 269, + "norm_label": "improved", + "id": "rebreak_native_changelog_improved_51" + }, + { + "label": "v0.4.0 (Build 85 / versionCode 66) \u2014 2026-06-07\\n\\n# Next Release", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L56", + "community": 269, + "norm_label": "v0.4.0 (build 85 / versioncode 66) \u2014 2026-06-07\\n\\n# next release", + "id": "rebreak_native_changelog_v0_4_0_build_85_versioncode_66_2026_06_07_n_n_next_release" + }, + { + "label": "New", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L58", + "community": 269, + "norm_label": "new", + "id": "rebreak_native_changelog_new" + }, + { + "label": "Changed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L65", + "community": 269, + "norm_label": "changed", + "id": "rebreak_native_changelog_changed" + }, + { + "label": "Fixed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L70", + "community": 269, + "norm_label": "fixed", + "id": "rebreak_native_changelog_fixed" + }, + { + "label": "v0.3.13 (Build 85 / versionCode 64) \u2014 2026-06-07\\n\\n# Next Release", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L72", + "community": 269, + "norm_label": "v0.3.13 (build 85 / versioncode 64) \u2014 2026-06-07\\n\\n# next release", + "id": "rebreak_native_changelog_v0_3_13_build_85_versioncode_64_2026_06_07_n_n_next_release" + }, + { + "label": "New", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L74", + "community": 269, + "norm_label": "new", + "id": "rebreak_native_changelog_new_74" + }, + { + "label": "Improved", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L79", + "community": 269, + "norm_label": "improved", + "id": "rebreak_native_changelog_improved_79" + }, + { + "label": "Fixed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L84", + "community": 269, + "norm_label": "fixed", + "id": "rebreak_native_changelog_fixed_84" + }, + { + "label": "v0.3.13 (Build 84 / versionCode 64) \u2014 2026-06-07\\n\\n# Next Release", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L86", + "community": 269, + "norm_label": "v0.3.13 (build 84 / versioncode 64) \u2014 2026-06-07\\n\\n# next release", + "id": "rebreak_native_changelog_v0_3_13_build_84_versioncode_64_2026_06_07_n_n_next_release" + }, + { + "label": "Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L88", + "community": 269, + "norm_label": "features", + "id": "rebreak_native_changelog_features" + }, + { + "label": "Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L101", + "community": 269, + "norm_label": "fixes", + "id": "rebreak_native_changelog_fixes" + }, + { + "label": "Polish", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L114", + "community": 269, + "norm_label": "polish", + "id": "rebreak_native_changelog_polish" + }, + { + "label": "Notes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L124", + "community": 269, + "norm_label": "notes", + "id": "rebreak_native_changelog_notes" + }, + { + "label": "v0.3.13 (Build 82 / versionCode 63) \u2014 2026-06-07\\n\\n# Next Release", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L128", + "community": 269, + "norm_label": "v0.3.13 (build 82 / versioncode 63) \u2014 2026-06-07\\n\\n# next release", + "id": "rebreak_native_changelog_v0_3_13_build_82_versioncode_63_2026_06_07_n_n_next_release" + }, + { + "label": "Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L130", + "community": 269, + "norm_label": "features", + "id": "rebreak_native_changelog_features_130" + }, + { + "label": "Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L143", + "community": 269, + "norm_label": "fixes", + "id": "rebreak_native_changelog_fixes_143" + }, + { + "label": "Polish", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L156", + "community": 269, + "norm_label": "polish", + "id": "rebreak_native_changelog_polish_156" + }, + { + "label": "Notes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L166", + "community": 269, + "norm_label": "notes", + "id": "rebreak_native_changelog_notes_166" + }, + { + "label": "v0.3.13 (Build 79 / versionCode 62) \u2014 2026-06-06\\n\\n# Next Release", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L170", + "community": 269, + "norm_label": "v0.3.13 (build 79 / versioncode 62) \u2014 2026-06-06\\n\\n# next release", + "id": "rebreak_native_changelog_v0_3_13_build_79_versioncode_62_2026_06_06_n_n_next_release" + }, + { + "label": "Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L172", + "community": 269, + "norm_label": "fixes", + "id": "rebreak_native_changelog_fixes_172" + }, + { + "label": "v0.3.13 (Build 76 / versionCode 59) \u2014 2026-06-04\\n\\n### Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L179", + "community": 269, + "norm_label": "v0.3.13 (build 76 / versioncode 59) \u2014 2026-06-04\\n\\n### fixes", + "id": "rebreak_native_changelog_v0_3_13_build_76_versioncode_59_2026_06_04_n_n_fixes" + }, + { + "label": "v0.3.13 (Build 76 / versionCode 59) \u2014 2026-06-04\\n\\n### Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L188", + "community": 269, + "norm_label": "v0.3.13 (build 76 / versioncode 59) \u2014 2026-06-04\\n\\n### fixes", + "id": "rebreak_native_changelog_v0_3_13_build_76_versioncode_59_2026_06_04_n_n_fixes_188" + }, + { + "label": "v0.3.13 (Build 71 / versionCode 54) \u2014 2026-06-04\\n\\n### Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L197", + "community": 913, + "norm_label": "v0.3.13 (build 71 / versioncode 54) \u2014 2026-06-04\\n\\n### fixes", + "id": "rebreak_native_changelog_v0_3_13_build_71_versioncode_54_2026_06_04_n_n_fixes" + }, + { + "label": "Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L205", + "community": 913, + "norm_label": "features", + "id": "rebreak_native_changelog_features_205" + }, + { + "label": "Changes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L212", + "community": 913, + "norm_label": "changes", + "id": "rebreak_native_changelog_changes" + }, + { + "label": "v0.3.13 (Build 70 / versionCode 53) \u2014 2026-06-03\\n\\n### Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L216", + "community": 914, + "norm_label": "v0.3.13 (build 70 / versioncode 53) \u2014 2026-06-03\\n\\n### fixes", + "id": "rebreak_native_changelog_v0_3_13_build_70_versioncode_53_2026_06_03_n_n_fixes" + }, + { + "label": "Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L223", + "community": 914, + "norm_label": "features", + "id": "rebreak_native_changelog_features_223" + }, + { + "label": "Changes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L227", + "community": 914, + "norm_label": "changes", + "id": "rebreak_native_changelog_changes_227" + }, + { + "label": "v0.3.13 (Build 69 / versionCode 52) \u2014 2026-06-03\\n\\n### Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L231", + "community": 916, + "norm_label": "v0.3.13 (build 69 / versioncode 52) \u2014 2026-06-03\\n\\n### fixes", + "id": "rebreak_native_changelog_v0_3_13_build_69_versioncode_52_2026_06_03_n_n_fixes" + }, + { + "label": "Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L235", + "community": 916, + "norm_label": "features", + "id": "rebreak_native_changelog_features_235" + }, + { + "label": "v0.3.13 (Build 68 / versionCode 51) \u2014 2026-06-03\\n\\n### Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L238", + "community": 917, + "norm_label": "v0.3.13 (build 68 / versioncode 51) \u2014 2026-06-03\\n\\n### fixes", + "id": "rebreak_native_changelog_v0_3_13_build_68_versioncode_51_2026_06_03_n_n_fixes" + }, + { + "label": "Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L245", + "community": 917, + "norm_label": "features", + "id": "rebreak_native_changelog_features_245" + }, + { + "label": "v0.3.13 (Build 67 / versionCode 50) \u2014 2026-06-03\\n\\n### Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L248", + "community": 918, + "norm_label": "v0.3.13 (build 67 / versioncode 50) \u2014 2026-06-03\\n\\n### fixes", + "id": "rebreak_native_changelog_v0_3_13_build_67_versioncode_50_2026_06_03_n_n_fixes" + }, + { + "label": "Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L252", + "community": 918, + "norm_label": "features", + "id": "rebreak_native_changelog_features_252" + }, + { + "label": "v0.3.13 (Build 65 / versionCode 50) \u2014 2026-06-03\\n\\n### Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L255", + "community": 919, + "norm_label": "v0.3.13 (build 65 / versioncode 50) \u2014 2026-06-03\\n\\n### fixes", + "id": "rebreak_native_changelog_v0_3_13_build_65_versioncode_50_2026_06_03_n_n_fixes" + }, + { + "label": "Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L266", + "community": 919, + "norm_label": "features", + "id": "rebreak_native_changelog_features_266" + }, + { + "label": "v0.3.13 (Build 62 / versionCode 50) \u2014 2026-06-03\\n\\n### Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L273", + "community": 920, + "norm_label": "v0.3.13 (build 62 / versioncode 50) \u2014 2026-06-03\\n\\n### fixes", + "id": "rebreak_native_changelog_v0_3_13_build_62_versioncode_50_2026_06_03_n_n_fixes" + }, + { + "label": "Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L283", + "community": 920, + "norm_label": "features", + "id": "rebreak_native_changelog_features_283" + }, + { + "label": "v0.3.13 (Build 60 / versionCode 48) \u2014 2026-06-02\\n\\n### Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L289", + "community": 921, + "norm_label": "v0.3.13 (build 60 / versioncode 48) \u2014 2026-06-02\\n\\n### fixes", + "id": "rebreak_native_changelog_v0_3_13_build_60_versioncode_48_2026_06_02_n_n_fixes" + }, + { + "label": "Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L293", + "community": 921, + "norm_label": "features", + "id": "rebreak_native_changelog_features_293" + }, + { + "label": "v0.3.13 (Build 56 / versionCode 46) \u2014 2026-06-01\\n\\n### Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L296", + "community": 922, + "norm_label": "v0.3.13 (build 56 / versioncode 46) \u2014 2026-06-01\\n\\n### features", + "id": "rebreak_native_changelog_v0_3_13_build_56_versioncode_46_2026_06_01_n_n_features" + }, + { + "label": "Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L305", + "community": 922, + "norm_label": "fixes", + "id": "rebreak_native_changelog_fixes_305" + }, + { + "label": "v0.3.13 (Build 54 / versionCode 44) \u2014 2026-06-01\\n\\n### Features", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L309", + "community": 907, + "norm_label": "v0.3.13 (build 54 / versioncode 44) \u2014 2026-06-01\\n\\n### features", + "id": "rebreak_native_changelog_v0_3_13_build_54_versioncode_44_2026_06_01_n_n_features" + }, + { + "label": "Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L320", + "community": 907, + "norm_label": "fixes", + "id": "rebreak_native_changelog_fixes_320" + }, + { + "label": "Backend", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L331", + "community": 907, + "norm_label": "backend", + "id": "rebreak_native_changelog_backend" + }, + { + "label": "Infrastructure", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L336", + "community": 907, + "norm_label": "infrastructure", + "id": "rebreak_native_changelog_infrastructure" + }, + { + "label": "v0.3.13 (Build 50 / versionCode 40) \u2014 2026-06-01\\n\\nlayer 3 for ios / fix a11y\\n", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L341", + "community": 269, + "norm_label": "v0.3.13 (build 50 / versioncode 40) \u2014 2026-06-01\\n\\nlayer 3 for ios / fix a11y\\n", + "id": "rebreak_native_changelog_v0_3_13_build_50_versioncode_40_2026_06_01_n_nlayer_3_for_ios_fix_a11y_n" + }, + { + "label": "v0.3.13 (Build 46 / versionCode 36) \u2014 2026-05-31\\n\\nDM-Chat: Die letzte Nachricht wird jetzt zuverl\u00e4ssig oberhalb der Eingabezeile angezeigt \u2014 kein manuelles Nachscrollen mehr beim \u00d6ffnen oder nach dem Senden.", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L342", + "community": 269, + "norm_label": "v0.3.13 (build 46 / versioncode 36) \u2014 2026-05-31\\n\\ndm-chat: die letzte nachricht wird jetzt zuverlassig oberhalb der eingabezeile angezeigt \u2014 kein manuelles nachscrollen mehr beim offnen oder nach dem senden.", + "id": "rebreak_native_changelog_v0_3_13_build_46_versioncode_36_2026_05_31_n_ndm_chat_die_letzte_nachricht_wird_jetzt_zuverl\u00e4ssig_oberhalb_der_eingabezeile_angezeigt_kein_manuelles_nachscrollen_mehr_beim_\u00f6ffnen_oder_nach_dem_senden" + }, + { + "label": "v0.3.13 (Build 44 / versionCode 35) \u2014 2026-05-31\\n\\nDM-Chat: scrollt jetzt zuverl\u00e4ssig zur neuesten Nachricht \u2014 auch nach eigenen gesendeten Nachrichten und beim Laden von Bildern.", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L345", + "community": 269, + "norm_label": "v0.3.13 (build 44 / versioncode 35) \u2014 2026-05-31\\n\\ndm-chat: scrollt jetzt zuverlassig zur neuesten nachricht \u2014 auch nach eigenen gesendeten nachrichten und beim laden von bildern.", + "id": "rebreak_native_changelog_v0_3_13_build_44_versioncode_35_2026_05_31_n_ndm_chat_scrollt_jetzt_zuverl\u00e4ssig_zur_neuesten_nachricht_auch_nach_eigenen_gesendeten_nachrichten_und_beim_laden_von_bildern" + }, + { + "label": "v0.3.13 (Build 44 / versionCode 33) \u2014 2026-05-31\\n\\nlyra multilanguage fix\\n", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L350", + "community": 269, + "norm_label": "v0.3.13 (build 44 / versioncode 33) \u2014 2026-05-31\\n\\nlyra multilanguage fix\\n", + "id": "rebreak_native_changelog_v0_3_13_build_44_versioncode_33_2026_05_31_n_nlyra_multilanguage_fix_n" + }, + { + "label": "v0.3.13 (Build 42 / versionCode 32) \u2014 2026-05-30\\n\\nChat-DM: Lange auf eine Nachricht dr\u00fccken \u00f6ffnet das Aktions-Men\u00fc jetzt direkt an der Nachricht (WhatsApp-Stil) statt zentriert. Neu: Emoji-Reaktionen (oben), Antworten und Kopieren bei fremden Nachrichten, sowie L\u00f6schen f\u00fcr eigene Nachrichten (f\u00fcr alle). Reaktionen erscheinen als kleine Bubbles unter der Nachricht. Gel\u00f6schte Nachrichten zeigen \u201eNachricht gel\u00f6scht\".", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L351", + "community": 269, + "norm_label": "v0.3.13 (build 42 / versioncode 32) \u2014 2026-05-30\\n\\nchat-dm: lange auf eine nachricht drucken offnet das aktions-menu jetzt direkt an der nachricht (whatsapp-stil) statt zentriert. neu: emoji-reaktionen (oben), antworten und kopieren bei fremden nachrichten, sowie loschen fur eigene nachrichten (fur alle). reaktionen erscheinen als kleine bubbles unter der nachricht. geloschte nachrichten zeigen \u201enachricht geloscht\".", + "id": "rebreak_native_changelog_v0_3_13_build_42_versioncode_32_2026_05_30_n_nchat_dm_lange_auf_eine_nachricht_dr\u00fccken_\u00f6ffnet_das_aktions_men\u00fc_jetzt_direkt_an_der_nachricht_whatsapp_stil_statt_zentriert_neu_emoji_reaktionen_oben_antworten_und_kopieren_bei_fremden_nachrichten_sowie_l\u00f6schen_f\u00fcr_eigene_nachrichten_f\u00fcr_alle_reaktionen_erscheinen_als_kleine_bubbles_unter_der_nachricht_gel\u00f6schte_nachrichten_zeigen_nachricht_gel\u00f6scht" + }, + { + "label": "v0.3.13 (Build 40 / versionCode 31) \u2014 2026-05-30\\n\\nChat-DM: Lange auf Nachricht dr\u00fccken \u00f6ffnet jetzt das native Aktions-Men\u00fc (Antworten, Liken, Kopieren). Likes erscheinen Insta-Style als Herz unter der Nachricht.\\n", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L356", + "community": 269, + "norm_label": "v0.3.13 (build 40 / versioncode 31) \u2014 2026-05-30\\n\\nchat-dm: lange auf nachricht drucken offnet jetzt das native aktions-menu (antworten, liken, kopieren). likes erscheinen insta-style als herz unter der nachricht.\\n", + "id": "rebreak_native_changelog_v0_3_13_build_40_versioncode_31_2026_05_30_n_nchat_dm_lange_auf_nachricht_dr\u00fccken_\u00f6ffnet_jetzt_das_native_aktions_men\u00fc_antworten_liken_kopieren_likes_erscheinen_insta_style_als_herz_unter_der_nachricht_n" + }, + { + "label": "v0.3.13 (Build 27 / versionCode 18) \u2014 2026-05-30\\n\\nPush-Notifications f\u00fcr Chat: Du erh\u00e4ltst jetzt Pushes bei neuen Direkt-Nachrichten und Raum-Nachrichten. Abschaltbar in den Einstellungen.\\n", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L357", + "community": 269, + "norm_label": "v0.3.13 (build 27 / versioncode 18) \u2014 2026-05-30\\n\\npush-notifications fur chat: du erhaltst jetzt pushes bei neuen direkt-nachrichten und raum-nachrichten. abschaltbar in den einstellungen.\\n", + "id": "rebreak_native_changelog_v0_3_13_build_27_versioncode_18_2026_05_30_n_npush_notifications_f\u00fcr_chat_du_erh\u00e4ltst_jetzt_pushes_bei_neuen_direkt_nachrichten_und_raum_nachrichten_abschaltbar_in_den_einstellungen_n" + }, + { + "label": "v0.3.13 (Build 26 / versionCode 16) \u2014 2026-05-30\\n\\nneue push f\u00fcr chat\\n", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L358", + "community": 269, + "norm_label": "v0.3.13 (build 26 / versioncode 16) \u2014 2026-05-30\\n\\nneue push fur chat\\n", + "id": "rebreak_native_changelog_v0_3_13_build_26_versioncode_16_2026_05_30_n_nneue_push_f\u00fcr_chat_n" + }, + { + "label": "[Unreleased]", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L364", + "community": 269, + "norm_label": "[unreleased]", + "id": "rebreak_native_changelog_unreleased" + }, + { + "label": "[0.3.6] \u2014 buildNumber 15 / versionCode 11 \u2014 2026-05-25", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L368", + "community": 912, + "norm_label": "[0.3.6] \u2014 buildnumber 15 / versioncode 11 \u2014 2026-05-25", + "id": "rebreak_native_changelog_0_3_6_buildnumber_15_versioncode_11_2026_05_25" + }, + { + "label": "Changed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L370", + "community": 912, + "norm_label": "changed", + "id": "rebreak_native_changelog_changed_370" + }, + { + "label": "Backend", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L375", + "community": 912, + "norm_label": "backend", + "id": "rebreak_native_changelog_backend_375" + }, + { + "label": "[0.3.5] \u2014 buildNumber 14 / versionCode 11 \u2014 2026-05-22", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L382", + "community": 906, + "norm_label": "[0.3.5] \u2014 buildnumber 14 / versioncode 11 \u2014 2026-05-22", + "id": "rebreak_native_changelog_0_3_5_buildnumber_14_versioncode_11_2026_05_22" + }, + { + "label": "Fixed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L384", + "community": 906, + "norm_label": "fixed", + "id": "rebreak_native_changelog_fixed_384" + }, + { + "label": "Added", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L400", + "community": 906, + "norm_label": "added", + "id": "rebreak_native_changelog_added" + }, + { + "label": "Fixed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L410", + "community": 906, + "norm_label": "fixed", + "id": "rebreak_native_changelog_fixed_410" + }, + { + "label": "[0.3.0] \u2014 versionCode 10 \u2014 2026-05-17", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L418", + "community": 896, + "norm_label": "[0.3.0] \u2014 versioncode 10 \u2014 2026-05-17", + "id": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17" + }, + { + "label": "Added", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L420", + "community": 896, + "norm_label": "added", + "id": "rebreak_native_changelog_added_420" + }, + { + "label": "Changed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L432", + "community": 896, + "norm_label": "changed", + "id": "rebreak_native_changelog_changed_432" + }, + { + "label": "Fixed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L436", + "community": 896, + "norm_label": "fixed", + "id": "rebreak_native_changelog_fixed_436" + }, + { + "label": "i18n", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L442", + "community": 896, + "norm_label": "i18n", + "id": "rebreak_native_changelog_i18n" + }, + { + "label": "Backend", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L446", + "community": 896, + "norm_label": "backend", + "id": "rebreak_native_changelog_backend_446" + }, + { + "label": "[0.2.1] \u2014 versionCode 9 \u2014 2026-05-16", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L453", + "community": 915, + "norm_label": "[0.2.1] \u2014 versioncode 9 \u2014 2026-05-16", + "id": "rebreak_native_changelog_0_2_1_versioncode_9_2026_05_16" + }, + { + "label": "Fixed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L455", + "community": 915, + "norm_label": "fixed", + "id": "rebreak_native_changelog_fixed_455" + }, + { + "label": "[0.2.0] \u2014 versionCode 8 \u2014 2026-05-16", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L461", + "community": 905, + "norm_label": "[0.2.0] \u2014 versioncode 8 \u2014 2026-05-16", + "id": "rebreak_native_changelog_0_2_0_versioncode_8_2026_05_16" + }, + { + "label": "Added", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L463", + "community": 905, + "norm_label": "added", + "id": "rebreak_native_changelog_added_463" + }, + { + "label": "Changed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L474", + "community": 905, + "norm_label": "changed", + "id": "rebreak_native_changelog_changed_474" + }, + { + "label": "Fixed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L478", + "community": 905, + "norm_label": "fixed", + "id": "rebreak_native_changelog_fixed_478" + }, + { + "label": "[0.1.0] \u2014 versionCode 7 \u2014 2026-05-15", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L483", + "community": 904, + "norm_label": "[0.1.0] \u2014 versioncode 7 \u2014 2026-05-15", + "id": "rebreak_native_changelog_0_1_0_versioncode_7_2026_05_15" + }, + { + "label": "Added", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L485", + "community": 904, + "norm_label": "added", + "id": "rebreak_native_changelog_added_485" + }, + { + "label": "Changed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L489", + "community": 904, + "norm_label": "changed", + "id": "rebreak_native_changelog_changed_489" + }, + { + "label": "Fixed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L494", + "community": 904, + "norm_label": "fixed", + "id": "rebreak_native_changelog_fixed_494" + }, + { + "label": "[0.1.0] \u2014 versionCode 6 \u2014 2026-05-15", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L501", + "community": 903, + "norm_label": "[0.1.0] \u2014 versioncode 6 \u2014 2026-05-15", + "id": "rebreak_native_changelog_0_1_0_versioncode_6_2026_05_15" + }, + { + "label": "Added", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L503", + "community": 903, + "norm_label": "added", + "id": "rebreak_native_changelog_added_503" + }, + { + "label": "Changed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L509", + "community": 903, + "norm_label": "changed", + "id": "rebreak_native_changelog_changed_509" + }, + { + "label": "Fixed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L512", + "community": 903, + "norm_label": "fixed", + "id": "rebreak_native_changelog_fixed_512" + }, + { + "label": "[0.1.0] \u2014 versionCode 5 \u2014 2026-05-14", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L517", + "community": 911, + "norm_label": "[0.1.0] \u2014 versioncode 5 \u2014 2026-05-14", + "id": "rebreak_native_changelog_0_1_0_versioncode_5_2026_05_14" + }, + { + "label": "Added", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L519", + "community": 911, + "norm_label": "added", + "id": "rebreak_native_changelog_added_519" + }, + { + "label": "Fixed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L522", + "community": 911, + "norm_label": "fixed", + "id": "rebreak_native_changelog_fixed_522" + }, + { + "label": "[0.1.0] \u2014 versionCode 4 \u2014 2026-05-07", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L535", + "community": 910, + "norm_label": "[0.1.0] \u2014 versioncode 4 \u2014 2026-05-07", + "id": "rebreak_native_changelog_0_1_0_versioncode_4_2026_05_07" + }, + { + "label": "Added", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L537", + "community": 910, + "norm_label": "added", + "id": "rebreak_native_changelog_added_537" + }, + { + "label": "Fixed", + "file_type": "document", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L540", + "community": 910, + "norm_label": "fixed", + "id": "rebreak_native_changelog_fixed_540" + }, + { + "label": "SCRIPTS.md", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L1", + "community": 276, + "norm_label": "scripts.md", + "id": "apps_rebreak_native_scripts_md" + }, + { + "label": "ReBreak Native \u2014 Deploy & Dev Scripts", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L1", + "community": 276, + "norm_label": "rebreak native \u2014 deploy & dev scripts", + "id": "rebreak_native_scripts_rebreak_native_deploy_dev_scripts" + }, + { + "label": "Quick Start", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L3", + "community": 276, + "norm_label": "quick start", + "id": "rebreak_native_scripts_quick_start" + }, + { + "label": "Development", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L5", + "community": 276, + "norm_label": "development", + "id": "rebreak_native_scripts_development" + }, + { + "label": "Deployment", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L36", + "community": 276, + "norm_label": "deployment", + "id": "rebreak_native_scripts_deployment" + }, + { + "label": "`./deploy.sh` \u2014 Multi-Platform Release", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L56", + "community": 276, + "norm_label": "`./deploy.sh` \u2014 multi-platform release", + "id": "rebreak_native_scripts_deploy_sh_multi_platform_release" + }, + { + "label": "Subcommands", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L58", + "community": 276, + "norm_label": "subcommands", + "id": "rebreak_native_scripts_subcommands" + }, + { + "label": "Flags", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L64", + "community": 276, + "norm_label": "flags", + "id": "rebreak_native_scripts_flags" + }, + { + "label": "Credentials", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L74", + "community": 276, + "norm_label": "credentials", + "id": "rebreak_native_scripts_credentials" + }, + { + "label": "`./dev.sh` \u2014 Development Tooling", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L88", + "community": 276, + "norm_label": "`./dev.sh` \u2014 development tooling", + "id": "rebreak_native_scripts_dev_sh_development_tooling" + }, + { + "label": "Subcommands", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L90", + "community": 276, + "norm_label": "subcommands", + "id": "rebreak_native_scripts_subcommands_90" + }, + { + "label": "Flags (ios)", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L98", + "community": 276, + "norm_label": "flags (ios)", + "id": "rebreak_native_scripts_flags_ios" + }, + { + "label": "Flags (android)", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L105", + "community": 276, + "norm_label": "flags (android)", + "id": "rebreak_native_scripts_flags_android" + }, + { + "label": "Flags (metro)", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L110", + "community": 276, + "norm_label": "flags (metro)", + "id": "rebreak_native_scripts_flags_metro" + }, + { + "label": "Flags (clean)", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L113", + "community": 276, + "norm_label": "flags (clean)", + "id": "rebreak_native_scripts_flags_clean" + }, + { + "label": "`./eas-release.sh` \u2014 EAS Cloud-Build", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L119", + "community": 276, + "norm_label": "`./eas-release.sh` \u2014 eas cloud-build", + "id": "rebreak_native_scripts_eas_release_sh_eas_cloud_build" + }, + { + "label": "\u26a0\ufe0f Android Deployment Setup \u2014 NOCH NICHT READY", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L146", + "community": 276, + "norm_label": "\u26a0\ufe0f android deployment setup \u2014 noch nicht ready", + "id": "rebreak_native_scripts_android_deployment_setup_noch_nicht_ready" + }, + { + "label": "Fehlende Credentials", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L148", + "community": 276, + "norm_label": "fehlende credentials", + "id": "rebreak_native_scripts_fehlende_credentials" + }, + { + "label": "Status-Check", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L193", + "community": 276, + "norm_label": "status-check", + "id": "rebreak_native_scripts_status_check" + }, + { + "label": "Changelog", + "file_type": "document", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L217", + "community": 276, + "norm_label": "changelog", + "id": "rebreak_native_scripts_changelog" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L1", + "community": 226, + "norm_label": "readme.md", + "id": "apps_rebreak_native_readme_md" + }, + { + "label": "Rebreak Native (React Native + Expo)", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L1", + "community": 226, + "norm_label": "rebreak native (react native + expo)", + "id": "rebreak_native_readme_rebreak_native_react_native_expo" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L6", + "community": 226, + "norm_label": "status", + "id": "rebreak_native_readme_status" + }, + { + "label": "Setup", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L21", + "community": 226, + "norm_label": "setup", + "id": "rebreak_native_readme_setup" + }, + { + "label": "Stack", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L36", + "community": 226, + "norm_label": "stack", + "id": "rebreak_native_readme_stack" + }, + { + "label": "Verzeichnisstruktur", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L51", + "community": 226, + "norm_label": "verzeichnisstruktur", + "id": "rebreak_native_readme_verzeichnisstruktur" + }, + { + "label": "Dev-Variant (Hot-Reload parallel zur MDM-App)", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L75", + "community": 226, + "norm_label": "dev-variant (hot-reload parallel zur mdm-app)", + "id": "rebreak_native_readme_dev_variant_hot_reload_parallel_zur_mdm_app" + }, + { + "label": "Erstmaliges Setup (nur einmal n\u00f6tig)", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L80", + "community": 226, + "norm_label": "erstmaliges setup (nur einmal notig)", + "id": "rebreak_native_readme_erstmaliges_setup_nur_einmal_n\u00f6tig" + }, + { + "label": "T\u00e4glicher Workflow", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L94", + "community": 226, + "norm_label": "taglicher workflow", + "id": "rebreak_native_readme_t\u00e4glicher_workflow" + }, + { + "label": "Wichtige Unterschiede Dev vs. Dist", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L107", + "community": 226, + "norm_label": "wichtige unterschiede dev vs. dist", + "id": "rebreak_native_readme_wichtige_unterschiede_dev_vs_dist" + }, + { + "label": "Prod-Build bleibt unver\u00e4ndert", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L121", + "community": 226, + "norm_label": "prod-build bleibt unverandert", + "id": "rebreak_native_readme_prod_build_bleibt_unver\u00e4ndert" + }, + { + "label": "Wichtige Konfiguration", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L126", + "community": 226, + "norm_label": "wichtige konfiguration", + "id": "rebreak_native_readme_wichtige_konfiguration" + }, + { + "label": "Native Module Strategie", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L136", + "community": 226, + "norm_label": "native module strategie", + "id": "rebreak_native_readme_native_module_strategie" + }, + { + "label": "iOS \u2014 `modules/rebreak-ios-filter/`", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L140", + "community": 226, + "norm_label": "ios \u2014 `modules/rebreak-ios-filter/`", + "id": "rebreak_native_readme_ios_modules_rebreak_ios_filter" + }, + { + "label": "Android \u2014 `modules/rebreak-android-blocker/`", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L145", + "community": 226, + "norm_label": "android \u2014 `modules/rebreak-android-blocker/`", + "id": "rebreak_native_readme_android_modules_rebreak_android_blocker" + }, + { + "label": "Android \u2014 `modules/rebreak-android-a11y/`", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L150", + "community": 226, + "norm_label": "android \u2014 `modules/rebreak-android-a11y/`", + "id": "rebreak_native_readme_android_modules_rebreak_android_a11y" + }, + { + "label": "\u26a0\ufe0f Wichtige Hinweise", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L154", + "community": 226, + "norm_label": "\u26a0\ufe0f wichtige hinweise", + "id": "rebreak_native_readme_wichtige_hinweise" + }, + { + "label": "Release-Pipeline", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L161", + "community": 226, + "norm_label": "release-pipeline", + "id": "rebreak_native_readme_release_pipeline" + }, + { + "label": "Multi-Target Deploy (`deploy-app.sh`)", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L163", + "community": 226, + "norm_label": "multi-target deploy (`deploy-app.sh`)", + "id": "rebreak_native_readme_multi_target_deploy_deploy_app_sh" + }, + { + "label": "Was passiert pro Target", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L189", + "community": 226, + "norm_label": "was passiert pro target", + "id": "rebreak_native_readme_was_passiert_pro_target" + }, + { + "label": "Android-Vorbereitung (einmalig)", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L197", + "community": 226, + "norm_label": "android-vorbereitung (einmalig)", + "id": "rebreak_native_readme_android_vorbereitung_einmalig" + }, + { + "label": "Changelog", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L218", + "community": 226, + "norm_label": "changelog", + "id": "rebreak_native_readme_changelog" + }, + { + "label": "Alte Scripts (weiterhin nutzbar)", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L222", + "community": 226, + "norm_label": "alte scripts (weiterhin nutzbar)", + "id": "rebreak_native_readme_alte_scripts_weiterhin_nutzbar" + }, + { + "label": "Phasen-Tracker", + "file_type": "document", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L230", + "community": 226, + "norm_label": "phasen-tracker", + "id": "rebreak_native_readme_phasen_tracker" + }, + { + "label": "NEXT_RELEASE.md", + "file_type": "document", + "source_file": "apps/rebreak-native/NEXT_RELEASE.md", + "source_location": "L1", + "community": 908, + "norm_label": "next_release.md", + "id": "apps_rebreak_native_next_release_md" + }, + { + "label": "Next Release", + "file_type": "document", + "source_file": "apps/rebreak-native/NEXT_RELEASE.md", + "source_location": "L1", + "community": 908, + "norm_label": "next release", + "id": "rebreak_native_next_release_next_release" + }, + { + "label": "Fixes", + "file_type": "document", + "source_file": "apps/rebreak-native/NEXT_RELEASE.md", + "source_location": "L3", + "community": 908, + "norm_label": "fixes", + "id": "rebreak_native_next_release_fixes" + }, + { + "label": "PLAY_STORE_LISTING.md", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L1", + "community": 595, + "norm_label": "play_store_listing.md", + "id": "apps_rebreak_native_docs_internal_play_store_listing_md" + }, + { + "label": "Play Store Listing \u2014 ReBreak", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L1", + "community": 595, + "norm_label": "play store listing \u2014 rebreak", + "id": "internal_play_store_listing_play_store_listing_rebreak" + }, + { + "label": "Kurztitel (30 Zeichen max)", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L8", + "community": 595, + "norm_label": "kurztitel (30 zeichen max)", + "id": "internal_play_store_listing_kurztitel_30_zeichen_max" + }, + { + "label": "Untertitel / Tagline (80 Zeichen max, Play-Card)", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L12", + "community": 595, + "norm_label": "untertitel / tagline (80 zeichen max, play-card)", + "id": "internal_play_store_listing_untertitel_tagline_80_zeichen_max_play_card" + }, + { + "label": "Kurzbeschreibung (80 Zeichen max, Play-Card)", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L18", + "community": 595, + "norm_label": "kurzbeschreibung (80 zeichen max, play-card)", + "id": "internal_play_store_listing_kurzbeschreibung_80_zeichen_max_play_card" + }, + { + "label": "Lange Beschreibung (max 4000 Zeichen)", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L24", + "community": 595, + "norm_label": "lange beschreibung (max 4000 zeichen)", + "id": "internal_play_store_listing_lange_beschreibung_max_4000_zeichen" + }, + { + "label": "Berechtigungen \u2014 Begr\u00fcndung f\u00fcr Review-Team", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L52", + "community": 595, + "norm_label": "berechtigungen \u2014 begrundung fur review-team", + "id": "internal_play_store_listing_berechtigungen_begr\u00fcndung_f\u00fcr_review_team" + }, + { + "label": "BIND_ACCESSIBILITY_SERVICE", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L54", + "community": 595, + "norm_label": "bind_accessibility_service", + "id": "internal_play_store_listing_bind_accessibility_service" + }, + { + "label": "BIND_VPN_SERVICE", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L67", + "community": 595, + "norm_label": "bind_vpn_service", + "id": "internal_play_store_listing_bind_vpn_service" + }, + { + "label": "FOREGROUND_SERVICE", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L78", + "community": 595, + "norm_label": "foreground_service", + "id": "internal_play_store_listing_foreground_service" + }, + { + "label": "POST_NOTIFICATIONS", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L82", + "community": 595, + "norm_label": "post_notifications", + "id": "internal_play_store_listing_post_notifications" + }, + { + "label": "RECORD_AUDIO", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L86", + "community": 595, + "norm_label": "record_audio", + "id": "internal_play_store_listing_record_audio" + }, + { + "label": "Screenshots \u2014 Shotlist (8 Frames)", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L92", + "community": 595, + "norm_label": "screenshots \u2014 shotlist (8 frames)", + "id": "internal_play_store_listing_screenshots_shotlist_8_frames" + }, + { + "label": "App-Kategorie (Play Console)", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L110", + "community": 595, + "norm_label": "app-kategorie (play console)", + "id": "internal_play_store_listing_app_kategorie_play_console" + }, + { + "label": "Content-Rating", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L115", + "community": 595, + "norm_label": "content-rating", + "id": "internal_play_store_listing_content_rating" + }, + { + "label": "Datenschutzerkl\u00e4rung-URL (PFLICHT)", + "file_type": "document", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L120", + "community": 595, + "norm_label": "datenschutzerklarung-url (pflicht)", + "id": "internal_play_store_listing_datenschutzerkl\u00e4rung_url_pflicht" + }, + { + "label": "SETUP.md", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L1", + "community": 431, + "norm_label": "setup.md", + "id": "apps_rebreak_native_maestro_setup_md" + }, + { + "label": "Maestro E2E \u2014 Local Setup (Phase A)", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L1", + "community": 431, + "norm_label": "maestro e2e \u2014 local setup (phase a)", + "id": "maestro_setup_maestro_e2e_local_setup_phase_a" + }, + { + "label": "1. Maestro CLI installieren", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L8", + "community": 431, + "norm_label": "1. maestro cli installieren", + "id": "maestro_setup_1_maestro_cli_installieren" + }, + { + "label": "2. App auf Device / Simulator bauen", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L29", + "community": 431, + "norm_label": "2. app auf device / simulator bauen", + "id": "maestro_setup_2_app_auf_device_simulator_bauen" + }, + { + "label": "iOS Simulator", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L33", + "community": 431, + "norm_label": "ios simulator", + "id": "maestro_setup_ios_simulator" + }, + { + "label": "Android Emulator", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L59", + "community": 431, + "norm_label": "android emulator", + "id": "maestro_setup_android_emulator" + }, + { + "label": "Bundle-ID", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L73", + "community": 431, + "norm_label": "bundle-id", + "id": "maestro_setup_bundle_id" + }, + { + "label": "3. Env-Vars setzen", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L80", + "community": 431, + "norm_label": "3. env-vars setzen", + "id": "maestro_setup_3_env_vars_setzen" + }, + { + "label": "Option A: direktes `--env` Flag", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L84", + "community": 431, + "norm_label": "option a: direktes `--env` flag", + "id": "maestro_setup_option_a_direktes_env_flag" + }, + { + "label": "Option B: Infisical Wrapper", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L93", + "community": 431, + "norm_label": "option b: infisical wrapper", + "id": "maestro_setup_option_b_infisical_wrapper" + }, + { + "label": "Test-Account (aktueller Stand)", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L111", + "community": 431, + "norm_label": "test-account (aktueller stand)", + "id": "maestro_setup_test_account_aktueller_stand" + }, + { + "label": "4. Flows ausfuehren", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L122", + "community": 431, + "norm_label": "4. flows ausfuehren", + "id": "maestro_setup_4_flows_ausfuehren" + }, + { + "label": "Einen einzelnen Flow", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L124", + "community": 431, + "norm_label": "einen einzelnen flow", + "id": "maestro_setup_einen_einzelnen_flow" + }, + { + "label": "Alle Flows (sequenziell)", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L132", + "community": 431, + "norm_label": "alle flows (sequenziell)", + "id": "maestro_setup_alle_flows_sequenziell" + }, + { + "label": "Spezifische Subdirectory", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L147", + "community": 431, + "norm_label": "spezifische subdirectory", + "id": "maestro_setup_spezifische_subdirectory" + }, + { + "label": "5. Flow-Entwicklung: Maestro Studio", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L155", + "community": 431, + "norm_label": "5. flow-entwicklung: maestro studio", + "id": "maestro_setup_5_flow_entwicklung_maestro_studio" + }, + { + "label": "6. Tipps fuer stabile Flows", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L169", + "community": 431, + "norm_label": "6. tipps fuer stabile flows", + "id": "maestro_setup_6_tipps_fuer_stabile_flows" + }, + { + "label": "7. App-State vor Test-Lauf", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L202", + "community": 431, + "norm_label": "7. app-state vor test-lauf", + "id": "maestro_setup_7_app_state_vor_test_lauf" + }, + { + "label": "8. Flow-Uebersicht", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L218", + "community": 431, + "norm_label": "8. flow-uebersicht", + "id": "maestro_setup_8_flow_uebersicht" + }, + { + "label": "Bestehende Flows (Phase A)", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L220", + "community": 431, + "norm_label": "bestehende flows (phase a)", + "id": "maestro_setup_bestehende_flows_phase_a" + }, + { + "label": "Neue Flows (Phase A+, kritische Coverage)", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L235", + "community": 431, + "norm_label": "neue flows (phase a+, kritische coverage)", + "id": "maestro_setup_neue_flows_phase_a_kritische_coverage" + }, + { + "label": "9. Neue Env-Vars fuer Phase-A+-Flows", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L260", + "community": 431, + "norm_label": "9. neue env-vars fuer phase-a+-flows", + "id": "maestro_setup_9_neue_env_vars_fuer_phase_a_flows" + }, + { + "label": "10. Run-Befehle Phase A+", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L274", + "community": 431, + "norm_label": "10. run-befehle phase a+", + "id": "maestro_setup_10_run_befehle_phase_a" + }, + { + "label": "11. Phase B \u2014 Maestro Cloud (Zukunft, post-TestFlight)", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L303", + "community": 431, + "norm_label": "11. phase b \u2014 maestro cloud (zukunft, post-testflight)", + "id": "maestro_setup_11_phase_b_maestro_cloud_zukunft_post_testflight" + }, + { + "label": "TODO_TESTIDS.md", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L1", + "community": 976, + "norm_label": "todo_testids.md", + "id": "apps_rebreak_native_maestro_todo_testids_md" + }, + { + "label": "TODO: testID additions needed for stable Maestro selectors", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L1", + "community": 976, + "norm_label": "todo: testid additions needed for stable maestro selectors", + "id": "maestro_todo_testids_todo_testid_additions_needed_for_stable_maestro_selectors" + }, + { + "label": "HIGH \u2014 Coordinate fallbacks (breaks on layout change)", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L12", + "community": 976, + "norm_label": "high \u2014 coordinate fallbacks (breaks on layout change)", + "id": "maestro_todo_testids_high_coordinate_fallbacks_breaks_on_layout_change" + }, + { + "label": "HIGH \u2014 SOS screen send button (no text, no testID)", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L31", + "community": 976, + "norm_label": "high \u2014 sos screen send button (no text, no testid)", + "id": "maestro_todo_testids_high_sos_screen_send_button_no_text_no_testid" + }, + { + "label": "HIGH \u2014 Demographics field row Pressables", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L41", + "community": 976, + "norm_label": "high \u2014 demographics field row pressables", + "id": "maestro_todo_testids_high_demographics_field_row_pressables" + }, + { + "label": "MEDIUM \u2014 Auth screen inputs (currently matched via i18n placeholder text)", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L57", + "community": 976, + "norm_label": "medium \u2014 auth screen inputs (currently matched via i18n placeholder text)", + "id": "maestro_todo_testids_medium_auth_screen_inputs_currently_matched_via_i18n_placeholder_text" + }, + { + "label": "MEDIUM \u2014 ProfileEdit screen nickname input", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L67", + "community": 976, + "norm_label": "medium \u2014 profileedit screen nickname input", + "id": "maestro_todo_testids_medium_profileedit_screen_nickname_input" + }, + { + "label": "MEDIUM \u2014 ComposeCard share button", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L76", + "community": 976, + "norm_label": "medium \u2014 composecard share button", + "id": "maestro_todo_testids_medium_composecard_share_button" + }, + { + "label": "LOW \u2014 Settings screen rows", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L84", + "community": 976, + "norm_label": "low \u2014 settings screen rows", + "id": "maestro_todo_testids_low_settings_screen_rows" + }, + { + "label": "Notes", + "file_type": "document", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L98", + "community": 976, + "norm_label": "notes", + "id": "maestro_todo_testids_notes" + }, + { + "label": "DEPRECATED.md", + "file_type": "document", + "source_file": "apps/rebreak-native/assets/DEPRECATED.md", + "source_location": "L1", + "community": 900, + "norm_label": "deprecated.md", + "id": "apps_rebreak_native_assets_deprecated_md" + }, + { + "label": "Deprecated Assets", + "file_type": "document", + "source_file": "apps/rebreak-native/assets/DEPRECATED.md", + "source_location": "L1", + "community": 900, + "norm_label": "deprecated assets", + "id": "assets_deprecated_deprecated_assets" + }, + { + "label": "splash.png", + "file_type": "document", + "source_file": "apps/rebreak-native/assets/DEPRECATED.md", + "source_location": "L6", + "community": 900, + "norm_label": "splash.png", + "id": "assets_deprecated_splash_png" + }, + { + "label": "adaptive-icon.png / adaptive-foreground.png / rebreak_android.png", + "file_type": "document", + "source_file": "apps/rebreak-native/assets/DEPRECATED.md", + "source_location": "L12", + "community": 900, + "norm_label": "adaptive-icon.png / adaptive-foreground.png / rebreak_android.png", + "id": "assets_deprecated_adaptive_icon_png_adaptive_foreground_png_rebreak_android_png" + }, + { + "label": "ios-vpn-filter-research.md", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L1", + "community": 128, + "norm_label": "ios-vpn-filter-research.md", + "id": "apps_rebreak_native_tmp_ios_vpn_filter_research_md" + }, + { + "label": "iOS VPN-/DNS-Tunnel Gambling-Filter \u2014 Recherche & Architektur-Proposal", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L1", + "community": 128, + "norm_label": "ios vpn-/dns-tunnel gambling-filter \u2014 recherche & architektur-proposal", + "id": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal" + }, + { + "label": "0. Warum dieser Auftrag", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L8", + "community": 128, + "norm_label": "0. warum dieser auftrag", + "id": "tmp_ios_vpn_filter_research_0_warum_dieser_auftrag" + }, + { + "label": "1. Bestandsaufnahme (Code gelesen)", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L24", + "community": 128, + "norm_label": "1. bestandsaufnahme (code gelesen)", + "id": "tmp_ios_vpn_filter_research_1_bestandsaufnahme_code_gelesen" + }, + { + "label": "1.1 Android-VPN-Filter \u2014 das Referenz-Design", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L26", + "community": 128, + "norm_label": "1.1 android-vpn-filter \u2014 das referenz-design", + "id": "tmp_ios_vpn_filter_research_1_1_android_vpn_filter_das_referenz_design" + }, + { + "label": "1.2 iOS-Bestand", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L53", + "community": 128, + "norm_label": "1.2 ios-bestand", + "id": "tmp_ios_vpn_filter_research_1_2_ios_bestand" + }, + { + "label": "1.3 Expo-Config-Plugin", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L75", + "community": 128, + "norm_label": "1.3 expo-config-plugin", + "id": "tmp_ios_vpn_filter_research_1_3_expo_config_plugin" + }, + { + "label": "1.4 JS-Orchestrierung", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L93", + "community": 128, + "norm_label": "1.4 js-orchestrierung", + "id": "tmp_ios_vpn_filter_research_1_4_js_orchestrierung" + }, + { + "label": "2. API-Wahl: `NEPacketTunnelProvider` vs `NEDNSProxyProvider` vs `NEAppProxyProvider`", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L106", + "community": 128, + "norm_label": "2. api-wahl: `nepackettunnelprovider` vs `nednsproxyprovider` vs `neappproxyprovider`", + "id": "tmp_ios_vpn_filter_research_2_api_wahl_nepackettunnelprovider_vs_nednsproxyprovider_vs_neappproxyprovider" + }, + { + "label": "2.1 `NEDNSProxyProvider` \u2014 AUSGESCHLOSSEN", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L108", + "community": 128, + "norm_label": "2.1 `nednsproxyprovider` \u2014 ausgeschlossen", + "id": "tmp_ios_vpn_filter_research_2_1_nednsproxyprovider_ausgeschlossen" + }, + { + "label": "2.2 `NEAppProxyProvider` \u2014 UNGEEIGNET", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L118", + "community": 128, + "norm_label": "2.2 `neappproxyprovider` \u2014 ungeeignet", + "id": "tmp_ios_vpn_filter_research_2_2_neappproxyprovider_ungeeignet" + }, + { + "label": "2.3 `NEPacketTunnelProvider` \u2014 EMPFOHLEN", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L125", + "community": 128, + "norm_label": "2.3 `nepackettunnelprovider` \u2014 empfohlen", + "id": "tmp_ios_vpn_filter_research_2_3_nepackettunnelprovider_empfohlen" + }, + { + "label": "2.4 Wie konkret blocken?", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L155", + "community": 128, + "norm_label": "2.4 wie konkret blocken?", + "id": "tmp_ios_vpn_filter_research_2_4_wie_konkret_blocken" + }, + { + "label": "2.5 Die 208k Domains rein \u2014 Performance/Speicher", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L175", + "community": 128, + "norm_label": "2.5 die 208k domains rein \u2014 performance/speicher", + "id": "tmp_ios_vpn_filter_research_2_5_die_208k_domains_rein_performance_speicher" + }, + { + "label": "3. Entitlements", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L197", + "community": 128, + "norm_label": "3. entitlements", + "id": "tmp_ios_vpn_filter_research_3_entitlements" + }, + { + "label": "3.1 Was gebraucht wird", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L199", + "community": 128, + "norm_label": "3.1 was gebraucht wird", + "id": "tmp_ios_vpn_filter_research_3_1_was_gebraucht_wird" + }, + { + "label": "3.2 Braucht es Apple-Freigabe?", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L214", + "community": 128, + "norm_label": "3.2 braucht es apple-freigabe?", + "id": "tmp_ios_vpn_filter_research_3_2_braucht_es_apple_freigabe" + }, + { + "label": "3.3 Dev-Build vs Distribution \u2014 die wichtige Asymmetrie", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L228", + "community": 128, + "norm_label": "3.3 dev-build vs distribution \u2014 die wichtige asymmetrie", + "id": "tmp_ios_vpn_filter_research_3_3_dev_build_vs_distribution_die_wichtige_asymmetrie" + }, + { + "label": "4. iOS-Versionen", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L256", + "community": 128, + "norm_label": "4. ios-versionen", + "id": "tmp_ios_vpn_filter_research_4_ios_versionen" + }, + { + "label": "5. Tamper-Resistance \u2014 die ehrliche Einordnung", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L271", + "community": 128, + "norm_label": "5. tamper-resistance \u2014 die ehrliche einordnung", + "id": "tmp_ios_vpn_filter_research_5_tamper_resistance_die_ehrliche_einordnung" + }, + { + "label": "5.1 Was der User tun kann", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L276", + "community": 128, + "norm_label": "5.1 was der user tun kann", + "id": "tmp_ios_vpn_filter_research_5_1_was_der_user_tun_kann" + }, + { + "label": "5.2 `includeAllNetworks` / On-Demand \u2014 kein echter Lock", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L289", + "community": 128, + "norm_label": "5.2 `includeallnetworks` / on-demand \u2014 kein echter lock", + "id": "tmp_ios_vpn_filter_research_5_2_includeallnetworks_on_demand_kein_echter_lock" + }, + { + "label": "5.3 Family Controls / Screen Time hier", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L300", + "community": 128, + "norm_label": "5.3 family controls / screen time hier", + "id": "tmp_ios_vpn_filter_research_5_3_family_controls_screen_time_hier" + }, + { + "label": "5.4 Realistischer Tamper-Schutz = Friction, nicht Hard-Lock", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L308", + "community": 128, + "norm_label": "5.4 realistischer tamper-schutz = friction, nicht hard-lock", + "id": "tmp_ios_vpn_filter_research_5_4_realistischer_tamper_schutz_friction_nicht_hard_lock" + }, + { + "label": "6. Bypass-Vektoren", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L336", + "community": 128, + "norm_label": "6. bypass-vektoren", + "id": "tmp_ios_vpn_filter_research_6_bypass_vektoren" + }, + { + "label": "6.1 Ehrliche Abw\u00e4gung DNS-Sinkhole vs Voll-Packet-Tunnel", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L349", + "community": 128, + "norm_label": "6.1 ehrliche abwagung dns-sinkhole vs voll-packet-tunnel", + "id": "tmp_ios_vpn_filter_research_6_1_ehrliche_abw\u00e4gung_dns_sinkhole_vs_voll_packet_tunnel" + }, + { + "label": "7. Integration ins bestehende Modul", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L380", + "community": 128, + "norm_label": "7. integration ins bestehende modul", + "id": "tmp_ios_vpn_filter_research_7_integration_ins_bestehende_modul" + }, + { + "label": "7.1 Layer-Modell danach", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L382", + "community": 128, + "norm_label": "7.1 layer-modell danach", + "id": "tmp_ios_vpn_filter_research_7_1_layer_modell_danach" + }, + { + "label": "7.2 Betroffene Dateien (Skizze, KEIN Code hier)", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L403", + "community": 128, + "norm_label": "7.2 betroffene dateien (skizze, kein code hier)", + "id": "tmp_ios_vpn_filter_research_7_2_betroffene_dateien_skizze_kein_code_hier" + }, + { + "label": "7.3 Cooldown / Layer-Logik", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L468", + "community": 128, + "norm_label": "7.3 cooldown / layer-logik", + "id": "tmp_ios_vpn_filter_research_7_3_cooldown_layer_logik" + }, + { + "label": "8. Battery / Performance", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L480", + "community": 128, + "norm_label": "8. battery / performance", + "id": "tmp_ios_vpn_filter_research_8_battery_performance" + }, + { + "label": "9. Expo / RN-Realit\u00e4t \u2014 Scaffolding", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L498", + "community": 128, + "norm_label": "9. expo / rn-realitat \u2014 scaffolding", + "id": "tmp_ios_vpn_filter_research_9_expo_rn_realit\u00e4t_scaffolding" + }, + { + "label": "10. Grober Aufwand", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L523", + "community": 128, + "norm_label": "10. grober aufwand", + "id": "tmp_ios_vpn_filter_research_10_grober_aufwand" + }, + { + "label": "11. Offene Entscheidungen f\u00fcr den User", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L541", + "community": 128, + "norm_label": "11. offene entscheidungen fur den user", + "id": "tmp_ios_vpn_filter_research_11_offene_entscheidungen_f\u00fcr_den_user" + }, + { + "label": "12. Quellen", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L564", + "community": 128, + "norm_label": "12. quellen", + "id": "tmp_ios_vpn_filter_research_12_quellen" + }, + { + "label": "webcontent-layer2-research.md", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L1", + "community": 250, + "norm_label": "webcontent-layer2-research.md", + "id": "apps_rebreak_native_tmp_webcontent_layer2_research_md" + }, + { + "label": "Layer 2 \u2014 ManagedSettings `webContent`-Filter als Always-On-Fallback", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L1", + "community": 250, + "norm_label": "layer 2 \u2014 managedsettings `webcontent`-filter als always-on-fallback", + "id": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback" + }, + { + "label": "TL;DR / Empfehlung", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L7", + "community": 250, + "norm_label": "tl;dr / empfehlung", + "id": "tmp_webcontent_layer2_research_tl_dr_empfehlung" + }, + { + "label": "1. `ManagedSettings.WebContentSettings`-API \u2014 verifizierte Fakten", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L19", + "community": 250, + "norm_label": "1. `managedsettings.webcontentsettings`-api \u2014 verifizierte fakten", + "id": "tmp_webcontent_layer2_research_1_managedsettings_webcontentsettings_api_verifizierte_fakten" + }, + { + "label": "`WebContentSettings`", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L21", + "community": 250, + "norm_label": "`webcontentsettings`", + "id": "tmp_webcontent_layer2_research_webcontentsettings" + }, + { + "label": "`WebContentSettings.FilterPolicy` \u2014 alle vier Cases (Apple-Doc, verifiziert)", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L29", + "community": 250, + "norm_label": "`webcontentsettings.filterpolicy` \u2014 alle vier cases (apple-doc, verifiziert)", + "id": "tmp_webcontent_layer2_research_webcontentsettings_filterpolicy_alle_vier_cases_apple_doc_verifiziert" + }, + { + "label": "`WebDomain`", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L39", + "community": 250, + "norm_label": "`webdomain`", + "id": "tmp_webcontent_layer2_research_webdomain" + }, + { + "label": "Gibt es eine Gambling-`WebDomainCategory`? \u2014 NEIN.", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L42", + "community": 250, + "norm_label": "gibt es eine gambling-`webdomaincategory`? \u2014 nein.", + "id": "tmp_webcontent_layer2_research_gibt_es_eine_gambling_webdomaincategory_nein" + }, + { + "label": "2. Der \u201e50-Domain-Cap\" \u2014 VERIFIZIERT, hart, Apple-dokumentiert", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L49", + "community": 250, + "norm_label": "2. der \u201e50-domain-cap\" \u2014 verifiziert, hart, apple-dokumentiert", + "id": "tmp_webcontent_layer2_research_2_der_50_domain_cap_verifiziert_hart_apple_dokumentiert" + }, + { + "label": "3. Wirkungsbereich \u2014 Safari sicher; restliche WebKit-Browser unbelegt", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L61", + "community": 250, + "norm_label": "3. wirkungsbereich \u2014 safari sicher; restliche webkit-browser unbelegt", + "id": "tmp_webcontent_layer2_research_3_wirkungsbereich_safari_sicher_restliche_webkit_browser_unbelegt" + }, + { + "label": "4. Family-Controls-Voraussetzung \u2014 ja, FC reicht; aber genau das ist die Crux", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L69", + "community": 250, + "norm_label": "4. family-controls-voraussetzung \u2014 ja, fc reicht; aber genau das ist die crux", + "id": "tmp_webcontent_layer2_research_4_family_controls_voraussetzung_ja_fc_reicht_aber_genau_das_ist_die_crux" + }, + { + "label": "5. Koexistenz NEURLFilter + ManagedSettings \u2014 unkritisch", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L78", + "community": 250, + "norm_label": "5. koexistenz neurlfilter + managedsettings \u2014 unkritisch", + "id": "tmp_webcontent_layer2_research_5_koexistenz_neurlfilter_managedsettings_unkritisch" + }, + { + "label": "6. Kann der User NEURLFilter \u201eofftogglen\"? \u2014 Die Kernfrage, ehrlich beantwortet", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L87", + "community": 250, + "norm_label": "6. kann der user neurlfilter \u201eofftogglen\"? \u2014 die kernfrage, ehrlich beantwortet", + "id": "tmp_webcontent_layer2_research_6_kann_der_user_neurlfilter_offtogglen_die_kernfrage_ehrlich_beantwortet" + }, + { + "label": "7. L\u00e4nderabh\u00e4ngigkeit \u2014 sinnvoll, aber simpel halten", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L99", + "community": 250, + "norm_label": "7. landerabhangigkeit \u2014 sinnvoll, aber simpel halten", + "id": "tmp_webcontent_layer2_research_7_l\u00e4nderabh\u00e4ngigkeit_sinnvoll_aber_simpel_halten" + }, + { + "label": "Bewertung \u2014 ehrlich, auch kritisch", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L111", + "community": 250, + "norm_label": "bewertung \u2014 ehrlich, auch kritisch", + "id": "tmp_webcontent_layer2_research_bewertung_ehrlich_auch_kritisch" + }, + { + "label": "Mehrwert f\u00fcr Rebreak", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L113", + "community": 250, + "norm_label": "mehrwert fur rebreak", + "id": "tmp_webcontent_layer2_research_mehrwert_f\u00fcr_rebreak" + }, + { + "label": "Verbesserungsvorschl\u00e4ge / Alternativen", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L121", + "community": 250, + "norm_label": "verbesserungsvorschlage / alternativen", + "id": "tmp_webcontent_layer2_research_verbesserungsvorschl\u00e4ge_alternativen" + }, + { + "label": "Wann es sich doch lohnt", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L132", + "community": 250, + "norm_label": "wann es sich doch lohnt", + "id": "tmp_webcontent_layer2_research_wann_es_sich_doch_lohnt" + }, + { + "label": "Implementierungs-Skizze (KEIN Code \u2014 nur Plan)", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L137", + "community": 250, + "norm_label": "implementierungs-skizze (kein code \u2014 nur plan)", + "id": "tmp_webcontent_layer2_research_implementierungs_skizze_kein_code_nur_plan" + }, + { + "label": "Offene Entscheidungen f\u00fcr den User", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L161", + "community": 250, + "norm_label": "offene entscheidungen fur den user", + "id": "tmp_webcontent_layer2_research_offene_entscheidungen_f\u00fcr_den_user" + }, + { + "label": "Quellen", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L172", + "community": 250, + "norm_label": "quellen", + "id": "tmp_webcontent_layer2_research_quellen" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/README.md", + "source_location": "L1", + "community": 1294, + "norm_label": "readme.md", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_readme_md" + }, + { + "label": "Filtering traffic by URL", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/README.md", + "source_location": "L1", + "community": 1294, + "norm_label": "filtering traffic by url", + "id": "filteringtrafficbyurl_readme_filtering_traffic_by_url" + }, + { + "label": "Overview", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/README.md", + "source_location": "L5", + "community": 1294, + "norm_label": "overview", + "id": "filteringtrafficbyurl_readme_overview" + }, + { + "label": "See also", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/README.md", + "source_location": "L18", + "community": 1294, + "norm_label": "see also", + "id": "filteringtrafficbyurl_readme_see_also" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/PIR Server/README.md", + "source_location": "L1", + "community": 1293, + "norm_label": "readme.md", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_pir_server_readme_md" + }, + { + "label": "Setting up a PIR server for URL filtering", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/PIR Server/README.md", + "source_location": "L1", + "community": 1293, + "norm_label": "setting up a pir server for url filtering", + "id": "pir_server_readme_setting_up_a_pir_server_for_url_filtering" + }, + { + "label": "Overview", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/PIR Server/README.md", + "source_location": "L5", + "community": 1293, + "norm_label": "overview", + "id": "pir_server_readme_overview" + }, + { + "label": "See also", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/PIR Server/README.md", + "source_location": "L12", + "community": 1293, + "norm_label": "see also", + "id": "pir_server_readme_see_also" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/README.md", + "source_location": "L1", + "community": 1303, + "norm_label": "readme.md", + "id": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_readme_md" + }, + { + "label": "Using the Bloom filter tool to configure a URL filter", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/README.md", + "source_location": "L1", + "community": 1303, + "norm_label": "using the bloom filter tool to configure a url filter", + "id": "bloomfiltertool_readme_using_the_bloom_filter_tool_to_configure_a_url_filter" + }, + { + "label": "See also", + "file_type": "document", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/README.md", + "source_location": "L12", + "community": 1303, + "norm_label": "see also", + "id": "bloomfiltertool_readme_see_also" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L1", + "community": 981, + "norm_label": "readme.md", + "id": "apps_rebreak_magic_win_readme_md" + }, + { + "label": "ReBreak Magic f\u00fcr Windows", + "file_type": "document", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L1", + "community": 981, + "norm_label": "rebreak magic fur windows", + "id": "rebreak_magic_win_readme_rebreak_magic_f\u00fcr_windows" + }, + { + "label": "Architektur", + "file_type": "document", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L8", + "community": 981, + "norm_label": "architektur", + "id": "rebreak_magic_win_readme_architektur" + }, + { + "label": "Flow", + "file_type": "document", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L25", + "community": 981, + "norm_label": "flow", + "id": "rebreak_magic_win_readme_flow" + }, + { + "label": "Bewusste Abweichungen vom urspr\u00fcnglichen Prompt-Dokument", + "file_type": "document", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L49", + "community": 981, + "norm_label": "bewusste abweichungen vom ursprunglichen prompt-dokument", + "id": "rebreak_magic_win_readme_bewusste_abweichungen_vom_urspr\u00fcnglichen_prompt_dokument" + }, + { + "label": "Backend-\u00c4nderungen (in diesem Repo, additiv)", + "file_type": "document", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L58", + "community": 981, + "norm_label": "backend-anderungen (in diesem repo, additiv)", + "id": "rebreak_magic_win_readme_backend_\u00e4nderungen_in_diesem_repo_additiv" + }, + { + "label": "Entwicklung (macOS)", + "file_type": "document", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L65", + "community": 981, + "norm_label": "entwicklung (macos)", + "id": "rebreak_magic_win_readme_entwicklung_macos" + }, + { + "label": "Build (Windows-Maschine)", + "file_type": "document", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L81", + "community": 981, + "norm_label": "build (windows-maschine)", + "id": "rebreak_magic_win_readme_build_windows_maschine" + }, + { + "label": "Bekannte Limitationen (v1)", + "file_type": "document", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L96", + "community": 981, + "norm_label": "bekannte limitationen (v1)", + "id": "rebreak_magic_win_readme_bekannte_limitationen_v1" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L1", + "community": 333, + "norm_label": "readme.md", + "id": "apps_admin_readme_md" + }, + { + "label": "rebreak Admin", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L1", + "community": 333, + "norm_label": "rebreak admin", + "id": "admin_readme_rebreak_admin" + }, + { + "label": "Stack", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L9", + "community": 333, + "norm_label": "stack", + "id": "admin_readme_stack" + }, + { + "label": "Wo die Admin-App lebt", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L21", + "community": 333, + "norm_label": "wo die admin-app lebt", + "id": "admin_readme_wo_die_admin_app_lebt" + }, + { + "label": "Lokale Entwicklung", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L32", + "community": 333, + "norm_label": "lokale entwicklung", + "id": "admin_readme_lokale_entwicklung" + }, + { + "label": "Auth-Architektur", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L49", + "community": 333, + "norm_label": "auth-architektur", + "id": "admin_readme_auth_architektur" + }, + { + "label": "DSGVO-Considerations fuer Admin-Zugriff", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L83", + "community": 333, + "norm_label": "dsgvo-considerations fuer admin-zugriff", + "id": "admin_readme_dsgvo_considerations_fuer_admin_zugriff" + }, + { + "label": "Deploy-Plan", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L109", + "community": 333, + "norm_label": "deploy-plan", + "id": "admin_readme_deploy_plan" + }, + { + "label": "Variante A: SSR auf Hetzner (Empfehlung)", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L111", + "community": 333, + "norm_label": "variante a: ssr auf hetzner (empfehlung)", + "id": "admin_readme_variante_a_ssr_auf_hetzner_empfehlung" + }, + { + "label": "Variante B: Static via Cloudflare Pages", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L143", + "community": 333, + "norm_label": "variante b: static via cloudflare pages", + "id": "admin_readme_variante_b_static_via_cloudflare_pages" + }, + { + "label": "GitHub-Actions-Pipeline -- Plan fuer Phase 2 Deploy", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L156", + "community": 333, + "norm_label": "github-actions-pipeline -- plan fuer phase 2 deploy", + "id": "admin_readme_github_actions_pipeline_plan_fuer_phase_2_deploy" + }, + { + "label": "Option 1: Separater Workflow `deploy-admin-staging.yml` (empfohlen)", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L161", + "community": 333, + "norm_label": "option 1: separater workflow `deploy-admin-staging.yml` (empfohlen)", + "id": "admin_readme_option_1_separater_workflow_deploy_admin_staging_yml_empfohlen" + }, + { + "label": "Option 2: Zusaetzlicher Job in `deploy-staging.yml`", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L206", + "community": 333, + "norm_label": "option 2: zusaetzlicher job in `deploy-staging.yml`", + "id": "admin_readme_option_2_zusaetzlicher_job_in_deploy_staging_yml" + }, + { + "label": "Server-Script fuer Admin-Deploy", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L217", + "community": 333, + "norm_label": "server-script fuer admin-deploy", + "id": "admin_readme_server_script_fuer_admin_deploy" + }, + { + "label": "TODOs nach Phase 1", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L229", + "community": 333, + "norm_label": "todos nach phase 1", + "id": "admin_readme_todos_nach_phase_1" + }, + { + "label": "Backend (rebreak-backend-Agent / Phase 3)", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L231", + "community": 333, + "norm_label": "backend (rebreak-backend-agent / phase 3)", + "id": "admin_readme_backend_rebreak_backend_agent_phase_3" + }, + { + "label": "Hans-Mueller / DSGVO (Phase 4)", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L242", + "community": 333, + "norm_label": "hans-mueller / dsgvo (phase 4)", + "id": "admin_readme_hans_mueller_dsgvo_phase_4" + }, + { + "label": "Backyard (Phase 2 Deploy)", + "file_type": "document", + "source_file": "apps/admin/README.md", + "source_location": "L250", + "community": 333, + "norm_label": "backyard (phase 2 deploy)", + "id": "admin_readme_backyard_phase_2_deploy" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L1", + "community": 179, + "norm_label": "readme.md", + "id": "apps_rebreak_magic_mac_readme_md" + }, + { + "label": "Rebreak Magic (Mac)", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L1", + "community": 179, + "norm_label": "rebreak magic (mac)", + "id": "rebreak_magic_mac_readme_rebreak_magic_mac" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L17", + "community": 179, + "norm_label": "status", + "id": "rebreak_magic_mac_readme_status" + }, + { + "label": "Was ist neu in Phase 2?", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L21", + "community": 179, + "norm_label": "was ist neu in phase 2?", + "id": "rebreak_magic_mac_readme_was_ist_neu_in_phase_2" + }, + { + "label": "Warum \"Magic\"?", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L30", + "community": 179, + "norm_label": "warum \"magic\"?", + "id": "rebreak_magic_mac_readme_warum_magic" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L42", + "community": 179, + "norm_label": "status", + "id": "rebreak_magic_mac_readme_status_42" + }, + { + "label": "Voraussetzungen", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L46", + "community": 179, + "norm_label": "voraussetzungen", + "id": "rebreak_magic_mac_readme_voraussetzungen" + }, + { + "label": "Was bedeutet das f\u00fcr mich?", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L59", + "community": 179, + "norm_label": "was bedeutet das fur mich?", + "id": "rebreak_magic_mac_readme_was_bedeutet_das_f\u00fcr_mich" + }, + { + "label": "Kann ich das r\u00fcckg\u00e4ngig machen?", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L65", + "community": 179, + "norm_label": "kann ich das ruckgangig machen?", + "id": "rebreak_magic_mac_readme_kann_ich_das_r\u00fcckg\u00e4ngig_machen" + }, + { + "label": "Welche Daten sieht Rebreak?", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L69", + "community": 179, + "norm_label": "welche daten sieht rebreak?", + "id": "rebreak_magic_mac_readme_welche_daten_sieht_rebreak" + }, + { + "label": "Status", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L73", + "community": 179, + "norm_label": "status", + "id": "rebreak_magic_mac_readme_status_73" + }, + { + "label": "Voraussetzungen", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L77", + "community": 179, + "norm_label": "voraussetzungen", + "id": "rebreak_magic_mac_readme_voraussetzungen_77" + }, + { + "label": "Build", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L87", + "community": 179, + "norm_label": "build", + "id": "rebreak_magic_mac_readme_build" + }, + { + "label": "Development-magic-mac", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L89", + "community": 179, + "norm_label": "development-magic-mac", + "id": "rebreak_magic_mac_readme_development_magic_mac" + }, + { + "label": "Einmalig: dependencies + supervise-magic-binary bauen", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L91", + "community": 179, + "norm_label": "einmalig: dependencies + supervise-magic-binary bauen", + "id": "rebreak_magic_mac_readme_einmalig_dependencies_supervise_magic_binary_bauen" + }, + { + "label": "Xcode-Project generieren (oder neu generieren nach project.yml \u00c4nderungen)", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L95", + "community": 179, + "norm_label": "xcode-project generieren (oder neu generieren nach project.yml anderungen)", + "id": "rebreak_magic_mac_readme_xcode_project_generieren_oder_neu_generieren_nach_project_yml_\u00e4nderungen" + }, + { + "label": "Bauen + \u00f6ffnen", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L99", + "community": 179, + "norm_label": "bauen + offnen", + "id": "rebreak_magic_mac_readme_bauen_\u00f6ffnen" + }, + { + "label": "\u2192 \u2318R in Xcode", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L103", + "community": 179, + "norm_label": "\u2192 \u2318r in xcode", + "id": "rebreak_magic_mac_readme_r_in_xcode" + }, + { + "label": "Master-Icon aus rebreak-native kopieren", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L141", + "community": 179, + "norm_label": "master-icon aus rebreak-native kopieren", + "id": "rebreak_magic_mac_readme_master_icon_aus_rebreak_native_kopieren" + }, + { + "label": "macOS-Icon-Gr\u00f6\u00dfen generieren via sips", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L144", + "community": 179, + "norm_label": "macos-icon-gro\u00dfen generieren via sips", + "id": "rebreak_magic_mac_readme_macos_icon_gr\u00f6ssen_generieren_via_sips" + }, + { + "label": "Schritt 1: Config-File erstellen", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L155", + "community": 179, + "norm_label": "schritt 1: config-file erstellen", + "id": "rebreak_magic_mac_readme_schritt_1_config_file_erstellen" + }, + { + "label": "Schritt 2: Config-Werte eintragen", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L163", + "community": 179, + "norm_label": "schritt 2: config-werte eintragen", + "id": "rebreak_magic_mac_readme_schritt_2_config_werte_eintragen" + }, + { + "label": "Alte Config (pre-Phase-2)", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L191", + "community": 179, + "norm_label": "alte config (pre-phase-2)", + "id": "rebreak_magic_mac_readme_alte_config_pre_phase_2" + }, + { + "label": "Pr\u00fcfe libimobiledevice", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L208", + "community": 179, + "norm_label": "prufe libimobiledevice", + "id": "rebreak_magic_mac_readme_pr\u00fcfe_libimobiledevice" + }, + { + "label": "Falls leer: USB-Kabel-/Port-Problem oder \"Diesem Computer vertrauen?\" Dialog nicht best\u00e4tigt", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L210", + "community": 179, + "norm_label": "falls leer: usb-kabel-/port-problem oder \"diesem computer vertrauen?\" dialog nicht bestatigt", + "id": "rebreak_magic_mac_readme_falls_leer_usb_kabel_port_problem_oder_diesem_computer_vertrauen_dialog_nicht_best\u00e4tigt" + }, + { + "label": "PRelated Docs", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L212", + "community": 179, + "norm_label": "prelated docs", + "id": "rebreak_magic_mac_readme_prelated_docs" + }, + { + "label": "License", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L219", + "community": 179, + "norm_label": "license", + "id": "rebreak_magic_mac_readme_license" + }, + { + "label": "Check stdout/stderr", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L224", + "community": 179, + "norm_label": "check stdout/stderr", + "id": "rebreak_magic_mac_readme_check_stdout_stderr" + }, + { + "label": "PHASE2_SUMMARY.md", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L1", + "community": 337, + "norm_label": "phase2_summary.md", + "id": "apps_rebreak_magic_mac_phase2_summary_md" + }, + { + "label": "ReBreak Magic Mac-App \u2014 Phase 2: Backend-Auth-Integration", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L1", + "community": 337, + "norm_label": "rebreak magic mac-app \u2014 phase 2: backend-auth-integration", + "id": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration" + }, + { + "label": "\u2705 Implementierte Features", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L3", + "community": 337, + "norm_label": "\u2705 implementierte features", + "id": "rebreak_magic_mac_phase2_summary_implementierte_features" + }, + { + "label": "1. Auth-Stack (bereits implementiert)", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L5", + "community": 337, + "norm_label": "1. auth-stack (bereits implementiert)", + "id": "rebreak_magic_mac_phase2_summary_1_auth_stack_bereits_implementiert" + }, + { + "label": "2. Login-UI (bereits implementiert)", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L13", + "community": 337, + "norm_label": "2. login-ui (bereits implementiert)", + "id": "rebreak_magic_mac_phase2_summary_2_login_ui_bereits_implementiert" + }, + { + "label": "3. Mac-Registration-Flow (NEU implementiert)", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L20", + "community": 337, + "norm_label": "3. mac-registration-flow (neu implementiert)", + "id": "rebreak_magic_mac_phase2_summary_3_mac_registration_flow_neu_implementiert" + }, + { + "label": "4. Menu-Erweiterung", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L34", + "community": 337, + "norm_label": "4. menu-erweiterung", + "id": "rebreak_magic_mac_phase2_summary_4_menu_erweiterung" + }, + { + "label": "5. Workflow-Integration", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L39", + "community": 337, + "norm_label": "5. workflow-integration", + "id": "rebreak_magic_mac_phase2_summary_5_workflow_integration" + }, + { + "label": "\ud83d\udcc2 Neue Files", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L49", + "community": 337, + "norm_label": "\ud83d\udcc2 neue files", + "id": "rebreak_magic_mac_phase2_summary_neue_files" + }, + { + "label": "\ud83d\udcdd Ge\u00e4nderte Files", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L53", + "community": 337, + "norm_label": "\ud83d\udcdd geanderte files", + "id": "rebreak_magic_mac_phase2_summary_ge\u00e4nderte_files" + }, + { + "label": "\u2699\ufe0f Config-Anforderungen", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L74", + "community": 337, + "norm_label": "\u2699\ufe0f config-anforderungen", + "id": "rebreak_magic_mac_phase2_summary_config_anforderungen" + }, + { + "label": "\ud83c\udfd7 Build-Status", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L95", + "community": 337, + "norm_label": "\ud83c\udfd7 build-status", + "id": "rebreak_magic_mac_phase2_summary_build_status" + }, + { + "label": "\ud83d\udccb Login-Flow-Ablauf", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L109", + "community": 337, + "norm_label": "\ud83d\udccb login-flow-ablauf", + "id": "rebreak_magic_mac_phase2_summary_login_flow_ablauf" + }, + { + "label": "\ud83d\udd12 Security-Hinweise", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L135", + "community": 337, + "norm_label": "\ud83d\udd12 security-hinweise", + "id": "rebreak_magic_mac_phase2_summary_security_hinweise" + }, + { + "label": "\ud83d\udea7 Bekannte Limitations / TODOs", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L142", + "community": 337, + "norm_label": "\ud83d\udea7 bekannte limitations / todos", + "id": "rebreak_magic_mac_phase2_summary_bekannte_limitations_todos" + }, + { + "label": "\ud83d\udcca Code-Statistik", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L165", + "community": 337, + "norm_label": "\ud83d\udcca code-statistik", + "id": "rebreak_magic_mac_phase2_summary_code_statistik" + }, + { + "label": "\ud83c\udfaf N\u00e4chste Schritte (optional f\u00fcr User)", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L171", + "community": 337, + "norm_label": "\ud83c\udfaf nachste schritte (optional fur user)", + "id": "rebreak_magic_mac_phase2_summary_n\u00e4chste_schritte_optional_f\u00fcr_user" + }, + { + "label": "\u2728 Bonus-Feature (bereits implementiert)", + "file_type": "document", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L180", + "community": 337, + "norm_label": "\u2728 bonus-feature (bereits implementiert)", + "id": "rebreak_magic_mac_phase2_summary_bonus_feature_bereits_implementiert" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": "apps/marketing/public/preview/README.md", + "source_location": "L1", + "community": 1046, + "norm_label": "readme.md", + "id": "apps_marketing_public_preview_readme_md" + }, + { + "label": "App-Vorschau-Screenshots (f\u00fcr /preview)", + "file_type": "document", + "source_file": "apps/marketing/public/preview/README.md", + "source_location": "L1", + "community": 1046, + "norm_label": "app-vorschau-screenshots (fur /preview)", + "id": "preview_readme_app_vorschau_screenshots_f\u00fcr_preview" + }, + { + "label": "Erwartete Dateinamen", + "file_type": "document", + "source_file": "apps/marketing/public/preview/README.md", + "source_location": "L8", + "community": 1046, + "norm_label": "erwartete dateinamen", + "id": "preview_readme_erwartete_dateinamen" + }, + { + "label": "Maestro-Pipeline", + "file_type": "document", + "source_file": "apps/marketing/public/preview/README.md", + "source_location": "L32", + "community": 1046, + "norm_label": "maestro-pipeline", + "id": "preview_readme_maestro_pipeline" + }, + { + "label": "Passwort", + "file_type": "document", + "source_file": "apps/marketing/public/preview/README.md", + "source_location": "L38", + "community": 1046, + "norm_label": "passwort", + "id": "preview_readme_passwort" + }, + { + "label": "Logo", + "file_type": "document", + "source_file": "apps/marketing/public/preview/README.md", + "source_location": "L41", + "community": 1046, + "norm_label": "logo", + "id": "preview_readme_logo" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L1", + "community": 194, + "norm_label": "readme.md", + "id": "sixth_skills_ui_ux_pro_max_readme_md" + }, + { + "label": "[UI UX Pro Max](https://uupm.cc)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L1", + "community": 194, + "norm_label": "[ui ux pro max](https://uupm.cc)", + "id": "ui_ux_pro_max_readme_ui_ux_pro_max_https_uupm_cc" + }, + { + "label": "What's New in v2.0", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L36", + "community": 194, + "norm_label": "what's new in v2.0", + "id": "ui_ux_pro_max_readme_what_s_new_in_v2_0" + }, + { + "label": "Intelligent Design System Generation", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L38", + "community": 194, + "norm_label": "intelligent design system generation", + "id": "ui_ux_pro_max_readme_intelligent_design_system_generation" + }, + { + "label": "How Design System Generation Works", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L93", + "community": 194, + "norm_label": "how design system generation works", + "id": "ui_ux_pro_max_readme_how_design_system_generation_works" + }, + { + "label": "161 Industry-Specific Reasoning Rules", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L128", + "community": 194, + "norm_label": "161 industry-specific reasoning rules", + "id": "ui_ux_pro_max_readme_161_industry_specific_reasoning_rules" + }, + { + "label": "Features", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L151", + "community": 194, + "norm_label": "features", + "id": "ui_ux_pro_max_readme_features" + }, + { + "label": "Available Styles (67)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L161", + "community": 194, + "norm_label": "available styles (67)", + "id": "ui_ux_pro_max_readme_available_styles_67" + }, + { + "label": "Installation", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L254", + "community": 194, + "norm_label": "installation", + "id": "ui_ux_pro_max_readme_installation" + }, + { + "label": "Using Claude Marketplace (Claude Code)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L256", + "community": 194, + "norm_label": "using claude marketplace (claude code)", + "id": "ui_ux_pro_max_readme_using_claude_marketplace_claude_code" + }, + { + "label": "Using CLI (Recommended)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L265", + "community": 194, + "norm_label": "using cli (recommended)", + "id": "ui_ux_pro_max_readme_using_cli_recommended" + }, + { + "label": "Global Install (Available for All Projects)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L296", + "community": 194, + "norm_label": "global install (available for all projects)", + "id": "ui_ux_pro_max_readme_global_install_available_for_all_projects" + }, + { + "label": "Other CLI Commands", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L303", + "community": 194, + "norm_label": "other cli commands", + "id": "ui_ux_pro_max_readme_other_cli_commands" + }, + { + "label": "Prerequisites", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L314", + "community": 194, + "norm_label": "prerequisites", + "id": "ui_ux_pro_max_readme_prerequisites" + }, + { + "label": "Usage", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L332", + "community": 194, + "norm_label": "usage", + "id": "ui_ux_pro_max_readme_usage" + }, + { + "label": "Skill Mode (Auto-activate)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L334", + "community": 194, + "norm_label": "skill mode (auto-activate)", + "id": "ui_ux_pro_max_readme_skill_mode_auto_activate" + }, + { + "label": "Workflow Mode (Slash Command)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L346", + "community": 194, + "norm_label": "workflow mode (slash command)", + "id": "ui_ux_pro_max_readme_workflow_mode_slash_command" + }, + { + "label": "Example Prompts", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L356", + "community": 194, + "norm_label": "example prompts", + "id": "ui_ux_pro_max_readme_example_prompts" + }, + { + "label": "How It Works", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L370", + "community": 194, + "norm_label": "how it works", + "id": "ui_ux_pro_max_readme_how_it_works" + }, + { + "label": "Supported Stacks", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L378", + "community": 194, + "norm_label": "supported stacks", + "id": "ui_ux_pro_max_readme_supported_stacks" + }, + { + "label": "Design System Command (Advanced)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L396", + "community": 194, + "norm_label": "design system command (advanced)", + "id": "ui_ux_pro_max_readme_design_system_command_advanced" + }, + { + "label": "Persist Design System (Master + Overrides Pattern)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L419", + "community": 194, + "norm_label": "persist design system (master + overrides pattern)", + "id": "ui_ux_pro_max_readme_persist_design_system_master_overrides_pattern" + }, + { + "label": "Architecture & Contributing", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L454", + "community": 194, + "norm_label": "architecture & contributing", + "id": "ui_ux_pro_max_readme_architecture_contributing" + }, + { + "label": "For Users", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L456", + "community": 194, + "norm_label": "for users", + "id": "ui_ux_pro_max_readme_for_users" + }, + { + "label": "For Contributors", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L469", + "community": 194, + "norm_label": "for contributors", + "id": "ui_ux_pro_max_readme_for_contributors" + }, + { + "label": "Star History", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L507", + "community": 194, + "norm_label": "star history", + "id": "ui_ux_pro_max_readme_star_history" + }, + { + "label": "License", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L511", + "community": 194, + "norm_label": "license", + "id": "ui_ux_pro_max_readme_license" + }, + { + "label": "CLAUDE.md", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L1", + "community": 1028, + "norm_label": "claude.md", + "id": "sixth_skills_ui_ux_pro_max_claude_md" + }, + { + "label": "CLAUDE.md", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L1", + "community": 1028, + "norm_label": "claude.md", + "id": "ui_ux_pro_max_claude_claude_md" + }, + { + "label": "Project Overview", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L5", + "community": 1028, + "norm_label": "project overview", + "id": "ui_ux_pro_max_claude_project_overview" + }, + { + "label": "Search Command", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L9", + "community": 1028, + "norm_label": "search command", + "id": "ui_ux_pro_max_claude_search_command" + }, + { + "label": "Architecture", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L30", + "community": 1028, + "norm_label": "architecture", + "id": "ui_ux_pro_max_claude_architecture" + }, + { + "label": "Sync Rules", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L62", + "community": 1028, + "norm_label": "sync rules", + "id": "ui_ux_pro_max_claude_sync_rules" + }, + { + "label": "Prerequisites", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L87", + "community": 1028, + "norm_label": "prerequisites", + "id": "ui_ux_pro_max_claude_prerequisites" + }, + { + "label": "Git Workflow", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L91", + "community": 1028, + "norm_label": "git workflow", + "id": "ui_ux_pro_max_claude_git_workflow" + }, + { + "label": "\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/docs/\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md", + "source_location": "L1", + "community": 1185, + "norm_label": "\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md", + "id": "sixth_skills_ui_ux_pro_max_docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_md" + }, + { + "label": "\u4e09\u5904 data / scripts / templates \u7684\u533a\u522b", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/docs/\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md", + "source_location": "L1", + "community": 1185, + "norm_label": "\u4e09\u5904 data / scripts / templates \u7684\u533a\u522b", + "id": "docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_\u4e09\u5904_data_scripts_templates_\u7684\u533a\u522b" + }, + { + "label": "\u4e09\u5904\u5206\u522b\u662f\u4ec0\u4e48", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/docs/\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md", + "source_location": "L3", + "community": 1185, + "norm_label": "\u4e09\u5904\u5206\u522b\u662f\u4ec0\u4e48", + "id": "docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_\u4e09\u5904\u5206\u522b\u662f\u4ec0\u4e48" + }, + { + "label": "\u53ef\u4ee5\u53ea\u4fdd\u7559\u4e00\u4e2a\u5417\uff1f", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/docs/\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md", + "source_location": "L11", + "community": 1185, + "norm_label": "\u53ef\u4ee5\u53ea\u4fdd\u7559\u4e00\u4e2a\u5417?", + "id": "docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_\u53ef\u4ee5\u53ea\u4fdd\u7559\u4e00\u4e2a\u5417" + }, + { + "label": "\u63a8\u8350\u5de5\u4f5c\u6d41", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/docs/\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md", + "source_location": "L21", + "community": 1185, + "norm_label": "\u63a8\u8350\u5de5\u4f5c\u6d41", + "id": "docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_\u63a8\u8350\u5de5\u4f5c\u6d41" + }, + { + "label": "README.md", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L1", + "community": 1041, + "norm_label": "readme.md", + "id": "sixth_skills_ui_ux_pro_max_cli_readme_md" + }, + { + "label": "uipro-cli", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L1", + "community": 1041, + "norm_label": "uipro-cli", + "id": "cli_readme_uipro_cli" + }, + { + "label": "Installation", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L5", + "community": 1041, + "norm_label": "installation", + "id": "cli_readme_installation" + }, + { + "label": "Usage", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L11", + "community": 1041, + "norm_label": "usage", + "id": "cli_readme_usage" + }, + { + "label": "How It Works", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L39", + "community": 1041, + "norm_label": "how it works", + "id": "cli_readme_how_it_works" + }, + { + "label": "Development", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L45", + "community": 1041, + "norm_label": "development", + "id": "cli_readme_development" + }, + { + "label": "License", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L61", + "community": 1041, + "norm_label": "license", + "id": "cli_readme_license" + }, + { + "label": "quick-reference.md", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L1", + "community": 349, + "norm_label": "quick-reference.md", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md" + }, + { + "label": "When to Apply", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L1", + "community": 349, + "norm_label": "when to apply", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_when_to_apply" + }, + { + "label": "Must Use", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L5", + "community": 349, + "norm_label": "must use", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_must_use" + }, + { + "label": "Recommended", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L17", + "community": 349, + "norm_label": "recommended", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_recommended" + }, + { + "label": "Skip", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L27", + "community": 349, + "norm_label": "skip", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_skip" + }, + { + "label": "Rule Categories by Priority", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L39", + "community": 349, + "norm_label": "rule categories by priority", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_rule_categories_by_priority" + }, + { + "label": "Quick Reference", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L56", + "community": 349, + "norm_label": "quick reference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference" + }, + { + "label": "1. Accessibility (CRITICAL)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L58", + "community": 349, + "norm_label": "1. accessibility (critical)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_1_accessibility_critical" + }, + { + "label": "2. Touch & Interaction (CRITICAL)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L75", + "community": 349, + "norm_label": "2. touch & interaction (critical)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_2_touch_interaction_critical" + }, + { + "label": "3. Performance (HIGH)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L95", + "community": 349, + "norm_label": "3. performance (high)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_3_performance_high" + }, + { + "label": "4. Style Selection (HIGH)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L117", + "community": 349, + "norm_label": "4. style selection (high)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_4_style_selection_high" + }, + { + "label": "5. Layout & Responsive (HIGH)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L133", + "community": 349, + "norm_label": "5. layout & responsive (high)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_5_layout_responsive_high" + }, + { + "label": "6. Typography & Color (MEDIUM)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L152", + "community": 349, + "norm_label": "6. typography & color (medium)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_6_typography_color_medium" + }, + { + "label": "7. Animation (MEDIUM)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L170", + "community": 349, + "norm_label": "7. animation (medium)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_7_animation_medium" + }, + { + "label": "8. Forms & Feedback (MEDIUM)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L197", + "community": 349, + "norm_label": "8. forms & feedback (medium)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_8_forms_feedback_medium" + }, + { + "label": "9. Navigation Patterns (HIGH)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L231", + "community": 349, + "norm_label": "9. navigation patterns (high)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_9_navigation_patterns_high" + }, + { + "label": "10. Charts & Data (LOW)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L260", + "community": 349, + "norm_label": "10. charts & data (low)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_10_charts_data_low" + }, + { + "label": "How to Use", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L293", + "community": 349, + "norm_label": "how to use", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_how_to_use" + }, + { + "label": "skill-content.md", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L1", + "community": 139, + "norm_label": "skill-content.md", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md" + }, + { + "label": "{{TITLE}}", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L1", + "community": 139, + "norm_label": "{{title}}", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_title" + }, + { + "label": "Prerequisites", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L5", + "community": 139, + "norm_label": "prerequisites", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_prerequisites" + }, + { + "label": "How to Use This Skill", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L32", + "community": 139, + "norm_label": "how to use this skill", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill" + }, + { + "label": "Step 1: Analyze User Requirements", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L50", + "community": 139, + "norm_label": "step 1: analyze user requirements", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_1_analyze_user_requirements" + }, + { + "label": "Step 2: Generate Design System (REQUIRED)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L58", + "community": 139, + "norm_label": "step 2: generate design system (required)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_2_generate_design_system_required" + }, + { + "label": "Step 2b: Persist Design System (Master + Overrides Pattern)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L77", + "community": 139, + "norm_label": "step 2b: persist design system (master + overrides pattern)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_2b_persist_design_system_master_overrides_pattern" + }, + { + "label": "Step 3: Supplement with Detailed Searches (as needed)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L111", + "community": 139, + "norm_label": "step 3: supplement with detailed searches (as needed)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_3_supplement_with_detailed_searches_as_needed" + }, + { + "label": "Step 4: Stack Guidelines (React Native)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L134", + "community": 139, + "norm_label": "step 4: stack guidelines (react native)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_4_stack_guidelines_react_native" + }, + { + "label": "Search Reference", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L144", + "community": 139, + "norm_label": "search reference", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_search_reference" + }, + { + "label": "Available Domains", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L146", + "community": 139, + "norm_label": "available domains", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_available_domains" + }, + { + "label": "Available Stacks", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L161", + "community": 139, + "norm_label": "available stacks", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_available_stacks" + }, + { + "label": "Example Workflow", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L169", + "community": 139, + "norm_label": "example workflow", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_example_workflow" + }, + { + "label": "Step 1: Analyze Requirements", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L173", + "community": 139, + "norm_label": "step 1: analyze requirements", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_1_analyze_requirements" + }, + { + "label": "Step 2: Generate Design System (REQUIRED)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L179", + "community": 139, + "norm_label": "step 2: generate design system (required)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_2_generate_design_system_required_179" + }, + { + "label": "Step 3: Supplement with Detailed Searches (as needed)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L187", + "community": 139, + "norm_label": "step 3: supplement with detailed searches (as needed)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_3_supplement_with_detailed_searches_as_needed_187" + }, + { + "label": "Step 4: Stack Guidelines", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L197", + "community": 139, + "norm_label": "step 4: stack guidelines", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_4_stack_guidelines" + }, + { + "label": "Output Formats", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L207", + "community": 139, + "norm_label": "output formats", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_output_formats" + }, + { + "label": "Tips for Better Results", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L221", + "community": 139, + "norm_label": "tips for better results", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_tips_for_better_results" + }, + { + "label": "Query Strategy", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L223", + "community": 139, + "norm_label": "query strategy", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_query_strategy" + }, + { + "label": "Common Sticking Points", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L230", + "community": 139, + "norm_label": "common sticking points", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_common_sticking_points" + }, + { + "label": "Pre-Delivery Checklist", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L242", + "community": 139, + "norm_label": "pre-delivery checklist", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_pre_delivery_checklist" + }, + { + "label": "Common Rules for Professional UI", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L253", + "community": 139, + "norm_label": "common rules for professional ui", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui" + }, + { + "label": "Icons & Visual Elements", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L258", + "community": 139, + "norm_label": "icons & visual elements", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_icons_visual_elements" + }, + { + "label": "Interaction (App)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L274", + "community": 139, + "norm_label": "interaction (app)", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_interaction_app" + }, + { + "label": "Light/Dark Mode Contrast", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L286", + "community": 139, + "norm_label": "light/dark mode contrast", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_light_dark_mode_contrast" + }, + { + "label": "Layout & Spacing", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L298", + "community": 139, + "norm_label": "layout & spacing", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_layout_spacing" + }, + { + "label": "Pre-Delivery Checklist", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L313", + "community": 139, + "norm_label": "pre-delivery checklist", + "id": "base_skill_content_pre_delivery_checklist_313" + }, + { + "label": "Visual Quality", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L318", + "community": 139, + "norm_label": "visual quality", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_visual_quality" + }, + { + "label": "Interaction", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L325", + "community": 139, + "norm_label": "interaction", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_interaction" + }, + { + "label": "Light/Dark Mode", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L333", + "community": 139, + "norm_label": "light/dark mode", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_light_dark_mode" + }, + { + "label": "Layout", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L340", + "community": 139, + "norm_label": "layout", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_layout" + }, + { + "label": "Accessibility", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L348", + "community": 139, + "norm_label": "accessibility", + "id": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_accessibility" + }, + { + "label": "quick-reference.md", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L1", + "community": 353, + "norm_label": "quick-reference.md", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md" + }, + { + "label": "When to Apply", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L1", + "community": 353, + "norm_label": "when to apply", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_when_to_apply" + }, + { + "label": "Must Use", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L5", + "community": 353, + "norm_label": "must use", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_must_use" + }, + { + "label": "Recommended", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L17", + "community": 353, + "norm_label": "recommended", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_recommended" + }, + { + "label": "Skip", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L27", + "community": 353, + "norm_label": "skip", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_skip" + }, + { + "label": "Rule Categories by Priority", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L39", + "community": 353, + "norm_label": "rule categories by priority", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_rule_categories_by_priority" + }, + { + "label": "Quick Reference", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L56", + "community": 353, + "norm_label": "quick reference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference" + }, + { + "label": "1. Accessibility (CRITICAL)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L58", + "community": 353, + "norm_label": "1. accessibility (critical)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_1_accessibility_critical" + }, + { + "label": "2. Touch & Interaction (CRITICAL)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L75", + "community": 353, + "norm_label": "2. touch & interaction (critical)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_2_touch_interaction_critical" + }, + { + "label": "3. Performance (HIGH)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L95", + "community": 353, + "norm_label": "3. performance (high)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_3_performance_high" + }, + { + "label": "4. Style Selection (HIGH)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L117", + "community": 353, + "norm_label": "4. style selection (high)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_4_style_selection_high" + }, + { + "label": "5. Layout & Responsive (HIGH)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L133", + "community": 353, + "norm_label": "5. layout & responsive (high)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_5_layout_responsive_high" + }, + { + "label": "6. Typography & Color (MEDIUM)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L152", + "community": 353, + "norm_label": "6. typography & color (medium)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_6_typography_color_medium" + }, + { + "label": "7. Animation (MEDIUM)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L170", + "community": 353, + "norm_label": "7. animation (medium)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_7_animation_medium" + }, + { + "label": "8. Forms & Feedback (MEDIUM)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L197", + "community": 353, + "norm_label": "8. forms & feedback (medium)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_8_forms_feedback_medium" + }, + { + "label": "9. Navigation Patterns (HIGH)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L231", + "community": 353, + "norm_label": "9. navigation patterns (high)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_9_navigation_patterns_high" + }, + { + "label": "10. Charts & Data (LOW)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L260", + "community": 353, + "norm_label": "10. charts & data (low)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_10_charts_data_low" + }, + { + "label": "How to Use", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L293", + "community": 353, + "norm_label": "how to use", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_how_to_use" + }, + { + "label": "skill-content.md", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L1", + "community": 143, + "norm_label": "skill-content.md", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md" + }, + { + "label": "{{TITLE}}", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L1", + "community": 143, + "norm_label": "{{title}}", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_title" + }, + { + "label": "Prerequisites", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L5", + "community": 143, + "norm_label": "prerequisites", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_prerequisites" + }, + { + "label": "How to Use This Skill", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L32", + "community": 143, + "norm_label": "how to use this skill", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill" + }, + { + "label": "Step 1: Analyze User Requirements", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L50", + "community": 143, + "norm_label": "step 1: analyze user requirements", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_1_analyze_user_requirements" + }, + { + "label": "Step 2: Generate Design System (REQUIRED)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L58", + "community": 143, + "norm_label": "step 2: generate design system (required)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_2_generate_design_system_required" + }, + { + "label": "Step 2b: Persist Design System (Master + Overrides Pattern)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L77", + "community": 143, + "norm_label": "step 2b: persist design system (master + overrides pattern)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_2b_persist_design_system_master_overrides_pattern" + }, + { + "label": "Step 3: Supplement with Detailed Searches (as needed)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L111", + "community": 143, + "norm_label": "step 3: supplement with detailed searches (as needed)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_3_supplement_with_detailed_searches_as_needed" + }, + { + "label": "Step 4: Stack Guidelines (React Native)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L134", + "community": 143, + "norm_label": "step 4: stack guidelines (react native)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_4_stack_guidelines_react_native" + }, + { + "label": "Search Reference", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L144", + "community": 143, + "norm_label": "search reference", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_search_reference" + }, + { + "label": "Available Domains", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L146", + "community": 143, + "norm_label": "available domains", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_available_domains" + }, + { + "label": "Available Stacks", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L161", + "community": 143, + "norm_label": "available stacks", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_available_stacks" + }, + { + "label": "Example Workflow", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L169", + "community": 143, + "norm_label": "example workflow", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_example_workflow" + }, + { + "label": "Step 1: Analyze Requirements", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L173", + "community": 143, + "norm_label": "step 1: analyze requirements", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_1_analyze_requirements" + }, + { + "label": "Step 2: Generate Design System (REQUIRED)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L179", + "community": 143, + "norm_label": "step 2: generate design system (required)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_2_generate_design_system_required_179" + }, + { + "label": "Step 3: Supplement with Detailed Searches (as needed)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L187", + "community": 143, + "norm_label": "step 3: supplement with detailed searches (as needed)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_3_supplement_with_detailed_searches_as_needed_187" + }, + { + "label": "Step 4: Stack Guidelines", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L197", + "community": 143, + "norm_label": "step 4: stack guidelines", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_4_stack_guidelines" + }, + { + "label": "Output Formats", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L207", + "community": 143, + "norm_label": "output formats", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_output_formats" + }, + { + "label": "Tips for Better Results", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L221", + "community": 143, + "norm_label": "tips for better results", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_tips_for_better_results" + }, + { + "label": "Query Strategy", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L223", + "community": 143, + "norm_label": "query strategy", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_query_strategy" + }, + { + "label": "Common Sticking Points", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L230", + "community": 143, + "norm_label": "common sticking points", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_common_sticking_points" + }, + { + "label": "Pre-Delivery Checklist", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L242", + "community": 143, + "norm_label": "pre-delivery checklist", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_pre_delivery_checklist" + }, + { + "label": "Common Rules for Professional UI", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L253", + "community": 143, + "norm_label": "common rules for professional ui", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui" + }, + { + "label": "Icons & Visual Elements", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L258", + "community": 143, + "norm_label": "icons & visual elements", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_icons_visual_elements" + }, + { + "label": "Interaction (App)", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L279", + "community": 143, + "norm_label": "interaction (app)", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_interaction_app" + }, + { + "label": "Light/Dark Mode Contrast", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L291", + "community": 143, + "norm_label": "light/dark mode contrast", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_light_dark_mode_contrast" + }, + { + "label": "Layout & Spacing", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L303", + "community": 143, + "norm_label": "layout & spacing", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_layout_spacing" + }, + { + "label": "Pre-Delivery Checklist", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L318", + "community": 143, + "norm_label": "pre-delivery checklist", + "id": "base_skill_content_pre_delivery_checklist_318" + }, + { + "label": "Visual Quality", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L323", + "community": 143, + "norm_label": "visual quality", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_visual_quality" + }, + { + "label": "Interaction", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L330", + "community": 143, + "norm_label": "interaction", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_interaction" + }, + { + "label": "Light/Dark Mode", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L338", + "community": 143, + "norm_label": "light/dark mode", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_light_dark_mode" + }, + { + "label": "Layout", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L345", + "community": 143, + "norm_label": "layout", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_layout" + }, + { + "label": "Accessibility", + "file_type": "document", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L353", + "community": 143, + "norm_label": "accessibility", + "id": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_accessibility" + }, + { + "label": "query_20260610_064214_how_does_the_diga_lyra_requirement__req_lyra__reac.md", + "file_type": "document", + "source_file": "graphify-out/memory/query_20260610_064214_how_does_the_diga_lyra_requirement__req_lyra__reac.md", + "source_location": "L1", + "community": 1295, + "norm_label": "query_20260610_064214_how_does_the_diga_lyra_requirement__req_lyra__reac.md", + "id": "graphify_out_memory_query_20260610_064214_how_does_the_diga_lyra_requirement_req_lyra_reac_md" + }, + { + "label": "Q: How does the DiGA Lyra requirement (REQ-LYRA) reach its implementation across community boundaries?", + "file_type": "document", + "source_file": "graphify-out/memory/query_20260610_064214_how_does_the_diga_lyra_requirement__req_lyra__reac.md", + "source_location": "L9", + "community": 1295, + "norm_label": "q: how does the diga lyra requirement (req-lyra) reach its implementation across community boundaries?", + "id": "memory_query_20260610_064214_how_does_the_diga_lyra_requirement_req_lyra_reac_q_how_does_the_diga_lyra_requirement_req_lyra_reach_its_implementation_across_community_boundaries" + }, + { + "label": "Answer", + "file_type": "document", + "source_file": "graphify-out/memory/query_20260610_064214_how_does_the_diga_lyra_requirement__req_lyra__reac.md", + "source_location": "L11", + "community": 1295, + "norm_label": "answer", + "id": "memory_query_20260610_064214_how_does_the_diga_lyra_requirement_req_lyra_reac_answer" + }, + { + "label": "Source Nodes", + "file_type": "document", + "source_file": "graphify-out/memory/query_20260610_064214_how_does_the_diga_lyra_requirement__req_lyra__reac.md", + "source_location": "L15", + "community": 1295, + "norm_label": "source nodes", + "id": "memory_query_20260610_064214_how_does_the_diga_lyra_requirement_req_lyra_reac_source_nodes" + }, { "label": "colors", "file_type": "code", "source_file": "apps/rebreak-native/lib/theme.ts", - "source_location": "L74", + "source_location": "L79", "community": 841, "norm_label": "colors", "id": "lib_theme_colors" }, + { + "label": "bytes", + "file_type": "code", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L37", + "community": 435, + "norm_label": "bytes", + "id": "ops_mdm_profiles_generate_unsupervised_profile_py_bytes" + }, + { + "label": "Path", + "file_type": "code", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L57", + "community": 435, + "norm_label": "path", + "id": "ops_mdm_profiles_generate_unsupervised_profile_py_path" + }, + { + "label": "get_computer_name()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L48", + "community": 696, + "norm_label": "get_computer_name()", + "id": "platform_macos_get_computer_name" + }, + { + "label": "get_device_id()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L66", + "community": 696, + "norm_label": "get_device_id()", + "id": "platform_macos_get_device_id" + }, + { + "label": "computer_name_is_non_empty()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L100", + "community": 696, + "norm_label": "computer_name_is_non_empty()", + "id": "platform_macos_computer_name_is_non_empty" + }, + { + "label": "device_id_matches_system_uuid()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L106", + "community": 696, + "norm_label": "device_id_matches_system_uuid()", + "id": "platform_macos_device_id_matches_system_uuid" + }, + { + "label": "get_device_id()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L64", + "community": 925, + "norm_label": "get_device_id()", + "id": "platform_mod_get_device_id" + }, + { + "label": "get_hostname()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L77", + "community": 925, + "norm_label": "get_hostname()", + "id": "platform_mod_get_hostname" + }, + { + "label": "get_computer_name()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L67", + "community": 923, + "norm_label": "get_computer_name()", + "id": "platform_windows_get_computer_name" + }, + { + "label": "get_device_id()", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L82", + "community": 923, + "norm_label": "get_device_id()", + "id": "platform_windows_get_device_id" + }, + { + "label": "google-oauth-verification.md", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L1", + "community": 343, + "norm_label": "google-oauth-verification.md", + "id": "docs_internal_google_oauth_verification_md" + }, + { + "label": "Google OAuth App Verification", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L1", + "community": 343, + "norm_label": "google oauth app verification", + "id": "internal_google_oauth_verification_google_oauth_app_verification" + }, + { + "label": "Warum das wichtig ist", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L5", + "community": 343, + "norm_label": "warum das wichtig ist", + "id": "internal_google_oauth_verification_warum_das_wichtig_ist" + }, + { + "label": "Voraussetzungen", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L11", + "community": 343, + "norm_label": "voraussetzungen", + "id": "internal_google_oauth_verification_voraussetzungen" + }, + { + "label": "Schritt-f\u00fcr-Schritt-Checkliste", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L27", + "community": 343, + "norm_label": "schritt-fur-schritt-checkliste", + "id": "internal_google_oauth_verification_schritt_f\u00fcr_schritt_checkliste" + }, + { + "label": "1. OAuth-Client pr\u00fcfen", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L29", + "community": 343, + "norm_label": "1. oauth-client prufen", + "id": "internal_google_oauth_verification_1_oauth_client_pr\u00fcfen" + }, + { + "label": "2. Authorized redirect URIs", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L38", + "community": 343, + "norm_label": "2. authorized redirect uris", + "id": "internal_google_oauth_verification_2_authorized_redirect_uris" + }, + { + "label": "3. App-Informationen vervollst\u00e4ndigen", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L49", + "community": 343, + "norm_label": "3. app-informationen vervollstandigen", + "id": "internal_google_oauth_verification_3_app_informationen_vervollst\u00e4ndigen" + }, + { + "label": "4. Domain-Verifizierung", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L61", + "community": 343, + "norm_label": "4. domain-verifizierung", + "id": "internal_google_oauth_verification_4_domain_verifizierung" + }, + { + "label": "5. Verification starten", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L67", + "community": 343, + "norm_label": "5. verification starten", + "id": "internal_google_oauth_verification_5_verification_starten" + }, + { + "label": "Demo-Video", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L75", + "community": 343, + "norm_label": "demo-video", + "id": "internal_google_oauth_verification_demo_video" + }, + { + "label": "Anforderungen", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L77", + "community": 343, + "norm_label": "anforderungen", + "id": "internal_google_oauth_verification_anforderungen" + }, + { + "label": "Pflicht-Szenen (in dieser Reihenfolge)", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L84", + "community": 343, + "norm_label": "pflicht-szenen (in dieser reihenfolge)", + "id": "internal_google_oauth_verification_pflicht_szenen_in_dieser_reihenfolge" + }, + { + "label": "Beispiel-Sprechtext (Deutsch)", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L106", + "community": 343, + "norm_label": "beispiel-sprechtext (deutsch)", + "id": "internal_google_oauth_verification_beispiel_sprechtext_deutsch" + }, + { + "label": "Scope-Begr\u00fcndung f\u00fcr Google", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L110", + "community": 343, + "norm_label": "scope-begrundung fur google", + "id": "internal_google_oauth_verification_scope_begr\u00fcndung_f\u00fcr_google" + }, + { + "label": "Android-Client anlegen (empfohlen, falls Reverse-Client-ID-Scheme auf Android abgelehnt wird)", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L122", + "community": 343, + "norm_label": "android-client anlegen (empfohlen, falls reverse-client-id-scheme auf android abgelehnt wird)", + "id": "internal_google_oauth_verification_android_client_anlegen_empfohlen_falls_reverse_client_id_scheme_auf_android_abgelehnt_wird" + }, + { + "label": "Akzeptanzkriterien", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L139", + "community": 343, + "norm_label": "akzeptanzkriterien", + "id": "internal_google_oauth_verification_akzeptanzkriterien" + }, + { + "label": "Verwandte Dateien", + "file_type": "document", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L146", + "community": 343, + "norm_label": "verwandte dateien", + "id": "internal_google_oauth_verification_verwandte_dateien" + }, + { + "label": "2026-06-16-magic-dashboard-redesign.md", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L1", + "community": 344, + "norm_label": "2026-06-16-magic-dashboard-redesign.md", + "id": "docs_superpowers_plans_2026_06_16_magic_dashboard_redesign_md" + }, + { + "label": "Magic Dashboard Redesign Implementation Plan", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L1", + "community": 344, + "norm_label": "magic dashboard redesign implementation plan", + "id": "plans_2026_06_16_magic_dashboard_redesign_magic_dashboard_redesign_implementation_plan" + }, + { + "label": "Vorbemerkung: Bereits erledigte Fixes", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L13", + "community": 344, + "norm_label": "vorbemerkung: bereits erledigte fixes", + "id": "plans_2026_06_16_magic_dashboard_redesign_vorbemerkung_bereits_erledigte_fixes" + }, + { + "label": "File Map", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L25", + "community": 344, + "norm_label": "file map", + "id": "plans_2026_06_16_magic_dashboard_redesign_file_map" + }, + { + "label": "Task 1: Prisma-Schema erweitern", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L46", + "community": 344, + "norm_label": "task 1: prisma-schema erweitern", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_1_prisma_schema_erweitern" + }, + { + "label": "Task 2: Backend Cooldown-Endpunkte", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L78", + "community": 344, + "norm_label": "task 2: backend cooldown-endpunkte", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_2_backend_cooldown_endpunkte" + }, + { + "label": "Task 3: `devices.get.ts` um Status erweitern", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L175", + "community": 344, + "norm_label": "task 3: `devices.get.ts` um status erweitern", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_3_devices_get_ts_um_status_erweitern" + }, + { + "label": "Task 4: `status.get.ts` Sleep-Flag hinzuf\u00fcgen", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L251", + "community": 344, + "norm_label": "task 4: `status.get.ts` sleep-flag hinzufugen", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_4_status_get_ts_sleep_flag_hinzuf\u00fcgen" + }, + { + "label": "Task 5: Frontend Types & Commands erweitern", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L281", + "community": 344, + "norm_label": "task 5: frontend types & commands erweitern", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_5_frontend_types_commands_erweitern" + }, + { + "label": "Task 6: `useDeviceStatus` Composable", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L418", + "community": 344, + "norm_label": "task 6: `usedevicestatus` composable", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_6_usedevicestatus_composable" + }, + { + "label": "Task 7: `IosStarRating` Component", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L530", + "community": 344, + "norm_label": "task 7: `iosstarrating` component", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_7_iosstarrating_component" + }, + { + "label": "Task 8: `CooldownCountdown` Component", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L574", + "community": 344, + "norm_label": "task 8: `cooldowncountdown` component", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_8_cooldowncountdown_component" + }, + { + "label": "Task 9: `DeviceHeroCard` Component", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L630", + "community": 344, + "norm_label": "task 9: `deviceherocard` component", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_9_deviceherocard_component" + }, + { + "label": "Task 10: `DeviceListItem` Component", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L774", + "community": 344, + "norm_label": "task 10: `devicelistitem` component", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_10_devicelistitem_component" + }, + { + "label": "Task 11: `DeviceDetailSheet` Component", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L869", + "community": 344, + "norm_label": "task 11: `devicedetailsheet` component", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_11_devicedetailsheet_component" + }, + { + "label": "Task 12: Neue `status.vue` integrieren", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L1008", + "community": 344, + "norm_label": "task 12: neue `status.vue` integrieren", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_12_neue_status_vue_integrieren" + }, + { + "label": "Task 13: Polishing & Tests", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L1181", + "community": 344, + "norm_label": "task 13: polishing & tests", + "id": "plans_2026_06_16_magic_dashboard_redesign_task_13_polishing_tests" + }, + { + "label": "Self-Review", + "file_type": "document", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L1212", + "community": 344, + "norm_label": "self-review", + "id": "plans_2026_06_16_magic_dashboard_redesign_self_review" + }, + { + "label": "2026-06-16-magic-dashboard-redesign-design.md", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L1", + "community": 171, + "norm_label": "2026-06-16-magic-dashboard-redesign-design.md", + "id": "docs_superpowers_specs_2026_06_16_magic_dashboard_redesign_design_md" + }, + { + "label": "ReBreak Magic Dashboard Redesign", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L1", + "community": 171, + "norm_label": "rebreak magic dashboard redesign", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign" + }, + { + "label": "1. Ziel & Scope", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L10", + "community": 171, + "norm_label": "1. ziel & scope", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_1_ziel_scope" + }, + { + "label": "2. Design-Prinzipien", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L26", + "community": 171, + "norm_label": "2. design-prinzipien", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_2_design_prinzipien" + }, + { + "label": "3. Gesamt-Layout", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L35", + "community": 171, + "norm_label": "3. gesamt-layout", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_3_gesamt_layout" + }, + { + "label": "4. Hero-Kachel: Aktives Ger\u00e4t", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L66", + "community": 171, + "norm_label": "4. hero-kachel: aktives gerat", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_4_hero_kachel_aktives_ger\u00e4t" + }, + { + "label": "Inhalt", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L70", + "community": 171, + "norm_label": "inhalt", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_inhalt" + }, + { + "label": "Status-Farben", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L87", + "community": 171, + "norm_label": "status-farben", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_status_farben" + }, + { + "label": "5. Andere Ger\u00e4te-Liste", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L97", + "community": 171, + "norm_label": "5. andere gerate-liste", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_5_andere_ger\u00e4te_liste" + }, + { + "label": "5.1 iOS-Ger\u00e4te", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L101", + "community": 171, + "norm_label": "5.1 ios-gerate", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_5_1_ios_ger\u00e4te" + }, + { + "label": "5.2 Weitere Desktop-Ger\u00e4te (Mac/Windows)", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L118", + "community": 171, + "norm_label": "5.2 weitere desktop-gerate (mac/windows)", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_5_2_weitere_desktop_ger\u00e4te_mac_windows" + }, + { + "label": "5.3 Android", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L123", + "community": 171, + "norm_label": "5.3 android", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_5_3_android" + }, + { + "label": "6. Device-Detail-Sheet", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L130", + "community": 171, + "norm_label": "6. device-detail-sheet", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_6_device_detail_sheet" + }, + { + "label": "Inhalt", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L134", + "community": 171, + "norm_label": "inhalt", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_inhalt_134" + }, + { + "label": "Aktionen (nur f\u00fcr das aktive Ger\u00e4t)", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L144", + "community": 171, + "norm_label": "aktionen (nur fur das aktive gerat)", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_aktionen_nur_f\u00fcr_das_aktive_ger\u00e4t" + }, + { + "label": "Read-only f\u00fcr andere Ger\u00e4te", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L160", + "community": 171, + "norm_label": "read-only fur andere gerate", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_read_only_f\u00fcr_andere_ger\u00e4te" + }, + { + "label": "7. Leer-Zust\u00e4nde & Kapazit\u00e4ts-Hinweise", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L166", + "community": 171, + "norm_label": "7. leer-zustande & kapazitats-hinweise", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_7_leer_zust\u00e4nde_kapazit\u00e4ts_hinweise" + }, + { + "label": "Keine Ger\u00e4te", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L168", + "community": 171, + "norm_label": "keine gerate", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_keine_ger\u00e4te" + }, + { + "label": "Kapazit\u00e4t verf\u00fcgbar", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L176", + "community": 171, + "norm_label": "kapazitat verfugbar", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_kapazit\u00e4t_verf\u00fcgbar" + }, + { + "label": "Limit erreicht", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L181", + "community": 171, + "norm_label": "limit erreicht", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_limit_erreicht" + }, + { + "label": "iOS + nicht Legend", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L187", + "community": 171, + "norm_label": "ios + nicht legend", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_ios_nicht_legend" + }, + { + "label": "8. Datenfluss & Backend-Bedarf", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L194", + "community": 171, + "norm_label": "8. datenfluss & backend-bedarf", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_8_datenfluss_backend_bedarf" + }, + { + "label": "Frontend ben\u00f6tigt", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L196", + "community": 171, + "norm_label": "frontend benotigt", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_frontend_ben\u00f6tigt" + }, + { + "label": "Lokal \u00fcber Tauri/Rust", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L203", + "community": 171, + "norm_label": "lokal uber tauri/rust", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_lokal_\u00fcber_tauri_rust" + }, + { + "label": "Backend-Erweiterungen (voraussichtlich)", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L212", + "community": 171, + "norm_label": "backend-erweiterungen (voraussichtlich)", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_backend_erweiterungen_voraussichtlich" + }, + { + "label": "iOS-Sterne-Logik", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L222", + "community": 171, + "norm_label": "ios-sterne-logik", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_ios_sterne_logik" + }, + { + "label": "9. Sicherheit & Cooldown", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L232", + "community": 171, + "norm_label": "9. sicherheit & cooldown", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_9_sicherheit_cooldown" + }, + { + "label": "10. Technische Umsetzungshinweise", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L240", + "community": 171, + "norm_label": "10. technische umsetzungshinweise", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_10_technische_umsetzungshinweise" + }, + { + "label": "11. Offene Punkte", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L258", + "community": 171, + "norm_label": "11. offene punkte", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_11_offene_punkte" + }, + { + "label": "12. Abnahme", + "file_type": "document", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L265", + "community": 171, + "norm_label": "12. abnahme", + "id": "specs_2026_06_16_magic_dashboard_redesign_design_12_abnahme" + }, + { + "label": "PathBuf", + "file_type": "code", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L77", + "community": 355, + "norm_label": "pathbuf", + "id": "pathbuf" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L306", + "community": 867, + "norm_label": "bool", + "id": "bool" + }, + { + "label": "landing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L99", + "community": 605, + "norm_label": "landing", + "id": "locales_de_landing" + }, + { + "label": "landing", + "file_type": "code", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L99", + "community": 35, + "norm_label": "landing", + "id": "locales_en_landing" + }, + { + "label": "Context", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L629", + "community": 10, + "norm_label": "context", + "id": "context" + }, + { + "label": "Any", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1118", + "community": 10, + "norm_label": "any", + "id": "any" + }, + { + "label": "ByteArray", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1332", + "community": 10, + "norm_label": "bytearray", + "id": "bytearray" + }, + { + "label": "HashList", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L45", + "community": 10, + "norm_label": "hashlist", + "id": "hashlist" + }, + { + "label": "Intent", + "file_type": "code", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L52", + "community": 10, + "norm_label": "intent", + "id": "intent" + }, + { + "label": "getAllActiveMailUserIds()", + "file_type": "code", + "source_file": "backend/server/db/mail.ts", + "source_location": "L45", + "community": 6, + "norm_label": "getallactivemailuserids()", + "id": "db_mail_getallactivemailuserids" + }, + { + "label": "mobileIcon()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L38", + "community": 37, + "norm_label": "mobileicon()", + "id": "app_devices_mobileicon" + }, + { + "label": "protectedDeviceIcon()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L44", + "community": 37, + "norm_label": "protecteddeviceicon()", + "id": "app_devices_protecteddeviceicon" + }, + { + "label": "formatStreakStartDate()", + "file_type": "code", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L68", + "community": 34, + "norm_label": "formatstreakstartdate()", + "id": "profile_index_formatstreakstartdate" + }, + { + "label": "AppDelegate", + "file_type": "code", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L5", + "community": 46, + "norm_label": "appdelegate", + "id": "rebreak_appdelegate_appdelegate" + }, + { + "label": "StatsResponse", + "file_type": "code", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L30", + "community": 54, + "norm_label": "statsresponse", + "id": "blocker_protectiondetailssheet_statsresponse" + }, + { + "label": "buildFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L2", + "community": 1039, + "norm_label": "buildfiles", + "id": "x86_android_gradle_build_mini_buildfiles" + }, + { + "label": "cleanCommandsComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L22", + "community": 1039, + "norm_label": "cleancommandscomponents", + "id": "x86_android_gradle_build_mini_cleancommandscomponents" + }, + { + "label": "buildTargetsCommandComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L30", + "community": 1039, + "norm_label": "buildtargetscommandcomponents", + "id": "x86_android_gradle_build_mini_buildtargetscommandcomponents" + }, + { + "label": "libraries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L36", + "community": 92, + "norm_label": "libraries", + "id": "x86_android_gradle_build_mini_libraries" + }, + { + "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L37", + "community": 92, + "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L47", + "community": 92, + "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L52", + "community": 92, + "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L62", + "community": 92, + "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "appmodules::@6890427a1f51a3e7e1df", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L67", + "community": 92, + "norm_label": "appmodules::@6890427a1f51a3e7e1df", + "id": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L85", + "community": 92, + "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L95", + "community": 92, + "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L105", + "community": 92, + "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L110", + "community": 92, + "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L115", + "community": 92, + "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "core::@1b9a7d546b295b7d0867", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L120", + "community": 92, + "norm_label": "core::@1b9a7d546b295b7d0867", + "id": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L121", + "community": 92, + "norm_label": "artifactname", + "id": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L122", + "community": 92, + "norm_label": "abi", + "id": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L123", + "community": 92, + "norm_label": "output", + "id": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L124", + "community": 92, + "norm_label": "runtimefiles", + "id": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L126", + "community": 92, + "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "id": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L136", + "community": 92, + "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L141", + "community": 92, + "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L151", + "community": 92, + "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L156", + "community": 92, + "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L166", + "community": 92, + "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L171", + "community": 92, + "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "id": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "enabled", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/prefab_config.json", + "source_location": "L2", + "community": 674, + "norm_label": "enabled", + "id": "x86_prefab_config_enabled" + }, + { + "label": "prefabPath", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/prefab_config.json", + "source_location": "L3", + "community": 674, + "norm_label": "prefabpath", + "id": "x86_prefab_config_prefabpath" + }, + { + "label": "packages", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/prefab_config.json", + "source_location": "L4", + "community": 674, + "norm_label": "packages", + "id": "x86_prefab_config_packages" + }, + { + "label": "buildFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L2", + "community": 594, + "norm_label": "buildfiles", + "id": "x86_android_gradle_build_buildfiles" + }, + { + "label": "cleanCommandsComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L22", + "community": 594, + "norm_label": "cleancommandscomponents", + "id": "x86_android_gradle_build_cleancommandscomponents" + }, + { + "label": "buildTargetsCommandComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L30", + "community": 594, + "norm_label": "buildtargetscommandcomponents", + "id": "x86_android_gradle_build_buildtargetscommandcomponents" + }, + { + "label": "libraries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L36", + "community": 64, + "norm_label": "libraries", + "id": "x86_android_gradle_build_libraries" + }, + { + "label": "appmodules::@6890427a1f51a3e7e1df", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L37", + "community": 64, + "norm_label": "appmodules::@6890427a1f51a3e7e1df", + "id": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L42", + "community": 64, + "norm_label": "runtimefiles", + "id": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "label": "core::@1b9a7d546b295b7d0867", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L56", + "community": 64, + "norm_label": "core::@1b9a7d546b295b7d0867", + "id": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L58", + "community": 64, + "norm_label": "abi", + "id": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L59", + "community": 64, + "norm_label": "artifactname", + "id": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L60", + "community": 64, + "norm_label": "output", + "id": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L62", + "community": 64, + "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "id": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L73", + "community": 64, + "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", + "id": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L84", + "community": 64, + "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", + "id": "x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L89", + "community": 64, + "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", + "id": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L100", + "community": 64, + "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", + "id": "x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L105", + "community": 64, + "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", + "id": "x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L110", + "community": 64, + "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", + "id": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L121", + "community": 64, + "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "id": "x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L126", + "community": 64, + "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "id": "x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L131", + "community": 64, + "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "id": "x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L136", + "community": 64, + "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "id": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L147", + "community": 64, + "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "id": "x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L152", + "community": 64, + "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "id": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L163", + "community": 64, + "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "id": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L174", + "community": 64, + "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "id": "x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L179", + "community": 64, + "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "id": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "toolchains", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L191", + "community": 594, + "norm_label": "toolchains", + "id": "x86_android_gradle_build_toolchains" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L192", + "community": 64, + "norm_label": "toolchain", + "id": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "label": "cCompilerExecutable", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L193", + "community": 11, + "norm_label": "ccompilerexecutable", + "id": "x86_android_gradle_build_toolchain_ccompilerexecutable" + }, + { + "label": "cppCompilerExecutable", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L194", + "community": 64, + "norm_label": "cppcompilerexecutable", + "id": "x86_android_gradle_build_toolchain_cppcompilerexecutable" + }, + { + "label": "cFileExtensions", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L197", + "community": 594, + "norm_label": "cfileextensions", + "id": "x86_android_gradle_build_cfileextensions" + }, + { + "label": "cppFileExtensions", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L198", + "community": 594, + "norm_label": "cppfileextensions", + "id": "x86_android_gradle_build_cppfileextensions" + }, + { + "label": "buildFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L2", + "community": 1038, + "norm_label": "buildfiles", + "id": "x86_64_android_gradle_build_mini_buildfiles" + }, + { + "label": "cleanCommandsComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L22", + "community": 1038, + "norm_label": "cleancommandscomponents", + "id": "x86_64_android_gradle_build_mini_cleancommandscomponents" + }, + { + "label": "buildTargetsCommandComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L30", + "community": 1038, + "norm_label": "buildtargetscommandcomponents", + "id": "x86_64_android_gradle_build_mini_buildtargetscommandcomponents" + }, + { + "label": "libraries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L36", + "community": 91, + "norm_label": "libraries", + "id": "x86_64_android_gradle_build_mini_libraries" + }, + { + "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L37", + "community": 91, + "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L47", + "community": 91, + "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L52", + "community": 91, + "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L62", + "community": 91, + "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "appmodules::@6890427a1f51a3e7e1df", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L67", + "community": 91, + "norm_label": "appmodules::@6890427a1f51a3e7e1df", + "id": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L85", + "community": 91, + "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L95", + "community": 91, + "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L105", + "community": 91, + "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L110", + "community": 91, + "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L115", + "community": 91, + "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "core::@1b9a7d546b295b7d0867", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L120", + "community": 91, + "norm_label": "core::@1b9a7d546b295b7d0867", + "id": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L121", + "community": 91, + "norm_label": "artifactname", + "id": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L122", + "community": 91, + "norm_label": "abi", + "id": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L123", + "community": 91, + "norm_label": "output", + "id": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L124", + "community": 91, + "norm_label": "runtimefiles", + "id": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L126", + "community": 91, + "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "id": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L136", + "community": 91, + "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L141", + "community": 91, + "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L151", + "community": 91, + "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L156", + "community": 91, + "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L166", + "community": 91, + "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L171", + "community": 91, + "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "id": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "enabled", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/prefab_config.json", + "source_location": "L2", + "community": 694, + "norm_label": "enabled", + "id": "x86_64_prefab_config_enabled" + }, + { + "label": "prefabPath", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/prefab_config.json", + "source_location": "L3", + "community": 694, + "norm_label": "prefabpath", + "id": "x86_64_prefab_config_prefabpath" + }, + { + "label": "packages", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/prefab_config.json", + "source_location": "L4", + "community": 694, + "norm_label": "packages", + "id": "x86_64_prefab_config_packages" + }, + { + "label": "buildFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L2", + "community": 592, + "norm_label": "buildfiles", + "id": "x86_64_android_gradle_build_buildfiles" + }, + { + "label": "cleanCommandsComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L22", + "community": 592, + "norm_label": "cleancommandscomponents", + "id": "x86_64_android_gradle_build_cleancommandscomponents" + }, + { + "label": "buildTargetsCommandComponents", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L30", + "community": 592, + "norm_label": "buildtargetscommandcomponents", + "id": "x86_64_android_gradle_build_buildtargetscommandcomponents" + }, + { + "label": "libraries", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L36", + "community": 61, + "norm_label": "libraries", + "id": "x86_64_android_gradle_build_libraries" + }, + { + "label": "appmodules::@6890427a1f51a3e7e1df", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L37", + "community": 61, + "norm_label": "appmodules::@6890427a1f51a3e7e1df", + "id": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "label": "runtimeFiles", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L42", + "community": 61, + "norm_label": "runtimefiles", + "id": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "label": "core::@1b9a7d546b295b7d0867", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L56", + "community": 61, + "norm_label": "core::@1b9a7d546b295b7d0867", + "id": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + }, + { + "label": "abi", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L58", + "community": 61, + "norm_label": "abi", + "id": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "label": "artifactName", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L59", + "community": 61, + "norm_label": "artifactname", + "id": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "label": "output", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L60", + "community": 61, + "norm_label": "output", + "id": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L62", + "community": 61, + "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", + "id": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L73", + "community": 61, + "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L84", + "community": 61, + "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L89", + "community": 61, + "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L100", + "community": 61, + "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L105", + "community": 61, + "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L110", + "community": 61, + "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", + "id": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L121", + "community": 61, + "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", + "id": "x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L126", + "community": 61, + "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L131", + "community": 61, + "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L136", + "community": 61, + "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L147", + "community": 61, + "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L152", + "community": 61, + "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L163", + "community": 61, + "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L174", + "community": 61, + "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", + "id": "x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L179", + "community": 61, + "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", + "id": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "label": "toolchains", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L191", + "community": 592, + "norm_label": "toolchains", + "id": "x86_64_android_gradle_build_toolchains" + }, + { + "label": "toolchain", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L192", + "community": 61, + "norm_label": "toolchain", + "id": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "label": "cCompilerExecutable", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L193", + "community": 61, + "norm_label": "ccompilerexecutable", + "id": "x86_64_android_gradle_build_toolchain_ccompilerexecutable" + }, + { + "label": "cppCompilerExecutable", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L194", + "community": 61, + "norm_label": "cppcompilerexecutable", + "id": "x86_64_android_gradle_build_toolchain_cppcompilerexecutable" + }, + { + "label": "cFileExtensions", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L197", + "community": 592, + "norm_label": "cfileextensions", + "id": "x86_64_android_gradle_build_cfileextensions" + }, + { + "label": "cppFileExtensions", + "file_type": "code", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L198", + "community": 592, + "norm_label": "cppfileextensions", + "id": "x86_64_android_gradle_build_cppfileextensions" + }, + { + "label": "WizardModel", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L20", + "community": 124, + "norm_label": "wizardmodel", + "id": "models_wizardmodel_wizardmodel" + }, + { + "label": "DeviceState", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L24", + "community": 124, + "norm_label": "devicestate", + "id": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_devicestate" + }, + { + "label": "Bool", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L27", + "community": 124, + "norm_label": "bool", + "id": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_bool" + }, + { + "label": "Date", + "file_type": "code", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L40", + "community": 124, + "norm_label": "date", + "id": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_date" + }, { "label": "Brand-Token-Matching (shared system)", "file_type": "rationale", @@ -91244,7 +160169,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "brand-token-matching (shared system)", "id": "concepts_brand_token_matching_brand_token_matching" }, @@ -91257,7 +160182,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "nummern-/suffix-trick (gambling domain evasion)", "id": "concepts_brand_token_matching_numbers_trick" }, @@ -91270,7 +160195,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "brand-token (curated brand core)", "id": "concepts_brand_token_matching_brand_token" }, @@ -91283,7 +160208,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "entnummerierung + segment-exaktvergleich algorithm", "id": "concepts_brand_token_matching_matching_algorithm" }, @@ -91296,7 +160221,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "layer 1 dns-sinkhole / packettunnel", "id": "concepts_brand_token_matching_layer1_dns_sinkhole" }, @@ -91309,7 +160234,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "layer 2 apple managedsettings webdomain", "id": "concepts_brand_token_matching_layer2_managedsettings" }, @@ -91322,7 +160247,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "mail-scan (mo)", "id": "concepts_brand_token_matching_mail_scan_mo" }, @@ -91335,7 +160260,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "hagezi feed blocklist (329k hashes)", "id": "concepts_brand_token_matching_hagezi_feed" }, @@ -91348,7 +160273,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "brand_tokens db table", "id": "concepts_brand_token_matching_brand_tokens_table" }, @@ -91361,7 +160286,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "brandtokenlist class (swift, pendant to hashlist)", "id": "concepts_brand_token_matching_brandtokenlist" }, @@ -91374,7 +160299,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "get /api/url-filter/brand-tokens endpoint", "id": "concepts_brand_token_matching_brand_tokens_endpoint" }, @@ -91387,7 +160312,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "blocklist.bin sync mechanism", "id": "concepts_brand_token_matching_blocklist_bin_sync" }, @@ -91400,7 +160325,7 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "dnsfilter.classify integration point", "id": "concepts_brand_token_matching_dnsfilter_classify" }, @@ -91413,23 +160338,10 @@ "captured_at": "2026-05-22", "author": null, "contributor": null, - "community": 263, + "community": 233, "norm_label": "klartext brand-token privacy decision", "id": "concepts_brand_token_matching_clear_text_privacy_decision" }, - { - "label": "Deploy Admin Staging Workflow", - "file_type": "document", - "source_file": ".github/workflows/deploy-admin-staging.yml", - "source_location": null, - "source_url": null, - "captured_at": null, - "author": null, - "contributor": null, - "community": 430, - "norm_label": "deploy admin staging workflow", - "id": "workflows_deploy_admin_staging_workflow" - }, { "label": "Maestro Cloud E2E CI Workflow (template)", "file_type": "document", @@ -91491,7 +160403,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 276, + "community": 954, "norm_label": "rebreak magic mac (self-bind wizard)", "id": "rebreak_magic_mac_readme_magic_mac" }, @@ -91504,7 +160416,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 276, + "community": 954, "norm_label": "supervise-magic (supervise without reset)", "id": "rebreak_magic_mac_readme_supervise_magic" }, @@ -91517,7 +160429,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 276, + "community": 954, "norm_label": "rebreak-magic-mac xcodegen project.yml", "id": "rebreak_magic_mac_project_xcodegen_spec" }, @@ -91985,7 +160897,7 @@ "captured_at": null, "author": "Apple Inc.", "contributor": null, - "community": 54, + "community": 263, "norm_label": "bloomfiltertool readme", "id": "bloomfiltertool_readme" }, @@ -91998,7 +160910,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 54, + "community": 263, "norm_label": "bloomfiltertool input_urls (sample)", "id": "bloomfiltertool_input_urls" }, @@ -94485,34713 +163397,6 @@ "norm_label": "urge-coping action icons (call, walk, freeze)", "id": "concept_urge_coping_actions" }, - { - "label": "patchedDependencies", - "file_type": "code", - "source_file": "package.json", - "source_location": "L33", - "community": 271, - "norm_label": "patcheddependencies", - "id": "rebreak_monorepo_package_pnpm_patcheddependencies" - }, - { - "label": "metro-core@0.83.3", - "file_type": "code", - "source_file": "package.json", - "source_location": "L34", - "community": 271, - "norm_label": "metro-core@0.83.3", - "id": "rebreak_monorepo_package_patcheddependencies_metro_core_0_83_3" - }, - { - "label": "react-native-callkeep", - "file_type": "code", - "source_file": "package.json", - "source_location": "L35", - "community": 271, - "norm_label": "react-native-callkeep", - "id": "rebreak_monorepo_package_patcheddependencies_react_native_callkeep" - }, - { - "label": "tsconfig.json", - "file_type": "code", - "source_file": "tsconfig.json", - "source_location": "L1", - "community": 709, - "norm_label": "tsconfig.json", - "id": "tsconfig_json" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "tsconfig.json", - "source_location": "L2", - "community": 709, - "norm_label": "compileroptions", - "id": "rebreak_monorepo_tsconfig_compileroptions" - }, - { - "label": "extends", - "file_type": "code", - "source_file": "tsconfig.json", - "source_location": "L3", - "community": 709, - "norm_label": "extends", - "id": "rebreak_monorepo_tsconfig_extends" - }, - { - "label": "devices.json", - "file_type": "code", - "source_file": ".expo/devices.json", - "source_location": "L1", - "community": 754, - "norm_label": "devices.json", - "id": "expo_devices_json" - }, - { - "label": "devices", - "file_type": "code", - "source_file": ".expo/devices.json", - "source_location": "L2", - "community": 754, - "norm_label": "devices", - "id": "expo_devices_devices" - }, - { - "label": "@parse/node-apn", - "file_type": "code", - "source_file": "backend/package.json", - "source_location": "L17", - "community": 51, - "norm_label": "@parse/node-apn", - "id": "backend_package_dependencies_parse_node_apn" - }, - { - "label": "crisis-filter.test.ts", - "file_type": "code", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L1", - "community": 79, - "norm_label": "crisis-filter.test.ts", - "id": "backend_tests_crisis_crisis_filter_test_ts" - }, - { - "label": "PROMPTS_DIR", - "file_type": "code", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L23", - "community": 79, - "norm_label": "prompts_dir", - "id": "crisis_crisis_filter_test_prompts_dir" - }, - { - "label": "EvalPrompt", - "file_type": "code", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L25", - "community": 79, - "norm_label": "evalprompt", - "id": "crisis_crisis_filter_test_evalprompt" - }, - { - "label": "loadPrompts()", - "file_type": "code", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L35", - "community": 79, - "norm_label": "loadprompts()", - "id": "crisis_crisis_filter_test_loadprompts" - }, - { - "label": "crisisPrompts", - "file_type": "code", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L39", - "community": 79, - "norm_label": "crisisprompts", - "id": "crisis_crisis_filter_test_crisisprompts" - }, - { - "label": "harmlessPrompts", - "file_type": "code", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L40", - "community": 79, - "norm_label": "harmlessprompts", - "id": "crisis_crisis_filter_test_harmlessprompts" - }, - { - "label": "EXPECTED_CRISIS_MATCHES", - "file_type": "code", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L49", - "community": 79, - "norm_label": "expected_crisis_matches", - "id": "crisis_crisis_filter_test_expected_crisis_matches" - }, - { - "label": "lyra-eval.test.ts", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L1", - "community": 270, - "norm_label": "lyra-eval.test.ts", - "id": "backend_tests_eval_lyra_eval_test_ts" - }, - { - "label": "RuleType", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L45", - "community": 270, - "norm_label": "ruletype", - "id": "eval_lyra_eval_test_ruletype" - }, - { - "label": "EvalRule", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L50", - "community": 270, - "norm_label": "evalrule", - "id": "eval_lyra_eval_test_evalrule" - }, - { - "label": "EvalPrompt", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L57", - "community": 270, - "norm_label": "evalprompt", - "id": "eval_lyra_eval_test_evalprompt" - }, - { - "label": "RuleResult", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L67", - "community": 270, - "norm_label": "ruleresult", - "id": "eval_lyra_eval_test_ruleresult" - }, - { - "label": "EvalResult", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L74", - "community": 270, - "norm_label": "evalresult", - "id": "eval_lyra_eval_test_evalresult" - }, - { - "label": "PROMPTS_DIR", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L86", - "community": 270, - "norm_label": "prompts_dir", - "id": "eval_lyra_eval_test_prompts_dir" - }, - { - "label": "loadPrompts()", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L88", - "community": 270, - "norm_label": "loadprompts()", - "id": "eval_lyra_eval_test_loadprompts" - }, - { - "label": "crisisPrompts", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L93", - "community": 270, - "norm_label": "crisisprompts", - "id": "eval_lyra_eval_test_crisisprompts" - }, - { - "label": "drangPrompts", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L94", - "community": 270, - "norm_label": "drangprompts", - "id": "eval_lyra_eval_test_drangprompts" - }, - { - "label": "harmlessPrompts", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L95", - "community": 270, - "norm_label": "harmlessprompts", - "id": "eval_lyra_eval_test_harmlessprompts" - }, - { - "label": "jailbreakPrompts", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L96", - "community": 270, - "norm_label": "jailbreakprompts", - "id": "eval_lyra_eval_test_jailbreakprompts" - }, - { - "label": "edgeCasePrompts", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L97", - "community": 270, - "norm_label": "edgecaseprompts", - "id": "eval_lyra_eval_test_edgecaseprompts" - }, - { - "label": "allPrompts", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L99", - "community": 270, - "norm_label": "allprompts", - "id": "eval_lyra_eval_test_allprompts" - }, - { - "label": "evaluateRule()", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L109", - "community": 270, - "norm_label": "evaluaterule()", - "id": "eval_lyra_eval_test_evaluaterule" - }, - { - "label": "getMockResponse()", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L176", - "community": 270, - "norm_label": "getmockresponse()", - "id": "eval_lyra_eval_test_getmockresponse" - }, - { - "label": "callLyra()", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L241", - "community": 270, - "norm_label": "calllyra()", - "id": "eval_lyra_eval_test_calllyra" - }, - { - "label": "computeCrisisRecall()", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L319", - "community": 270, - "norm_label": "computecrisisrecall()", - "id": "eval_lyra_eval_test_computecrisisrecall" - }, - { - "label": "evalResults", - "file_type": "code", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L347", - "community": 270, - "norm_label": "evalresults", - "id": "eval_lyra_eval_test_evalresults" - }, - { - "label": "edge-cases.json", - "file_type": "code", - "source_file": "backend/tests/eval/prompts/edge-cases.json", - "source_location": "L1", - "community": 844, - "norm_label": "edge-cases.json", - "id": "backend_tests_eval_prompts_edge_cases_json" - }, - { - "label": "jailbreak.json", - "file_type": "code", - "source_file": "backend/tests/eval/prompts/jailbreak.json", - "source_location": "L1", - "community": 845, - "norm_label": "jailbreak.json", - "id": "backend_tests_eval_prompts_jailbreak_json" - }, - { - "label": "drang.json", - "file_type": "code", - "source_file": "backend/tests/eval/prompts/drang.json", - "source_location": "L1", - "community": 846, - "norm_label": "drang.json", - "id": "backend_tests_eval_prompts_drang_json" - }, - { - "label": "harmless.json", - "file_type": "code", - "source_file": "backend/tests/eval/prompts/harmless.json", - "source_location": "L1", - "community": 847, - "norm_label": "harmless.json", - "id": "backend_tests_eval_prompts_harmless_json" - }, - { - "label": "crisis.json", - "file_type": "code", - "source_file": "backend/tests/eval/prompts/crisis.json", - "source_location": "L1", - "community": 848, - "norm_label": "crisis.json", - "id": "backend_tests_eval_prompts_crisis_json" - }, - { - "label": "runRowCap()", - "file_type": "code", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L115", - "community": 4, - "norm_label": "runrowcap()", - "id": "plugins_mail_retention_cron_runrowcap" - }, - { - "label": "device-approval-email.ts", - "file_type": "code", - "source_file": "backend/server/utils/device-approval-email.ts", - "source_location": "L1", - "community": 257, - "norm_label": "device-approval-email.ts", - "id": "backend_server_utils_device_approval_email_ts" - }, - { - "label": "sendDeviceApprovalEmail()", - "file_type": "code", - "source_file": "backend/server/utils/device-approval-email.ts", - "source_location": "L25", - "community": 257, - "norm_label": "senddeviceapprovalemail()", - "id": "utils_device_approval_email_senddeviceapprovalemail" - }, - { - "label": "magic-removal-email.ts", - "file_type": "code", - "source_file": "backend/server/utils/magic-removal-email.ts", - "source_location": "L1", - "community": 34, - "norm_label": "magic-removal-email.ts", - "id": "backend_server_utils_magic_removal_email_ts" - }, - { - "label": "MagicRemovalEmailOpts", - "file_type": "code", - "source_file": "backend/server/utils/magic-removal-email.ts", - "source_location": "L17", - "community": 34, - "norm_label": "magicremovalemailopts", - "id": "utils_magic_removal_email_magicremovalemailopts" - }, - { - "label": "sendMagicRemovalEmail()", - "file_type": "code", - "source_file": "backend/server/utils/magic-removal-email.ts", - "source_location": "L26", - "community": 34, - "norm_label": "sendmagicremovalemail()", - "id": "utils_magic_removal_email_sendmagicremovalemail" - }, - { - "label": "crisis-filter.ts", - "file_type": "code", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L1", - "community": 79, - "norm_label": "crisis-filter.ts", - "id": "backend_server_utils_crisis_filter_ts" - }, - { - "label": "CrisisLevel", - "file_type": "code", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L22", - "community": 79, - "norm_label": "crisislevel", - "id": "utils_crisis_filter_crisislevel" - }, - { - "label": "CrisisDetectionResult", - "file_type": "code", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L27", - "community": 79, - "norm_label": "crisisdetectionresult", - "id": "utils_crisis_filter_crisisdetectionresult" - }, - { - "label": "PatternGroup", - "file_type": "code", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L47", - "community": 79, - "norm_label": "patterngroup", - "id": "utils_crisis_filter_patterngroup" - }, - { - "label": "normalize()", - "file_type": "code", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L287", - "community": 277, - "norm_label": "normalize()", - "id": "utils_crisis_filter_normalize" - }, - { - "label": "detectCrisis()", - "file_type": "code", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L308", - "community": 79, - "norm_label": "detectcrisis()", - "id": "utils_crisis_filter_detectcrisis" - }, - { - "label": "CrisisChip", - "file_type": "code", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L373", - "community": 79, - "norm_label": "crisischip", - "id": "utils_crisis_filter_crisischip" - }, - { - "label": "getCrisisChips()", - "file_type": "code", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L385", - "community": 79, - "norm_label": "getcrisischips()", - "id": "utils_crisis_filter_getcrisischips" - }, - { - "label": "CrisisFallbackPayload", - "file_type": "code", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L426", - "community": 79, - "norm_label": "crisisfallbackpayload", - "id": "utils_crisis_filter_crisisfallbackpayload" - }, - { - "label": "getCrisisFallback()", - "file_type": "code", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L431", - "community": 79, - "norm_label": "getcrisisfallback()", - "id": "utils_crisis_filter_getcrisisfallback" - }, - { - "label": "magicCron.ts", - "file_type": "code", - "source_file": "backend/server/utils/magicCron.ts", - "source_location": "L1", - "community": 4, - "norm_label": "magiccron.ts", - "id": "backend_server_utils_magiccron_ts" - }, - { - "label": "processMagicReleases()", - "file_type": "code", - "source_file": "backend/server/utils/magicCron.ts", - "source_location": "L13", - "community": 4, - "norm_label": "processmagicreleases()", - "id": "utils_magiccron_processmagicreleases" - }, - { - "label": "magic-profile-template.ts", - "file_type": "code", - "source_file": "backend/server/utils/magic-profile-template.ts", - "source_location": "L1", - "community": 32, - "norm_label": "magic-profile-template.ts", - "id": "backend_server_utils_magic_profile_template_ts" - }, - { - "label": "magic-lock.ts", - "file_type": "code", - "source_file": "backend/server/utils/magic-lock.ts", - "source_location": "L1", - "community": 32, - "norm_label": "magic-lock.ts", - "id": "backend_server_utils_magic_lock_ts" - }, - { - "label": "generateRemovalPassword()", - "file_type": "code", - "source_file": "backend/server/utils/magic-lock.ts", - "source_location": "L21", - "community": 32, - "norm_label": "generateremovalpassword()", - "id": "utils_magic_lock_generateremovalpassword" - }, - { - "label": "buildRemovalPasswordPayload()", - "file_type": "code", - "source_file": "backend/server/utils/magic-lock.ts", - "source_location": "L34", - "community": 32, - "norm_label": "buildremovalpasswordpayload()", - "id": "utils_magic_lock_buildremovalpasswordpayload" - }, - { - "label": "signProfileIfConfigured()", - "file_type": "code", - "source_file": "backend/server/utils/magic-lock.ts", - "source_location": "L65", - "community": 32, - "norm_label": "signprofileifconfigured()", - "id": "utils_magic_lock_signprofileifconfigured" - }, - { - "label": "adguard.ts", - "file_type": "code", - "source_file": "backend/server/utils/adguard.ts", - "source_location": "L1", - "community": 32, - "norm_label": "adguard.ts", - "id": "backend_server_utils_adguard_ts" - }, - { - "label": "AdGuardClientOptions", - "file_type": "code", - "source_file": "backend/server/utils/adguard.ts", - "source_location": "L6", - "community": 32, - "norm_label": "adguardclientoptions", - "id": "utils_adguard_adguardclientoptions" - }, - { - "label": "AdGuardClientPayload", - "file_type": "code", - "source_file": "backend/server/utils/adguard.ts", - "source_location": "L17", - "community": 32, - "norm_label": "adguardclientpayload", - "id": "utils_adguard_adguardclientpayload" - }, - { - "label": "createAdGuardClient()", - "file_type": "code", - "source_file": "backend/server/utils/adguard.ts", - "source_location": "L38", - "community": 32, - "norm_label": "createadguardclient()", - "id": "utils_adguard_createadguardclient" - }, - { - "label": "deleteAdGuardClient()", - "file_type": "code", - "source_file": "backend/server/utils/adguard.ts", - "source_location": "L113", - "community": 4, - "norm_label": "deleteadguardclient()", - "id": "utils_adguard_deleteadguardclient" - }, - { - "label": "cleanupStaleDevices()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L224", - "community": 32, - "norm_label": "cleanupstaledevices()", - "id": "db_devices_cleanupstaledevices" - }, - { - "label": "MagicDeviceRecord", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L419", - "community": 32, - "norm_label": "magicdevicerecord", - "id": "db_devices_magicdevicerecord" - }, - { - "label": "listMagicDevices()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L432", - "community": 32, - "norm_label": "listmagicdevices()", - "id": "db_devices_listmagicdevices" - }, - { - "label": "countActiveMagicBindings()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L466", - "community": 32, - "norm_label": "countactivemagicbindings()", - "id": "db_devices_countactivemagicbindings" - }, - { - "label": "findMagicDeviceByToken()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L482", - "community": 32, - "norm_label": "findmagicdevicebytoken()", - "id": "db_devices_findmagicdevicebytoken" - }, - { - "label": "ensureMagicRemovalPassword()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L519", - "community": 32, - "norm_label": "ensuremagicremovalpassword()", - "id": "db_devices_ensuremagicremovalpassword" - }, - { - "label": "MagicRemovalCredential", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L530", - "community": 34, - "norm_label": "magicremovalcredential", - "id": "db_devices_magicremovalcredential" - }, - { - "label": "listMagicRemovalCredentials()", - "file_type": "code", - "source_file": "backend/server/db/devices.ts", - "source_location": "L541", - "community": 34, - "norm_label": "listmagicremovalcredentials()", - "id": "db_devices_listmagicremovalcredentials" - }, - { - "label": "device-approvals.ts", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L1", - "community": 257, - "norm_label": "device-approvals.ts", - "id": "backend_server_db_device_approvals_ts" - }, - { - "label": "DeviceApprovalRecord", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L20", - "community": 257, - "norm_label": "deviceapprovalrecord", - "id": "db_device_approvals_deviceapprovalrecord" - }, - { - "label": "APPROVAL_SELECT", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L39", - "community": 257, - "norm_label": "approval_select", - "id": "db_device_approvals_approval_select" - }, - { - "label": "generateCode()", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L59", - "community": 257, - "norm_label": "generatecode()", - "id": "db_device_approvals_generatecode" - }, - { - "label": "generateEmailToken()", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L65", - "community": 257, - "norm_label": "generateemailtoken()", - "id": "db_device_approvals_generateemailtoken" - }, - { - "label": "hasOtherActiveDevices()", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L70", - "community": 257, - "norm_label": "hasotheractivedevices()", - "id": "db_device_approvals_hasotheractivedevices" - }, - { - "label": "createApprovalRequest()", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L90", - "community": 257, - "norm_label": "createapprovalrequest()", - "id": "db_device_approvals_createapprovalrequest" - }, - { - "label": "getApprovalRequest()", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L129", - "community": 257, - "norm_label": "getapprovalrequest()", - "id": "db_device_approvals_getapprovalrequest" - }, - { - "label": "getApprovalByEmailToken()", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L143", - "community": 257, - "norm_label": "getapprovalbyemailtoken()", - "id": "db_device_approvals_getapprovalbyemailtoken" - }, - { - "label": "listPendingApprovals()", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L156", - "community": 257, - "norm_label": "listpendingapprovals()", - "id": "db_device_approvals_listpendingapprovals" - }, - { - "label": "approveRequest()", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L181", - "community": 257, - "norm_label": "approverequest()", - "id": "db_device_approvals_approverequest" - }, - { - "label": "rejectRequest()", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L214", - "community": 257, - "norm_label": "rejectrequest()", - "id": "db_device_approvals_rejectrequest" - }, - { - "label": "markEmailSent()", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L235", - "community": 257, - "norm_label": "markemailsent()", - "id": "db_device_approvals_markemailsent" - }, - { - "label": "maybeExpire()", - "file_type": "code", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L254", - "community": 257, - "norm_label": "maybeexpire()", - "id": "db_device_approvals_maybeexpire" - }, - { - "label": "ProtectionSource", - "file_type": "code", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L5", - "community": 9, - "norm_label": "protectionsource", - "id": "db_protectionstatelog_protectionsource" - }, - { - "label": "getLastProtectionEvent()", - "file_type": "code", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L18", - "community": 9, - "norm_label": "getlastprotectionevent()", - "id": "db_protectionstatelog_getlastprotectionevent" - }, - { - "label": "appendProtectionEvent()", - "file_type": "code", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L30", - "community": 9, - "norm_label": "appendprotectionevent()", - "id": "db_protectionstatelog_appendprotectionevent" - }, - { - "label": "ProtectionCoverage", - "file_type": "code", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L67", - "community": 9, - "norm_label": "protectioncoverage", - "id": "db_protectionstatelog_protectioncoverage" - }, - { - "label": "computeProtectionCoverage()", - "file_type": "code", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L90", - "community": 9, - "norm_label": "computeprotectioncoverage()", - "id": "db_protectionstatelog_computeprotectioncoverage" - }, - { - "label": "utcDayStart()", - "file_type": "code", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L213", - "community": 9, - "norm_label": "utcdaystart()", - "id": "db_protectionstatelog_utcdaystart" - }, - { - "label": "setCallsEnabled()", - "file_type": "code", - "source_file": "backend/server/db/profile.ts", - "source_location": "L394", - "community": 9, - "norm_label": "setcallsenabled()", - "id": "db_profile_setcallsenabled" - }, - { - "label": "canCall()", - "file_type": "code", - "source_file": "backend/server/db/social.ts", - "source_location": "L81", - "community": 39, - "norm_label": "cancall()", - "id": "db_social_cancall" - }, - { - "label": "patchFolderScanState()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L151", - "community": 6, - "norm_label": "patchfolderscanstate()", - "id": "db_mail_patchfolderscanstate" - }, - { - "label": "markFullSweepDone()", - "file_type": "code", - "source_file": "backend/server/db/mail.ts", - "source_location": "L169", - "community": 6, - "norm_label": "markfullsweepdone()", - "id": "db_mail_markfullsweepdone" - }, - { - "label": "ring.post.ts", - "file_type": "code", - "source_file": "backend/server/api/calls/ring.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "ring.post.ts", - "id": "backend_server_api_calls_ring_post_ts" - }, - { - "label": "ice-servers.get.ts", - "file_type": "code", - "source_file": "backend/server/api/calls/ice-servers.get.ts", - "source_location": "L1", - "community": 9, - "norm_label": "ice-servers.get.ts", - "id": "backend_server_api_calls_ice_servers_get_ts" - }, - { - "label": "[userId].get.ts", - "file_type": "code", - "source_file": "backend/server/api/chat/can-call/[userId].get.ts", - "source_location": "L1", - "community": 39, - "norm_label": "[userid].get.ts", - "id": "backend_server_api_chat_can_call_userid_get_ts" - }, - { - "label": "register.post.ts", - "file_type": "code", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L1", - "community": 32, - "norm_label": "register.post.ts", - "id": "backend_server_api_magic_register_post_ts" - }, - { - "label": "status.get.ts", - "file_type": "code", - "source_file": "backend/server/api/magic/status.get.ts", - "source_location": "L1", - "community": 32, - "norm_label": "status.get.ts", - "id": "backend_server_api_magic_status_get_ts" - }, - { - "label": "profile.mobileconfig.get.ts", - "file_type": "code", - "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", - "source_location": "L1", - "community": 32, - "norm_label": "profile.mobileconfig.get.ts", - "id": "backend_server_api_magic_profile_mobileconfig_get_ts" - }, - { - "label": "me.get.ts", - "file_type": "code", - "source_file": "backend/server/api/magic/me.get.ts", - "source_location": "L1", - "community": 9, - "norm_label": "me.get.ts", - "id": "backend_server_api_magic_me_get_ts" - }, - { - "label": "devices.get.ts", - "file_type": "code", - "source_file": "backend/server/api/magic/devices.get.ts", - "source_location": "L1", - "community": 32, - "norm_label": "devices.get.ts", - "id": "backend_server_api_magic_devices_get_ts" - }, - { - "label": "prettyPlatform()", - "file_type": "code", - "source_file": "backend/server/api/magic/devices.get.ts", - "source_location": "L132", - "community": 32, - "norm_label": "prettyplatform()", - "id": "magic_devices_get_prettyplatform" - }, - { - "label": "info.get.ts", - "file_type": "code", - "source_file": "backend/server/api/magic/info.get.ts", - "source_location": "L1", - "community": 849, - "norm_label": "info.get.ts", - "id": "backend_server_api_magic_info_get_ts" - }, - { - "label": "cancel-release.post.ts", - "file_type": "code", - "source_file": "backend/server/api/magic/devices/[deviceId]/cancel-release.post.ts", - "source_location": "L1", - "community": 850, - "norm_label": "cancel-release.post.ts", - "id": "backend_server_api_magic_devices_deviceid_cancel_release_post_ts" - }, - { - "label": "request-release.post.ts", - "file_type": "code", - "source_file": "backend/server/api/magic/devices/[deviceId]/request-release.post.ts", - "source_location": "L1", - "community": 422, - "norm_label": "request-release.post.ts", - "id": "backend_server_api_magic_devices_deviceid_request_release_post_ts" - }, - { - "label": "redeem.post.ts", - "file_type": "code", - "source_file": "backend/server/api/magic/pair/redeem.post.ts", - "source_location": "L1", - "community": 682, - "norm_label": "redeem.post.ts", - "id": "backend_server_api_magic_pair_redeem_post_ts" - }, - { - "label": "RateEntry", - "file_type": "code", - "source_file": "backend/server/api/magic/pair/redeem.post.ts", - "source_location": "L21", - "community": 682, - "norm_label": "rateentry", - "id": "pair_redeem_post_rateentry" - }, - { - "label": "rateLimitStore", - "file_type": "code", - "source_file": "backend/server/api/magic/pair/redeem.post.ts", - "source_location": "L26", - "community": 682, - "norm_label": "ratelimitstore", - "id": "pair_redeem_post_ratelimitstore" - }, - { - "label": "checkRateLimit()", - "file_type": "code", - "source_file": "backend/server/api/magic/pair/redeem.post.ts", - "source_location": "L28", - "community": 682, - "norm_label": "checkratelimit()", - "id": "pair_redeem_post_checkratelimit" - }, - { - "label": "event.post.ts", - "file_type": "code", - "source_file": "backend/server/api/protection/event.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "event.post.ts", - "id": "backend_server_api_protection_event_post_ts" - }, - { - "label": "VALID_SOURCES", - "file_type": "code", - "source_file": "backend/server/api/protection/event.post.ts", - "source_location": "L7", - "community": 9, - "norm_label": "valid_sources", - "id": "protection_event_post_valid_sources" - }, - { - "label": "coverage.get.ts", - "file_type": "code", - "source_file": "backend/server/api/protection/coverage.get.ts", - "source_location": "L1", - "community": 9, - "norm_label": "coverage.get.ts", - "id": "backend_server_api_protection_coverage_get_ts" - }, - { - "label": "screentime-passcode.get.ts", - "file_type": "code", - "source_file": "backend/server/api/protection/screentime-passcode.get.ts", - "source_location": "L1", - "community": 9, - "norm_label": "screentime-passcode.get.ts", - "id": "backend_server_api_protection_screentime_passcode_get_ts" - }, - { - "label": "screentime-passcode.post.ts", - "file_type": "code", - "source_file": "backend/server/api/protection/screentime-passcode.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "screentime-passcode.post.ts", - "id": "backend_server_api_protection_screentime_passcode_post_ts" - }, - { - "label": "calls-enabled.post.ts", - "file_type": "code", - "source_file": "backend/server/api/me/calls-enabled.post.ts", - "source_location": "L1", - "community": 9, - "norm_label": "calls-enabled.post.ts", - "id": "backend_server_api_me_calls_enabled_post_ts" - }, - { - "label": "search.get.ts", - "file_type": "code", - "source_file": "backend/server/api/users/search.get.ts", - "source_location": "L1", - "community": 851, - "norm_label": "search.get.ts", - "id": "backend_server_api_users_search_get_ts" - }, - { - "label": "index.get.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/approvals/index.get.ts", - "source_location": "L1", - "community": 257, - "norm_label": "index.get.ts", - "id": "backend_server_api_devices_approvals_index_get_ts" - }, - { - "label": "index.post.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/approvals/index.post.ts", - "source_location": "L1", - "community": 257, - "norm_label": "index.post.ts", - "id": "backend_server_api_devices_approvals_index_post_ts" - }, - { - "label": "[id].get.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/approvals/[id].get.ts", - "source_location": "L1", - "community": 257, - "norm_label": "[id].get.ts", - "id": "backend_server_api_devices_approvals_id_get_ts" - }, - { - "label": "approve.post.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/approvals/[id]/approve.post.ts", - "source_location": "L1", - "community": 257, - "norm_label": "approve.post.ts", - "id": "backend_server_api_devices_approvals_id_approve_post_ts" - }, - { - "label": "email.post.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", - "source_location": "L1", - "community": 257, - "norm_label": "email.post.ts", - "id": "backend_server_api_devices_approvals_id_email_post_ts" - }, - { - "label": "reject.post.ts", - "file_type": "code", - "source_file": "backend/server/api/devices/approvals/[id]/reject.post.ts", - "source_location": "L1", - "community": 257, - "norm_label": "reject.post.ts", - "id": "backend_server_api_devices_approvals_id_reject_post_ts" - }, - { - "label": "voip-push.ts", - "file_type": "code", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L1", - "community": 566, - "norm_label": "voip-push.ts", - "id": "backend_server_services_voip_push_ts" - }, - { - "label": "ApnModule", - "file_type": "code", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L26", - "community": 566, - "norm_label": "apnmodule", - "id": "services_voip_push_apnmodule" - }, - { - "label": "ApnProvider", - "file_type": "code", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L27", - "community": 566, - "norm_label": "apnprovider", - "id": "services_voip_push_apnprovider" - }, - { - "label": "ApnNotification", - "file_type": "code", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L28", - "community": 566, - "norm_label": "apnnotification", - "id": "services_voip_push_apnnotification" - }, - { - "label": "tokenEnvCache", - "file_type": "code", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L36", - "community": 566, - "norm_label": "tokenenvcache", - "id": "services_voip_push_tokenenvcache" - }, - { - "label": "ensureInit()", - "file_type": "code", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L38", - "community": 566, - "norm_label": "ensureinit()", - "id": "services_voip_push_ensureinit" - }, - { - "label": "VoIPCallPayload", - "file_type": "code", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L84", - "community": 566, - "norm_label": "voipcallpayload", - "id": "services_voip_push_voipcallpayload" - }, - { - "label": "sendVoIPPush()", - "file_type": "code", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L108", - "community": 566, - "norm_label": "sendvoippush()", - "id": "services_voip_push_sendvoippush" - }, - { - "label": "shutdownVoIPProvider()", - "file_type": "code", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L171", - "community": 566, - "norm_label": "shutdownvoipprovider()", - "id": "services_voip_push_shutdownvoipprovider" - }, - { - "label": "deploy-marketing.sh", - "file_type": "code", - "source_file": "scripts/deploy-marketing.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "file" - }, - "community": 710, - "norm_label": "deploy-marketing.sh", - "id": "scripts_deploy_marketing_sh" - }, - { - "label": "deploy-marketing.sh script", - "file_type": "code", - "source_file": "scripts/deploy-marketing.sh", - "source_location": "L1", - "metadata": { - "language": "bash", - "kind": "bash_entrypoint" - }, - "community": 710, - "norm_label": "deploy-marketing.sh script", - "id": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_marketing_sh__entry" - }, - { - "label": "log()", - "file_type": "code", - "source_file": "scripts/deploy-marketing.sh", - "source_location": "L27", - "metadata": { - "language": "bash", - "kind": "bash_function" - }, - "community": 710, - "norm_label": "log()", - "id": "scripts_deploy_marketing_log" - }, - { - "label": "google-services.json", - "file_type": "code", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L1", - "community": 611, - "norm_label": "google-services.json", - "id": "apps_rebreak_native_google_services_json" - }, - { - "label": "project_info", - "file_type": "code", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L2", - "community": 611, - "norm_label": "project_info", - "id": "rebreak_native_google_services_project_info" - }, - { - "label": "project_number", - "file_type": "code", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L3", - "community": 611, - "norm_label": "project_number", - "id": "rebreak_native_google_services_project_info_project_number" - }, - { - "label": "project_id", - "file_type": "code", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L4", - "community": 611, - "norm_label": "project_id", - "id": "rebreak_native_google_services_project_info_project_id" - }, - { - "label": "storage_bucket", - "file_type": "code", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L5", - "community": 611, - "norm_label": "storage_bucket", - "id": "rebreak_native_google_services_project_info_storage_bucket" - }, - { - "label": "client", - "file_type": "code", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L7", - "community": 611, - "norm_label": "client", - "id": "rebreak_native_google_services_client" - }, - { - "label": "configuration_version", - "file_type": "code", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L47", - "community": 611, - "norm_label": "configuration_version", - "id": "rebreak_native_google_services_configuration_version" - }, - { - "label": "MediaLibraryModule", - "file_type": "code", - "source_file": "apps/rebreak-native/app/dm.tsx", - "source_location": "L31", - "community": 17, - "norm_label": "medialibrarymodule", - "id": "app_dm_medialibrarymodule" - }, - { - "label": "DmData", - "file_type": "code", - "source_file": "apps/rebreak-native/app/dm.tsx", - "source_location": "L76", - "community": 17, - "norm_label": "dmdata", - "id": "app_dm_dmdata" - }, - { - "label": "mergeMessages()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/dm.tsx", - "source_location": "L84", - "community": 17, - "norm_label": "mergemessages()", - "id": "app_dm_mergemessages" - }, - { - "label": "DmInfoSheet()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/dm.tsx", - "source_location": "L1038", - "community": 17, - "norm_label": "dminfosheet()", - "id": "app_dm_dminfosheet" - }, - { - "label": "call.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L1", - "community": 17, - "norm_label": "call.tsx", - "id": "apps_rebreak_native_app_call_tsx" - }, - { - "label": "fmtDuration()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L11", - "community": 17, - "norm_label": "fmtduration()", - "id": "app_call_fmtduration" - }, - { - "label": "CallScreen()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L17", - "community": 17, - "norm_label": "callscreen()", - "id": "app_call_callscreen" - }, - { - "label": "CircleBtn()", - "file_type": "code", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L182", - "community": 17, - "norm_label": "circlebtn()", - "id": "app_call_circlebtn" - }, - { - "label": "with-voip-pushkit-ios.js", - "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L1", - "community": 635, - "norm_label": "with-voip-pushkit-ios.js", - "id": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js" - }, - { - "label": "{ withDangerousMod }", - "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L23", - "community": 635, - "norm_label": "{ withdangerousmod }", - "id": "plugins_with_voip_pushkit_ios_withdangerousmod" - }, - { - "label": "fs", - "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L24", - "community": 635, - "norm_label": "fs", - "id": "plugins_with_voip_pushkit_ios_fs" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L25", - "community": 635, - "norm_label": "path", - "id": "plugins_with_voip_pushkit_ios_path" - }, - { - "label": "patchBridgingHeader()", - "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L162", - "community": 635, - "norm_label": "patchbridgingheader()", - "id": "plugins_with_voip_pushkit_ios_patchbridgingheader" - }, - { - "label": "patchAppDelegate()", - "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L191", - "community": 635, - "norm_label": "patchappdelegate()", - "id": "plugins_with_voip_pushkit_ios_patchappdelegate" - }, - { - "label": "with-allow-nonmodular-includes.js", - "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", - "source_location": "L1", - "community": 689, - "norm_label": "with-allow-nonmodular-includes.js", - "id": "apps_rebreak_native_plugins_with_allow_nonmodular_includes_js" - }, - { - "label": "{ withDangerousMod }", - "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", - "source_location": "L21", - "community": 689, - "norm_label": "{ withdangerousmod }", - "id": "plugins_with_allow_nonmodular_includes_withdangerousmod" - }, - { - "label": "fs", - "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", - "source_location": "L22", - "community": 689, - "norm_label": "fs", - "id": "plugins_with_allow_nonmodular_includes_fs" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", - "source_location": "L23", - "community": 689, - "norm_label": "path", - "id": "plugins_with_allow_nonmodular_includes_path" - }, - { - "label": "call.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L1", - "community": 17, - "norm_label": "call.ts", - "id": "apps_rebreak_native_stores_call_ts" - }, - { - "label": "isWebRTCAvailable()", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L24", - "community": 17, - "norm_label": "iswebrtcavailable()", - "id": "stores_call_iswebrtcavailable" - }, - { - "label": "CallStatus", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L28", - "community": 17, - "norm_label": "callstatus", - "id": "stores_call_callstatus" - }, - { - "label": "CallPeer", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L36", - "community": 17, - "norm_label": "callpeer", - "id": "stores_call_callpeer" - }, - { - "label": "CallEndReason", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L37", - "community": 17, - "norm_label": "callendreason", - "id": "stores_call_callendreason" - }, - { - "label": "pendingRemoteIce", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L52", - "community": 17, - "norm_label": "pendingremoteice", - "id": "stores_call_pendingremoteice" - }, - { - "label": "CallState", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L64", - "community": 17, - "norm_label": "callstate", - "id": "stores_call_callstate" - }, - { - "label": "rtc()", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L83", - "community": 17, - "norm_label": "rtc()", - "id": "stores_call_rtc" - }, - { - "label": "inCall()", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L90", - "community": 17, - "norm_label": "incall()", - "id": "stores_call_incall" - }, - { - "label": "clog()", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L96", - "community": 17, - "norm_label": "clog()", - "id": "stores_call_clog" - }, - { - "label": "fireRingCancel()", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L102", - "community": 17, - "norm_label": "fireringcancel()", - "id": "stores_call_fireringcancel" - }, - { - "label": "teardown()", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L112", - "community": 17, - "norm_label": "teardown()", - "id": "stores_call_teardown" - }, - { - "label": "logCallToChat()", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L145", - "community": 17, - "norm_label": "logcalltochat()", - "id": "stores_call_logcalltochat" - }, - { - "label": "useCallStore", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L175", - "community": 17, - "norm_label": "usecallstore", - "id": "stores_call_usecallstore" - }, - { - "label": "deviceApproval.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/deviceApproval.ts", - "source_location": "L1", - "community": 29, - "norm_label": "deviceapproval.ts", - "id": "apps_rebreak_native_stores_deviceapproval_ts" - }, - { - "label": "DeviceApprovalRecord", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/deviceApproval.ts", - "source_location": "L21", - "community": 29, - "norm_label": "deviceapprovalrecord", - "id": "stores_deviceapproval_deviceapprovalrecord" - }, - { - "label": "State", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/deviceApproval.ts", - "source_location": "L40", - "community": 29, - "norm_label": "state", - "id": "stores_deviceapproval_state" - }, - { - "label": "useDeviceApprovalStore", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/deviceApproval.ts", - "source_location": "L69", - "community": 29, - "norm_label": "usedeviceapprovalstore", - "id": "stores_deviceapproval_usedeviceapprovalstore" - }, - { - "label": "BlockerStats", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L4", - "community": 18, - "norm_label": "blockerstats", - "id": "stores_blockerstats_blockerstats" - }, - { - "label": "RawStatsResponse", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L23", - "community": 18, - "norm_label": "rawstatsresponse", - "id": "stores_blockerstats_rawstatsresponse" - }, - { - "label": "BlockerStatsState", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L47", - "community": 18, - "norm_label": "blockerstatsstate", - "id": "stores_blockerstats_blockerstatsstate" - }, - { - "label": "asNumber()", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L63", - "community": 18, - "norm_label": "asnumber()", - "id": "stores_blockerstats_asnumber" - }, - { - "label": "normalizeStats()", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L67", - "community": 18, - "norm_label": "normalizestats()", - "id": "stores_blockerstats_normalizestats" - }, - { - "label": "useBlockerStatsStore", - "file_type": "code", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L108", - "community": 18, - "norm_label": "useblockerstatsstore", - "id": "stores_blockerstats_useblockerstatsstore" - }, - { - "label": "PKPushRegistry", - "file_type": "code", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L16", - "community": 46, - "norm_label": "pkpushregistry", - "id": "pkpushregistry" - }, - { - "label": "PKPushRegistryDelegate", - "file_type": "code", - "source_file": "", - "source_location": "", - "community": 46, - "norm_label": "pkpushregistrydelegate", - "id": "pkpushregistrydelegate" - }, - { - "label": "PKPushCredentials", - "file_type": "code", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L98", - "community": 46, - "norm_label": "pkpushcredentials", - "id": "pkpushcredentials" - }, - { - "label": "PKPushType", - "file_type": "code", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L98", - "community": 46, - "norm_label": "pkpushtype", - "id": "pkpushtype" - }, - { - "label": "PKPushPayload", - "file_type": "code", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L119", - "community": 46, - "norm_label": "pkpushpayload", - "id": "pkpushpayload" - }, - { - "label": ".callIdToUuid()", - "file_type": "code", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L162", - "community": 46, - "norm_label": ".callidtouuid()", - "id": "rebreak_appdelegate_appdelegate_callidtouuid" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L162", - "community": 46, - "norm_label": "string", - "id": "apps_rebreak_native_ios_rebreak_appdelegate_swift_string" - }, - { - "label": "renderWithMentions()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L49", - "community": 53, - "norm_label": "renderwithmentions()", - "id": "components_postcard_renderwithmentions" - }, - { - "label": "DeviceApprovalIncomingSheet.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L1", - "community": 29, - "norm_label": "deviceapprovalincomingsheet.tsx", - "id": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx" - }, - { - "label": "UserDevice", - "file_type": "code", - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L13", - "community": 29, - "norm_label": "userdevice", - "id": "components_deviceapprovalincomingsheet_userdevice" - }, - { - "label": "platformIcon()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L25", - "community": 29, - "norm_label": "platformicon()", - "id": "components_deviceapprovalincomingsheet_platformicon" - }, - { - "label": "DeviceApprovalPendingSheet.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", - "source_location": "L1", - "community": 29, - "norm_label": "deviceapprovalpendingsheet.tsx", - "id": "apps_rebreak_native_components_deviceapprovalpendingsheet_tsx" - }, - { - "label": "MILESTONES", - "file_type": "code", - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L14", - "community": 18, - "norm_label": "milestones", - "id": "components_digamilestonemodal_milestones" - }, - { - "label": "storageKey()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L16", - "community": 18, - "norm_label": "storagekey()", - "id": "components_digamilestonemodal_storagekey" - }, - { - "label": "DiGaMilestoneModal()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L22", - "community": 18, - "norm_label": "digamilestonemodal()", - "id": "components_digamilestonemodal_digamilestonemodal" - }, - { - "label": "VoiceRecordingBar.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L1", - "community": 286, - "norm_label": "voicerecordingbar.tsx", - "id": "apps_rebreak_native_components_chat_voicerecordingbar_tsx" - }, - { - "label": "formatVoiceDuration()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L6", - "community": 286, - "norm_label": "formatvoiceduration()", - "id": "chat_voicerecordingbar_formatvoiceduration" - }, - { - "label": "VoiceBars()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L12", - "community": 286, - "norm_label": "voicebars()", - "id": "chat_voicerecordingbar_voicebars" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L47", - "community": 286, - "norm_label": "props", - "id": "chat_voicerecordingbar_props" - }, - { - "label": "VoiceRecordingBar()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L59", - "community": 286, - "norm_label": "voicerecordingbar()", - "id": "chat_voicerecordingbar_voicerecordingbar" - }, - { - "label": "styles", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L94", - "community": 286, - "norm_label": "styles", - "id": "chat_voicerecordingbar_styles" - }, - { - "label": "TypingBubble.tsx", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", - "source_location": "L1", - "community": 17, - "norm_label": "typingbubble.tsx", - "id": "apps_rebreak_native_components_chat_typingbubble_tsx" - }, - { - "label": "WaveDots()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", - "source_location": "L15", - "community": 17, - "norm_label": "wavedots()", - "id": "chat_typingbubble_wavedots" - }, - { - "label": "TypingBubble()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", - "source_location": "L52", - "community": 17, - "norm_label": "typingbubble()", - "id": "chat_typingbubble_typingbubble" - }, - { - "label": "styles", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", - "source_location": "L83", - "community": 17, - "norm_label": "styles", - "id": "chat_typingbubble_styles" - }, - { - "label": "fmtSec()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L19", - "community": 17, - "norm_label": "fmtsec()", - "id": "chat_chatbubble_fmtsec" - }, - { - "label": "VoiceNoteBubble()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L27", - "community": 17, - "norm_label": "voicenotebubble()", - "id": "chat_chatbubble_voicenotebubble" - }, - { - "label": "CallNoteRow()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L233", - "community": 17, - "norm_label": "callnoterow()", - "id": "chat_chatbubble_callnoterow" - }, - { - "label": "MediaLightbox()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/chat/MediaLightbox.tsx", - "source_location": "L28", - "community": 17, - "norm_label": "medialightbox()", - "id": "chat_medialightbox_medialightbox" - }, - { - "label": "PermissionConfirmSheet()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", - "source_location": "L17", - "community": 18, - "norm_label": "permissionconfirmsheet()", - "id": "onboarding_permissionconfirmsheet_permissionconfirmsheet" - }, - { - "label": "deviceIcon.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/deviceIcon.ts", - "source_location": "L1", - "community": 7, - "norm_label": "deviceicon.ts", - "id": "apps_rebreak_native_components_devices_deviceicon_ts" - }, - { - "label": "ICONS", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/deviceIcon.ts", - "source_location": "L7", - "community": 7, - "norm_label": "icons", - "id": "devices_deviceicon_icons" - }, - { - "label": "deviceImage()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/deviceIcon.ts", - "source_location": "L20", - "community": 7, - "norm_label": "deviceimage()", - "id": "devices_deviceicon_deviceimage" - }, - { - "label": "PairResponse", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L21", - "community": 7, - "norm_label": "pairresponse", - "id": "devices_magicsheet_pairresponse" - }, - { - "label": "MagicDevice", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L27", - "community": 7, - "norm_label": "magicdevice", - "id": "devices_magicsheet_magicdevice" - }, - { - "label": "MagicInfo", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L37", - "community": 7, - "norm_label": "magicinfo", - "id": "devices_magicsheet_magicinfo" - }, - { - "label": "DesktopPlatform", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L46", - "community": 7, - "norm_label": "desktopplatform", - "id": "devices_magicsheet_desktopplatform" - }, - { - "label": "MagicSheet()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L52", - "community": 7, - "norm_label": "magicsheet()", - "id": "devices_magicsheet_magicsheet" - }, - { - "label": "cardStyle()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L392", - "community": 7, - "norm_label": "cardstyle()", - "id": "devices_magicsheet_cardstyle" - }, - { - "label": "SectionTitle()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L401", - "community": 7, - "norm_label": "sectiontitle()", - "id": "devices_magicsheet_sectiontitle" - }, - { - "label": "PrimaryButton()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L419", - "community": 7, - "norm_label": "primarybutton()", - "id": "devices_magicsheet_primarybutton" - }, - { - "label": "PlatformOption()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L456", - "community": 7, - "norm_label": "platformoption()", - "id": "devices_magicsheet_platformoption" - }, - { - "label": "formatRemaining()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L500", - "community": 7, - "norm_label": "formatremaining()", - "id": "devices_magicsheet_formatremaining" - }, - { - "label": "SlotSegment", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", - "source_location": "L14", - "community": 8, - "norm_label": "slotsegment", - "id": "devices_deviceslotdonut_slotsegment" - }, - { - "label": "polar()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", - "source_location": "L16", - "community": 8, - "norm_label": "polar()", - "id": "devices_deviceslotdonut_polar" - }, - { - "label": "arcPath()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", - "source_location": "L21", - "community": 8, - "norm_label": "arcpath()", - "id": "devices_deviceslotdonut_arcpath" - }, - { - "label": "DeviceSlotDonut()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", - "source_location": "L34", - "community": 8, - "norm_label": "deviceslotdonut()", - "id": "devices_deviceslotdonut_deviceslotdonut" - }, - { - "label": "DeviceStatusKind", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", - "source_location": "L5", - "community": 8, - "norm_label": "devicestatuskind", - "id": "devices_devicestatuspill_devicestatuskind" - }, - { - "label": "DeviceStatusPill()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", - "source_location": "L14", - "community": 8, - "norm_label": "devicestatuspill()", - "id": "devices_devicestatuspill_devicestatuspill" - }, - { - "label": "DeviceDistributionBar()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", - "source_location": "L12", - "community": 8, - "norm_label": "devicedistributionbar()", - "id": "devices_devicedistributionbar_devicedistributionbar" - }, - { - "label": "Legend()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", - "source_location": "L89", - "community": 8, - "norm_label": "legend()", - "id": "devices_devicedistributionbar_legend" - }, - { - "label": "DeviceDetail", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L15", - "community": 8, - "norm_label": "devicedetail", - "id": "devices_devicedetailsheet_devicedetail" - }, - { - "label": "fmtDate()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L26", - "community": 8, - "norm_label": "fmtdate()", - "id": "devices_devicedetailsheet_fmtdate" - }, - { - "label": "fmtLastSeen()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L34", - "community": 8, - "norm_label": "fmtlastseen()", - "id": "devices_devicedetailsheet_fmtlastseen" - }, - { - "label": "InfoRow()", - "file_type": "code", - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L224", - "community": 8, - "norm_label": "inforow()", - "id": "devices_devicedetailsheet_inforow" - }, - { - "label": "ProtectionCoverageData", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useProfileData.ts", - "source_location": "L171", - "community": 27, - "norm_label": "protectioncoveragedata", - "id": "hooks_useprofiledata_protectioncoveragedata" - }, - { - "label": "useProtectionCoverage()", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useProfileData.ts", - "source_location": "L179", - "community": 27, - "norm_label": "useprotectioncoverage()", - "id": "hooks_useprofiledata_useprotectioncoverage" - }, - { - "label": "pendingRemoval", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", - "source_location": "L30", - "community": 750, - "norm_label": "pendingremoval", - "id": "hooks_useonlineusers_pendingremoval" - }, - { - "label": "clearPendingRemovals()", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", - "source_location": "L32", - "community": 750, - "norm_label": "clearpendingremovals()", - "id": "hooks_useonlineusers_clearpendingremovals" - }, - { - "label": "applyRawPresence()", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", - "source_location": "L42", - "community": 750, - "norm_label": "applyrawpresence()", - "id": "hooks_useonlineusers_applyrawpresence" - }, - { - "label": "useDmTyping()", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useDmTyping.ts", - "source_location": "L26", - "community": 17, - "norm_label": "usedmtyping()", - "id": "hooks_usedmtyping_usedmtyping" - }, - { - "label": "lastRegisteredVoipToken", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/usePushTokenRegistration.ts", - "source_location": "L34", - "community": 29, - "norm_label": "lastregisteredvoiptoken", - "id": "hooks_usepushtokenregistration_lastregisteredvoiptoken" - }, - { - "label": "fetchVoipToken()", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/usePushTokenRegistration.ts", - "source_location": "L37", - "community": 29, - "norm_label": "fetchvoiptoken()", - "id": "hooks_usepushtokenregistration_fetchvoiptoken" - }, - { - "label": "useCallKeepEvents()", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", - "source_location": "L30", - "community": 17, - "norm_label": "usecallkeepevents()", - "id": "hooks_usecallkeepevents_usecallkeepevents" - }, - { - "label": "isProtectionActive()", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", - "source_location": "L16", - "community": 18, - "norm_label": "isprotectionactive()", - "id": "hooks_useprotectionstate_isprotectionactive" - }, - { - "label": "resolveEventSource()", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", - "source_location": "L20", - "community": 18, - "norm_label": "resolveeventsource()", - "id": "hooks_useprotectionstate_resolveeventsource" - }, - { - "label": "useUserDevicesRealtime.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/hooks/useUserDevicesRealtime.ts", - "source_location": "L1", - "community": 7, - "norm_label": "useuserdevicesrealtime.ts", - "id": "apps_rebreak_native_hooks_useuserdevicesrealtime_ts" - }, - { - "label": "google-services.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L1", - "community": 610, - "norm_label": "google-services.json", - "id": "apps_rebreak_native_android_app_google_services_json" - }, - { - "label": "project_info", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L2", - "community": 610, - "norm_label": "project_info", - "id": "app_google_services_project_info" - }, - { - "label": "project_number", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L3", - "community": 610, - "norm_label": "project_number", - "id": "app_google_services_project_info_project_number" - }, - { - "label": "project_id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L4", - "community": 610, - "norm_label": "project_id", - "id": "app_google_services_project_info_project_id" - }, - { - "label": "storage_bucket", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L5", - "community": 610, - "norm_label": "storage_bucket", - "id": "app_google_services_project_info_storage_bucket" - }, - { - "label": "client", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L7", - "community": 610, - "norm_label": "client", - "id": "app_google_services_client" - }, - { - "label": "configuration_version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L47", - "community": 610, - "norm_label": "configuration_version", - "id": "app_google_services_configuration_version" - }, - { - "label": "compile_commands.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/tools/debug/x86/compile_commands.json", - "source_location": "L1", - "community": 852, - "norm_label": "compile_commands.json", - "id": "apps_rebreak_native_android_app_cxx_tools_debug_x86_compile_commands_json" - }, - { - "label": "compile_commands.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/tools/debug/x86_64/compile_commands.json", - "source_location": "L1", - "community": 853, - "norm_label": "compile_commands.json", - "id": "apps_rebreak_native_android_app_cxx_tools_debug_x86_64_compile_commands_json" - }, - { - "label": "cmakeFiles-v1-a8c19e26be3272af68dc.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L1", - "community": 580, - "norm_label": "cmakefiles-v1-a8c19e26be3272af68dc.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_a8c19e26be3272af68dc_json" - }, - { - "label": "inputs", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L2", - "community": 580, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_inputs" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L334", - "community": 580, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L335", - "community": 580, - "norm_label": "paths", - "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L337", - "community": 580, - "norm_label": "build", - "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L338", - "community": 580, - "norm_label": "source", - "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L340", - "community": 580, - "norm_label": "version", - "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L342", - "community": 580, - "norm_label": "major", - "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L343", - "community": 580, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version_minor" - }, - { - "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L1", - "community": 345, - "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-bb82e9ba1bf9429e5b4f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L2", - "community": 345, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L26", - "community": 345, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L27", - "community": 345, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L29", - "community": 345, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L38", - "community": 345, - "norm_label": "files", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L43", - "community": 345, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L86", - "community": 345, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L201", - "community": 345, - "norm_label": "id", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L202", - "community": 345, - "norm_label": "name", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L203", - "community": 345, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L205", - "community": 345, - "norm_label": "build", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L206", - "community": 345, - "norm_label": "source", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L208", - "community": 345, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L224", - "community": 345, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L269", - "community": 345, - "norm_label": "type", - "id": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_type" - }, - { - "label": "target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L1", - "community": 202, - "norm_label": "target-react_codegen_rnkc-relwithdebinfo-bd189f0fd15b94dd9ec1.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L2", - "community": 202, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L8", - "community": 202, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L9", - "community": 202, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L11", - "community": 202, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L21", - "community": 202, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L26", - "community": 202, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L75", - "community": 202, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L221", - "community": 202, - "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L222", - "community": 202, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L224", - "community": 202, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L250", - "community": 202, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L251", - "community": 202, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L253", - "community": 202, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L256", - "community": 202, - "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L257", - "community": 202, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L258", - "community": 202, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L260", - "community": 202, - "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L261", - "community": 202, - "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L263", - "community": 202, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L287", - "community": 202, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L380", - "community": 202, - "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_type" - }, - { - "label": "target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L1", - "community": 154, - "norm_label": "target-react-native-mmkv-relwithdebinfo-9c69e7654f71fd767275.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L2", - "community": 154, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L8", - "community": 154, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L9", - "community": 154, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L11", - "community": 154, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L17", - "community": 154, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L21", - "community": 154, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L52", - "community": 154, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L161", - "community": 154, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L172", - "community": 154, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L173", - "community": 154, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L175", - "community": 154, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L217", - "community": 154, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L218", - "community": 154, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L220", - "community": 154, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L223", - "community": 154, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L224", - "community": 154, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L225", - "community": 154, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L227", - "community": 154, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L228", - "community": 154, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L230", - "community": 154, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L255", - "community": 154, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L318", - "community": 154, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_type" - }, - { - "label": "target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L1", - "community": 170, - "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-41730a4c1fe95cbae3d7.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L2", - "community": 170, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L8", - "community": 170, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L9", - "community": 170, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L11", - "community": 170, - "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L20", - "community": 170, - "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L25", - "community": 170, - "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L74", - "community": 170, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L214", - "community": 170, - "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L215", - "community": 170, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L217", - "community": 170, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L243", - "community": 170, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L244", - "community": 170, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L246", - "community": 170, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L249", - "community": 170, - "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L250", - "community": 170, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L251", - "community": 170, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L253", - "community": 170, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L254", - "community": 170, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L256", - "community": 170, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L274", - "community": 170, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L331", - "community": 170, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_type" - }, - { - "label": "target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L1", - "community": 409, - "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-9bde2ac1197f26ca02ee.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L2", - "community": 409, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L26", - "community": 409, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L27", - "community": 409, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L29", - "community": 409, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L38", - "community": 409, - "norm_label": "files", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L43", - "community": 409, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L86", - "community": 409, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L201", - "community": 409, - "norm_label": "id", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L202", - "community": 409, - "norm_label": "name", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L203", - "community": 409, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L205", - "community": 409, - "norm_label": "build", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L206", - "community": 409, - "norm_label": "source", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L208", - "community": 409, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L224", - "community": 409, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L269", - "community": 409, - "norm_label": "type", - "id": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_type" - }, - { - "label": "target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L1", - "community": 210, - "norm_label": "target-react_codegen_rnpicker-relwithdebinfo-035239ade8749d351f27.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L2", - "community": 210, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L8", - "community": 210, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L9", - "community": 210, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L11", - "community": 210, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L19", - "community": 210, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L23", - "community": 210, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L60", - "community": 210, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L188", - "community": 210, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L189", - "community": 210, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L191", - "community": 210, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L217", - "community": 210, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L218", - "community": 210, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L220", - "community": 210, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L223", - "community": 210, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L224", - "community": 210, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L225", - "community": 210, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L227", - "community": 210, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L228", - "community": 210, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L230", - "community": 210, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L252", - "community": 210, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L333", - "community": 210, - "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_type" - }, - { - "label": "target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L1", - "community": 193, - "norm_label": "target-react_codegen_rncslider-relwithdebinfo-e6e3efe80fe9023afafe.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L2", - "community": 193, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L8", - "community": 193, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L9", - "community": 193, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L11", - "community": 193, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L20", - "community": 193, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L25", - "community": 193, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L68", - "community": 193, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L196", - "community": 193, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L197", - "community": 193, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L199", - "community": 193, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L225", - "community": 193, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L226", - "community": 193, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L228", - "community": 193, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L231", - "community": 193, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L232", - "community": 193, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L233", - "community": 193, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L235", - "community": 193, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L236", - "community": 193, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L238", - "community": 193, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L256", - "community": 193, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L313", - "community": 193, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_type" - }, - { - "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L1", - "community": 172, - "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-a2e90671f19b0eec910e.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L2", - "community": 172, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L8", - "community": 172, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L9", - "community": 172, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L11", - "community": 172, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L20", - "community": 172, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L25", - "community": 172, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L74", - "community": 172, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L214", - "community": 172, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L215", - "community": 172, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L217", - "community": 172, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L243", - "community": 172, - "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L244", - "community": 172, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L246", - "community": 172, - "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L249", - "community": 172, - "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L250", - "community": 172, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L251", - "community": 172, - "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L253", - "community": 172, - "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L254", - "community": 172, - "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L256", - "community": 172, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L274", - "community": 172, - "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L331", - "community": 172, - "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_type" - }, - { - "label": "cache-v2-8648f163dc6cddd234fb.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", - "source_location": "L1", - "community": 625, - "norm_label": "cache-v2-8648f163dc6cddd234fb.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_8648f163dc6cddd234fb_json" - }, - { - "label": "entries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", - "source_location": "L2", - "community": 625, - "norm_label": "entries", - "id": "reply_cache_v2_8648f163dc6cddd234fb_entries" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", - "source_location": "L1637", - "community": 625, - "norm_label": "kind", - "id": "reply_cache_v2_8648f163dc6cddd234fb_kind" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", - "source_location": "L1638", - "community": 625, - "norm_label": "version", - "id": "reply_cache_v2_8648f163dc6cddd234fb_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", - "source_location": "L1640", - "community": 625, - "norm_label": "major", - "id": "reply_cache_v2_8648f163dc6cddd234fb_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", - "source_location": "L1641", - "community": 625, - "norm_label": "minor", - "id": "reply_cache_v2_8648f163dc6cddd234fb_version_minor" - }, - { - "label": "target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L1", - "community": 351, - "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-2d5f9eb4b8201bc08181.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L2", - "community": 351, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L26", - "community": 351, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L27", - "community": 351, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L29", - "community": 351, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L38", - "community": 351, - "norm_label": "files", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L43", - "community": 351, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L86", - "community": 351, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L201", - "community": 351, - "norm_label": "id", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L202", - "community": 351, - "norm_label": "name", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L203", - "community": 351, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L205", - "community": 351, - "norm_label": "build", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L206", - "community": 351, - "norm_label": "source", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L208", - "community": 351, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L224", - "community": 351, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L269", - "community": 351, - "norm_label": "type", - "id": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_type" - }, - { - "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L1", - "community": 342, - "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-0f66f383ac1ca074bbef.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L2", - "community": 342, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L26", - "community": 342, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L27", - "community": 342, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L29", - "community": 342, - "norm_label": "commands", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L38", - "community": 342, - "norm_label": "files", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L43", - "community": 342, - "norm_label": "nodes", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L86", - "community": 342, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L201", - "community": 342, - "norm_label": "id", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L202", - "community": 342, - "norm_label": "name", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L203", - "community": 342, - "norm_label": "paths", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L205", - "community": 342, - "norm_label": "build", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L206", - "community": 342, - "norm_label": "source", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L208", - "community": 342, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L224", - "community": 342, - "norm_label": "sources", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L269", - "community": 342, - "norm_label": "type", - "id": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_type" - }, - { - "label": "target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L1", - "community": 398, - "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-5cbc59763d41df54dfc2.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L2", - "community": 398, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L26", - "community": 398, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L27", - "community": 398, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L29", - "community": 398, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L38", - "community": 398, - "norm_label": "files", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L43", - "community": 398, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L86", - "community": 398, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L201", - "community": 398, - "norm_label": "id", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L202", - "community": 398, - "norm_label": "name", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L203", - "community": 398, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L205", - "community": 398, - "norm_label": "build", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L206", - "community": 398, - "norm_label": "source", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L208", - "community": 398, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L224", - "community": 398, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L269", - "community": 398, - "norm_label": "type", - "id": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_type" - }, - { - "label": "target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L1", - "community": 229, - "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-09d8b25328ee8de9b7e2.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L2", - "community": 229, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L8", - "community": 229, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L9", - "community": 229, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L11", - "community": 229, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L20", - "community": 229, - "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L25", - "community": 229, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L86", - "community": 229, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L232", - "community": 229, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L233", - "community": 229, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L235", - "community": 229, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L261", - "community": 229, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L262", - "community": 229, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L264", - "community": 229, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L267", - "community": 229, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L268", - "community": 229, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L269", - "community": 229, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L271", - "community": 229, - "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L272", - "community": 229, - "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L274", - "community": 229, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L294", - "community": 229, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L363", - "community": 229, - "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_type" - }, - { - "label": "cmake", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L2", - "community": 37, - "norm_label": "cmake", - "id": "reply_index_2026_06_09t17_33_51_0850_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L4", - "community": 37, - "norm_label": "generator", - "id": "reply_index_2026_06_09t17_33_51_0850_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L6", - "community": 37, - "norm_label": "multiconfig", - "id": "reply_index_2026_06_09t17_33_51_0850_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L7", - "community": 37, - "norm_label": "name", - "id": "reply_index_2026_06_09t17_33_51_0850_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L9", - "community": 37, - "norm_label": "paths", - "id": "reply_index_2026_06_09t17_33_51_0850_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L12", - "community": 37, - "norm_label": "cpack", - "id": "reply_index_2026_06_09t17_33_51_0850_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L13", - "community": 37, - "norm_label": "ctest", - "id": "reply_index_2026_06_09t17_33_51_0850_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L14", - "community": 37, - "norm_label": "root", - "id": "reply_index_2026_06_09t17_33_51_0850_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L16", - "community": 37, - "norm_label": "version", - "id": "reply_index_2026_06_09t17_33_51_0850_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L18", - "community": 37, - "norm_label": "isdirty", - "id": "reply_index_2026_06_09t17_33_51_0850_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L19", - "community": 37, - "norm_label": "major", - "id": "reply_index_2026_06_09t17_33_51_0850_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L20", - "community": 37, - "norm_label": "minor", - "id": "reply_index_2026_06_09t17_33_51_0850_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L21", - "community": 37, - "norm_label": "patch", - "id": "reply_index_2026_06_09t17_33_51_0850_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L22", - "community": 37, - "norm_label": "string", - "id": "reply_index_2026_06_09t17_33_51_0850_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L23", - "community": 37, - "norm_label": "suffix", - "id": "reply_index_2026_06_09t17_33_51_0850_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L26", - "community": 37, - "norm_label": "objects", - "id": "reply_index_2026_06_09t17_33_51_0850_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L56", - "community": 37, - "norm_label": "reply", - "id": "reply_index_2026_06_09t17_33_51_0850_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L58", - "community": 37, - "norm_label": "client-agp", - "id": "reply_index_2026_06_09t17_33_51_0850_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L60", - "community": 37, - "norm_label": "cache-v2", - "id": "reply_index_2026_06_09t17_33_51_0850_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L62", - "community": 37, - "norm_label": "jsonfile", - "id": "reply_index_2026_06_09t17_33_51_0850_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L63", - "community": 37, - "norm_label": "kind", - "id": "reply_index_2026_06_09t17_33_51_0850_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L70", - "community": 37, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_06_09t17_33_51_0850_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L80", - "community": 37, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_06_09t17_33_51_0850_client_agp_codemodel_v2" - }, - { - "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L1", - "community": 350, - "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-d65a426276bffa7e7673.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L2", - "community": 350, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L26", - "community": 350, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L27", - "community": 350, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L29", - "community": 350, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L38", - "community": 350, - "norm_label": "files", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L43", - "community": 350, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L86", - "community": 350, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L201", - "community": 350, - "norm_label": "id", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L202", - "community": 350, - "norm_label": "name", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L203", - "community": 350, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L205", - "community": 350, - "norm_label": "build", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L206", - "community": 350, - "norm_label": "source", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L208", - "community": 350, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L224", - "community": 350, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L269", - "community": 350, - "norm_label": "type", - "id": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_type" - }, - { - "label": "codemodel-v2-35ffecf8081b17d4bb74.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L1", - "community": 585, - "norm_label": "codemodel-v2-35ffecf8081b17d4bb74.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_35ffecf8081b17d4bb74_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L2", - "community": 585, - "norm_label": "configurations", - "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_configurations" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L508", - "community": 585, - "norm_label": "kind", - "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L509", - "community": 585, - "norm_label": "paths", - "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L511", - "community": 585, - "norm_label": "build", - "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L512", - "community": 585, - "norm_label": "source", - "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L514", - "community": 585, - "norm_label": "version", - "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L516", - "community": 585, - "norm_label": "major", - "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L517", - "community": 585, - "norm_label": "minor", - "id": "reply_codemodel_v2_35ffecf8081b17d4bb74_version_minor" - }, - { - "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L1", - "community": 402, - "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-1ffa26502c77c9d186df.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L2", - "community": 402, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L26", - "community": 402, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L27", - "community": 402, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L29", - "community": 402, - "norm_label": "commands", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L38", - "community": 402, - "norm_label": "files", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L43", - "community": 402, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L86", - "community": 402, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L201", - "community": 402, - "norm_label": "id", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L202", - "community": 402, - "norm_label": "name", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L203", - "community": 402, - "norm_label": "paths", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L205", - "community": 402, - "norm_label": "build", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L206", - "community": 402, - "norm_label": "source", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L208", - "community": 402, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L224", - "community": 402, - "norm_label": "sources", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L269", - "community": 402, - "norm_label": "type", - "id": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_type" - }, - { - "label": "target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L1", - "community": 218, - "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-1b18659d65735f6230bf.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L2", - "community": 218, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L8", - "community": 218, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L9", - "community": 218, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L11", - "community": 218, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L21", - "community": 218, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L26", - "community": 218, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L75", - "community": 218, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L224", - "community": 218, - "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L225", - "community": 218, - "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L227", - "community": 218, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L253", - "community": 218, - "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L254", - "community": 218, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L256", - "community": 218, - "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L259", - "community": 218, - "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L260", - "community": 218, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L261", - "community": 218, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L263", - "community": 218, - "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L264", - "community": 218, - "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L266", - "community": 218, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L293", - "community": 218, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L404", - "community": 218, - "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_type" - }, - { - "label": "target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L1", - "community": 141, - "norm_label": "target-appmodules-relwithdebinfo-90f1d67427533d3ecf21.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L2", - "community": 141, - "norm_label": "artifacts", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L8", - "community": 141, - "norm_label": "backtrace", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L9", - "community": 141, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L11", - "community": 141, - "norm_label": "commands", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L21", - "community": 141, - "norm_label": "files", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L34", - "community": 141, - "norm_label": "nodes", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L156", - "community": 141, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L481", - "community": 141, - "norm_label": "dependencies", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L552", - "community": 141, - "norm_label": "id", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L553", - "community": 141, - "norm_label": "link", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L555", - "community": 141, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L637", - "community": 141, - "norm_label": "language", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L638", - "community": 141, - "norm_label": "sysroot", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L640", - "community": 141, - "norm_label": "path", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L643", - "community": 141, - "norm_label": "name", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L644", - "community": 141, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L645", - "community": 141, - "norm_label": "paths", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L647", - "community": 141, - "norm_label": "build", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L648", - "community": 141, - "norm_label": "source", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L650", - "community": 141, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L723", - "community": 141, - "norm_label": "sources", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L1074", - "community": 141, - "norm_label": "type", - "id": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_type" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L1", - "community": 348, - "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-774dcf0d41483311e403.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L2", - "community": 348, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L26", - "community": 348, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L27", - "community": 348, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L29", - "community": 348, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L38", - "community": 348, - "norm_label": "files", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L43", - "community": 348, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L86", - "community": 348, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L201", - "community": 348, - "norm_label": "id", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L202", - "community": 348, - "norm_label": "name", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L203", - "community": 348, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L205", - "community": 348, - "norm_label": "build", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L206", - "community": 348, - "norm_label": "source", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L208", - "community": 348, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L224", - "community": 348, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L269", - "community": 348, - "norm_label": "type", - "id": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_type" - }, - { - "label": "target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L1", - "community": 381, - "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-d6affdef9367841e3dd4.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L2", - "community": 381, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L26", - "community": 381, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L27", - "community": 381, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L29", - "community": 381, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L38", - "community": 381, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L43", - "community": 381, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L86", - "community": 381, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L201", - "community": 381, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L202", - "community": 381, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L203", - "community": 381, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L205", - "community": 381, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L206", - "community": 381, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L208", - "community": 381, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L224", - "community": 381, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L269", - "community": 381, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" - }, - { - "label": "cache-v2-3b89f69fafffe1536555.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", - "source_location": "L1", - "community": 642, - "norm_label": "cache-v2-3b89f69fafffe1536555.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_3b89f69fafffe1536555_json" - }, - { - "label": "entries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", - "source_location": "L2", - "community": 642, - "norm_label": "entries", - "id": "reply_cache_v2_3b89f69fafffe1536555_entries" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", - "source_location": "L1637", - "community": 642, - "norm_label": "kind", - "id": "reply_cache_v2_3b89f69fafffe1536555_kind" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", - "source_location": "L1638", - "community": 642, - "norm_label": "version", - "id": "reply_cache_v2_3b89f69fafffe1536555_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", - "source_location": "L1640", - "community": 642, - "norm_label": "major", - "id": "reply_cache_v2_3b89f69fafffe1536555_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", - "source_location": "L1641", - "community": 642, - "norm_label": "minor", - "id": "reply_cache_v2_3b89f69fafffe1536555_version_minor" - }, - { - "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L1", - "community": 374, - "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-35735e55a58552e74540.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L2", - "community": 374, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L26", - "community": 374, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L27", - "community": 374, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L29", - "community": 374, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L38", - "community": 374, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L43", - "community": 374, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L86", - "community": 374, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L201", - "community": 374, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L202", - "community": 374, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L203", - "community": 374, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L205", - "community": 374, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L206", - "community": 374, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L208", - "community": 374, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L224", - "community": 374, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L269", - "community": 374, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" - }, - { - "label": "target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L1", - "community": 382, - "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-3a82b655e8d5b3c1b8d3.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L2", - "community": 382, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L26", - "community": 382, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L27", - "community": 382, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L29", - "community": 382, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L38", - "community": 382, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L43", - "community": 382, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L86", - "community": 382, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L201", - "community": 382, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L202", - "community": 382, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L203", - "community": 382, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L205", - "community": 382, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L206", - "community": 382, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L208", - "community": 382, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L224", - "community": 382, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L269", - "community": 382, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" - }, - { - "label": "target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L1", - "community": 142, - "norm_label": "target-appmodules-relwithdebinfo-b884683c9c9cafb1595f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L2", - "community": 142, - "norm_label": "artifacts", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L8", - "community": 142, - "norm_label": "backtrace", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L9", - "community": 142, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L11", - "community": 142, - "norm_label": "commands", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L21", - "community": 142, - "norm_label": "files", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L34", - "community": 142, - "norm_label": "nodes", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L156", - "community": 142, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L481", - "community": 142, - "norm_label": "dependencies", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L552", - "community": 142, - "norm_label": "id", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L553", - "community": 142, - "norm_label": "link", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L555", - "community": 142, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L637", - "community": 142, - "norm_label": "language", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L638", - "community": 142, - "norm_label": "sysroot", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L640", - "community": 142, - "norm_label": "path", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L643", - "community": 142, - "norm_label": "name", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L644", - "community": 142, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L645", - "community": 142, - "norm_label": "paths", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L647", - "community": 142, - "norm_label": "build", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L648", - "community": 142, - "norm_label": "source", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L650", - "community": 142, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L723", - "community": 142, - "norm_label": "sources", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L1074", - "community": 142, - "norm_label": "type", - "id": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_type" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L1", - "community": 377, - "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-b5a7f3ec52e98de02751.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L2", - "community": 377, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L26", - "community": 377, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L27", - "community": 377, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L29", - "community": 377, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L38", - "community": 377, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L43", - "community": 377, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L86", - "community": 377, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L201", - "community": 377, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L202", - "community": 377, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L203", - "community": 377, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L205", - "community": 377, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L206", - "community": 377, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L208", - "community": 377, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L224", - "community": 377, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L269", - "community": 377, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" - }, - { - "label": "cmakeFiles-v1-485a9b36f12a59f57849.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L1", - "community": 547, - "norm_label": "cmakefiles-v1-485a9b36f12a59f57849.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_485a9b36f12a59f57849_json" - }, - { - "label": "inputs", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L2", - "community": 547, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_inputs" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L334", - "community": 547, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L335", - "community": 547, - "norm_label": "paths", - "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L337", - "community": 547, - "norm_label": "build", - "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L338", - "community": 547, - "norm_label": "source", - "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L340", - "community": 547, - "norm_label": "version", - "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L342", - "community": 547, - "norm_label": "major", - "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L343", - "community": 547, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_485a9b36f12a59f57849_version_minor" - }, - { - "label": "index-2026-06-09T17-33-53-0108.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L1", - "community": 119, - "norm_label": "index-2026-06-09t17-33-53-0108.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_06_09t17_33_53_0108_json" - }, - { - "label": "cmake", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L2", - "community": 119, - "norm_label": "cmake", - "id": "reply_index_2026_06_09t17_33_53_0108_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L4", - "community": 119, - "norm_label": "generator", - "id": "reply_index_2026_06_09t17_33_53_0108_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L6", - "community": 119, - "norm_label": "multiconfig", - "id": "reply_index_2026_06_09t17_33_53_0108_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L7", - "community": 119, - "norm_label": "name", - "id": "reply_index_2026_06_09t17_33_53_0108_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L9", - "community": 119, - "norm_label": "paths", - "id": "reply_index_2026_06_09t17_33_53_0108_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L12", - "community": 119, - "norm_label": "cpack", - "id": "reply_index_2026_06_09t17_33_53_0108_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L13", - "community": 119, - "norm_label": "ctest", - "id": "reply_index_2026_06_09t17_33_53_0108_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L14", - "community": 119, - "norm_label": "root", - "id": "reply_index_2026_06_09t17_33_53_0108_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L16", - "community": 119, - "norm_label": "version", - "id": "reply_index_2026_06_09t17_33_53_0108_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L18", - "community": 119, - "norm_label": "isdirty", - "id": "reply_index_2026_06_09t17_33_53_0108_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L19", - "community": 119, - "norm_label": "major", - "id": "reply_index_2026_06_09t17_33_53_0108_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L20", - "community": 119, - "norm_label": "minor", - "id": "reply_index_2026_06_09t17_33_53_0108_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L21", - "community": 119, - "norm_label": "patch", - "id": "reply_index_2026_06_09t17_33_53_0108_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L22", - "community": 119, - "norm_label": "string", - "id": "reply_index_2026_06_09t17_33_53_0108_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L23", - "community": 119, - "norm_label": "suffix", - "id": "reply_index_2026_06_09t17_33_53_0108_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L26", - "community": 119, - "norm_label": "objects", - "id": "reply_index_2026_06_09t17_33_53_0108_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L56", - "community": 119, - "norm_label": "reply", - "id": "reply_index_2026_06_09t17_33_53_0108_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L58", - "community": 119, - "norm_label": "client-agp", - "id": "reply_index_2026_06_09t17_33_53_0108_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L60", - "community": 119, - "norm_label": "cache-v2", - "id": "reply_index_2026_06_09t17_33_53_0108_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L62", - "community": 119, - "norm_label": "jsonfile", - "id": "reply_index_2026_06_09t17_33_53_0108_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L63", - "community": 119, - "norm_label": "kind", - "id": "reply_index_2026_06_09t17_33_53_0108_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L70", - "community": 119, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_06_09t17_33_53_0108_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L80", - "community": 119, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_06_09t17_33_53_0108_client_agp_codemodel_v2" - }, - { - "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L1", - "community": 252, - "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-756e8dab5fe64dee57e9.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L2", - "community": 252, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L8", - "community": 252, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L9", - "community": 252, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L11", - "community": 252, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L20", - "community": 252, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L25", - "community": 252, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L74", - "community": 252, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L214", - "community": 252, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L215", - "community": 252, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L217", - "community": 252, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L243", - "community": 252, - "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L244", - "community": 252, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L246", - "community": 252, - "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L249", - "community": 252, - "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L250", - "community": 252, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L251", - "community": 252, - "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L253", - "community": 252, - "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L254", - "community": 252, - "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L256", - "community": 252, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L274", - "community": 252, - "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L331", - "community": 252, - "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_type" - }, - { - "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L1", - "community": 378, - "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-624c0f7309976a111d6b.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L2", - "community": 378, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L26", - "community": 378, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L27", - "community": 378, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L29", - "community": 378, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L38", - "community": 378, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L43", - "community": 378, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L86", - "community": 378, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L201", - "community": 378, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L202", - "community": 378, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L203", - "community": 378, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L205", - "community": 378, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L206", - "community": 378, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L208", - "community": 378, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L224", - "community": 378, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L269", - "community": 378, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" - }, - { - "label": "target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L1", - "community": 224, - "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-d795b03caa27679dfe6b.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L2", - "community": 224, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L8", - "community": 224, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L9", - "community": 224, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L11", - "community": 224, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L21", - "community": 224, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L26", - "community": 224, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L75", - "community": 224, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L224", - "community": 224, - "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L225", - "community": 224, - "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L227", - "community": 224, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L253", - "community": 224, - "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L254", - "community": 224, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L256", - "community": 224, - "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L259", - "community": 224, - "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L260", - "community": 224, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L261", - "community": 224, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L263", - "community": 224, - "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L264", - "community": 224, - "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L266", - "community": 224, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L293", - "community": 224, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L404", - "community": 224, - "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_type" - }, - { - "label": "target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L1", - "community": 373, - "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-3046d2f30176023af473.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L2", - "community": 373, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L26", - "community": 373, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L27", - "community": 373, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L29", - "community": 373, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L38", - "community": 373, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L43", - "community": 373, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L86", - "community": 373, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L201", - "community": 373, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L202", - "community": 373, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L203", - "community": 373, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L205", - "community": 373, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L206", - "community": 373, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L208", - "community": 373, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L224", - "community": 373, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L269", - "community": 373, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" - }, - { - "label": "target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L1", - "community": 188, - "norm_label": "target-react_codegen_rncslider-relwithdebinfo-023b0f15c1737910854b.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L2", - "community": 188, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L8", - "community": 188, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L9", - "community": 188, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L11", - "community": 188, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L20", - "community": 188, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L25", - "community": 188, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L68", - "community": 188, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L196", - "community": 188, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L197", - "community": 188, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L199", - "community": 188, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L225", - "community": 188, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L226", - "community": 188, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L228", - "community": 188, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L231", - "community": 188, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L232", - "community": 188, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L233", - "community": 188, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L235", - "community": 188, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L236", - "community": 188, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L238", - "community": 188, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L256", - "community": 188, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L313", - "community": 188, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_type" - }, - { - "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L1", - "community": 368, - "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-761aa90ee7b8f54ed322.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L2", - "community": 368, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L26", - "community": 368, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L27", - "community": 368, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L29", - "community": 368, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L38", - "community": 368, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L43", - "community": 368, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L86", - "community": 368, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L201", - "community": 368, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L202", - "community": 368, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L203", - "community": 368, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L205", - "community": 368, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L206", - "community": 368, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L208", - "community": 368, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L224", - "community": 368, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L269", - "community": 368, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" - }, - { - "label": "codemodel-v2-643ed375e1d78f8a2f97.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L1", - "community": 588, - "norm_label": "codemodel-v2-643ed375e1d78f8a2f97.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_643ed375e1d78f8a2f97_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L2", - "community": 588, - "norm_label": "configurations", - "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_configurations" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L508", - "community": 588, - "norm_label": "kind", - "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L509", - "community": 588, - "norm_label": "paths", - "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L511", - "community": 588, - "norm_label": "build", - "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L512", - "community": 588, - "norm_label": "source", - "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L514", - "community": 588, - "norm_label": "version", - "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L516", - "community": 588, - "norm_label": "major", - "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L517", - "community": 588, - "norm_label": "minor", - "id": "reply_codemodel_v2_643ed375e1d78f8a2f97_version_minor" - }, - { - "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L1", - "community": 370, - "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-6873ea71be6dda08995d.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L2", - "community": 370, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L26", - "community": 370, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L27", - "community": 370, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L29", - "community": 370, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L38", - "community": 370, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L43", - "community": 370, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L86", - "community": 370, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L201", - "community": 370, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L202", - "community": 370, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L203", - "community": 370, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L205", - "community": 370, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L206", - "community": 370, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L208", - "community": 370, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L224", - "community": 370, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L269", - "community": 370, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" - }, - { - "label": "target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L1", - "community": 149, - "norm_label": "target-react-native-mmkv-relwithdebinfo-3361afac133c048fc79c.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L2", - "community": 149, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L8", - "community": 149, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L9", - "community": 149, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L11", - "community": 149, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L17", - "community": 149, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L21", - "community": 149, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L52", - "community": 149, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L161", - "community": 149, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L172", - "community": 149, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L173", - "community": 149, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L175", - "community": 149, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L217", - "community": 149, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L218", - "community": 149, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L220", - "community": 149, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L223", - "community": 149, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L224", - "community": 149, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L225", - "community": 149, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L227", - "community": 149, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L228", - "community": 149, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L230", - "community": 149, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L255", - "community": 149, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L318", - "community": 149, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_type" - }, - { - "label": "target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L1", - "community": 211, - "norm_label": "target-react_codegen_rnpicker-relwithdebinfo-0eac2fe2559fd7bb5ea3.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L2", - "community": 211, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L8", - "community": 211, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L9", - "community": 211, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L11", - "community": 211, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L19", - "community": 211, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L23", - "community": 211, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L60", - "community": 211, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L188", - "community": 211, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L189", - "community": 211, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L191", - "community": 211, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L217", - "community": 211, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L218", - "community": 211, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L220", - "community": 211, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L223", - "community": 211, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L224", - "community": 211, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L225", - "community": 211, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L227", - "community": 211, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L228", - "community": 211, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L230", - "community": 211, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L252", - "community": 211, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L333", - "community": 211, - "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_type" - }, - { - "label": "target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L1", - "community": 241, - "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-4a22e4e05af9cc8ccf52.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L2", - "community": 241, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L8", - "community": 241, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L9", - "community": 241, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L11", - "community": 241, - "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L20", - "community": 241, - "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L25", - "community": 241, - "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L74", - "community": 241, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L214", - "community": 241, - "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L215", - "community": 241, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L217", - "community": 241, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L243", - "community": 241, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L244", - "community": 241, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L246", - "community": 241, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L249", - "community": 241, - "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L250", - "community": 241, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L251", - "community": 241, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L253", - "community": 241, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L254", - "community": 241, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L256", - "community": 241, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L274", - "community": 241, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L331", - "community": 241, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_type" - }, - { - "label": "target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L1", - "community": 230, - "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-1cc71c4e2ece3a8f1252.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L2", - "community": 230, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L8", - "community": 230, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L9", - "community": 230, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L11", - "community": 230, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L20", - "community": 230, - "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L25", - "community": 230, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L86", - "community": 230, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L232", - "community": 230, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L233", - "community": 230, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L235", - "community": 230, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L261", - "community": 230, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L262", - "community": 230, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L264", - "community": 230, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L267", - "community": 230, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L268", - "community": 230, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L269", - "community": 230, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L271", - "community": 230, - "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L272", - "community": 230, - "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L274", - "community": 230, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L294", - "community": 230, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L363", - "community": 230, - "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_type" - }, - { - "label": "target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L1", - "community": 200, - "norm_label": "target-react_codegen_rnkc-relwithdebinfo-7a7110ae8252d6b7db7e.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L2", - "community": 200, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L8", - "community": 200, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L9", - "community": 200, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L11", - "community": 200, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L21", - "community": 200, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L26", - "community": 200, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L75", - "community": 200, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L221", - "community": 200, - "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L222", - "community": 200, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L224", - "community": 200, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L250", - "community": 200, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L251", - "community": 200, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L253", - "community": 200, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L256", - "community": 200, - "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L257", - "community": 200, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L258", - "community": 200, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L260", - "community": 200, - "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L261", - "community": 200, - "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L263", - "community": 200, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L287", - "community": 200, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L380", - "community": 200, - "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_type" - }, - { - "label": "target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L1", - "community": 339, - "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-d6affdef9367841e3dd4.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L2", - "community": 339, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L26", - "community": 339, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L27", - "community": 339, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L29", - "community": 339, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L38", - "community": 339, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L43", - "community": 339, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L86", - "community": 339, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L201", - "community": 339, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L202", - "community": 339, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L203", - "community": 339, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L205", - "community": 339, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L206", - "community": 339, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L208", - "community": 339, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L224", - "community": 339, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L269", - "community": 339, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" - }, - { - "label": "target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L1", - "community": 168, - "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-ae8048632b75365076d6.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L2", - "community": 168, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L8", - "community": 168, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L9", - "community": 168, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L11", - "community": 168, - "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L20", - "community": 168, - "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L25", - "community": 168, - "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L74", - "community": 168, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L214", - "community": 168, - "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L215", - "community": 168, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L217", - "community": 168, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L243", - "community": 168, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L244", - "community": 168, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L246", - "community": 168, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L249", - "community": 168, - "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L250", - "community": 168, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L251", - "community": 168, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L253", - "community": 168, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L254", - "community": 168, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L256", - "community": 168, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L274", - "community": 168, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L331", - "community": 168, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_type" - }, - { - "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L1", - "community": 332, - "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-35735e55a58552e74540.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L2", - "community": 332, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L26", - "community": 332, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L27", - "community": 332, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L29", - "community": 332, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L38", - "community": 332, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L43", - "community": 332, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L86", - "community": 332, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L201", - "community": 332, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L202", - "community": 332, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L203", - "community": 332, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L205", - "community": 332, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L206", - "community": 332, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L208", - "community": 332, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L224", - "community": 332, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L269", - "community": 332, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" - }, - { - "label": "target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L1", - "community": 340, - "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-3a82b655e8d5b3c1b8d3.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L2", - "community": 340, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L26", - "community": 340, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L27", - "community": 340, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L29", - "community": 340, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L38", - "community": 340, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L43", - "community": 340, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L86", - "community": 340, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L201", - "community": 340, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L202", - "community": 340, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L203", - "community": 340, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L205", - "community": 340, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L206", - "community": 340, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L208", - "community": 340, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L224", - "community": 340, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L269", - "community": 340, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" - }, - { - "label": "target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L1", - "community": 214, - "norm_label": "target-react_codegen_rnpicker-relwithdebinfo-e58058e408bce1d698d0.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L2", - "community": 214, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L8", - "community": 214, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L9", - "community": 214, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L11", - "community": 214, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L19", - "community": 214, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L23", - "community": 214, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L60", - "community": 214, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L188", - "community": 214, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L189", - "community": 214, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L191", - "community": 214, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L217", - "community": 214, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L218", - "community": 214, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L220", - "community": 214, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L223", - "community": 214, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L224", - "community": 214, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L225", - "community": 214, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L227", - "community": 214, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L228", - "community": 214, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L230", - "community": 214, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L252", - "community": 214, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L333", - "community": 214, - "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_type" - }, - { - "label": "codemodel-v2-8e20c562927808c1169a.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L1", - "community": 591, - "norm_label": "codemodel-v2-8e20c562927808c1169a.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_8e20c562927808c1169a_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L2", - "community": 591, - "norm_label": "configurations", - "id": "reply_codemodel_v2_8e20c562927808c1169a_configurations" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L508", - "community": 591, - "norm_label": "kind", - "id": "reply_codemodel_v2_8e20c562927808c1169a_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L509", - "community": 591, - "norm_label": "paths", - "id": "reply_codemodel_v2_8e20c562927808c1169a_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L511", - "community": 591, - "norm_label": "build", - "id": "reply_codemodel_v2_8e20c562927808c1169a_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L512", - "community": 591, - "norm_label": "source", - "id": "reply_codemodel_v2_8e20c562927808c1169a_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L514", - "community": 591, - "norm_label": "version", - "id": "reply_codemodel_v2_8e20c562927808c1169a_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L516", - "community": 591, - "norm_label": "major", - "id": "reply_codemodel_v2_8e20c562927808c1169a_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L517", - "community": 591, - "norm_label": "minor", - "id": "reply_codemodel_v2_8e20c562927808c1169a_version_minor" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L1", - "community": 335, - "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-b5a7f3ec52e98de02751.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L2", - "community": 335, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L26", - "community": 335, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L27", - "community": 335, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L29", - "community": 335, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L38", - "community": 335, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L43", - "community": 335, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L86", - "community": 335, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L201", - "community": 335, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L202", - "community": 335, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L203", - "community": 335, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L205", - "community": 335, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L206", - "community": 335, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L208", - "community": 335, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L224", - "community": 335, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L269", - "community": 335, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" - }, - { - "label": "target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L1", - "community": 167, - "norm_label": "target-react_codegen_rnkc-relwithdebinfo-99f7a94d24f92bba496f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L2", - "community": 167, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L8", - "community": 167, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L9", - "community": 167, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L11", - "community": 167, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L21", - "community": 167, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L26", - "community": 167, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L75", - "community": 167, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L221", - "community": 167, - "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L222", - "community": 167, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L224", - "community": 167, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L250", - "community": 167, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L251", - "community": 167, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L253", - "community": 167, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L256", - "community": 167, - "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L257", - "community": 167, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L258", - "community": 167, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L260", - "community": 167, - "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L261", - "community": 167, - "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L263", - "community": 167, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L287", - "community": 167, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L380", - "community": 167, - "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_type" - }, - { - "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L1", - "community": 336, - "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-624c0f7309976a111d6b.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L2", - "community": 336, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L26", - "community": 336, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L27", - "community": 336, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L29", - "community": 336, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L38", - "community": 336, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L43", - "community": 336, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L86", - "community": 336, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L201", - "community": 336, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L202", - "community": 336, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L203", - "community": 336, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L205", - "community": 336, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L206", - "community": 336, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L208", - "community": 336, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L224", - "community": 336, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L269", - "community": 336, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" - }, - { - "label": "target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L1", - "community": 331, - "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-3046d2f30176023af473.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L2", - "community": 331, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L26", - "community": 331, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L27", - "community": 331, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L29", - "community": 331, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L38", - "community": 331, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L43", - "community": 331, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L86", - "community": 331, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L201", - "community": 331, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L202", - "community": 331, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L203", - "community": 331, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L205", - "community": 331, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L206", - "community": 331, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L208", - "community": 331, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L224", - "community": 331, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L269", - "community": 331, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" - }, - { - "label": "target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L1", - "community": 234, - "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-f009a631b35a39bb6492.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L2", - "community": 234, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L8", - "community": 234, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L9", - "community": 234, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L11", - "community": 234, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L20", - "community": 234, - "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L25", - "community": 234, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L86", - "community": 234, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L232", - "community": 234, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L233", - "community": 234, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L235", - "community": 234, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L261", - "community": 234, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L262", - "community": 234, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L264", - "community": 234, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L267", - "community": 234, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L268", - "community": 234, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L269", - "community": 234, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L271", - "community": 234, - "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L272", - "community": 234, - "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L274", - "community": 234, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L294", - "community": 234, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L363", - "community": 234, - "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_type" - }, - { - "label": "target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L1", - "community": 140, - "norm_label": "target-appmodules-relwithdebinfo-6b37fa57db06e85fbe7b.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L2", - "community": 140, - "norm_label": "artifacts", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L8", - "community": 140, - "norm_label": "backtrace", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L9", - "community": 140, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L11", - "community": 140, - "norm_label": "commands", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L21", - "community": 140, - "norm_label": "files", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L34", - "community": 140, - "norm_label": "nodes", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L156", - "community": 140, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L481", - "community": 140, - "norm_label": "dependencies", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L552", - "community": 140, - "norm_label": "id", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L553", - "community": 140, - "norm_label": "link", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L555", - "community": 140, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L637", - "community": 140, - "norm_label": "language", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L638", - "community": 140, - "norm_label": "sysroot", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L640", - "community": 140, - "norm_label": "path", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L643", - "community": 140, - "norm_label": "name", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L644", - "community": 140, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L645", - "community": 140, - "norm_label": "paths", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L647", - "community": 140, - "norm_label": "build", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L648", - "community": 140, - "norm_label": "source", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L650", - "community": 140, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L723", - "community": 140, - "norm_label": "sources", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L1074", - "community": 140, - "norm_label": "type", - "id": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_type" - }, - { - "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L1", - "community": 253, - "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-e419e9f4a27f44ec1113.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L2", - "community": 253, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L8", - "community": 253, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L9", - "community": 253, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L11", - "community": 253, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L20", - "community": 253, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L25", - "community": 253, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L74", - "community": 253, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L214", - "community": 253, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L215", - "community": 253, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L217", - "community": 253, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L243", - "community": 253, - "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L244", - "community": 253, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L246", - "community": 253, - "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L249", - "community": 253, - "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L250", - "community": 253, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L251", - "community": 253, - "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L253", - "community": 253, - "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L254", - "community": 253, - "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L256", - "community": 253, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L274", - "community": 253, - "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L331", - "community": 253, - "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_type" - }, - { - "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L1", - "community": 326, - "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-761aa90ee7b8f54ed322.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L2", - "community": 326, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L26", - "community": 326, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L27", - "community": 326, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L29", - "community": 326, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L38", - "community": 326, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L43", - "community": 326, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L86", - "community": 326, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L201", - "community": 326, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L202", - "community": 326, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L203", - "community": 326, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L205", - "community": 326, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L206", - "community": 326, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L208", - "community": 326, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L224", - "community": 326, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L269", - "community": 326, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" - }, - { - "label": "index-2026-06-09T17-33-50-0484.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L1", - "community": 111, - "norm_label": "index-2026-06-09t17-33-50-0484.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_06_09t17_33_50_0484_json" - }, - { - "label": "cmake", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L2", - "community": 111, - "norm_label": "cmake", - "id": "reply_index_2026_06_09t17_33_50_0484_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L4", - "community": 111, - "norm_label": "generator", - "id": "reply_index_2026_06_09t17_33_50_0484_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L6", - "community": 111, - "norm_label": "multiconfig", - "id": "reply_index_2026_06_09t17_33_50_0484_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L7", - "community": 111, - "norm_label": "name", - "id": "reply_index_2026_06_09t17_33_50_0484_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L9", - "community": 111, - "norm_label": "paths", - "id": "reply_index_2026_06_09t17_33_50_0484_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L12", - "community": 111, - "norm_label": "cpack", - "id": "reply_index_2026_06_09t17_33_50_0484_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L13", - "community": 111, - "norm_label": "ctest", - "id": "reply_index_2026_06_09t17_33_50_0484_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L14", - "community": 111, - "norm_label": "root", - "id": "reply_index_2026_06_09t17_33_50_0484_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L16", - "community": 111, - "norm_label": "version", - "id": "reply_index_2026_06_09t17_33_50_0484_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L18", - "community": 111, - "norm_label": "isdirty", - "id": "reply_index_2026_06_09t17_33_50_0484_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L19", - "community": 111, - "norm_label": "major", - "id": "reply_index_2026_06_09t17_33_50_0484_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L20", - "community": 111, - "norm_label": "minor", - "id": "reply_index_2026_06_09t17_33_50_0484_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L21", - "community": 111, - "norm_label": "patch", - "id": "reply_index_2026_06_09t17_33_50_0484_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L22", - "community": 111, - "norm_label": "string", - "id": "reply_index_2026_06_09t17_33_50_0484_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L23", - "community": 111, - "norm_label": "suffix", - "id": "reply_index_2026_06_09t17_33_50_0484_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L26", - "community": 111, - "norm_label": "objects", - "id": "reply_index_2026_06_09t17_33_50_0484_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L56", - "community": 111, - "norm_label": "reply", - "id": "reply_index_2026_06_09t17_33_50_0484_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L58", - "community": 111, - "norm_label": "client-agp", - "id": "reply_index_2026_06_09t17_33_50_0484_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L60", - "community": 111, - "norm_label": "cache-v2", - "id": "reply_index_2026_06_09t17_33_50_0484_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L62", - "community": 111, - "norm_label": "jsonfile", - "id": "reply_index_2026_06_09t17_33_50_0484_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L63", - "community": 111, - "norm_label": "kind", - "id": "reply_index_2026_06_09t17_33_50_0484_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L70", - "community": 111, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_06_09t17_33_50_0484_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L80", - "community": 111, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_06_09t17_33_50_0484_client_agp_codemodel_v2" - }, - { - "label": "cache-v2-f812530a1b3e79fa59d4.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", - "source_location": "L1", - "community": 646, - "norm_label": "cache-v2-f812530a1b3e79fa59d4.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_f812530a1b3e79fa59d4_json" - }, - { - "label": "entries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", - "source_location": "L2", - "community": 646, - "norm_label": "entries", - "id": "reply_cache_v2_f812530a1b3e79fa59d4_entries" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", - "source_location": "L1637", - "community": 646, - "norm_label": "kind", - "id": "reply_cache_v2_f812530a1b3e79fa59d4_kind" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", - "source_location": "L1638", - "community": 646, - "norm_label": "version", - "id": "reply_cache_v2_f812530a1b3e79fa59d4_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", - "source_location": "L1640", - "community": 646, - "norm_label": "major", - "id": "reply_cache_v2_f812530a1b3e79fa59d4_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", - "source_location": "L1641", - "community": 646, - "norm_label": "minor", - "id": "reply_cache_v2_f812530a1b3e79fa59d4_version_minor" - }, - { - "label": "target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L1", - "community": 155, - "norm_label": "target-react-native-mmkv-relwithdebinfo-ffa13dadb04eb843fbd0.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L2", - "community": 155, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L8", - "community": 155, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L9", - "community": 155, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L11", - "community": 155, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L17", - "community": 155, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L21", - "community": 155, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L52", - "community": 155, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L161", - "community": 155, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L172", - "community": 155, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L173", - "community": 155, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L175", - "community": 155, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L217", - "community": 155, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L218", - "community": 155, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L220", - "community": 155, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L223", - "community": 155, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L224", - "community": 155, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L225", - "community": 155, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L227", - "community": 155, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L228", - "community": 155, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L230", - "community": 155, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L255", - "community": 155, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L318", - "community": 155, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_type" - }, - { - "label": "cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L1", - "community": 576, - "norm_label": "cmakefiles-v1-3da4b9b5e24eda56edf6.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_3da4b9b5e24eda56edf6_json" - }, - { - "label": "inputs", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L2", - "community": 576, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_inputs" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L334", - "community": 576, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L335", - "community": 576, - "norm_label": "paths", - "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L337", - "community": 576, - "norm_label": "build", - "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L338", - "community": 576, - "norm_label": "source", - "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L340", - "community": 576, - "norm_label": "version", - "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L342", - "community": 576, - "norm_label": "major", - "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L343", - "community": 576, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version_minor" - }, - { - "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L1", - "community": 328, - "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-6873ea71be6dda08995d.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L2", - "community": 328, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L26", - "community": 328, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L27", - "community": 328, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L29", - "community": 328, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L38", - "community": 328, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L43", - "community": 328, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L86", - "community": 328, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L201", - "community": 328, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L202", - "community": 328, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L203", - "community": 328, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L205", - "community": 328, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L206", - "community": 328, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L208", - "community": 328, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L224", - "community": 328, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L269", - "community": 328, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" - }, - { - "label": "target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L1", - "community": 219, - "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-3f95b36b4b5d35aee85d.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L2", - "community": 219, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L8", - "community": 219, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L9", - "community": 219, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L11", - "community": 219, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L21", - "community": 219, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L26", - "community": 219, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L75", - "community": 219, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L224", - "community": 219, - "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L225", - "community": 219, - "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L227", - "community": 219, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L253", - "community": 219, - "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L254", - "community": 219, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L256", - "community": 219, - "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L259", - "community": 219, - "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L260", - "community": 219, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L261", - "community": 219, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L263", - "community": 219, - "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L264", - "community": 219, - "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L266", - "community": 219, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L293", - "community": 219, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L404", - "community": 219, - "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_type" - }, - { - "label": "target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L1", - "community": 187, - "norm_label": "target-react_codegen_rncslider-relwithdebinfo-0104da303d202fcc2123.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L2", - "community": 187, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L8", - "community": 187, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L9", - "community": 187, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L11", - "community": 187, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L20", - "community": 187, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L25", - "community": 187, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L68", - "community": 187, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L196", - "community": 187, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L197", - "community": 187, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L199", - "community": 187, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L225", - "community": 187, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L226", - "community": 187, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L228", - "community": 187, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L231", - "community": 187, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L232", - "community": 187, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L233", - "community": 187, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L235", - "community": 187, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L236", - "community": 187, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L238", - "community": 187, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L256", - "community": 187, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L313", - "community": 187, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_type" - }, - { - "label": "target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L1", - "community": 365, - "norm_label": "target-react_codegen_rnreanimated-relwithdebinfo-d6affdef9367841e3dd4.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L2", - "community": 365, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L26", - "community": 365, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L27", - "community": 365, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L29", - "community": 365, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L38", - "community": 365, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L43", - "community": 365, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L86", - "community": 365, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L201", - "community": 365, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L202", - "community": 365, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L203", - "community": 365, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L205", - "community": 365, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L206", - "community": 365, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L208", - "community": 365, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L224", - "community": 365, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L269", - "community": 365, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" - }, - { - "label": "target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L1", - "community": 221, - "norm_label": "target-react_codegen_rnscreens-relwithdebinfo-947df43e7a7f8f8b6489.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L2", - "community": 221, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L8", - "community": 221, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L9", - "community": 221, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L11", - "community": 221, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L21", - "community": 221, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L26", - "community": 221, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L75", - "community": 221, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L224", - "community": 221, - "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L225", - "community": 221, - "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L227", - "community": 221, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L253", - "community": 221, - "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L254", - "community": 221, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L256", - "community": 221, - "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L259", - "community": 221, - "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L260", - "community": 221, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L261", - "community": 221, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L263", - "community": 221, - "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L264", - "community": 221, - "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L266", - "community": 221, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L293", - "community": 221, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L404", - "community": 221, - "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_type" - }, - { - "label": "target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L1", - "community": 138, - "norm_label": "target-appmodules-relwithdebinfo-36fd1c7c3566de281012.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L2", - "community": 138, - "norm_label": "artifacts", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L8", - "community": 138, - "norm_label": "backtrace", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L9", - "community": 138, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L11", - "community": 138, - "norm_label": "commands", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L21", - "community": 138, - "norm_label": "files", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L34", - "community": 138, - "norm_label": "nodes", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L156", - "community": 138, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L481", - "community": 138, - "norm_label": "dependencies", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L552", - "community": 138, - "norm_label": "id", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L553", - "community": 138, - "norm_label": "link", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L555", - "community": 138, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L637", - "community": 138, - "norm_label": "language", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L638", - "community": 138, - "norm_label": "sysroot", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L640", - "community": 138, - "norm_label": "path", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L643", - "community": 138, - "norm_label": "name", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L644", - "community": 138, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L645", - "community": 138, - "norm_label": "paths", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L647", - "community": 138, - "norm_label": "build", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L648", - "community": 138, - "norm_label": "source", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L650", - "community": 138, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L723", - "community": 138, - "norm_label": "sources", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L1074", - "community": 138, - "norm_label": "type", - "id": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_type" - }, - { - "label": "cache-v2-136ec41dc33c7a3203da.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", - "source_location": "L1", - "community": 638, - "norm_label": "cache-v2-136ec41dc33c7a3203da.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_136ec41dc33c7a3203da_json" - }, - { - "label": "entries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", - "source_location": "L2", - "community": 638, - "norm_label": "entries", - "id": "reply_cache_v2_136ec41dc33c7a3203da_entries" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", - "source_location": "L1637", - "community": 638, - "norm_label": "kind", - "id": "reply_cache_v2_136ec41dc33c7a3203da_kind" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", - "source_location": "L1638", - "community": 638, - "norm_label": "version", - "id": "reply_cache_v2_136ec41dc33c7a3203da_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", - "source_location": "L1640", - "community": 638, - "norm_label": "major", - "id": "reply_cache_v2_136ec41dc33c7a3203da_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", - "source_location": "L1641", - "community": 638, - "norm_label": "minor", - "id": "reply_cache_v2_136ec41dc33c7a3203da_version_minor" - }, - { - "label": "target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L1", - "community": 358, - "norm_label": "target-react_codegen_rngesturehandler_codegen-relwithdebinfo-35735e55a58552e74540.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L2", - "community": 358, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L26", - "community": 358, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L27", - "community": 358, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L29", - "community": 358, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L38", - "community": 358, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L43", - "community": 358, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L86", - "community": 358, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L201", - "community": 358, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L202", - "community": 358, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L203", - "community": 358, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L205", - "community": 358, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L206", - "community": 358, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L208", - "community": 358, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L224", - "community": 358, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L269", - "community": 358, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" - }, - { - "label": "target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L1", - "community": 366, - "norm_label": "target-react_codegen_rnworklets-relwithdebinfo-3a82b655e8d5b3c1b8d3.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L2", - "community": 366, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L26", - "community": 366, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L27", - "community": 366, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L29", - "community": 366, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L38", - "community": 366, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L43", - "community": 366, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L86", - "community": 366, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L201", - "community": 366, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L202", - "community": 366, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L203", - "community": 366, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L205", - "community": 366, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L206", - "community": 366, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L208", - "community": 366, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L224", - "community": 366, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L269", - "community": 366, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L1", - "community": 361, - "norm_label": "target-react_codegen_rnmenuviewspec-relwithdebinfo-b5a7f3ec52e98de02751.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L2", - "community": 361, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L26", - "community": 361, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L27", - "community": 361, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L29", - "community": 361, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L38", - "community": 361, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L43", - "community": 361, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L86", - "community": 361, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L201", - "community": 361, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L202", - "community": 361, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L203", - "community": 361, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L205", - "community": 361, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L206", - "community": 361, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L208", - "community": 361, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L224", - "community": 361, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L269", - "community": 361, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" - }, - { - "label": "target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L1", - "community": 204, - "norm_label": "target-react_codegen_rnkc-relwithdebinfo-ef1b0a2289a4d334e654.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L2", - "community": 204, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L8", - "community": 204, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L9", - "community": 204, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L11", - "community": 204, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L21", - "community": 204, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L26", - "community": 204, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L75", - "community": 204, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L221", - "community": 204, - "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L222", - "community": 204, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L224", - "community": 204, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L250", - "community": 204, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L251", - "community": 204, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L253", - "community": 204, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L256", - "community": 204, - "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L257", - "community": 204, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L258", - "community": 204, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L260", - "community": 204, - "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L261", - "community": 204, - "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L263", - "community": 204, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L287", - "community": 204, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L380", - "community": 204, - "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_type" - }, - { - "label": "target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L1", - "community": 153, - "norm_label": "target-react-native-mmkv-relwithdebinfo-90459e824d266082398f.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L2", - "community": 153, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L8", - "community": 153, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L9", - "community": 153, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L11", - "community": 153, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L17", - "community": 153, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L21", - "community": 153, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L52", - "community": 153, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L161", - "community": 153, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L172", - "community": 153, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L173", - "community": 153, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L175", - "community": 153, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L217", - "community": 153, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L218", - "community": 153, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L220", - "community": 153, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L223", - "community": 153, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L224", - "community": 153, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L225", - "community": 153, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L227", - "community": 153, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L228", - "community": 153, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L230", - "community": 153, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L255", - "community": 153, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L318", - "community": 153, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_type" - }, - { - "label": "index-2026-06-09T17-33-54-0070.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L1", - "community": 37, - "norm_label": "index-2026-06-09t17-33-54-0070.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_06_09t17_33_54_0070_json" - }, - { - "label": "cmake", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L2", - "community": 37, - "norm_label": "cmake", - "id": "reply_index_2026_06_09t17_33_54_0070_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L4", - "community": 37, - "norm_label": "generator", - "id": "reply_index_2026_06_09t17_33_54_0070_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L6", - "community": 37, - "norm_label": "multiconfig", - "id": "reply_index_2026_06_09t17_33_54_0070_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L7", - "community": 37, - "norm_label": "name", - "id": "reply_index_2026_06_09t17_33_54_0070_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L9", - "community": 37, - "norm_label": "paths", - "id": "reply_index_2026_06_09t17_33_54_0070_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L12", - "community": 37, - "norm_label": "cpack", - "id": "reply_index_2026_06_09t17_33_54_0070_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L13", - "community": 37, - "norm_label": "ctest", - "id": "reply_index_2026_06_09t17_33_54_0070_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L14", - "community": 37, - "norm_label": "root", - "id": "reply_index_2026_06_09t17_33_54_0070_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L16", - "community": 37, - "norm_label": "version", - "id": "reply_index_2026_06_09t17_33_54_0070_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L18", - "community": 37, - "norm_label": "isdirty", - "id": "reply_index_2026_06_09t17_33_54_0070_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L19", - "community": 37, - "norm_label": "major", - "id": "reply_index_2026_06_09t17_33_54_0070_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L20", - "community": 37, - "norm_label": "minor", - "id": "reply_index_2026_06_09t17_33_54_0070_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L21", - "community": 37, - "norm_label": "patch", - "id": "reply_index_2026_06_09t17_33_54_0070_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L22", - "community": 37, - "norm_label": "string", - "id": "reply_index_2026_06_09t17_33_54_0070_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L23", - "community": 37, - "norm_label": "suffix", - "id": "reply_index_2026_06_09t17_33_54_0070_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L26", - "community": 37, - "norm_label": "objects", - "id": "reply_index_2026_06_09t17_33_54_0070_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L56", - "community": 37, - "norm_label": "reply", - "id": "reply_index_2026_06_09t17_33_54_0070_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L58", - "community": 37, - "norm_label": "client-agp", - "id": "reply_index_2026_06_09t17_33_54_0070_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L60", - "community": 37, - "norm_label": "cache-v2", - "id": "reply_index_2026_06_09t17_33_54_0070_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L62", - "community": 37, - "norm_label": "jsonfile", - "id": "reply_index_2026_06_09t17_33_54_0070_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L63", - "community": 37, - "norm_label": "kind", - "id": "reply_index_2026_06_09t17_33_54_0070_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L70", - "community": 37, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_06_09t17_33_54_0070_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L80", - "community": 37, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_06_09t17_33_54_0070_client_agp_codemodel_v2" - }, - { - "label": "target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L1", - "community": 362, - "norm_label": "target-react_codegen_rnmmkvspec-relwithdebinfo-624c0f7309976a111d6b.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L2", - "community": 362, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L26", - "community": 362, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L27", - "community": 362, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L29", - "community": 362, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L38", - "community": 362, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L43", - "community": 362, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L86", - "community": 362, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L201", - "community": 362, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L202", - "community": 362, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L203", - "community": 362, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L205", - "community": 362, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L206", - "community": 362, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L208", - "community": 362, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L224", - "community": 362, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L269", - "community": 362, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" - }, - { - "label": "cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L1", - "community": 528, - "norm_label": "cmakefiles-v1-db0aa9d3fd185d7a8472.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_db0aa9d3fd185d7a8472_json" - }, - { - "label": "inputs", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L2", - "community": 528, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_inputs" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L334", - "community": 528, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L335", - "community": 528, - "norm_label": "paths", - "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L337", - "community": 528, - "norm_label": "build", - "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L338", - "community": 528, - "norm_label": "source", - "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L340", - "community": 528, - "norm_label": "version", - "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L342", - "community": 528, - "norm_label": "major", - "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L343", - "community": 528, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version_minor" - }, - { - "label": "target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L1", - "community": 189, - "norm_label": "target-react_codegen_rncslider-relwithdebinfo-10b2e5ae065f5f2ee5bf.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L2", - "community": 189, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L8", - "community": 189, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L9", - "community": 189, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L11", - "community": 189, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L20", - "community": 189, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L25", - "community": 189, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L68", - "community": 189, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L196", - "community": 189, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L197", - "community": 189, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L199", - "community": 189, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L225", - "community": 189, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L226", - "community": 189, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L228", - "community": 189, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L231", - "community": 189, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L232", - "community": 189, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L233", - "community": 189, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L235", - "community": 189, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L236", - "community": 189, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L238", - "community": 189, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L256", - "community": 189, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L313", - "community": 189, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_type" - }, - { - "label": "target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L1", - "community": 357, - "norm_label": "target-react_codegen_rnctabview-relwithdebinfo-3046d2f30176023af473.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L2", - "community": 357, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L26", - "community": 357, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L27", - "community": 357, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L29", - "community": 357, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L38", - "community": 357, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L43", - "community": 357, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L86", - "community": 357, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L201", - "community": 357, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L202", - "community": 357, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L203", - "community": 357, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L205", - "community": 357, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L206", - "community": 357, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L208", - "community": 357, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L224", - "community": 357, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L269", - "community": 357, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" - }, - { - "label": "target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L1", - "community": 175, - "norm_label": "target-react_codegen_rnsvg-relwithdebinfo-9e89a5d1817a7db86940.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L2", - "community": 175, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L8", - "community": 175, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L9", - "community": 175, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L11", - "community": 175, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L20", - "community": 175, - "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L25", - "community": 175, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L86", - "community": 175, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L232", - "community": 175, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L233", - "community": 175, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L235", - "community": 175, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L261", - "community": 175, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L262", - "community": 175, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L264", - "community": 175, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L267", - "community": 175, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L268", - "community": 175, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L269", - "community": 175, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L271", - "community": 175, - "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L272", - "community": 175, - "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L274", - "community": 175, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L294", - "community": 175, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L363", - "community": 175, - "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_type" - }, - { - "label": "target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L1", - "community": 352, - "norm_label": "target-react_codegen_lottiereactnative-relwithdebinfo-761aa90ee7b8f54ed322.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L2", - "community": 352, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L26", - "community": 352, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L27", - "community": 352, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L29", - "community": 352, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L38", - "community": 352, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L43", - "community": 352, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L86", - "community": 352, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L201", - "community": 352, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L202", - "community": 352, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L203", - "community": 352, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L205", - "community": 352, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L206", - "community": 352, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L208", - "community": 352, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L224", - "community": 352, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L269", - "community": 352, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" - }, - { - "label": "codemodel-v2-7e70a705d613236caeec.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L1", - "community": 590, - "norm_label": "codemodel-v2-7e70a705d613236caeec.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_7e70a705d613236caeec_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L2", - "community": 590, - "norm_label": "configurations", - "id": "reply_codemodel_v2_7e70a705d613236caeec_configurations" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L508", - "community": 590, - "norm_label": "kind", - "id": "reply_codemodel_v2_7e70a705d613236caeec_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L509", - "community": 590, - "norm_label": "paths", - "id": "reply_codemodel_v2_7e70a705d613236caeec_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L511", - "community": 590, - "norm_label": "build", - "id": "reply_codemodel_v2_7e70a705d613236caeec_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L512", - "community": 590, - "norm_label": "source", - "id": "reply_codemodel_v2_7e70a705d613236caeec_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L514", - "community": 590, - "norm_label": "version", - "id": "reply_codemodel_v2_7e70a705d613236caeec_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L516", - "community": 590, - "norm_label": "major", - "id": "reply_codemodel_v2_7e70a705d613236caeec_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L517", - "community": 590, - "norm_label": "minor", - "id": "reply_codemodel_v2_7e70a705d613236caeec_version_minor" - }, - { - "label": "target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L1", - "community": 354, - "norm_label": "target-react_codegen_rnasyncstorage-relwithdebinfo-6873ea71be6dda08995d.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L2", - "community": 354, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L26", - "community": 354, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L27", - "community": 354, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L29", - "community": 354, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L38", - "community": 354, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L43", - "community": 354, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L86", - "community": 354, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L201", - "community": 354, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L202", - "community": 354, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L203", - "community": 354, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L205", - "community": 354, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L206", - "community": 354, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L208", - "community": 354, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L224", - "community": 354, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L269", - "community": 354, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" - }, - { - "label": "target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L1", - "community": 245, - "norm_label": "target-react_codegen_safeareacontext-relwithdebinfo-9e4eb7f1a03c976f24b0.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L2", - "community": 245, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L8", - "community": 245, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L9", - "community": 245, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L11", - "community": 245, - "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L20", - "community": 245, - "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L25", - "community": 245, - "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L74", - "community": 245, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L214", - "community": 245, - "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L215", - "community": 245, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L217", - "community": 245, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L243", - "community": 245, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L244", - "community": 245, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L246", - "community": 245, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L249", - "community": 245, - "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L250", - "community": 245, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L251", - "community": 245, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L253", - "community": 245, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L254", - "community": 245, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L256", - "community": 245, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L274", - "community": 245, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L331", - "community": 245, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_type" - }, - { - "label": "target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L1", - "community": 176, - "norm_label": "target-react_codegen_truesheetspec-relwithdebinfo-1996a841f833afa9259b.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L2", - "community": 176, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L8", - "community": 176, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L9", - "community": 176, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L11", - "community": 176, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L20", - "community": 176, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L25", - "community": 176, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L74", - "community": 176, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L214", - "community": 176, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L215", - "community": 176, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L217", - "community": 176, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L243", - "community": 176, - "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L244", - "community": 176, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L246", - "community": 176, - "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L249", - "community": 176, - "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L250", - "community": 176, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L251", - "community": 176, - "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L253", - "community": 176, - "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L254", - "community": 176, - "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L256", - "community": 176, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L274", - "community": 176, - "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L331", - "community": 176, - "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_type" - }, - { - "label": "target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L1", - "community": 174, - "norm_label": "target-react_codegen_rnpicker-relwithdebinfo-aac301ad76305131bd97.json", - "id": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L2", - "community": 174, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L8", - "community": 174, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L9", - "community": 174, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L11", - "community": 174, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L19", - "community": 174, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L23", - "community": 174, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L60", - "community": 174, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L188", - "community": 174, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L189", - "community": 174, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L191", - "community": 174, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L217", - "community": 174, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L218", - "community": 174, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L220", - "community": 174, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L223", - "community": 174, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L224", - "community": 174, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L225", - "community": 174, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L227", - "community": 174, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L228", - "community": 174, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L230", - "community": 174, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L252", - "community": 174, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L333", - "community": 174, - "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_type" - }, - { - "label": "target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L1", - "community": 249, - "norm_label": "target-react_codegen_truesheetspec-debug-a014b96283b54de98f8f.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L2", - "community": 249, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L8", - "community": 249, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L9", - "community": 249, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L11", - "community": 249, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L20", - "community": 249, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L25", - "community": 249, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L74", - "community": 249, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L214", - "community": 249, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L215", - "community": 249, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L217", - "community": 249, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L243", - "community": 249, - "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L244", - "community": 249, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L246", - "community": 249, - "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L249", - "community": 249, - "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L250", - "community": 249, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L251", - "community": 249, - "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L253", - "community": 249, - "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L254", - "community": 249, - "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L256", - "community": 249, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L274", - "community": 249, - "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L331", - "community": 249, - "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_type" - }, - { - "label": "target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L1", - "community": 407, - "norm_label": "target-react_codegen_rnreanimated-debug-7e8660ff859985ff561f.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L2", - "community": 407, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L26", - "community": 407, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L27", - "community": 407, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L29", - "community": 407, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L38", - "community": 407, - "norm_label": "files", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L43", - "community": 407, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L86", - "community": 407, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L201", - "community": 407, - "norm_label": "id", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L202", - "community": 407, - "norm_label": "name", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L203", - "community": 407, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L205", - "community": 407, - "norm_label": "build", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L206", - "community": 407, - "norm_label": "source", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L208", - "community": 407, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L224", - "community": 407, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L269", - "community": 407, - "norm_label": "type", - "id": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_type" - }, - { - "label": "target-appmodules-Debug-ac22e26f182615285111.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L1", - "community": 136, - "norm_label": "target-appmodules-debug-ac22e26f182615285111.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L2", - "community": 136, - "norm_label": "artifacts", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L8", - "community": 136, - "norm_label": "backtrace", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L9", - "community": 136, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L11", - "community": 136, - "norm_label": "commands", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L21", - "community": 136, - "norm_label": "files", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L34", - "community": 136, - "norm_label": "nodes", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L156", - "community": 136, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L481", - "community": 136, - "norm_label": "dependencies", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L552", - "community": 136, - "norm_label": "id", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L553", - "community": 136, - "norm_label": "link", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L555", - "community": 136, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L637", - "community": 136, - "norm_label": "language", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L638", - "community": 136, - "norm_label": "sysroot", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L640", - "community": 136, - "norm_label": "path", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L643", - "community": 136, - "norm_label": "name", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L644", - "community": 136, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L645", - "community": 136, - "norm_label": "paths", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L647", - "community": 136, - "norm_label": "build", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L648", - "community": 136, - "norm_label": "source", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L650", - "community": 136, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L723", - "community": 136, - "norm_label": "sources", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L1074", - "community": 136, - "norm_label": "type", - "id": "reply_target_appmodules_debug_ac22e26f182615285111_type" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L2", - "community": 65, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L26", - "community": 65, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L27", - "community": 65, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L29", - "community": 65, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L38", - "community": 65, - "norm_label": "files", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L43", - "community": 65, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L86", - "community": 65, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L201", - "community": 65, - "norm_label": "id", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L202", - "community": 65, - "norm_label": "name", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L203", - "community": 65, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L205", - "community": 65, - "norm_label": "build", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L206", - "community": 65, - "norm_label": "source", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L208", - "community": 65, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L224", - "community": 65, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L269", - "community": 65, - "norm_label": "type", - "id": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_type" - }, - { - "label": "target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L1", - "community": 198, - "norm_label": "target-react_codegen_rnkc-debug-9d1b45f70c1ef994795c.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L2", - "community": 198, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L8", - "community": 198, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L9", - "community": 198, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L11", - "community": 198, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L21", - "community": 198, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L26", - "community": 198, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L75", - "community": 198, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L221", - "community": 198, - "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L222", - "community": 198, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L224", - "community": 198, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L250", - "community": 198, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L251", - "community": 198, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L253", - "community": 198, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L256", - "community": 198, - "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L257", - "community": 198, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L258", - "community": 198, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L260", - "community": 198, - "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L261", - "community": 198, - "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L263", - "community": 198, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L287", - "community": 198, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L380", - "community": 198, - "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_type" - }, - { - "label": "target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L1", - "community": 304, - "norm_label": "target-react_codegen_rnasyncstorage-debug-895dc7d142aed87947f3.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L2", - "community": 304, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L26", - "community": 304, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L27", - "community": 304, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L29", - "community": 304, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L38", - "community": 304, - "norm_label": "files", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L43", - "community": 304, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L86", - "community": 304, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L201", - "community": 304, - "norm_label": "id", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L202", - "community": 304, - "norm_label": "name", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L203", - "community": 304, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L205", - "community": 304, - "norm_label": "build", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L206", - "community": 304, - "norm_label": "source", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L208", - "community": 304, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L224", - "community": 304, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L269", - "community": 304, - "norm_label": "type", - "id": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_type" - }, - { - "label": "cmake", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L2", - "community": 38, - "norm_label": "cmake", - "id": "reply_index_2026_06_09t18_20_45_0249_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L4", - "community": 38, - "norm_label": "generator", - "id": "reply_index_2026_06_09t18_20_45_0249_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L6", - "community": 38, - "norm_label": "multiconfig", - "id": "reply_index_2026_06_09t18_20_45_0249_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L7", - "community": 38, - "norm_label": "name", - "id": "reply_index_2026_06_09t18_20_45_0249_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L9", - "community": 38, - "norm_label": "paths", - "id": "reply_index_2026_06_09t18_20_45_0249_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L12", - "community": 38, - "norm_label": "cpack", - "id": "reply_index_2026_06_09t18_20_45_0249_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L13", - "community": 38, - "norm_label": "ctest", - "id": "reply_index_2026_06_09t18_20_45_0249_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L14", - "community": 38, - "norm_label": "root", - "id": "reply_index_2026_06_09t18_20_45_0249_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L16", - "community": 38, - "norm_label": "version", - "id": "reply_index_2026_06_09t18_20_45_0249_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L18", - "community": 38, - "norm_label": "isdirty", - "id": "reply_index_2026_06_09t18_20_45_0249_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L19", - "community": 38, - "norm_label": "major", - "id": "reply_index_2026_06_09t18_20_45_0249_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L20", - "community": 38, - "norm_label": "minor", - "id": "reply_index_2026_06_09t18_20_45_0249_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L21", - "community": 38, - "norm_label": "patch", - "id": "reply_index_2026_06_09t18_20_45_0249_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L22", - "community": 38, - "norm_label": "string", - "id": "reply_index_2026_06_09t18_20_45_0249_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L23", - "community": 38, - "norm_label": "suffix", - "id": "reply_index_2026_06_09t18_20_45_0249_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L26", - "community": 38, - "norm_label": "objects", - "id": "reply_index_2026_06_09t18_20_45_0249_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L56", - "community": 38, - "norm_label": "reply", - "id": "reply_index_2026_06_09t18_20_45_0249_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L58", - "community": 38, - "norm_label": "client-agp", - "id": "reply_index_2026_06_09t18_20_45_0249_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L60", - "community": 38, - "norm_label": "cache-v2", - "id": "reply_index_2026_06_09t18_20_45_0249_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L62", - "community": 38, - "norm_label": "jsonfile", - "id": "reply_index_2026_06_09t18_20_45_0249_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L63", - "community": 38, - "norm_label": "kind", - "id": "reply_index_2026_06_09t18_20_45_0249_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L70", - "community": 38, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_06_09t18_20_45_0249_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L80", - "community": 38, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_06_09t18_20_45_0249_client_agp_codemodel_v2" - }, - { - "label": "target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L1", - "community": 185, - "norm_label": "target-react_codegen_rncslider-debug-c0e5d4a34e94cb657c85.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L2", - "community": 185, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L8", - "community": 185, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L9", - "community": 185, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L11", - "community": 185, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L20", - "community": 185, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L25", - "community": 185, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L68", - "community": 185, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L196", - "community": 185, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L197", - "community": 185, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L199", - "community": 185, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L225", - "community": 185, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L226", - "community": 185, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L228", - "community": 185, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L231", - "community": 185, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L232", - "community": 185, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L233", - "community": 185, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L235", - "community": 185, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L236", - "community": 185, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L238", - "community": 185, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L256", - "community": 185, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L313", - "community": 185, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_type" - }, - { - "label": "target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L1", - "community": 217, - "norm_label": "target-react_codegen_rnscreens-debug-b76fd80767ed2c49ea98.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L2", - "community": 217, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L8", - "community": 217, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L9", - "community": 217, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L11", - "community": 217, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L21", - "community": 217, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L26", - "community": 217, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L75", - "community": 217, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L224", - "community": 217, - "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L225", - "community": 217, - "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L227", - "community": 217, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L253", - "community": 217, - "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L254", - "community": 217, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L256", - "community": 217, - "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L259", - "community": 217, - "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L260", - "community": 217, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L261", - "community": 217, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L263", - "community": 217, - "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L264", - "community": 217, - "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L266", - "community": 217, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L293", - "community": 217, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L404", - "community": 217, - "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_type" - }, - { - "label": "target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L1", - "community": 305, - "norm_label": "target-react_codegen_rnctabview-debug-978bc2ed187b2749e3cb.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L2", - "community": 305, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L26", - "community": 305, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L27", - "community": 305, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L29", - "community": 305, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L38", - "community": 305, - "norm_label": "files", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L43", - "community": 305, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L86", - "community": 305, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L201", - "community": 305, - "norm_label": "id", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L202", - "community": 305, - "norm_label": "name", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L203", - "community": 305, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L205", - "community": 305, - "norm_label": "build", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L206", - "community": 305, - "norm_label": "source", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L208", - "community": 305, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L224", - "community": 305, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L269", - "community": 305, - "norm_label": "type", - "id": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_type" - }, - { - "label": "target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L1", - "community": 303, - "norm_label": "target-react_codegen_lottiereactnative-debug-21f507e9ffa9e81130e7.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L2", - "community": 303, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L26", - "community": 303, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L27", - "community": 303, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L29", - "community": 303, - "norm_label": "commands", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L38", - "community": 303, - "norm_label": "files", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L43", - "community": 303, - "norm_label": "nodes", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L86", - "community": 303, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L201", - "community": 303, - "norm_label": "id", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L202", - "community": 303, - "norm_label": "name", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L203", - "community": 303, - "norm_label": "paths", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L205", - "community": 303, - "norm_label": "build", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L206", - "community": 303, - "norm_label": "source", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L208", - "community": 303, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L224", - "community": 303, - "norm_label": "sources", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L269", - "community": 303, - "norm_label": "type", - "id": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_type" - }, - { - "label": "codemodel-v2-78739d8f0218d174c329.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L1", - "community": 589, - "norm_label": "codemodel-v2-78739d8f0218d174c329.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_78739d8f0218d174c329_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L2", - "community": 589, - "norm_label": "configurations", - "id": "reply_codemodel_v2_78739d8f0218d174c329_configurations" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L508", - "community": 589, - "norm_label": "kind", - "id": "reply_codemodel_v2_78739d8f0218d174c329_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L509", - "community": 589, - "norm_label": "paths", - "id": "reply_codemodel_v2_78739d8f0218d174c329_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L511", - "community": 589, - "norm_label": "build", - "id": "reply_codemodel_v2_78739d8f0218d174c329_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L512", - "community": 589, - "norm_label": "source", - "id": "reply_codemodel_v2_78739d8f0218d174c329_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L514", - "community": 589, - "norm_label": "version", - "id": "reply_codemodel_v2_78739d8f0218d174c329_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L516", - "community": 589, - "norm_label": "major", - "id": "reply_codemodel_v2_78739d8f0218d174c329_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L517", - "community": 589, - "norm_label": "minor", - "id": "reply_codemodel_v2_78739d8f0218d174c329_version_minor" - }, - { - "label": "target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L1", - "community": 401, - "norm_label": "target-react_codegen_rngesturehandler_codegen-debug-dc037f825c32ff148389.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L2", - "community": 401, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L26", - "community": 401, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L27", - "community": 401, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L29", - "community": 401, - "norm_label": "commands", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L38", - "community": 401, - "norm_label": "files", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L43", - "community": 401, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L86", - "community": 401, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L201", - "community": 401, - "norm_label": "id", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L202", - "community": 401, - "norm_label": "name", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L203", - "community": 401, - "norm_label": "paths", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L205", - "community": 401, - "norm_label": "build", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L206", - "community": 401, - "norm_label": "source", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L208", - "community": 401, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L224", - "community": 401, - "norm_label": "sources", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L269", - "community": 401, - "norm_label": "type", - "id": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_type" - }, - { - "label": "target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L1", - "community": 238, - "norm_label": "target-react_codegen_safeareacontext-debug-a88a8899d3c615ba9bc1.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L2", - "community": 238, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L8", - "community": 238, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L9", - "community": 238, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L11", - "community": 238, - "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L20", - "community": 238, - "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L25", - "community": 238, - "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L74", - "community": 238, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L214", - "community": 238, - "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L215", - "community": 238, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L217", - "community": 238, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L243", - "community": 238, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L244", - "community": 238, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L246", - "community": 238, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L249", - "community": 238, - "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L250", - "community": 238, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L251", - "community": 238, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L253", - "community": 238, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L254", - "community": 238, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L256", - "community": 238, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L274", - "community": 238, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L331", - "community": 238, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_type" - }, - { - "label": "target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L1", - "community": 307, - "norm_label": "target-react_codegen_rnmmkvspec-debug-fb5d7e06169843d297ff.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L2", - "community": 307, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L26", - "community": 307, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L27", - "community": 307, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L29", - "community": 307, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L38", - "community": 307, - "norm_label": "files", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L43", - "community": 307, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L86", - "community": 307, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L201", - "community": 307, - "norm_label": "id", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L202", - "community": 307, - "norm_label": "name", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L203", - "community": 307, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L205", - "community": 307, - "norm_label": "build", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L206", - "community": 307, - "norm_label": "source", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L208", - "community": 307, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L224", - "community": 307, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L269", - "community": 307, - "norm_label": "type", - "id": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_type" - }, - { - "label": "target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L1", - "community": 125, - "norm_label": "target-react-native-mmkv-debug-f81c8c71554c0da97627.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L2", - "community": 125, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L8", - "community": 125, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L9", - "community": 125, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L11", - "community": 125, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L17", - "community": 125, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L21", - "community": 125, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L52", - "community": 125, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L161", - "community": 125, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L172", - "community": 125, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L173", - "community": 125, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L175", - "community": 125, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L217", - "community": 125, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L218", - "community": 125, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L220", - "community": 125, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L223", - "community": 125, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L224", - "community": 125, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L225", - "community": 125, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L227", - "community": 125, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L228", - "community": 125, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L230", - "community": 125, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L255", - "community": 125, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L318", - "community": 125, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_type" - }, - { - "label": "target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L1", - "community": 209, - "norm_label": "target-react_codegen_rnpicker-debug-a62c41b307e140690515.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L2", - "community": 209, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L8", - "community": 209, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L9", - "community": 209, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L11", - "community": 209, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L19", - "community": 209, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L23", - "community": 209, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L60", - "community": 209, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L188", - "community": 209, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L189", - "community": 209, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L191", - "community": 209, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L217", - "community": 209, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L218", - "community": 209, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L220", - "community": 209, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L223", - "community": 209, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L224", - "community": 209, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L225", - "community": 209, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L227", - "community": 209, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L228", - "community": 209, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L230", - "community": 209, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L252", - "community": 209, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L333", - "community": 209, - "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_type" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L1", - "community": 306, - "norm_label": "target-react_codegen_rnmenuviewspec-debug-5cb825d124bc4ba2b5e7.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L2", - "community": 306, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L26", - "community": 306, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L27", - "community": 306, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L29", - "community": 306, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L38", - "community": 306, - "norm_label": "files", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L43", - "community": 306, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L86", - "community": 306, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L201", - "community": 306, - "norm_label": "id", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L202", - "community": 306, - "norm_label": "name", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L203", - "community": 306, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L205", - "community": 306, - "norm_label": "build", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L206", - "community": 306, - "norm_label": "source", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L208", - "community": 306, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L224", - "community": 306, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L269", - "community": 306, - "norm_label": "type", - "id": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_type" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L2", - "community": 42, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L8", - "community": 42, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L9", - "community": 42, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L11", - "community": 42, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L20", - "community": 42, - "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L25", - "community": 42, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L86", - "community": 42, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L232", - "community": 42, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L233", - "community": 42, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L235", - "community": 42, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L261", - "community": 42, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L262", - "community": 42, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L264", - "community": 42, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L267", - "community": 42, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L268", - "community": 42, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L269", - "community": 42, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L271", - "community": 42, - "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L272", - "community": 42, - "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L274", - "community": 42, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L294", - "community": 42, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L363", - "community": 42, - "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_type" - }, - { - "label": "compile_commands.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/compile_commands.json", - "source_location": "L1", - "community": 854, - "norm_label": "compile_commands.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_compile_commands_json" - }, - { - "label": "android_gradle_build_mini.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L1", - "community": 89, - "norm_label": "android_gradle_build_mini.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json" - }, - { - "label": "buildFiles", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L2", - "community": 89, - "norm_label": "buildfiles", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildfiles" - }, - { - "label": "cleanCommandsComponents", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L22", - "community": 89, - "norm_label": "cleancommandscomponents", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_cleancommandscomponents" - }, - { - "label": "buildTargetsCommandComponents", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L30", - "community": 89, - "norm_label": "buildtargetscommandcomponents", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildtargetscommandcomponents" - }, - { - "label": "libraries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L36", - "community": 89, - "norm_label": "libraries", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries" - }, - { - "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L37", - "community": 89, - "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" - }, - { - "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L47", - "community": 89, - "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" - }, - { - "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L52", - "community": 89, - "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" - }, - { - "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L62", - "community": 89, - "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" - }, - { - "label": "appmodules::@6890427a1f51a3e7e1df", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L67", - "community": 89, - "norm_label": "appmodules::@6890427a1f51a3e7e1df", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" - }, - { - "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L85", - "community": 89, - "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" - }, - { - "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L95", - "community": 89, - "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" - }, - { - "label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L105", - "community": 89, - "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" - }, - { - "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L110", - "community": 89, - "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" - }, - { - "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L115", - "community": 89, - "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" - }, - { - "label": "core::@1b9a7d546b295b7d0867", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L120", - "community": 89, - "norm_label": "core::@1b9a7d546b295b7d0867", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" - }, - { - "label": "artifactName", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L121", - "community": 89, - "norm_label": "artifactname", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "label": "abi", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L122", - "community": 89, - "norm_label": "abi", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "label": "output", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L123", - "community": 89, - "norm_label": "output", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "label": "runtimeFiles", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L124", - "community": 89, - "norm_label": "runtimefiles", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L126", - "community": 89, - "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" - }, - { - "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L136", - "community": 89, - "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" - }, - { - "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L141", - "community": 89, - "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" - }, - { - "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L151", - "community": 89, - "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" - }, - { - "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L156", - "community": 89, - "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" - }, - { - "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L166", - "community": 89, - "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" - }, - { - "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L171", - "community": 89, - "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" - }, - { - "label": "prefab_config.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", - "source_location": "L1", - "community": 671, - "norm_label": "prefab_config.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json" - }, - { - "label": "enabled", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", - "source_location": "L2", - "community": 671, - "norm_label": "enabled", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_enabled" - }, - { - "label": "prefabPath", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", - "source_location": "L3", - "community": 671, - "norm_label": "prefabpath", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_prefabpath" - }, - { - "label": "packages", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", - "source_location": "L4", - "community": 671, - "norm_label": "packages", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_packages" - }, - { - "label": "android_gradle_build.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L1", - "community": 11, - "norm_label": "android_gradle_build.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json" - }, - { - "label": "buildFiles", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L2", - "community": 11, - "norm_label": "buildfiles", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_buildfiles" - }, - { - "label": "cleanCommandsComponents", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L22", - "community": 11, - "norm_label": "cleancommandscomponents", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cleancommandscomponents" - }, - { - "label": "buildTargetsCommandComponents", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L30", - "community": 11, - "norm_label": "buildtargetscommandcomponents", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_buildtargetscommandcomponents" - }, - { - "label": "libraries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L36", - "community": 11, - "norm_label": "libraries", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries" - }, - { - "label": "appmodules::@6890427a1f51a3e7e1df", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L37", - "community": 11, - "norm_label": "appmodules::@6890427a1f51a3e7e1df", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" - }, - { - "label": "runtimeFiles", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L42", - "community": 11, - "norm_label": "runtimefiles", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "label": "core::@1b9a7d546b295b7d0867", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L56", - "community": 11, - "norm_label": "core::@1b9a7d546b295b7d0867", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" - }, - { - "label": "abi", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L58", - "community": 11, - "norm_label": "abi", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "label": "artifactName", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L59", - "community": 11, - "norm_label": "artifactname", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "label": "output", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L60", - "community": 11, - "norm_label": "output", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L62", - "community": 11, - "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" - }, - { - "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L73", - "community": 11, - "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" - }, - { - "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L84", - "community": 11, - "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" - }, - { - "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L89", - "community": 11, - "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" - }, - { - "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L100", - "community": 11, - "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" - }, - { - "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L105", - "community": 11, - "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" - }, - { - "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L110", - "community": 11, - "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" - }, - { - "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L121", - "community": 11, - "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" - }, - { - "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L126", - "community": 11, - "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" - }, - { - "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L131", - "community": 11, - "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" - }, - { - "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L136", - "community": 11, - "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" - }, - { - "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L147", - "community": 11, - "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" - }, - { - "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L152", - "community": 11, - "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" - }, - { - "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L163", - "community": 11, - "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" - }, - { - "label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L174", - "community": 11, - "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" - }, - { - "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L179", - "community": 11, - "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" - }, - { - "label": "toolchains", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L191", - "community": 11, - "norm_label": "toolchains", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains" - }, - { - "label": "toolchain", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L192", - "community": 11, - "norm_label": "toolchain", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "label": "cCompilerExecutable", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L193", - "community": 11, - "norm_label": "ccompilerexecutable", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_ccompilerexecutable" - }, - { - "label": "cppCompilerExecutable", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L194", - "community": 11, - "norm_label": "cppcompilerexecutable", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_cppcompilerexecutable" - }, - { - "label": "cFileExtensions", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L197", - "community": 11, - "norm_label": "cfileextensions", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cfileextensions" - }, - { - "label": "cppFileExtensions", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L198", - "community": 11, - "norm_label": "cppfileextensions", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cppfileextensions" - }, - { - "label": "foo.cpp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", - "source_location": "L1", - "community": 728, - "norm_label": "foo.cpp", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_foo_cpp" - }, - { - "label": "foo()", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", - "source_location": "L1", - "community": 728, - "norm_label": "foo()", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_foo_cpp_src_foo_foo" - }, - { - "label": "main.cpp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", - "source_location": "L1", - "community": 729, - "norm_label": "main.cpp", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_main_cpp" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", - "source_location": "L3", - "community": 729, - "norm_label": "main()", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_main_cpp_src_main_main" - }, - { - "label": "CMakeCCompilerId.c", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", - "source_location": "L1", - "community": 726, - "norm_label": "cmakeccompilerid.c", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", - "source_location": "L771", - "community": 726, - "norm_label": "main()", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c_compileridc_cmakeccompilerid_main" - }, - { - "label": "CMakeCXXCompilerId.cpp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", - "source_location": "L1", - "community": 727, - "norm_label": "cmakecxxcompilerid.cpp", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", - "source_location": "L767", - "community": 727, - "norm_label": "main()", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" - }, - { - "label": "index-2026-06-09T18-20-47-0498.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L1", - "community": 120, - "norm_label": "index-2026-06-09t18-20-47-0498.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_index_2026_06_09t18_20_47_0498_json" - }, - { - "label": "cmake", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L2", - "community": 120, - "norm_label": "cmake", - "id": "reply_index_2026_06_09t18_20_47_0498_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L4", - "community": 120, - "norm_label": "generator", - "id": "reply_index_2026_06_09t18_20_47_0498_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L6", - "community": 120, - "norm_label": "multiconfig", - "id": "reply_index_2026_06_09t18_20_47_0498_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L7", - "community": 120, - "norm_label": "name", - "id": "reply_index_2026_06_09t18_20_47_0498_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L9", - "community": 120, - "norm_label": "paths", - "id": "reply_index_2026_06_09t18_20_47_0498_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L12", - "community": 120, - "norm_label": "cpack", - "id": "reply_index_2026_06_09t18_20_47_0498_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L13", - "community": 120, - "norm_label": "ctest", - "id": "reply_index_2026_06_09t18_20_47_0498_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L14", - "community": 120, - "norm_label": "root", - "id": "reply_index_2026_06_09t18_20_47_0498_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L16", - "community": 120, - "norm_label": "version", - "id": "reply_index_2026_06_09t18_20_47_0498_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L18", - "community": 120, - "norm_label": "isdirty", - "id": "reply_index_2026_06_09t18_20_47_0498_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L19", - "community": 120, - "norm_label": "major", - "id": "reply_index_2026_06_09t18_20_47_0498_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L20", - "community": 120, - "norm_label": "minor", - "id": "reply_index_2026_06_09t18_20_47_0498_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L21", - "community": 120, - "norm_label": "patch", - "id": "reply_index_2026_06_09t18_20_47_0498_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L22", - "community": 120, - "norm_label": "string", - "id": "reply_index_2026_06_09t18_20_47_0498_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L23", - "community": 120, - "norm_label": "suffix", - "id": "reply_index_2026_06_09t18_20_47_0498_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L26", - "community": 120, - "norm_label": "objects", - "id": "reply_index_2026_06_09t18_20_47_0498_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L56", - "community": 120, - "norm_label": "reply", - "id": "reply_index_2026_06_09t18_20_47_0498_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L58", - "community": 120, - "norm_label": "client-agp", - "id": "reply_index_2026_06_09t18_20_47_0498_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L60", - "community": 120, - "norm_label": "cache-v2", - "id": "reply_index_2026_06_09t18_20_47_0498_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L62", - "community": 120, - "norm_label": "jsonfile", - "id": "reply_index_2026_06_09t18_20_47_0498_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L63", - "community": 120, - "norm_label": "kind", - "id": "reply_index_2026_06_09t18_20_47_0498_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L70", - "community": 120, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_06_09t18_20_47_0498_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L80", - "community": 120, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_06_09t18_20_47_0498_client_agp_codemodel_v2" - }, - { - "label": "target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L1", - "community": 323, - "norm_label": "target-react_codegen_rnmmkvspec-debug-ef9b9bcc9f5e0f77ea1b.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L2", - "community": 323, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L26", - "community": 323, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L27", - "community": 323, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L29", - "community": 323, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L38", - "community": 323, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L43", - "community": 323, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L86", - "community": 323, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L201", - "community": 323, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L202", - "community": 323, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L203", - "community": 323, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L205", - "community": 323, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L206", - "community": 323, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L208", - "community": 323, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L224", - "community": 323, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L269", - "community": 323, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" - }, - { - "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L1", - "community": 108, - "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build-debug-3c4f354f8e9d2bc9c5a6.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L2", - "community": 108, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L4", - "community": 108, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L5", - "community": 108, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L6", - "community": 108, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L8", - "community": 108, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L9", - "community": 108, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L11", - "community": 108, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L12", - "community": 108, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_source" - }, - { - "label": "directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L1", - "community": 98, - "norm_label": "directory-rnmmkvspec_autolinked_build-debug-0a577c6ddcdff9b1cd2d.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L2", - "community": 98, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L4", - "community": 98, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L5", - "community": 98, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L6", - "community": 98, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L8", - "community": 98, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L9", - "community": 98, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L11", - "community": 98, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L12", - "community": 98, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_source" - }, - { - "label": "target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L1", - "community": 184, - "norm_label": "target-react_codegen_rncslider-debug-62d6096eceabc965868b.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L2", - "community": 184, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L8", - "community": 184, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L9", - "community": 184, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L11", - "community": 184, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L20", - "community": 184, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L25", - "community": 184, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L68", - "community": 184, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L196", - "community": 184, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L197", - "community": 184, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L199", - "community": 184, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L225", - "community": 184, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L226", - "community": 184, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L228", - "community": 184, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L231", - "community": 184, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L232", - "community": 184, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L233", - "community": 184, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L235", - "community": 184, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L236", - "community": 184, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L238", - "community": 184, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L256", - "community": 184, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L313", - "community": 184, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_type" - }, - { - "label": "directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L1", - "community": 502, - "norm_label": "directory-rnsvg_autolinked_build-debug-251c63907f461abe26aa.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L2", - "community": 502, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L4", - "community": 502, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L5", - "community": 502, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L6", - "community": 502, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L8", - "community": 502, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L9", - "community": 502, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L11", - "community": 502, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L12", - "community": 502, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_source" - }, - { - "label": "directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L1", - "community": 499, - "norm_label": "directory-lottiereactnative_autolinked_build-debug-b03690d896f7026a177d.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L2", - "community": 499, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L4", - "community": 499, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L5", - "community": 499, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L6", - "community": 499, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L8", - "community": 499, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L9", - "community": 499, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L11", - "community": 499, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L12", - "community": 499, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_source" - }, - { - "label": "directory-.-Debug-f5ebdc15457944623624.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L1", - "community": 498, - "norm_label": "directory-.-debug-f5ebdc15457944623624.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L2", - "community": 498, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L4", - "community": 498, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L5", - "community": 498, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L6", - "community": 498, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L8", - "community": 498, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L9", - "community": 498, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L11", - "community": 498, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L12", - "community": 498, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_source" - }, - { - "label": "cache-v2-027f2493b14bc6e31dae.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-027f2493b14bc6e31dae.json", - "source_location": "L1", - "community": 637, - "norm_label": "cache-v2-027f2493b14bc6e31dae.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cache_v2_027f2493b14bc6e31dae_json" - }, - { - "label": "entries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-027f2493b14bc6e31dae.json", - "source_location": "L2", - "community": 637, - "norm_label": "entries", - "id": "reply_cache_v2_027f2493b14bc6e31dae_entries" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-027f2493b14bc6e31dae.json", - "source_location": "L1669", - "community": 637, - "norm_label": "kind", - "id": "reply_cache_v2_027f2493b14bc6e31dae_kind" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-027f2493b14bc6e31dae.json", - "source_location": "L1670", - "community": 637, - "norm_label": "version", - "id": "reply_cache_v2_027f2493b14bc6e31dae_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-027f2493b14bc6e31dae.json", - "source_location": "L1672", - "community": 637, - "norm_label": "major", - "id": "reply_cache_v2_027f2493b14bc6e31dae_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-027f2493b14bc6e31dae.json", - "source_location": "L1673", - "community": 637, - "norm_label": "minor", - "id": "reply_cache_v2_027f2493b14bc6e31dae_version_minor" - }, - { - "label": "directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L1", - "community": 100, - "norm_label": "directory-rnpicker_autolinked_build-debug-aa9f04d4f6540efeba1f.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L2", - "community": 100, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L4", - "community": 100, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L5", - "community": 100, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L6", - "community": 100, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L8", - "community": 100, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L9", - "community": 100, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L11", - "community": 100, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L12", - "community": 100, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_source" - }, - { - "label": "directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L1", - "community": 97, - "norm_label": "directory-rngesturehandler_codegen_autolinked_build-debug-c1f265f99af0b94266ef.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L2", - "community": 97, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L4", - "community": 97, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L5", - "community": 97, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L6", - "community": 97, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L8", - "community": 97, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L9", - "community": 97, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L11", - "community": 97, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L12", - "community": 97, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_source" - }, - { - "label": "target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L1", - "community": 208, - "norm_label": "target-react_codegen_rnpicker-debug-8c1a47d79fecf1ba4fb6.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L2", - "community": 208, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L8", - "community": 208, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L9", - "community": 208, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L11", - "community": 208, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L19", - "community": 208, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L23", - "community": 208, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L60", - "community": 208, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L188", - "community": 208, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L189", - "community": 208, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L191", - "community": 208, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L217", - "community": 208, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L218", - "community": 208, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L220", - "community": 208, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L223", - "community": 208, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L224", - "community": 208, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L225", - "community": 208, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L227", - "community": 208, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L228", - "community": 208, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L230", - "community": 208, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L252", - "community": 208, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L333", - "community": 208, - "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_type" - }, - { - "label": "target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L1", - "community": 237, - "norm_label": "target-react_codegen_safeareacontext-debug-a74c90381a3bbea62adf.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L2", - "community": 237, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L8", - "community": 237, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L9", - "community": 237, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L11", - "community": 237, - "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L20", - "community": 237, - "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L25", - "community": 237, - "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L74", - "community": 237, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L214", - "community": 237, - "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L215", - "community": 237, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L217", - "community": 237, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L243", - "community": 237, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L244", - "community": 237, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L246", - "community": 237, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L249", - "community": 237, - "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L250", - "community": 237, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L251", - "community": 237, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L253", - "community": 237, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L254", - "community": 237, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L256", - "community": 237, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L274", - "community": 237, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L331", - "community": 237, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_type" - }, - { - "label": "target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L1", - "community": 228, - "norm_label": "target-react_codegen_rnsvg-debug-f277be611a2f8ccc0ce9.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L2", - "community": 228, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L8", - "community": 228, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L9", - "community": 228, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L11", - "community": 228, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L20", - "community": 228, - "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L25", - "community": 228, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L86", - "community": 228, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L232", - "community": 228, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L233", - "community": 228, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L235", - "community": 228, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L261", - "community": 228, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L262", - "community": 228, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L264", - "community": 228, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L267", - "community": 228, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L268", - "community": 228, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L269", - "community": 228, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L271", - "community": 228, - "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L272", - "community": 228, - "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L274", - "community": 228, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L294", - "community": 228, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L363", - "community": 228, - "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_type" - }, - { - "label": "directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L1", - "community": 105, - "norm_label": "directory-rncslider_autolinked_build-debug-9692891af1777e76efd8.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L2", - "community": 105, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L4", - "community": 105, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L5", - "community": 105, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L6", - "community": 105, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L8", - "community": 105, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L9", - "community": 105, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L11", - "community": 105, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L12", - "community": 105, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_source" - }, - { - "label": "cmakeFiles-v1-d472f073bd743b519d8b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L1", - "community": 582, - "norm_label": "cmakefiles-v1-d472f073bd743b519d8b.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cmakefiles_v1_d472f073bd743b519d8b_json" - }, - { - "label": "inputs", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L2", - "community": 582, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_d472f073bd743b519d8b_inputs" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L989", - "community": 582, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_d472f073bd743b519d8b_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L990", - "community": 582, - "norm_label": "paths", - "id": "reply_cmakefiles_v1_d472f073bd743b519d8b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L992", - "community": 582, - "norm_label": "build", - "id": "reply_cmakefiles_v1_d472f073bd743b519d8b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L993", - "community": 582, - "norm_label": "source", - "id": "reply_cmakefiles_v1_d472f073bd743b519d8b_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L995", - "community": 582, - "norm_label": "version", - "id": "reply_cmakefiles_v1_d472f073bd743b519d8b_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L997", - "community": 582, - "norm_label": "major", - "id": "reply_cmakefiles_v1_d472f073bd743b519d8b_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L998", - "community": 582, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_d472f073bd743b519d8b_version_minor" - }, - { - "label": "codemodel-v2-5d522f9ba5866b363040.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L1", - "community": 587, - "norm_label": "codemodel-v2-5d522f9ba5866b363040.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_codemodel_v2_5d522f9ba5866b363040_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L2", - "community": 587, - "norm_label": "configurations", - "id": "reply_codemodel_v2_5d522f9ba5866b363040_configurations" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L508", - "community": 587, - "norm_label": "kind", - "id": "reply_codemodel_v2_5d522f9ba5866b363040_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L509", - "community": 587, - "norm_label": "paths", - "id": "reply_codemodel_v2_5d522f9ba5866b363040_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L511", - "community": 587, - "norm_label": "build", - "id": "reply_codemodel_v2_5d522f9ba5866b363040_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L512", - "community": 587, - "norm_label": "source", - "id": "reply_codemodel_v2_5d522f9ba5866b363040_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L514", - "community": 587, - "norm_label": "version", - "id": "reply_codemodel_v2_5d522f9ba5866b363040_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L516", - "community": 587, - "norm_label": "major", - "id": "reply_codemodel_v2_5d522f9ba5866b363040_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L517", - "community": 587, - "norm_label": "minor", - "id": "reply_codemodel_v2_5d522f9ba5866b363040_version_minor" - }, - { - "label": "target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L1", - "community": 320, - "norm_label": "target-react_codegen_rnctabview-debug-06b5fac189d4c1b8bd14.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L2", - "community": 320, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L26", - "community": 320, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L27", - "community": 320, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L29", - "community": 320, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L38", - "community": 320, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L43", - "community": 320, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L86", - "community": 320, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L201", - "community": 320, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L202", - "community": 320, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L203", - "community": 320, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L205", - "community": 320, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L206", - "community": 320, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L208", - "community": 320, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L224", - "community": 320, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L269", - "community": 320, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" - }, - { - "label": "target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L1", - "community": 325, - "norm_label": "target-react_codegen_rnworklets-debug-aff294105f916fb22711.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L2", - "community": 325, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L26", - "community": 325, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L27", - "community": 325, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L29", - "community": 325, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L38", - "community": 325, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L43", - "community": 325, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L86", - "community": 325, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L201", - "community": 325, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L202", - "community": 325, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L203", - "community": 325, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L205", - "community": 325, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L206", - "community": 325, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L208", - "community": 325, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L224", - "community": 325, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L269", - "community": 325, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L1", - "community": 322, - "norm_label": "target-react_codegen_rnmenuviewspec-debug-b6f81a68b0bec81bef04.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L2", - "community": 322, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L26", - "community": 322, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L27", - "community": 322, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L29", - "community": 322, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L38", - "community": 322, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L43", - "community": 322, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L86", - "community": 322, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L201", - "community": 322, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L202", - "community": 322, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L203", - "community": 322, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L205", - "community": 322, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L206", - "community": 322, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L208", - "community": 322, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L224", - "community": 322, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L269", - "community": 322, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" - }, - { - "label": "target-core-Debug-0104d26b141981fee9b4.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L1", - "community": 280, - "norm_label": "target-core-debug-0104d26b141981fee9b4.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json" - }, - { - "label": "archive", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L2", - "community": 280, - "norm_label": "archive", - "id": "reply_target_core_debug_0104d26b141981fee9b4_archive" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L3", - "community": 280, - "norm_label": "artifacts", - "id": "reply_target_core_debug_0104d26b141981fee9b4_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L9", - "community": 280, - "norm_label": "backtrace", - "id": "reply_target_core_debug_0104d26b141981fee9b4_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L10", - "community": 280, - "norm_label": "backtracegraph", - "id": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L12", - "community": 280, - "norm_label": "commands", - "id": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L19", - "community": 280, - "norm_label": "files", - "id": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L23", - "community": 280, - "norm_label": "nodes", - "id": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L54", - "community": 280, - "norm_label": "compilegroups", - "id": "reply_target_core_debug_0104d26b141981fee9b4_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L149", - "community": 280, - "norm_label": "id", - "id": "reply_target_core_debug_0104d26b141981fee9b4_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L150", - "community": 280, - "norm_label": "name", - "id": "reply_target_core_debug_0104d26b141981fee9b4_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L151", - "community": 280, - "norm_label": "nameondisk", - "id": "reply_target_core_debug_0104d26b141981fee9b4_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L152", - "community": 280, - "norm_label": "paths", - "id": "reply_target_core_debug_0104d26b141981fee9b4_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L154", - "community": 280, - "norm_label": "build", - "id": "reply_target_core_debug_0104d26b141981fee9b4_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L155", - "community": 280, - "norm_label": "source", - "id": "reply_target_core_debug_0104d26b141981fee9b4_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L157", - "community": 280, - "norm_label": "sourcegroups", - "id": "reply_target_core_debug_0104d26b141981fee9b4_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L240", - "community": 280, - "norm_label": "sources", - "id": "reply_target_core_debug_0104d26b141981fee9b4_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L588", - "community": 280, - "norm_label": "type", - "id": "reply_target_core_debug_0104d26b141981fee9b4_type" - }, - { - "label": "directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L1", - "community": 102, - "norm_label": "directory-rnworklets_autolinked_build-debug-c55782449035392fe125.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L2", - "community": 102, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L4", - "community": 102, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L5", - "community": 102, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L6", - "community": 102, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L8", - "community": 102, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L9", - "community": 102, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L11", - "community": 102, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L12", - "community": 102, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_source" - }, - { - "label": "directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L1", - "community": 101, - "norm_label": "directory-rnreanimated_autolinked_build-debug-f4aeae2d37b82d815393.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L2", - "community": 101, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L4", - "community": 101, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L5", - "community": 101, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L6", - "community": 101, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L8", - "community": 101, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L9", - "community": 101, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L11", - "community": 101, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L12", - "community": 101, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_source" - }, - { - "label": "directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L1", - "community": 501, - "norm_label": "directory-rnscreens_autolinked_build-debug-762995bc626882b56722.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L2", - "community": 501, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L4", - "community": 501, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L5", - "community": 501, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L6", - "community": 501, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L8", - "community": 501, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L9", - "community": 501, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L11", - "community": 501, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L12", - "community": 501, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_source" - }, - { - "label": "directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L1", - "community": 103, - "norm_label": "directory-truesheetspec_autolinked_build-debug-6f8e1947845121968926.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L2", - "community": 103, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L4", - "community": 103, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L5", - "community": 103, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L6", - "community": 103, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L8", - "community": 103, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L9", - "community": 103, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L11", - "community": 103, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L12", - "community": 103, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_source" - }, - { - "label": "target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L1", - "community": 321, - "norm_label": "target-react_codegen_rngesturehandler_codegen-debug-9adbf8bf4a7da1436434.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L2", - "community": 321, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L26", - "community": 321, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L27", - "community": 321, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L29", - "community": 321, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L38", - "community": 321, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L43", - "community": 321, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L86", - "community": 321, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L201", - "community": 321, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L202", - "community": 321, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L203", - "community": 321, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L205", - "community": 321, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L206", - "community": 321, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L208", - "community": 321, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L224", - "community": 321, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L269", - "community": 321, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" - }, - { - "label": "directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L1", - "community": 106, - "norm_label": "directory-rnctabview_autolinked_build-debug-b7a7f29ab6b37dd5df56.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L2", - "community": 106, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L4", - "community": 106, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L5", - "community": 106, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L6", - "community": 106, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L8", - "community": 106, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L9", - "community": 106, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L11", - "community": 106, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L12", - "community": 106, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_source" - }, - { - "label": "target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L1", - "community": 147, - "norm_label": "target-react-native-mmkv-debug-a1dd8906b38c697a0d66.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L2", - "community": 147, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L8", - "community": 147, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L9", - "community": 147, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L11", - "community": 147, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L17", - "community": 147, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L21", - "community": 147, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L52", - "community": 147, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L161", - "community": 147, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L172", - "community": 147, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L173", - "community": 147, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L175", - "community": 147, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L217", - "community": 147, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L218", - "community": 147, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L220", - "community": 147, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L223", - "community": 147, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L224", - "community": 147, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L225", - "community": 147, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L227", - "community": 147, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L228", - "community": 147, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L230", - "community": 147, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L255", - "community": 147, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L318", - "community": 147, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_type" - }, - { - "label": "target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L1", - "community": 216, - "norm_label": "target-react_codegen_rnscreens-debug-880d5254bdabac99020f.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L2", - "community": 216, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L8", - "community": 216, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L9", - "community": 216, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L11", - "community": 216, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L21", - "community": 216, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L26", - "community": 216, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L75", - "community": 216, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L224", - "community": 216, - "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L225", - "community": 216, - "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L227", - "community": 216, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L253", - "community": 216, - "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L254", - "community": 216, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L256", - "community": 216, - "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L259", - "community": 216, - "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L260", - "community": 216, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L261", - "community": 216, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L263", - "community": 216, - "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L264", - "community": 216, - "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L266", - "community": 216, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L293", - "community": 216, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L404", - "community": 216, - "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_type" - }, - { - "label": "target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L1", - "community": 135, - "norm_label": "target-appmodules-debug-5e6fe30af5e7089b253f.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L2", - "community": 135, - "norm_label": "artifacts", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L8", - "community": 135, - "norm_label": "backtrace", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L9", - "community": 135, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L11", - "community": 135, - "norm_label": "commands", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L21", - "community": 135, - "norm_label": "files", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L34", - "community": 135, - "norm_label": "nodes", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L156", - "community": 135, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L481", - "community": 135, - "norm_label": "dependencies", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L552", - "community": 135, - "norm_label": "id", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L553", - "community": 135, - "norm_label": "link", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L555", - "community": 135, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L637", - "community": 135, - "norm_label": "language", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L638", - "community": 135, - "norm_label": "sysroot", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L640", - "community": 135, - "norm_label": "path", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L643", - "community": 135, - "norm_label": "name", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L644", - "community": 135, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L645", - "community": 135, - "norm_label": "paths", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L647", - "community": 135, - "norm_label": "build", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L648", - "community": 135, - "norm_label": "source", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L650", - "community": 135, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L723", - "community": 135, - "norm_label": "sources", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L1074", - "community": 135, - "norm_label": "type", - "id": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_type" - }, - { - "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L1", - "community": 99, - "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build.core-debug-a9f6f6c634eac5fe0705.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L2", - "community": 99, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L4", - "community": 99, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L5", - "community": 99, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L6", - "community": 99, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L8", - "community": 99, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L9", - "community": 99, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L11", - "community": 99, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L12", - "community": 99, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_source" - }, - { - "label": "target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L1", - "community": 318, - "norm_label": "target-react_codegen_lottiereactnative-debug-5cbd8a8add4d52eb7aec.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L2", - "community": 318, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L26", - "community": 318, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L27", - "community": 318, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L29", - "community": 318, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L38", - "community": 318, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L43", - "community": 318, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L86", - "community": 318, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L201", - "community": 318, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L202", - "community": 318, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L203", - "community": 318, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L205", - "community": 318, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L206", - "community": 318, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L208", - "community": 318, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L224", - "community": 318, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L269", - "community": 318, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" - }, - { - "label": "directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L1", - "community": 503, - "norm_label": "directory-safeareacontext_autolinked_build-debug-02cc5c5531c5c58ac73d.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L2", - "community": 503, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L4", - "community": 503, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L5", - "community": 503, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L6", - "community": 503, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L8", - "community": 503, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L9", - "community": 503, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L11", - "community": 503, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L12", - "community": 503, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_source" - }, - { - "label": "directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L1", - "community": 104, - "norm_label": "directory-rnasyncstorage_autolinked_build-debug-ec755c3cd9003338013f.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L2", - "community": 104, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L4", - "community": 104, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L5", - "community": 104, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L6", - "community": 104, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L8", - "community": 104, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L9", - "community": 104, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L11", - "community": 104, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L12", - "community": 104, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_source" - }, - { - "label": "target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L1", - "community": 319, - "norm_label": "target-react_codegen_rnasyncstorage-debug-919046727d8d904e898b.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L2", - "community": 319, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L26", - "community": 319, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L27", - "community": 319, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L29", - "community": 319, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L38", - "community": 319, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L43", - "community": 319, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L86", - "community": 319, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L201", - "community": 319, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L202", - "community": 319, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L203", - "community": 319, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L205", - "community": 319, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L206", - "community": 319, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L208", - "community": 319, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L224", - "community": 319, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L269", - "community": 319, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" - }, - { - "label": "target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L1", - "community": 324, - "norm_label": "target-react_codegen_rnreanimated-debug-30d00d3524d3c338dd40.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L2", - "community": 324, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L26", - "community": 324, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L27", - "community": 324, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L29", - "community": 324, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L38", - "community": 324, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L43", - "community": 324, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L86", - "community": 324, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L201", - "community": 324, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L202", - "community": 324, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L203", - "community": 324, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L205", - "community": 324, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L206", - "community": 324, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L208", - "community": 324, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L224", - "community": 324, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L269", - "community": 324, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" - }, - { - "label": "directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L1", - "community": 107, - "norm_label": "directory-rnmenuviewspec_autolinked_build-debug-db93909da8ac45d348e4.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L2", - "community": 107, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L4", - "community": 107, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L5", - "community": 107, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L6", - "community": 107, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L8", - "community": 107, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L9", - "community": 107, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L11", - "community": 107, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L12", - "community": 107, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_source" - }, - { - "label": "target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L1", - "community": 197, - "norm_label": "target-react_codegen_rnkc-debug-53931c6bb745a7a40fde.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L2", - "community": 197, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L8", - "community": 197, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L9", - "community": 197, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L11", - "community": 197, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L21", - "community": 197, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L26", - "community": 197, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L75", - "community": 197, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L221", - "community": 197, - "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L222", - "community": 197, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L224", - "community": 197, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L250", - "community": 197, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L251", - "community": 197, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L253", - "community": 197, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L256", - "community": 197, - "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L257", - "community": 197, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L258", - "community": 197, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L260", - "community": 197, - "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L261", - "community": 197, - "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L263", - "community": 197, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L287", - "community": 197, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L380", - "community": 197, - "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_type" - }, - { - "label": "directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L1", - "community": 500, - "norm_label": "directory-rnkc_autolinked_build-debug-9b81a6f2831b76917207.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L2", - "community": 500, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L4", - "community": 500, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L5", - "community": 500, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L6", - "community": 500, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L8", - "community": 500, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L9", - "community": 500, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L11", - "community": 500, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L12", - "community": 500, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_source" - }, - { - "label": "target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L1", - "community": 247, - "norm_label": "target-react_codegen_truesheetspec-debug-25cf37b3da67fb5d3dbf.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L2", - "community": 247, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L8", - "community": 247, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L9", - "community": 247, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L11", - "community": 247, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L20", - "community": 247, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L25", - "community": 247, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L74", - "community": 247, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L214", - "community": 247, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L215", - "community": 247, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L217", - "community": 247, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L243", - "community": 247, - "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L244", - "community": 247, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L246", - "community": 247, - "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L249", - "community": 247, - "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L250", - "community": 247, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L251", - "community": 247, - "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L253", - "community": 247, - "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L254", - "community": 247, - "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L256", - "community": 247, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L274", - "community": 247, - "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L331", - "community": 247, - "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_type" - }, - { - "label": "target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L1", - "community": 299, - "norm_label": "target-react_codegen_rnmmkvspec-debug-ef9b9bcc9f5e0f77ea1b.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L2", - "community": 299, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L26", - "community": 299, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L27", - "community": 299, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L29", - "community": 299, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L38", - "community": 299, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L43", - "community": 299, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L86", - "community": 299, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L201", - "community": 299, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L202", - "community": 299, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L203", - "community": 299, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L205", - "community": 299, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L206", - "community": 299, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L208", - "community": 299, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L224", - "community": 299, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L269", - "community": 299, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" - }, - { - "label": "codemodel-v2-bfd56f26dc1a4aadf184.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L1", - "community": 593, - "norm_label": "codemodel-v2-bfd56f26dc1a4aadf184.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_bfd56f26dc1a4aadf184_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L2", - "community": 593, - "norm_label": "configurations", - "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_configurations" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L508", - "community": 593, - "norm_label": "kind", - "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L509", - "community": 593, - "norm_label": "paths", - "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L511", - "community": 593, - "norm_label": "build", - "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L512", - "community": 593, - "norm_label": "source", - "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L514", - "community": 593, - "norm_label": "version", - "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L516", - "community": 593, - "norm_label": "major", - "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L517", - "community": 593, - "norm_label": "minor", - "id": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version_minor" - }, - { - "label": "index-2026-06-09T18-20-42-0245.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L1", - "community": 38, - "norm_label": "index-2026-06-09t18-20-42-0245.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_06_09t18_20_42_0245_json" - }, - { - "label": "cmake", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L2", - "community": 38, - "norm_label": "cmake", - "id": "reply_index_2026_06_09t18_20_42_0245_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L4", - "community": 38, - "norm_label": "generator", - "id": "reply_index_2026_06_09t18_20_42_0245_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L6", - "community": 38, - "norm_label": "multiconfig", - "id": "reply_index_2026_06_09t18_20_42_0245_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L7", - "community": 38, - "norm_label": "name", - "id": "reply_index_2026_06_09t18_20_42_0245_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L9", - "community": 38, - "norm_label": "paths", - "id": "reply_index_2026_06_09t18_20_42_0245_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L12", - "community": 38, - "norm_label": "cpack", - "id": "reply_index_2026_06_09t18_20_42_0245_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L13", - "community": 38, - "norm_label": "ctest", - "id": "reply_index_2026_06_09t18_20_42_0245_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L14", - "community": 38, - "norm_label": "root", - "id": "reply_index_2026_06_09t18_20_42_0245_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L16", - "community": 38, - "norm_label": "version", - "id": "reply_index_2026_06_09t18_20_42_0245_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L18", - "community": 38, - "norm_label": "isdirty", - "id": "reply_index_2026_06_09t18_20_42_0245_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L19", - "community": 38, - "norm_label": "major", - "id": "reply_index_2026_06_09t18_20_42_0245_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L20", - "community": 38, - "norm_label": "minor", - "id": "reply_index_2026_06_09t18_20_42_0245_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L21", - "community": 38, - "norm_label": "patch", - "id": "reply_index_2026_06_09t18_20_42_0245_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L22", - "community": 38, - "norm_label": "string", - "id": "reply_index_2026_06_09t18_20_42_0245_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L23", - "community": 38, - "norm_label": "suffix", - "id": "reply_index_2026_06_09t18_20_42_0245_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L26", - "community": 38, - "norm_label": "objects", - "id": "reply_index_2026_06_09t18_20_42_0245_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L56", - "community": 38, - "norm_label": "reply", - "id": "reply_index_2026_06_09t18_20_42_0245_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L58", - "community": 38, - "norm_label": "client-agp", - "id": "reply_index_2026_06_09t18_20_42_0245_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L60", - "community": 38, - "norm_label": "cache-v2", - "id": "reply_index_2026_06_09t18_20_42_0245_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L62", - "community": 38, - "norm_label": "jsonfile", - "id": "reply_index_2026_06_09t18_20_42_0245_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L63", - "community": 38, - "norm_label": "kind", - "id": "reply_index_2026_06_09t18_20_42_0245_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L70", - "community": 38, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_06_09t18_20_42_0245_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L80", - "community": 38, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_06_09t18_20_42_0245_client_agp_codemodel_v2" - }, - { - "label": "target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L1", - "community": 162, - "norm_label": "target-react_codegen_truesheetspec-debug-67c09c1b5a88674c1ba6.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L2", - "community": 162, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L8", - "community": 162, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L9", - "community": 162, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L11", - "community": 162, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L20", - "community": 162, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L25", - "community": 162, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L74", - "community": 162, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L214", - "community": 162, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L215", - "community": 162, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L217", - "community": 162, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L243", - "community": 162, - "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L244", - "community": 162, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L246", - "community": 162, - "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L249", - "community": 162, - "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L250", - "community": 162, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L251", - "community": 162, - "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L253", - "community": 162, - "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L254", - "community": 162, - "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L256", - "community": 162, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L274", - "community": 162, - "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L331", - "community": 162, - "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_type" - }, - { - "label": "target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L1", - "community": 145, - "norm_label": "target-react-native-mmkv-debug-45f49675044b4c0c5cb5.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L2", - "community": 145, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L8", - "community": 145, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L9", - "community": 145, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L11", - "community": 145, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L17", - "community": 145, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L21", - "community": 145, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L52", - "community": 145, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L161", - "community": 145, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L172", - "community": 145, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L173", - "community": 145, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L175", - "community": 145, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L217", - "community": 145, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L218", - "community": 145, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L220", - "community": 145, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L223", - "community": 145, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L224", - "community": 145, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L225", - "community": 145, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L227", - "community": 145, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L228", - "community": 145, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L230", - "community": 145, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L255", - "community": 145, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L318", - "community": 145, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_type" - }, - { - "label": "target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L1", - "community": 42, - "norm_label": "target-react_codegen_rnsvg-debug-8d0eb4f9946e22b8d163.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L2", - "community": 42, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L8", - "community": 42, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L9", - "community": 42, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L11", - "community": 42, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L20", - "community": 42, - "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L25", - "community": 42, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L86", - "community": 42, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L232", - "community": 42, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L233", - "community": 42, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L235", - "community": 42, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L261", - "community": 42, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L262", - "community": 42, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L264", - "community": 42, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L267", - "community": 42, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L268", - "community": 42, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L269", - "community": 42, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L271", - "community": 42, - "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L272", - "community": 42, - "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L274", - "community": 42, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L294", - "community": 42, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L363", - "community": 42, - "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_type" - }, - { - "label": "target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L1", - "community": 205, - "norm_label": "target-react_codegen_rnpicker-debug-2f265ba2d8986921fcff.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L2", - "community": 205, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L8", - "community": 205, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L9", - "community": 205, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L11", - "community": 205, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L19", - "community": 205, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L23", - "community": 205, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L60", - "community": 205, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L188", - "community": 205, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L189", - "community": 205, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L191", - "community": 205, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L217", - "community": 205, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L218", - "community": 205, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L220", - "community": 205, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L223", - "community": 205, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L224", - "community": 205, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L225", - "community": 205, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L227", - "community": 205, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L228", - "community": 205, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L230", - "community": 205, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L252", - "community": 205, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L333", - "community": 205, - "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_type" - }, - { - "label": "target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L1", - "community": 199, - "norm_label": "target-react_codegen_rnkc-debug-b50956fa4fc38e55c0d0.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L2", - "community": 199, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L8", - "community": 199, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L9", - "community": 199, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L11", - "community": 199, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L21", - "community": 199, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L26", - "community": 199, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L75", - "community": 199, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L221", - "community": 199, - "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L222", - "community": 199, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L224", - "community": 199, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L250", - "community": 199, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L251", - "community": 199, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L253", - "community": 199, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L256", - "community": 199, - "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L257", - "community": 199, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L258", - "community": 199, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L260", - "community": 199, - "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L261", - "community": 199, - "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L263", - "community": 199, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L287", - "community": 199, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L380", - "community": 199, - "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_type" - }, - { - "label": "target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L1", - "community": 236, - "norm_label": "target-react_codegen_safeareacontext-debug-9759123f4b1cfd9ca952.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L2", - "community": 236, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L8", - "community": 236, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L9", - "community": 236, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L11", - "community": 236, - "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L20", - "community": 236, - "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L25", - "community": 236, - "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L74", - "community": 236, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L214", - "community": 236, - "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L215", - "community": 236, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L217", - "community": 236, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L243", - "community": 236, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L244", - "community": 236, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L246", - "community": 236, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L249", - "community": 236, - "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L250", - "community": 236, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L251", - "community": 236, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L253", - "community": 236, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L254", - "community": 236, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L256", - "community": 236, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L274", - "community": 236, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L331", - "community": 236, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_type" - }, - { - "label": "target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L1", - "community": 295, - "norm_label": "target-react_codegen_rnctabview-debug-06b5fac189d4c1b8bd14.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L2", - "community": 295, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L26", - "community": 295, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L27", - "community": 295, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L29", - "community": 295, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L38", - "community": 295, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L43", - "community": 295, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L86", - "community": 295, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L201", - "community": 295, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L202", - "community": 295, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L203", - "community": 295, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L205", - "community": 295, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L206", - "community": 295, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L208", - "community": 295, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L224", - "community": 295, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L269", - "community": 295, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" - }, - { - "label": "target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L1", - "community": 183, - "norm_label": "target-react_codegen_rncslider-debug-3d5eb96e38bd8c0355d9.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L2", - "community": 183, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L8", - "community": 183, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L9", - "community": 183, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L11", - "community": 183, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L20", - "community": 183, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L25", - "community": 183, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L68", - "community": 183, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L196", - "community": 183, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L197", - "community": 183, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L199", - "community": 183, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L225", - "community": 183, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L226", - "community": 183, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L228", - "community": 183, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L231", - "community": 183, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L232", - "community": 183, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L233", - "community": 183, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L235", - "community": 183, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L236", - "community": 183, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L238", - "community": 183, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L256", - "community": 183, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L313", - "community": 183, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_type" - }, - { - "label": "target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L1", - "community": 302, - "norm_label": "target-react_codegen_rnworklets-debug-aff294105f916fb22711.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L2", - "community": 302, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L26", - "community": 302, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L27", - "community": 302, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L29", - "community": 302, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L38", - "community": 302, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L43", - "community": 302, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L86", - "community": 302, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L201", - "community": 302, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L202", - "community": 302, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L203", - "community": 302, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L205", - "community": 302, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L206", - "community": 302, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L208", - "community": 302, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L224", - "community": 302, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L269", - "community": 302, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L1", - "community": 298, - "norm_label": "target-react_codegen_rnmenuviewspec-debug-b6f81a68b0bec81bef04.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L2", - "community": 298, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L26", - "community": 298, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L27", - "community": 298, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L29", - "community": 298, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L38", - "community": 298, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L43", - "community": 298, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L86", - "community": 298, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L201", - "community": 298, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L202", - "community": 298, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L203", - "community": 298, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L205", - "community": 298, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L206", - "community": 298, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L208", - "community": 298, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L224", - "community": 298, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L269", - "community": 298, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" - }, - { - "label": "target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L1", - "community": 134, - "norm_label": "target-appmodules-debug-51ab77d88b2b5a4455c2.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L2", - "community": 134, - "norm_label": "artifacts", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L8", - "community": 134, - "norm_label": "backtrace", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L9", - "community": 134, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L11", - "community": 134, - "norm_label": "commands", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L21", - "community": 134, - "norm_label": "files", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L34", - "community": 134, - "norm_label": "nodes", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L156", - "community": 134, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L481", - "community": 134, - "norm_label": "dependencies", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L552", - "community": 134, - "norm_label": "id", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L553", - "community": 134, - "norm_label": "link", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L555", - "community": 134, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L637", - "community": 134, - "norm_label": "language", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L638", - "community": 134, - "norm_label": "sysroot", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L640", - "community": 134, - "norm_label": "path", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L643", - "community": 134, - "norm_label": "name", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L644", - "community": 134, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L645", - "community": 134, - "norm_label": "paths", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L647", - "community": 134, - "norm_label": "build", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L648", - "community": 134, - "norm_label": "source", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L650", - "community": 134, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L723", - "community": 134, - "norm_label": "sources", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L1074", - "community": 134, - "norm_label": "type", - "id": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_type" - }, - { - "label": "target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L1", - "community": 296, - "norm_label": "target-react_codegen_rngesturehandler_codegen-debug-9adbf8bf4a7da1436434.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L2", - "community": 296, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L26", - "community": 296, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L27", - "community": 296, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L29", - "community": 296, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L38", - "community": 296, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L43", - "community": 296, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L86", - "community": 296, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L201", - "community": 296, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L202", - "community": 296, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L203", - "community": 296, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L205", - "community": 296, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L206", - "community": 296, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L208", - "community": 296, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L224", - "community": 296, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L269", - "community": 296, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" - }, - { - "label": "target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L1", - "community": 160, - "norm_label": "target-react_codegen_rnscreens-debug-1a5652031de03092cd25.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L2", - "community": 160, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L8", - "community": 160, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L9", - "community": 160, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L11", - "community": 160, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L21", - "community": 160, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L26", - "community": 160, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L75", - "community": 160, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L224", - "community": 160, - "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L225", - "community": 160, - "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L227", - "community": 160, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L253", - "community": 160, - "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L254", - "community": 160, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L256", - "community": 160, - "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L259", - "community": 160, - "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L260", - "community": 160, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L261", - "community": 160, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L263", - "community": 160, - "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L264", - "community": 160, - "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L266", - "community": 160, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L293", - "community": 160, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L404", - "community": 160, - "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_type" - }, - { - "label": "target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L1", - "community": 292, - "norm_label": "target-react_codegen_lottiereactnative-debug-5cbd8a8add4d52eb7aec.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L2", - "community": 292, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L26", - "community": 292, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L27", - "community": 292, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L29", - "community": 292, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L38", - "community": 292, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L43", - "community": 292, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L86", - "community": 292, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L201", - "community": 292, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L202", - "community": 292, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L203", - "community": 292, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L205", - "community": 292, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L206", - "community": 292, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L208", - "community": 292, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L224", - "community": 292, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L269", - "community": 292, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" - }, - { - "label": "target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L1", - "community": 293, - "norm_label": "target-react_codegen_rnasyncstorage-debug-919046727d8d904e898b.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L2", - "community": 293, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L26", - "community": 293, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L27", - "community": 293, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L29", - "community": 293, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L38", - "community": 293, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L43", - "community": 293, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L86", - "community": 293, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L201", - "community": 293, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L202", - "community": 293, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L203", - "community": 293, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L205", - "community": 293, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L206", - "community": 293, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L208", - "community": 293, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L224", - "community": 293, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L269", - "community": 293, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" - }, - { - "label": "target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L1", - "community": 301, - "norm_label": "target-react_codegen_rnreanimated-debug-30d00d3524d3c338dd40.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L2", - "community": 301, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L26", - "community": 301, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L27", - "community": 301, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L29", - "community": 301, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L38", - "community": 301, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L43", - "community": 301, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L86", - "community": 301, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L201", - "community": 301, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L202", - "community": 301, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L203", - "community": 301, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L205", - "community": 301, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L206", - "community": 301, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L208", - "community": 301, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L224", - "community": 301, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L269", - "community": 301, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" - }, - { - "label": "compile_commands.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/compile_commands.json", - "source_location": "L1", - "community": 855, - "norm_label": "compile_commands.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_compile_commands_json" - }, - { - "label": "android_gradle_build_mini.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L1", - "community": 88, - "norm_label": "android_gradle_build_mini.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json" - }, - { - "label": "buildFiles", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L2", - "community": 88, - "norm_label": "buildfiles", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildfiles" - }, - { - "label": "cleanCommandsComponents", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L22", - "community": 88, - "norm_label": "cleancommandscomponents", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_cleancommandscomponents" - }, - { - "label": "buildTargetsCommandComponents", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L30", - "community": 88, - "norm_label": "buildtargetscommandcomponents", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildtargetscommandcomponents" - }, - { - "label": "libraries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L36", - "community": 88, - "norm_label": "libraries", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries" - }, - { - "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L37", - "community": 88, - "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" - }, - { - "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L47", - "community": 88, - "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" - }, - { - "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L52", - "community": 88, - "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" - }, - { - "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L62", - "community": 88, - "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" - }, - { - "label": "appmodules::@6890427a1f51a3e7e1df", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L67", - "community": 88, - "norm_label": "appmodules::@6890427a1f51a3e7e1df", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" - }, - { - "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L85", - "community": 88, - "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" - }, - { - "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L95", - "community": 88, - "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" - }, - { - "label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L105", - "community": 88, - "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" - }, - { - "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L110", - "community": 88, - "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" - }, - { - "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L115", - "community": 88, - "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" - }, - { - "label": "core::@1b9a7d546b295b7d0867", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L120", - "community": 88, - "norm_label": "core::@1b9a7d546b295b7d0867", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" - }, - { - "label": "artifactName", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L121", - "community": 88, - "norm_label": "artifactname", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "label": "abi", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L122", - "community": 88, - "norm_label": "abi", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "label": "output", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L123", - "community": 88, - "norm_label": "output", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "label": "runtimeFiles", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L124", - "community": 88, - "norm_label": "runtimefiles", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L126", - "community": 88, - "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" - }, - { - "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L136", - "community": 88, - "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" - }, - { - "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L141", - "community": 88, - "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" - }, - { - "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L151", - "community": 88, - "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" - }, - { - "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L156", - "community": 88, - "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" - }, - { - "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L166", - "community": 88, - "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" - }, - { - "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L171", - "community": 88, - "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" - }, - { - "label": "prefab_config.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", - "source_location": "L1", - "community": 670, - "norm_label": "prefab_config.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json" - }, - { - "label": "enabled", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", - "source_location": "L2", - "community": 670, - "norm_label": "enabled", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_enabled" - }, - { - "label": "prefabPath", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", - "source_location": "L3", - "community": 670, - "norm_label": "prefabpath", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_prefabpath" - }, - { - "label": "packages", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", - "source_location": "L4", - "community": 670, - "norm_label": "packages", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_packages" - }, - { - "label": "android_gradle_build.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L1", - "community": 58, - "norm_label": "android_gradle_build.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json" - }, - { - "label": "buildFiles", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L2", - "community": 58, - "norm_label": "buildfiles", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildfiles" - }, - { - "label": "cleanCommandsComponents", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L22", - "community": 58, - "norm_label": "cleancommandscomponents", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cleancommandscomponents" - }, - { - "label": "buildTargetsCommandComponents", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L30", - "community": 58, - "norm_label": "buildtargetscommandcomponents", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildtargetscommandcomponents" - }, - { - "label": "libraries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L36", - "community": 58, - "norm_label": "libraries", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries" - }, - { - "label": "appmodules::@6890427a1f51a3e7e1df", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L37", - "community": 58, - "norm_label": "appmodules::@6890427a1f51a3e7e1df", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" - }, - { - "label": "runtimeFiles", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L42", - "community": 58, - "norm_label": "runtimefiles", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "label": "core::@1b9a7d546b295b7d0867", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L56", - "community": 58, - "norm_label": "core::@1b9a7d546b295b7d0867", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" - }, - { - "label": "abi", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L58", - "community": 58, - "norm_label": "abi", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "label": "artifactName", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L59", - "community": 58, - "norm_label": "artifactname", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "label": "output", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L60", - "community": 58, - "norm_label": "output", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L62", - "community": 58, - "norm_label": "react-native-mmkv::@4ae6a1e65d3e68ba0197", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" - }, - { - "label": "react_codegen_RNCSlider::@4898bc4726ecf1751b6a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L73", - "community": 58, - "norm_label": "react_codegen_rncslider::@4898bc4726ecf1751b6a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" - }, - { - "label": "react_codegen_RNCTabView::@54948b52a0aeebf4e5a8", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L84", - "community": 58, - "norm_label": "react_codegen_rnctabview::@54948b52a0aeebf4e5a8", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" - }, - { - "label": "react_codegen_RNKC::@01e3c54a97c6e9d385b6", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L89", - "community": 58, - "norm_label": "react_codegen_rnkc::@01e3c54a97c6e9d385b6", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" - }, - { - "label": "react_codegen_RNMenuViewSpec::@8c49e93dd4e1930e04c8", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L100", - "community": 58, - "norm_label": "react_codegen_rnmenuviewspec::@8c49e93dd4e1930e04c8", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" - }, - { - "label": "react_codegen_RNMmkvSpec::@7541eabbae598da31a69", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L105", - "community": 58, - "norm_label": "react_codegen_rnmmkvspec::@7541eabbae598da31a69", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" - }, - { - "label": "react_codegen_TrueSheetSpec::@a0669760263672514cc3", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L110", - "community": 58, - "norm_label": "react_codegen_truesheetspec::@a0669760263672514cc3", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" - }, - { - "label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L121", - "community": 58, - "norm_label": "react_codegen_lottiereactnative::@0fa4dc904d7e359a99fb", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" - }, - { - "label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L126", - "community": 58, - "norm_label": "react_codegen_rnasyncstorage::@1596841e19ec5b9eeffe", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" - }, - { - "label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L131", - "community": 58, - "norm_label": "react_codegen_rngesturehandler_codegen::@39f233abcd2c728bc6ec", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" - }, - { - "label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L136", - "community": 58, - "norm_label": "react_codegen_rnpicker::@e8bb2e9e833f47d0d516", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" - }, - { - "label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L147", - "community": 58, - "norm_label": "react_codegen_rnreanimated::@8afabad14bfffa3f8b9a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" - }, - { - "label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L152", - "community": 58, - "norm_label": "react_codegen_rnscreens::@25bcbd507e98d3a854ad", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" - }, - { - "label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L163", - "community": 58, - "norm_label": "react_codegen_rnsvg::@4f40eb209d0c0b4a3b65", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" - }, - { - "label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L174", - "community": 58, - "norm_label": "react_codegen_rnworklets::@68f58d84d4754f193387", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" - }, - { - "label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L179", - "community": 58, - "norm_label": "react_codegen_safeareacontext::@7984cd80db47aa7b952a", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" - }, - { - "label": "toolchains", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L191", - "community": 58, - "norm_label": "toolchains", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains" - }, - { - "label": "toolchain", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L192", - "community": 58, - "norm_label": "toolchain", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "label": "cCompilerExecutable", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L193", - "community": 58, - "norm_label": "ccompilerexecutable", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_ccompilerexecutable" - }, - { - "label": "cppCompilerExecutable", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L194", - "community": 58, - "norm_label": "cppcompilerexecutable", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_cppcompilerexecutable" - }, - { - "label": "cFileExtensions", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L197", - "community": 58, - "norm_label": "cfileextensions", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cfileextensions" - }, - { - "label": "cppFileExtensions", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L198", - "community": 58, - "norm_label": "cppfileextensions", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cppfileextensions" - }, - { - "label": "foo.cpp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", - "source_location": "L1", - "community": 724, - "norm_label": "foo.cpp", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_foo_cpp" - }, - { - "label": "foo()", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", - "source_location": "L1", - "community": 724, - "norm_label": "foo()", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_foo_cpp_src_foo_foo" - }, - { - "label": "main.cpp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", - "source_location": "L1", - "community": 725, - "norm_label": "main.cpp", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_main_cpp" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", - "source_location": "L3", - "community": 725, - "norm_label": "main()", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_main_cpp_src_main_main" - }, - { - "label": "CMakeCCompilerId.c", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", - "source_location": "L1", - "community": 722, - "norm_label": "cmakeccompilerid.c", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", - "source_location": "L771", - "community": 722, - "norm_label": "main()", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c_compileridc_cmakeccompilerid_main" - }, - { - "label": "CMakeCXXCompilerId.cpp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", - "source_location": "L1", - "community": 723, - "norm_label": "cmakecxxcompilerid.cpp", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", - "source_location": "L767", - "community": 723, - "norm_label": "main()", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" - }, - { - "label": "target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L1", - "community": 315, - "norm_label": "target-react_codegen_rnmmkvspec-debug-ef9b9bcc9f5e0f77ea1b.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L2", - "community": 315, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L26", - "community": 315, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L27", - "community": 315, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L29", - "community": 315, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L38", - "community": 315, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L43", - "community": 315, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L86", - "community": 315, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L201", - "community": 315, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L202", - "community": 315, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L203", - "community": 315, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L205", - "community": 315, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L206", - "community": 315, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L208", - "community": 315, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L224", - "community": 315, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L269", - "community": 315, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" - }, - { - "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L1", - "community": 490, - "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build-debug-3c4f354f8e9d2bc9c5a6.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L2", - "community": 490, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L4", - "community": 490, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L5", - "community": 490, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L6", - "community": 490, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L8", - "community": 490, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L9", - "community": 490, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L11", - "community": 490, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L12", - "community": 490, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_source" - }, - { - "label": "directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L1", - "community": 488, - "norm_label": "directory-rnmmkvspec_autolinked_build-debug-0a577c6ddcdff9b1cd2d.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L2", - "community": 488, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L4", - "community": 488, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L5", - "community": 488, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L6", - "community": 488, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L8", - "community": 488, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L9", - "community": 488, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L11", - "community": 488, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L12", - "community": 488, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_source" - }, - { - "label": "directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L1", - "community": 494, - "norm_label": "directory-rnsvg_autolinked_build-debug-251c63907f461abe26aa.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L2", - "community": 494, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L4", - "community": 494, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L5", - "community": 494, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L6", - "community": 494, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L8", - "community": 494, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L9", - "community": 494, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L11", - "community": 494, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L12", - "community": 494, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_source" - }, - { - "label": "directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L1", - "community": 481, - "norm_label": "directory-lottiereactnative_autolinked_build-debug-b03690d896f7026a177d.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L2", - "community": 481, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L4", - "community": 481, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L5", - "community": 481, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L6", - "community": 481, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L8", - "community": 481, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L9", - "community": 481, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L11", - "community": 481, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L12", - "community": 481, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_source" - }, - { - "label": "directory-.-Debug-f5ebdc15457944623624.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L1", - "community": 480, - "norm_label": "directory-.-debug-f5ebdc15457944623624.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L2", - "community": 480, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L4", - "community": 480, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L5", - "community": 480, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L6", - "community": 480, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L8", - "community": 480, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L9", - "community": 480, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L11", - "community": 480, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L12", - "community": 480, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_source" - }, - { - "label": "directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L1", - "community": 491, - "norm_label": "directory-rnpicker_autolinked_build-debug-aa9f04d4f6540efeba1f.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L2", - "community": 491, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L4", - "community": 491, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L5", - "community": 491, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L6", - "community": 491, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L8", - "community": 491, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L9", - "community": 491, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L11", - "community": 491, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L12", - "community": 491, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_source" - }, - { - "label": "directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L1", - "community": 485, - "norm_label": "directory-rngesturehandler_codegen_autolinked_build-debug-c1f265f99af0b94266ef.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L2", - "community": 485, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L4", - "community": 485, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L5", - "community": 485, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L6", - "community": 485, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L8", - "community": 485, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L9", - "community": 485, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L11", - "community": 485, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L12", - "community": 485, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_source" - }, - { - "label": "target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L1", - "community": 227, - "norm_label": "target-react_codegen_rnsvg-debug-a4e3e3004693fc5a6053.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L2", - "community": 227, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L8", - "community": 227, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L9", - "community": 227, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L11", - "community": 227, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L20", - "community": 227, - "norm_label": "files", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L25", - "community": 227, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L86", - "community": 227, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L232", - "community": 227, - "norm_label": "id", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L233", - "community": 227, - "norm_label": "link", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L235", - "community": 227, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L261", - "community": 227, - "norm_label": "language", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L262", - "community": 227, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L264", - "community": 227, - "norm_label": "path", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L267", - "community": 227, - "norm_label": "name", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L268", - "community": 227, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L269", - "community": 227, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L271", - "community": 227, - "norm_label": "build", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L272", - "community": 227, - "norm_label": "source", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L274", - "community": 227, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L294", - "community": 227, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L363", - "community": 227, - "norm_label": "type", - "id": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_type" - }, - { - "label": "target-core-Debug-ed16fb7b9025dcb8780b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L1", - "community": 273, - "norm_label": "target-core-debug-ed16fb7b9025dcb8780b.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json" - }, - { - "label": "archive", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L2", - "community": 273, - "norm_label": "archive", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_archive" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L3", - "community": 273, - "norm_label": "artifacts", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L9", - "community": 273, - "norm_label": "backtrace", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L10", - "community": 273, - "norm_label": "backtracegraph", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L12", - "community": 273, - "norm_label": "commands", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L18", - "community": 273, - "norm_label": "files", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L22", - "community": 273, - "norm_label": "nodes", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L47", - "community": 273, - "norm_label": "compilegroups", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L117", - "community": 273, - "norm_label": "id", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L118", - "community": 273, - "norm_label": "name", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L119", - "community": 273, - "norm_label": "nameondisk", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L120", - "community": 273, - "norm_label": "paths", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L122", - "community": 273, - "norm_label": "build", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L123", - "community": 273, - "norm_label": "source", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L125", - "community": 273, - "norm_label": "sourcegroups", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L200", - "community": 273, - "norm_label": "sources", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L536", - "community": 273, - "norm_label": "type", - "id": "reply_target_core_debug_ed16fb7b9025dcb8780b_type" - }, - { - "label": "target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L1", - "community": 215, - "norm_label": "target-react_codegen_rnscreens-debug-35d9e6b125369291c318.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L2", - "community": 215, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L8", - "community": 215, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L9", - "community": 215, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L11", - "community": 215, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L21", - "community": 215, - "norm_label": "files", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L26", - "community": 215, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L75", - "community": 215, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L224", - "community": 215, - "norm_label": "id", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L225", - "community": 215, - "norm_label": "link", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L227", - "community": 215, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L253", - "community": 215, - "norm_label": "language", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L254", - "community": 215, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L256", - "community": 215, - "norm_label": "path", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L259", - "community": 215, - "norm_label": "name", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L260", - "community": 215, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L261", - "community": 215, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L263", - "community": 215, - "norm_label": "build", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L264", - "community": 215, - "norm_label": "source", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L266", - "community": 215, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L293", - "community": 215, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L404", - "community": 215, - "norm_label": "type", - "id": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_type" - }, - { - "label": "target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L1", - "community": 186, - "norm_label": "target-react_codegen_rncslider-debug-ee1e7eafce436af8aa40.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L2", - "community": 186, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L8", - "community": 186, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L9", - "community": 186, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L11", - "community": 186, - "norm_label": "commands", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L20", - "community": 186, - "norm_label": "files", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L25", - "community": 186, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L68", - "community": 186, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L196", - "community": 186, - "norm_label": "id", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L197", - "community": 186, - "norm_label": "link", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L199", - "community": 186, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L225", - "community": 186, - "norm_label": "language", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L226", - "community": 186, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L228", - "community": 186, - "norm_label": "path", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L231", - "community": 186, - "norm_label": "name", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L232", - "community": 186, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L233", - "community": 186, - "norm_label": "paths", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L235", - "community": 186, - "norm_label": "build", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L236", - "community": 186, - "norm_label": "source", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L238", - "community": 186, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L256", - "community": 186, - "norm_label": "sources", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L313", - "community": 186, - "norm_label": "type", - "id": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_type" - }, - { - "label": "target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L1", - "community": 196, - "norm_label": "target-react_codegen_rnkc-debug-502a134d7f3ef647df74.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L2", - "community": 196, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L8", - "community": 196, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L9", - "community": 196, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L11", - "community": 196, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L21", - "community": 196, - "norm_label": "files", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L26", - "community": 196, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L75", - "community": 196, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L221", - "community": 196, - "norm_label": "id", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L222", - "community": 196, - "norm_label": "link", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L224", - "community": 196, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L250", - "community": 196, - "norm_label": "language", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L251", - "community": 196, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L253", - "community": 196, - "norm_label": "path", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L256", - "community": 196, - "norm_label": "name", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L257", - "community": 196, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L258", - "community": 196, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L260", - "community": 196, - "norm_label": "build", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L261", - "community": 196, - "norm_label": "source", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L263", - "community": 196, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L287", - "community": 196, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L380", - "community": 196, - "norm_label": "type", - "id": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_type" - }, - { - "label": "directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L1", - "community": 483, - "norm_label": "directory-rncslider_autolinked_build-debug-9692891af1777e76efd8.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L2", - "community": 483, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L4", - "community": 483, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L5", - "community": 483, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L6", - "community": 483, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L8", - "community": 483, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L9", - "community": 483, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L11", - "community": 483, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L12", - "community": 483, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_source" - }, - { - "label": "target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L1", - "community": 312, - "norm_label": "target-react_codegen_rnctabview-debug-06b5fac189d4c1b8bd14.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L2", - "community": 312, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L26", - "community": 312, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L27", - "community": 312, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L29", - "community": 312, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L38", - "community": 312, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L43", - "community": 312, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L86", - "community": 312, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L201", - "community": 312, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L202", - "community": 312, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L203", - "community": 312, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L205", - "community": 312, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L206", - "community": 312, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L208", - "community": 312, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L224", - "community": 312, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L269", - "community": 312, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" - }, - { - "label": "target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L1", - "community": 317, - "norm_label": "target-react_codegen_rnworklets-debug-aff294105f916fb22711.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L2", - "community": 317, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L26", - "community": 317, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L27", - "community": 317, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L29", - "community": 317, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L38", - "community": 317, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L43", - "community": 317, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L86", - "community": 317, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L201", - "community": 317, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L202", - "community": 317, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L203", - "community": 317, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L205", - "community": 317, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L206", - "community": 317, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L208", - "community": 317, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L224", - "community": 317, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L269", - "community": 317, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" - }, - { - "label": "target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L1", - "community": 314, - "norm_label": "target-react_codegen_rnmenuviewspec-debug-b6f81a68b0bec81bef04.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L2", - "community": 314, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L26", - "community": 314, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L27", - "community": 314, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L29", - "community": 314, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L38", - "community": 314, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L43", - "community": 314, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L86", - "community": 314, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L201", - "community": 314, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L202", - "community": 314, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L203", - "community": 314, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L205", - "community": 314, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L206", - "community": 314, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L208", - "community": 314, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L224", - "community": 314, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L269", - "community": 314, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" - }, - { - "label": "directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L1", - "community": 495, - "norm_label": "directory-rnworklets_autolinked_build-debug-c55782449035392fe125.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L2", - "community": 495, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L4", - "community": 495, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L5", - "community": 495, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L6", - "community": 495, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L8", - "community": 495, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L9", - "community": 495, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L11", - "community": 495, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L12", - "community": 495, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_source" - }, - { - "label": "target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L1", - "community": 126, - "norm_label": "target-appmodules-debug-33f4ed7584fd54e7dbdf.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L2", - "community": 126, - "norm_label": "artifacts", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L8", - "community": 126, - "norm_label": "backtrace", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L9", - "community": 126, - "norm_label": "backtracegraph", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L11", - "community": 126, - "norm_label": "commands", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L21", - "community": 126, - "norm_label": "files", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L34", - "community": 126, - "norm_label": "nodes", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L156", - "community": 126, - "norm_label": "compilegroups", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L481", - "community": 126, - "norm_label": "dependencies", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L552", - "community": 126, - "norm_label": "id", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L553", - "community": 126, - "norm_label": "link", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L555", - "community": 126, - "norm_label": "commandfragments", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L637", - "community": 126, - "norm_label": "language", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L638", - "community": 126, - "norm_label": "sysroot", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L640", - "community": 126, - "norm_label": "path", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L643", - "community": 126, - "norm_label": "name", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L644", - "community": 126, - "norm_label": "nameondisk", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L645", - "community": 126, - "norm_label": "paths", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L647", - "community": 126, - "norm_label": "build", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L648", - "community": 126, - "norm_label": "source", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L650", - "community": 126, - "norm_label": "sourcegroups", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L723", - "community": 126, - "norm_label": "sources", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L1074", - "community": 126, - "norm_label": "type", - "id": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_type" - }, - { - "label": "directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L1", - "community": 492, - "norm_label": "directory-rnreanimated_autolinked_build-debug-f4aeae2d37b82d815393.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L2", - "community": 492, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L4", - "community": 492, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L5", - "community": 492, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L6", - "community": 492, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L8", - "community": 492, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L9", - "community": 492, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L11", - "community": 492, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L12", - "community": 492, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_source" - }, - { - "label": "directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L1", - "community": 493, - "norm_label": "directory-rnscreens_autolinked_build-debug-762995bc626882b56722.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L2", - "community": 493, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L4", - "community": 493, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L5", - "community": 493, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L6", - "community": 493, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L8", - "community": 493, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L9", - "community": 493, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L11", - "community": 493, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L12", - "community": 493, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_source" - }, - { - "label": "directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L1", - "community": 497, - "norm_label": "directory-truesheetspec_autolinked_build-debug-6f8e1947845121968926.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L2", - "community": 497, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L4", - "community": 497, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L5", - "community": 497, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L6", - "community": 497, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L8", - "community": 497, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L9", - "community": 497, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L11", - "community": 497, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L12", - "community": 497, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_source" - }, - { - "label": "target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L1", - "community": 313, - "norm_label": "target-react_codegen_rngesturehandler_codegen-debug-9adbf8bf4a7da1436434.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L2", - "community": 313, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L26", - "community": 313, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L27", - "community": 313, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L29", - "community": 313, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L38", - "community": 313, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L43", - "community": 313, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L86", - "community": 313, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L201", - "community": 313, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L202", - "community": 313, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L203", - "community": 313, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L205", - "community": 313, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L206", - "community": 313, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L208", - "community": 313, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L224", - "community": 313, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L269", - "community": 313, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" - }, - { - "label": "cache-v2-baccee985ee6b7083cd0.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-baccee985ee6b7083cd0.json", - "source_location": "L1", - "community": 644, - "norm_label": "cache-v2-baccee985ee6b7083cd0.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cache_v2_baccee985ee6b7083cd0_json" - }, - { - "label": "entries", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-baccee985ee6b7083cd0.json", - "source_location": "L2", - "community": 644, - "norm_label": "entries", - "id": "reply_cache_v2_baccee985ee6b7083cd0_entries" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-baccee985ee6b7083cd0.json", - "source_location": "L1669", - "community": 644, - "norm_label": "kind", - "id": "reply_cache_v2_baccee985ee6b7083cd0_kind" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-baccee985ee6b7083cd0.json", - "source_location": "L1670", - "community": 644, - "norm_label": "version", - "id": "reply_cache_v2_baccee985ee6b7083cd0_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-baccee985ee6b7083cd0.json", - "source_location": "L1672", - "community": 644, - "norm_label": "major", - "id": "reply_cache_v2_baccee985ee6b7083cd0_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-baccee985ee6b7083cd0.json", - "source_location": "L1673", - "community": 644, - "norm_label": "minor", - "id": "reply_cache_v2_baccee985ee6b7083cd0_version_minor" - }, - { - "label": "cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L1", - "community": 578, - "norm_label": "cmakefiles-v1-8913158b4b01aaf1f3bd.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cmakefiles_v1_8913158b4b01aaf1f3bd_json" - }, - { - "label": "inputs", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L2", - "community": 578, - "norm_label": "inputs", - "id": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_inputs" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L989", - "community": 578, - "norm_label": "kind", - "id": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L990", - "community": 578, - "norm_label": "paths", - "id": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L992", - "community": 578, - "norm_label": "build", - "id": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L993", - "community": 578, - "norm_label": "source", - "id": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L995", - "community": 578, - "norm_label": "version", - "id": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L997", - "community": 578, - "norm_label": "major", - "id": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L998", - "community": 578, - "norm_label": "minor", - "id": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_version_minor" - }, - { - "label": "directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L1", - "community": 484, - "norm_label": "directory-rnctabview_autolinked_build-debug-b7a7f29ab6b37dd5df56.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L2", - "community": 484, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L4", - "community": 484, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L5", - "community": 484, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L6", - "community": 484, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L8", - "community": 484, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L9", - "community": 484, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L11", - "community": 484, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L12", - "community": 484, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_source" - }, - { - "label": "target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L1", - "community": 148, - "norm_label": "target-react-native-mmkv-debug-c0a12064afb9acb0270d.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L2", - "community": 148, - "norm_label": "artifacts", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L8", - "community": 148, - "norm_label": "backtrace", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L9", - "community": 148, - "norm_label": "backtracegraph", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L11", - "community": 148, - "norm_label": "commands", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L17", - "community": 148, - "norm_label": "files", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L21", - "community": 148, - "norm_label": "nodes", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L52", - "community": 148, - "norm_label": "compilegroups", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_compilegroups" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L161", - "community": 148, - "norm_label": "dependencies", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_dependencies" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L172", - "community": 148, - "norm_label": "id", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L173", - "community": 148, - "norm_label": "link", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L175", - "community": 148, - "norm_label": "commandfragments", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L217", - "community": 148, - "norm_label": "language", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L218", - "community": 148, - "norm_label": "sysroot", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L220", - "community": 148, - "norm_label": "path", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L223", - "community": 148, - "norm_label": "name", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L224", - "community": 148, - "norm_label": "nameondisk", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L225", - "community": 148, - "norm_label": "paths", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L227", - "community": 148, - "norm_label": "build", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L228", - "community": 148, - "norm_label": "source", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L230", - "community": 148, - "norm_label": "sourcegroups", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L255", - "community": 148, - "norm_label": "sources", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L318", - "community": 148, - "norm_label": "type", - "id": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_type" - }, - { - "label": "target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L1", - "community": 239, - "norm_label": "target-react_codegen_safeareacontext-debug-b09125492198fadf2c5a.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L2", - "community": 239, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L8", - "community": 239, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L9", - "community": 239, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L11", - "community": 239, - "norm_label": "commands", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L20", - "community": 239, - "norm_label": "files", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L25", - "community": 239, - "norm_label": "nodes", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L74", - "community": 239, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L214", - "community": 239, - "norm_label": "id", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L215", - "community": 239, - "norm_label": "link", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L217", - "community": 239, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L243", - "community": 239, - "norm_label": "language", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L244", - "community": 239, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L246", - "community": 239, - "norm_label": "path", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L249", - "community": 239, - "norm_label": "name", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L250", - "community": 239, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L251", - "community": 239, - "norm_label": "paths", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L253", - "community": 239, - "norm_label": "build", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L254", - "community": 239, - "norm_label": "source", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L256", - "community": 239, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L274", - "community": 239, - "norm_label": "sources", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L331", - "community": 239, - "norm_label": "type", - "id": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_type" - }, - { - "label": "target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L1", - "community": 207, - "norm_label": "target-react_codegen_rnpicker-debug-7c62286dc23e35402f32.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L2", - "community": 207, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L8", - "community": 207, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L9", - "community": 207, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L11", - "community": 207, - "norm_label": "commands", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L19", - "community": 207, - "norm_label": "files", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L23", - "community": 207, - "norm_label": "nodes", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L60", - "community": 207, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L188", - "community": 207, - "norm_label": "id", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L189", - "community": 207, - "norm_label": "link", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L191", - "community": 207, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L217", - "community": 207, - "norm_label": "language", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L218", - "community": 207, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L220", - "community": 207, - "norm_label": "path", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L223", - "community": 207, - "norm_label": "name", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L224", - "community": 207, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L225", - "community": 207, - "norm_label": "paths", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L227", - "community": 207, - "norm_label": "build", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L228", - "community": 207, - "norm_label": "source", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L230", - "community": 207, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L252", - "community": 207, - "norm_label": "sources", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L333", - "community": 207, - "norm_label": "type", - "id": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_type" - }, - { - "label": "directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L1", - "community": 489, - "norm_label": "directory-rnmmkvspec_cxxmodule_autolinked_build.core-debug-a9f6f6c634eac5fe0705.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L2", - "community": 489, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L4", - "community": 489, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L5", - "community": 489, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L6", - "community": 489, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L8", - "community": 489, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L9", - "community": 489, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L11", - "community": 489, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L12", - "community": 489, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_source" - }, - { - "label": "target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L1", - "community": 310, - "norm_label": "target-react_codegen_lottiereactnative-debug-5cbd8a8add4d52eb7aec.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L2", - "community": 310, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L26", - "community": 310, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L27", - "community": 310, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L29", - "community": 310, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L38", - "community": 310, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L43", - "community": 310, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L86", - "community": 310, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L201", - "community": 310, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L202", - "community": 310, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L203", - "community": 310, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L205", - "community": 310, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L206", - "community": 310, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L208", - "community": 310, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L224", - "community": 310, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L269", - "community": 310, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" - }, - { - "label": "directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L1", - "community": 496, - "norm_label": "directory-safeareacontext_autolinked_build-debug-02cc5c5531c5c58ac73d.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L2", - "community": 496, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L4", - "community": 496, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L5", - "community": 496, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L6", - "community": 496, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L8", - "community": 496, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L9", - "community": 496, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L11", - "community": 496, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L12", - "community": 496, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_source" - }, - { - "label": "directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L1", - "community": 482, - "norm_label": "directory-rnasyncstorage_autolinked_build-debug-ec755c3cd9003338013f.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L2", - "community": 482, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L4", - "community": 482, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L5", - "community": 482, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L6", - "community": 482, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L8", - "community": 482, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L9", - "community": 482, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L11", - "community": 482, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L12", - "community": 482, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_source" - }, - { - "label": "target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L1", - "community": 248, - "norm_label": "target-react_codegen_truesheetspec-debug-502abf1155009eea7b6d.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L2", - "community": 248, - "norm_label": "artifacts", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L8", - "community": 248, - "norm_label": "backtrace", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L9", - "community": 248, - "norm_label": "backtracegraph", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L11", - "community": 248, - "norm_label": "commands", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L20", - "community": 248, - "norm_label": "files", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L25", - "community": 248, - "norm_label": "nodes", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L74", - "community": 248, - "norm_label": "compilegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L214", - "community": 248, - "norm_label": "id", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_id" - }, - { - "label": "link", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L215", - "community": 248, - "norm_label": "link", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link" - }, - { - "label": "commandFragments", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L217", - "community": 248, - "norm_label": "commandfragments", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_commandfragments" - }, - { - "label": "language", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L243", - "community": 248, - "norm_label": "language", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_language" - }, - { - "label": "sysroot", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L244", - "community": 248, - "norm_label": "sysroot", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_sysroot" - }, - { - "label": "path", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L246", - "community": 248, - "norm_label": "path", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sysroot_path" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L249", - "community": 248, - "norm_label": "name", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_name" - }, - { - "label": "nameOnDisk", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L250", - "community": 248, - "norm_label": "nameondisk", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_nameondisk" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L251", - "community": 248, - "norm_label": "paths", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L253", - "community": 248, - "norm_label": "build", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L254", - "community": 248, - "norm_label": "source", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L256", - "community": 248, - "norm_label": "sourcegroups", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L274", - "community": 248, - "norm_label": "sources", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L331", - "community": 248, - "norm_label": "type", - "id": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_type" - }, - { - "label": "target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L1", - "community": 311, - "norm_label": "target-react_codegen_rnasyncstorage-debug-919046727d8d904e898b.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L2", - "community": 311, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L26", - "community": 311, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L27", - "community": 311, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L29", - "community": 311, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L38", - "community": 311, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L43", - "community": 311, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L86", - "community": 311, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L201", - "community": 311, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L202", - "community": 311, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L203", - "community": 311, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L205", - "community": 311, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L206", - "community": 311, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L208", - "community": 311, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L224", - "community": 311, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L269", - "community": 311, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" - }, - { - "label": "target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L1", - "community": 316, - "norm_label": "target-react_codegen_rnreanimated-debug-30d00d3524d3c338dd40.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json" - }, - { - "label": "artifacts", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L2", - "community": 316, - "norm_label": "artifacts", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" - }, - { - "label": "backtrace", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L26", - "community": 316, - "norm_label": "backtrace", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L27", - "community": 316, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L29", - "community": 316, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L38", - "community": 316, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L43", - "community": 316, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" - }, - { - "label": "compileGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L86", - "community": 316, - "norm_label": "compilegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" - }, - { - "label": "id", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L201", - "community": 316, - "norm_label": "id", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L202", - "community": 316, - "norm_label": "name", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L203", - "community": 316, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L205", - "community": 316, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L206", - "community": 316, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" - }, - { - "label": "sourceGroups", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L208", - "community": 316, - "norm_label": "sourcegroups", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" - }, - { - "label": "sources", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L224", - "community": 316, - "norm_label": "sources", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L269", - "community": 316, - "norm_label": "type", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" - }, - { - "label": "index-2026-06-09T18-20-49-0620.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L1", - "community": 121, - "norm_label": "index-2026-06-09t18-20-49-0620.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_index_2026_06_09t18_20_49_0620_json" - }, - { - "label": "cmake", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L2", - "community": 121, - "norm_label": "cmake", - "id": "reply_index_2026_06_09t18_20_49_0620_cmake" - }, - { - "label": "generator", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L4", - "community": 121, - "norm_label": "generator", - "id": "reply_index_2026_06_09t18_20_49_0620_cmake_generator" - }, - { - "label": "multiConfig", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L6", - "community": 121, - "norm_label": "multiconfig", - "id": "reply_index_2026_06_09t18_20_49_0620_generator_multiconfig" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L7", - "community": 121, - "norm_label": "name", - "id": "reply_index_2026_06_09t18_20_49_0620_generator_name" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L9", - "community": 121, - "norm_label": "paths", - "id": "reply_index_2026_06_09t18_20_49_0620_cmake_paths" - }, - { - "label": "cpack", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L12", - "community": 121, - "norm_label": "cpack", - "id": "reply_index_2026_06_09t18_20_49_0620_paths_cpack" - }, - { - "label": "ctest", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L13", - "community": 121, - "norm_label": "ctest", - "id": "reply_index_2026_06_09t18_20_49_0620_paths_ctest" - }, - { - "label": "root", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L14", - "community": 121, - "norm_label": "root", - "id": "reply_index_2026_06_09t18_20_49_0620_paths_root" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L16", - "community": 121, - "norm_label": "version", - "id": "reply_index_2026_06_09t18_20_49_0620_cmake_version" - }, - { - "label": "isDirty", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L18", - "community": 121, - "norm_label": "isdirty", - "id": "reply_index_2026_06_09t18_20_49_0620_version_isdirty" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L19", - "community": 121, - "norm_label": "major", - "id": "reply_index_2026_06_09t18_20_49_0620_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L20", - "community": 121, - "norm_label": "minor", - "id": "reply_index_2026_06_09t18_20_49_0620_version_minor" - }, - { - "label": "patch", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L21", - "community": 121, - "norm_label": "patch", - "id": "reply_index_2026_06_09t18_20_49_0620_version_patch" - }, - { - "label": "string", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L22", - "community": 121, - "norm_label": "string", - "id": "reply_index_2026_06_09t18_20_49_0620_version_string" - }, - { - "label": "suffix", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L23", - "community": 121, - "norm_label": "suffix", - "id": "reply_index_2026_06_09t18_20_49_0620_version_suffix" - }, - { - "label": "objects", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L26", - "community": 121, - "norm_label": "objects", - "id": "reply_index_2026_06_09t18_20_49_0620_objects" - }, - { - "label": "reply", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L56", - "community": 121, - "norm_label": "reply", - "id": "reply_index_2026_06_09t18_20_49_0620_reply" - }, - { - "label": "client-agp", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L58", - "community": 121, - "norm_label": "client-agp", - "id": "reply_index_2026_06_09t18_20_49_0620_reply_client_agp" - }, - { - "label": "cache-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L60", - "community": 121, - "norm_label": "cache-v2", - "id": "reply_index_2026_06_09t18_20_49_0620_client_agp_cache_v2" - }, - { - "label": "jsonFile", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L62", - "community": 121, - "norm_label": "jsonfile", - "id": "reply_index_2026_06_09t18_20_49_0620_cache_v2_jsonfile" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L63", - "community": 121, - "norm_label": "kind", - "id": "reply_index_2026_06_09t18_20_49_0620_cache_v2_kind" - }, - { - "label": "cmakeFiles-v1", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L70", - "community": 121, - "norm_label": "cmakefiles-v1", - "id": "reply_index_2026_06_09t18_20_49_0620_client_agp_cmakefiles_v1" - }, - { - "label": "codemodel-v2", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L80", - "community": 121, - "norm_label": "codemodel-v2", - "id": "reply_index_2026_06_09t18_20_49_0620_client_agp_codemodel_v2" - }, - { - "label": "directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L1", - "community": 487, - "norm_label": "directory-rnmenuviewspec_autolinked_build-debug-db93909da8ac45d348e4.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L2", - "community": 487, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L4", - "community": 487, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L5", - "community": 487, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L6", - "community": 487, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L8", - "community": 487, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L9", - "community": 487, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L11", - "community": 487, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L12", - "community": 487, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_source" - }, - { - "label": "codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L1", - "community": 584, - "norm_label": "codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_codemodel_v2_289f1cdbaf7f8b3a77a1_json" - }, - { - "label": "configurations", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L2", - "community": 584, - "norm_label": "configurations", - "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_configurations" - }, - { - "label": "kind", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L508", - "community": 584, - "norm_label": "kind", - "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_kind" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L509", - "community": 584, - "norm_label": "paths", - "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L511", - "community": 584, - "norm_label": "build", - "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L512", - "community": 584, - "norm_label": "source", - "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths_source" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L514", - "community": 584, - "norm_label": "version", - "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version" - }, - { - "label": "major", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L516", - "community": 584, - "norm_label": "major", - "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version_major" - }, - { - "label": "minor", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L517", - "community": 584, - "norm_label": "minor", - "id": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version_minor" - }, - { - "label": "directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L1", - "community": 486, - "norm_label": "directory-rnkc_autolinked_build-debug-9b81a6f2831b76917207.json", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json" - }, - { - "label": "backtraceGraph", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L2", - "community": 486, - "norm_label": "backtracegraph", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph" - }, - { - "label": "commands", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L4", - "community": 486, - "norm_label": "commands", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_commands" - }, - { - "label": "files", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L5", - "community": 486, - "norm_label": "files", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_files" - }, - { - "label": "nodes", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L6", - "community": 486, - "norm_label": "nodes", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_nodes" - }, - { - "label": "installers", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L8", - "community": 486, - "norm_label": "installers", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_installers" - }, - { - "label": "paths", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L9", - "community": 486, - "norm_label": "paths", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L11", - "community": 486, - "norm_label": "build", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_build" - }, - { - "label": "source", - "file_type": "code", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L12", - "community": 486, - "norm_label": "source", - "id": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_source" - }, - { - "label": "ANDROID_A11Y_OVERVIEW_DE", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", - "source_location": "L50", - "community": 389, - "norm_label": "android_a11y_overview_de", - "id": "lib_onboardingassets_android_a11y_overview_de" - }, - { - "label": "ringback.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/ringback.ts", - "source_location": "L1", - "community": 17, - "norm_label": "ringback.ts", - "id": "apps_rebreak_native_lib_ringback_ts" - }, - { - "label": "startRingback()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/ringback.ts", - "source_location": "L18", - "community": 17, - "norm_label": "startringback()", - "id": "lib_ringback_startringback" - }, - { - "label": "stopRingback()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/ringback.ts", - "source_location": "L47", - "community": 17, - "norm_label": "stopringback()", - "id": "lib_ringback_stopringback" - }, - { - "label": "callkit.ts", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L1", - "community": 95, - "norm_label": "callkit.ts", - "id": "apps_rebreak_native_lib_callkit_ts" - }, - { - "label": "isCallKeepAvailable()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L36", - "community": 95, - "norm_label": "iscallkeepavailable()", - "id": "lib_callkit_iscallkeepavailable" - }, - { - "label": "setupCallKeep()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L42", - "community": 95, - "norm_label": "setupcallkeep()", - "id": "lib_callkit_setupcallkeep" - }, - { - "label": "callIdToUuid()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L108", - "community": 95, - "norm_label": "callidtouuid()", - "id": "lib_callkit_callidtouuid" - }, - { - "label": "displayIncomingCall()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L126", - "community": 95, - "norm_label": "displayincomingcall()", - "id": "lib_callkit_displayincomingcall" - }, - { - "label": "startOutgoingCall()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L141", - "community": 95, - "norm_label": "startoutgoingcall()", - "id": "lib_callkit_startoutgoingcall" - }, - { - "label": "reportConnected()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L157", - "community": 95, - "norm_label": "reportconnected()", - "id": "lib_callkit_reportconnected" - }, - { - "label": "endCall()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L166", - "community": 95, - "norm_label": "endcall()", - "id": "lib_callkit_endcall" - }, - { - "label": "reportEnded()", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L173", - "community": 95, - "norm_label": "reportended()", - "id": "lib_callkit_reportended" - }, - { - "label": "CrisisLevel", - "file_type": "code", - "source_file": "apps/rebreak-native/lib/sosStream.ts", - "source_location": "L19", - "community": 258, - "norm_label": "crisislevel", - "id": "lib_sosstream_crisislevel" - }, - { - "label": "RebreakVpnBootReceiver", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", - "source_location": "L14", - "community": 666, - "norm_label": "rebreakvpnbootreceiver", - "id": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver" - }, - { - "label": "BroadcastReceiver", - "file_type": "code", - "source_file": "", - "source_location": "", - "community": 666, - "norm_label": "broadcastreceiver", - "id": "broadcastreceiver" - }, - { - "label": ".onReceive()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", - "source_location": "L16", - "community": 666, - "norm_label": ".onreceive()", - "id": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver_onreceive" - }, - { - "label": "Context", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", - "source_location": "L16", - "community": 666, - "norm_label": "context", - "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnbootreceiver_kt_context" - }, - { - "label": "Intent", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", - "source_location": "L16", - "community": 666, - "norm_label": "intent", - "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnbootreceiver_kt_intent" - }, - { - "label": "RebreakDeviceAdminReceiver", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L20", - "community": 621, - "norm_label": "rebreakdeviceadminreceiver", - "id": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver" - }, - { - "label": "DeviceAdminReceiver", - "file_type": "code", - "source_file": "", - "source_location": "", - "community": 621, - "norm_label": "deviceadminreceiver", - "id": "deviceadminreceiver" - }, - { - "label": ".onEnabled()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L22", - "community": 621, - "norm_label": ".onenabled()", - "id": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_onenabled" - }, - { - "label": "Context", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L22", - "community": 621, - "norm_label": "context", - "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_context" - }, - { - "label": "Intent", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L22", - "community": 621, - "norm_label": "intent", - "id": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_intent" - }, - { - "label": ".onDisabled()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L26", - "community": 621, - "norm_label": ".ondisabled()", - "id": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_ondisabled" - }, - { - "label": ".onDestroy()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L54", - "community": 180, - "norm_label": ".ondestroy()", - "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_ondestroy" - }, - { - "label": ".shouldBlockVpnSurface()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L186", - "community": 180, - "norm_label": ".shouldblockvpnsurface()", - "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_shouldblockvpnsurface" - }, - { - "label": ".hasRebreakScopedDangerAction()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L204", - "community": 180, - "norm_label": ".hasrebreakscopeddangeraction()", - "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_hasrebreakscopeddangeraction" - }, - { - "label": ".isVpnSurface()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L266", - "community": 180, - "norm_label": ".isvpnsurface()", - "id": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_isvpnsurface" - }, - { - "label": "requestPowerDialog()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", - "source_location": "L363", - "community": 180, - "norm_label": "requestpowerdialog()", - "id": "accessibility_rebreakaccessibilityservice_requestpowerdialog" - }, - { - "label": ".hasUsageAccess()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L66", - "community": 66, - "norm_label": ".hasusageaccess()", - "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_hasusageaccess" - }, - { - "label": ".openUsageAccessSettings()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L69", - "community": 66, - "norm_label": ".openusageaccesssettings()", - "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_openusageaccesssettings" - }, - { - "label": ".hasOverlayPermission()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L72", - "community": 66, - "norm_label": ".hasoverlaypermission()", - "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_hasoverlaypermission" - }, - { - "label": ".openOverlayPermissionSettings()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L75", - "community": 66, - "norm_label": ".openoverlaypermissionsettings()", - "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_openoverlaypermissionsettings" - }, - { - "label": ".openPowerDialog()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L81", - "community": 66, - "norm_label": ".openpowerdialog()", - "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_openpowerdialog" - }, - { - "label": ".requestDeviceAdmin()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L104", - "community": 66, - "norm_label": ".requestdeviceadmin()", - "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_requestdeviceadmin" - }, - { - "label": ".isDeviceAdminActive()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L107", - "community": 66, - "norm_label": ".isdeviceadminactive()", - "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_isdeviceadminactive" - }, - { - "label": ".removeDeviceAdmin()", - "file_type": "code", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L110", - "community": 66, - "norm_label": ".removedeviceadmin()", - "id": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_removedeviceadmin" - }, - { - "label": "package.json", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L1", - "community": 417, - "norm_label": "package.json", - "id": "apps_rebreak_magic_win_package_json" - }, - { - "label": "name", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L2", - "community": 417, - "norm_label": "name", - "id": "rebreak_magic_win_package_name" - }, - { - "label": "private", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L3", - "community": 417, - "norm_label": "private", - "id": "rebreak_magic_win_package_private" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L4", - "community": 417, - "norm_label": "version", - "id": "rebreak_magic_win_package_version" - }, - { - "label": "type", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L5", - "community": 417, - "norm_label": "type", - "id": "rebreak_magic_win_package_type" - }, - { - "label": "scripts", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L6", - "community": 417, - "norm_label": "scripts", - "id": "rebreak_magic_win_package_scripts" - }, - { - "label": "dev", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L7", - "community": 417, - "norm_label": "dev", - "id": "rebreak_magic_win_package_scripts_dev" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L8", - "community": 417, - "norm_label": "build", - "id": "rebreak_magic_win_package_scripts_build" - }, - { - "label": "preview", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L9", - "community": 417, - "norm_label": "preview", - "id": "rebreak_magic_win_package_scripts_preview" - }, - { - "label": "tauri", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L10", - "community": 417, - "norm_label": "tauri", - "id": "rebreak_magic_win_package_scripts_tauri" - }, - { - "label": "dependencies", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L12", - "community": 417, - "norm_label": "dependencies", - "id": "rebreak_magic_win_package_dependencies" - }, - { - "label": "@fontsource/nunito", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L13", - "community": 417, - "norm_label": "@fontsource/nunito", - "id": "rebreak_magic_win_package_dependencies_fontsource_nunito" - }, - { - "label": "@tauri-apps/api", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L14", - "community": 417, - "norm_label": "@tauri-apps/api", - "id": "rebreak_magic_win_package_dependencies_tauri_apps_api" - }, - { - "label": "react", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L15", - "community": 417, - "norm_label": "react", - "id": "rebreak_magic_win_package_dependencies_react" - }, - { - "label": "react-dom", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L16", - "community": 417, - "norm_label": "react-dom", - "id": "rebreak_magic_win_package_dependencies_react_dom" - }, - { - "label": "devDependencies", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L18", - "community": 451, - "norm_label": "devdependencies", - "id": "rebreak_magic_win_package_devdependencies" - }, - { - "label": "@tauri-apps/cli", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L19", - "community": 451, - "norm_label": "@tauri-apps/cli", - "id": "rebreak_magic_win_package_devdependencies_tauri_apps_cli" - }, - { - "label": "@types/react", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L20", - "community": 451, - "norm_label": "@types/react", - "id": "rebreak_magic_win_package_devdependencies_types_react" - }, - { - "label": "@vitejs/plugin-react", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L22", - "community": 451, - "norm_label": "@vitejs/plugin-react", - "id": "rebreak_magic_win_package_devdependencies_vitejs_plugin_react" - }, - { - "label": "typescript", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L23", - "community": 451, - "norm_label": "typescript", - "id": "rebreak_magic_win_package_devdependencies_typescript" - }, - { - "label": "vite", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L24", - "community": 451, - "norm_label": "vite", - "id": "rebreak_magic_win_package_devdependencies_vite" - }, - { - "label": "tsconfig.json", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L1", - "community": 272, - "norm_label": "tsconfig.json", - "id": "apps_rebreak_magic_win_tsconfig_json" - }, - { - "label": "compilerOptions", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L2", - "community": 272, - "norm_label": "compileroptions", - "id": "rebreak_magic_win_tsconfig_compileroptions" - }, - { - "label": "target", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L3", - "community": 272, - "norm_label": "target", - "id": "rebreak_magic_win_tsconfig_compileroptions_target" - }, - { - "label": "useDefineForClassFields", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L4", - "community": 272, - "norm_label": "usedefineforclassfields", - "id": "rebreak_magic_win_tsconfig_compileroptions_usedefineforclassfields" - }, - { - "label": "lib", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L5", - "community": 272, - "norm_label": "lib", - "id": "rebreak_magic_win_tsconfig_compileroptions_lib" - }, - { - "label": "module", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L6", - "community": 272, - "norm_label": "module", - "id": "rebreak_magic_win_tsconfig_compileroptions_module" - }, - { - "label": "skipLibCheck", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L7", - "community": 272, - "norm_label": "skiplibcheck", - "id": "rebreak_magic_win_tsconfig_compileroptions_skiplibcheck" - }, - { - "label": "moduleResolution", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L8", - "community": 272, - "norm_label": "moduleresolution", - "id": "rebreak_magic_win_tsconfig_compileroptions_moduleresolution" - }, - { - "label": "allowImportingTsExtensions", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L9", - "community": 272, - "norm_label": "allowimportingtsextensions", - "id": "rebreak_magic_win_tsconfig_compileroptions_allowimportingtsextensions" - }, - { - "label": "resolveJsonModule", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L10", - "community": 272, - "norm_label": "resolvejsonmodule", - "id": "rebreak_magic_win_tsconfig_compileroptions_resolvejsonmodule" - }, - { - "label": "isolatedModules", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L11", - "community": 272, - "norm_label": "isolatedmodules", - "id": "rebreak_magic_win_tsconfig_compileroptions_isolatedmodules" - }, - { - "label": "noEmit", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L12", - "community": 272, - "norm_label": "noemit", - "id": "rebreak_magic_win_tsconfig_compileroptions_noemit" - }, - { - "label": "jsx", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L13", - "community": 272, - "norm_label": "jsx", - "id": "rebreak_magic_win_tsconfig_compileroptions_jsx" - }, - { - "label": "strict", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L14", - "community": 272, - "norm_label": "strict", - "id": "rebreak_magic_win_tsconfig_compileroptions_strict" - }, - { - "label": "noUnusedLocals", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L15", - "community": 272, - "norm_label": "nounusedlocals", - "id": "rebreak_magic_win_tsconfig_compileroptions_nounusedlocals" - }, - { - "label": "noUnusedParameters", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L16", - "community": 272, - "norm_label": "nounusedparameters", - "id": "rebreak_magic_win_tsconfig_compileroptions_nounusedparameters" - }, - { - "label": "noFallthroughCasesInSwitch", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L17", - "community": 272, - "norm_label": "nofallthroughcasesinswitch", - "id": "rebreak_magic_win_tsconfig_compileroptions_nofallthroughcasesinswitch" - }, - { - "label": "include", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L19", - "community": 272, - "norm_label": "include", - "id": "rebreak_magic_win_tsconfig_include" - }, - { - "label": "build-windows.ps1", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/build-windows.ps1", - "source_location": "L1", - "community": 856, - "norm_label": "build-windows.ps1", - "id": "apps_rebreak_magic_win_build_windows_ps1" - }, - { - "label": "vite.config.ts", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/vite.config.ts", - "source_location": "L1", - "community": 857, - "norm_label": "vite.config.ts", - "id": "apps_rebreak_magic_win_vite_config_ts" - }, - { - "label": "tauri.conf.json", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L1", - "community": 279, - "norm_label": "tauri.conf.json", - "id": "apps_rebreak_magic_win_src_tauri_tauri_conf_json" - }, - { - "label": "$schema", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L2", - "community": 279, - "norm_label": "$schema", - "id": "src_tauri_tauri_conf_schema" - }, - { - "label": "productName", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L3", - "community": 279, - "norm_label": "productname", - "id": "src_tauri_tauri_conf_productname" - }, - { - "label": "version", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L4", - "community": 279, - "norm_label": "version", - "id": "src_tauri_tauri_conf_version" - }, - { - "label": "identifier", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L5", - "community": 279, - "norm_label": "identifier", - "id": "src_tauri_tauri_conf_identifier" - }, - { - "label": "build", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L6", - "community": 279, - "norm_label": "build", - "id": "src_tauri_tauri_conf_build" - }, - { - "label": "beforeDevCommand", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L7", - "community": 279, - "norm_label": "beforedevcommand", - "id": "src_tauri_tauri_conf_build_beforedevcommand" - }, - { - "label": "devUrl", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L8", - "community": 279, - "norm_label": "devurl", - "id": "src_tauri_tauri_conf_build_devurl" - }, - { - "label": "beforeBuildCommand", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L9", - "community": 279, - "norm_label": "beforebuildcommand", - "id": "src_tauri_tauri_conf_build_beforebuildcommand" - }, - { - "label": "frontendDist", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L10", - "community": 279, - "norm_label": "frontenddist", - "id": "src_tauri_tauri_conf_build_frontenddist" - }, - { - "label": "app", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L12", - "community": 443, - "norm_label": "app", - "id": "src_tauri_tauri_conf_app" - }, - { - "label": "windows", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L13", - "community": 279, - "norm_label": "windows", - "id": "src_tauri_tauri_conf_app_windows" - }, - { - "label": "security", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L24", - "community": 443, - "norm_label": "security", - "id": "src_tauri_tauri_conf_app_security" - }, - { - "label": "csp", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L25", - "community": 443, - "norm_label": "csp", - "id": "src_tauri_tauri_conf_security_csp" - }, - { - "label": "bundle", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L28", - "community": 279, - "norm_label": "bundle", - "id": "src_tauri_tauri_conf_bundle" - }, - { - "label": "active", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L29", - "community": 279, - "norm_label": "active", - "id": "src_tauri_tauri_conf_bundle_active" - }, - { - "label": "targets", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L30", - "community": 279, - "norm_label": "targets", - "id": "src_tauri_tauri_conf_bundle_targets" - }, - { - "label": "icon", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L31", - "community": 279, - "norm_label": "icon", - "id": "src_tauri_tauri_conf_bundle_icon" - }, - { - "label": "externalBin", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L38", - "community": 279, - "norm_label": "externalbin", - "id": "src_tauri_tauri_conf_bundle_externalbin" - }, - { - "label": "nsis", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L40", - "community": 279, - "norm_label": "nsis", - "id": "src_tauri_tauri_conf_windows_nsis" - }, - { - "label": "installMode", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L41", - "community": 279, - "norm_label": "installmode", - "id": "src_tauri_tauri_conf_nsis_installmode" - }, - { - "label": "build.rs", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/build.rs", - "source_location": "L1", - "community": 760, - "norm_label": "build.rs", - "id": "apps_rebreak_magic_win_src_tauri_build_rs" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/build.rs", - "source_location": "L1", - "community": 760, - "norm_label": "main()", - "id": "src_tauri_build_main" - }, - { - "label": "default.json", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", - "source_location": "L1", - "community": 624, - "norm_label": "default.json", - "id": "apps_rebreak_magic_win_src_tauri_capabilities_default_json" - }, - { - "label": "$schema", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", - "source_location": "L2", - "community": 624, - "norm_label": "$schema", - "id": "capabilities_default_schema" - }, - { - "label": "identifier", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", - "source_location": "L3", - "community": 624, - "norm_label": "identifier", - "id": "capabilities_default_identifier" - }, - { - "label": "description", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", - "source_location": "L4", - "community": 624, - "norm_label": "description", - "id": "capabilities_default_description" - }, - { - "label": "windows", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", - "source_location": "L5", - "community": 624, - "norm_label": "windows", - "id": "capabilities_default_windows" - }, - { - "label": "permissions", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", - "source_location": "L6", - "community": 624, - "norm_label": "permissions", - "id": "capabilities_default_permissions" - }, - { - "label": "capabilities.json", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", - "source_location": "L1", - "community": 620, - "norm_label": "capabilities.json", - "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json" - }, { "label": "default", "file_type": "code", @@ -129246,15 +163451,6 @@ "norm_label": "permissions", "id": "schemas_capabilities_default_permissions" }, - { - "label": "acl-manifests.json", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", - "source_location": "L1", - "community": 15, - "norm_label": "acl-manifests.json", - "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json" - }, { "label": "core", "file_type": "code", @@ -130038,21 +164234,12 @@ "norm_label": "deny-items", "id": "schemas_acl_manifests_permissions_deny_items" }, - { - "label": "macOS-schema.json", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", - "source_location": "L1", - "community": 85, - "norm_label": "macos-schema.json", - "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json" - }, { "label": "$schema", "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", "source_location": "L2", - "community": 85, + "community": 878, "norm_label": "$schema", "id": "schemas_macos_schema_schema" }, @@ -130061,7 +164248,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", "source_location": "L3", - "community": 85, + "community": 878, "norm_label": "title", "id": "schemas_macos_schema_title" }, @@ -130079,7 +164266,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", "source_location": "L5", - "community": 85, + "community": 878, "norm_label": "anyof", "id": "schemas_macos_schema_anyof" }, @@ -130088,7 +164275,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", "source_location": "L38", - "community": 85, + "community": 878, "norm_label": "definitions", "id": "schemas_macos_schema_definitions" }, @@ -130250,7 +164437,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", "source_location": "L122", - "community": 85, + "community": 878, "norm_label": "permissionentry", "id": "schemas_macos_schema_definitions_permissionentry" }, @@ -130259,7 +164446,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", "source_location": "L2197", - "community": 85, + "community": 878, "norm_label": "value", "id": "schemas_macos_schema_definitions_value" }, @@ -130268,7 +164455,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", "source_location": "L2236", - "community": 85, + "community": 878, "norm_label": "number", "id": "schemas_macos_schema_definitions_number" }, @@ -130277,7 +164464,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", "source_location": "L2251", - "community": 85, + "community": 878, "norm_label": "target", "id": "schemas_macos_schema_definitions_target" }, @@ -130286,25 +164473,16 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", "source_location": "L2253", - "community": 85, + "community": 878, "norm_label": "oneof", "id": "schemas_macos_schema_target_oneof" }, - { - "label": "desktop-schema.json", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", - "source_location": "L1", - "community": 84, - "norm_label": "desktop-schema.json", - "id": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json" - }, { "label": "$schema", "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", "source_location": "L2", - "community": 84, + "community": 877, "norm_label": "$schema", "id": "schemas_desktop_schema_schema" }, @@ -130313,7 +164491,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", "source_location": "L3", - "community": 84, + "community": 877, "norm_label": "title", "id": "schemas_desktop_schema_title" }, @@ -130331,7 +164509,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", "source_location": "L5", - "community": 84, + "community": 877, "norm_label": "anyof", "id": "schemas_desktop_schema_anyof" }, @@ -130340,7 +164518,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", "source_location": "L38", - "community": 84, + "community": 877, "norm_label": "definitions", "id": "schemas_desktop_schema_definitions" }, @@ -130502,7 +164680,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", "source_location": "L122", - "community": 84, + "community": 877, "norm_label": "permissionentry", "id": "schemas_desktop_schema_definitions_permissionentry" }, @@ -130511,7 +164689,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", "source_location": "L2197", - "community": 84, + "community": 877, "norm_label": "value", "id": "schemas_desktop_schema_definitions_value" }, @@ -130520,7 +164698,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", "source_location": "L2236", - "community": 84, + "community": 877, "norm_label": "number", "id": "schemas_desktop_schema_definitions_number" }, @@ -130529,7 +164707,7 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", "source_location": "L2251", - "community": 84, + "community": 877, "norm_label": "target", "id": "schemas_desktop_schema_definitions_target" }, @@ -130538,433 +164716,10 @@ "file_type": "code", "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", "source_location": "L2253", - "community": 84, + "community": 877, "norm_label": "oneof", "id": "schemas_desktop_schema_target_oneof" }, - { - "label": "main.rs", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L1", - "community": 36, - "norm_label": "main.rs", - "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs" - }, - { - "label": "log()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L24", - "community": 36, - "norm_label": "log()", - "id": "src_main_log" - }, - { - "label": "poll_backend()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L40", - "community": 36, - "norm_label": "poll_backend()", - "id": "src_main_poll_backend" - }, - { - "label": "ProtectionState", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L40", - "community": 36, - "norm_label": "protectionstate", - "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_protectionstate" - }, - { - "label": "Option", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L40", - "community": 36, - "norm_label": "option", - "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_option" - }, - { - "label": "tick()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L60", - "community": 36, - "norm_label": "tick()", - "id": "src_main_tick" - }, - { - "label": "monitor_loop()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L104", - "community": 36, - "norm_label": "monitor_loop()", - "id": "src_main_monitor_loop" - }, - { - "label": "Fn", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L104", - "community": 36, - "norm_label": "fn", - "id": "fn" - }, - { - "label": "Duration", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L104", - "community": 36, - "norm_label": "duration", - "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_duration" - }, - { - "label": "run()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L139", - "community": 36, - "norm_label": "run()", - "id": "src_main_run" - }, - { - "label": "Result", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L139", - "community": 36, - "norm_label": "result", - "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_result" - }, - { - "label": "Error", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L139", - "community": 36, - "norm_label": "error", - "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_error" - }, - { - "label": "service_main()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L143", - "community": 36, - "norm_label": "service_main()", - "id": "src_main_service_main" - }, - { - "label": "Vec", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L143", - "community": 36, - "norm_label": "vec", - "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_vec" - }, - { - "label": "OsString", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L143", - "community": 36, - "norm_label": "osstring", - "id": "osstring" - }, - { - "label": "run_service()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L149", - "community": 36, - "norm_label": "run_service()", - "id": "src_main_run_service" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L180", - "community": 36, - "norm_label": "main()", - "id": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_src_main_main" - }, - { - "label": "lib.rs", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L1", - "community": 36, - "norm_label": "lib.rs", - "id": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs" - }, - { - "label": "ProtectionState", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L28", - "community": 9, - "norm_label": "protectionstate", - "id": "src_lib_protectionstate" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L30", - "community": 36, - "norm_label": "string", - "id": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" - }, - { - "label": ".doh_template_for()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L42", - "community": 36, - "norm_label": ".doh_template_for()", - "id": "src_lib_protectionstate_doh_template_for" - }, - { - "label": "state_dir()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L48", - "community": 36, - "norm_label": "state_dir()", - "id": "src_lib_state_dir" - }, - { - "label": "PathBuf", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L48", - "community": 36, - "norm_label": "pathbuf", - "id": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_pathbuf" - }, - { - "label": "state_path()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L60", - "community": 36, - "norm_label": "state_path()", - "id": "src_lib_state_path" - }, - { - "label": "load_state()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L64", - "community": 36, - "norm_label": "load_state()", - "id": "src_lib_load_state" - }, - { - "label": "Option", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L64", - "community": 36, - "norm_label": "option", - "id": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_option" - }, - { - "label": "ps_run()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L77", - "community": 36, - "norm_label": "ps_run()", - "id": "src_lib_ps_run" - }, - { - "label": "Result", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L77", - "community": 36, - "norm_label": "result", - "id": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_result" - }, - { - "label": "apply_script()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L115", - "community": 36, - "norm_label": "apply_script()", - "id": "src_lib_apply_script" - }, - { - "label": "teardown_script()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L171", - "community": 36, - "norm_label": "teardown_script()", - "id": "src_lib_teardown_script" - }, - { - "label": "check_script()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L204", - "community": 36, - "norm_label": "check_script()", - "id": "src_lib_check_script" - }, - { - "label": "doh_is_applied()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L219", - "community": 36, - "norm_label": "doh_is_applied()", - "id": "src_lib_doh_is_applied" - }, - { - "label": "apply_doh()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L224", - "community": 36, - "norm_label": "apply_doh()", - "id": "src_lib_apply_doh" - }, - { - "label": "teardown_doh()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L229", - "community": 36, - "norm_label": "teardown_doh()", - "id": "src_lib_teardown_doh" - }, - { - "label": "doh_template_embeds_token()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L238", - "community": 36, - "norm_label": "doh_template_embeds_token()", - "id": "src_lib_doh_template_embeds_token" - }, - { - "label": "scripts_contain_ip_and_template()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L244", - "community": 36, - "norm_label": "scripts_contain_ip_and_template()", - "id": "src_lib_scripts_contain_ip_and_template" - }, - { - "label": "state_roundtrip()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L256", - "community": 36, - "norm_label": "state_roundtrip()", - "id": "src_lib_state_roundtrip" - }, - { - "label": "device.rs", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L1", - "community": 36, - "norm_label": "device.rs", - "id": "apps_rebreak_magic_win_src_tauri_src_device_rs" - }, - { - "label": "device_id()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L9", - "community": 36, - "norm_label": "device_id()", - "id": "src_device_device_id" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L9", - "community": 36, - "norm_label": "string", - "id": "apps_rebreak_magic_win_src_tauri_src_device_rs_string" - }, - { - "label": "hostname()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L29", - "community": 36, - "norm_label": "hostname()", - "id": "src_device_hostname" - }, - { - "label": "os_version()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L35", - "community": 36, - "norm_label": "os_version()", - "id": "src_device_os_version" - }, - { - "label": "lib.rs", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L1", - "community": 78, - "norm_label": "lib.rs", - "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs" - }, - { - "label": "UiState", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L21", - "community": 78, - "norm_label": "uistate", - "id": "src_lib_uistate" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L22", - "community": 78, - "norm_label": "string", - "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" - }, - { - "label": "Option", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L24", - "community": 78, - "norm_label": "option", - "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs_option" - }, - { - "label": "backend_url()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L38", - "community": 78, - "norm_label": "backend_url()", - "id": "src_lib_backend_url" - }, { "label": "AppHandle", "file_type": "code", @@ -130974,2202 +164729,6 @@ "norm_label": "apphandle", "id": "apphandle" }, - { - "label": "build_state()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L52", - "community": 78, - "norm_label": "build_state()", - "id": "src_lib_build_state" - }, - { - "label": "get_state()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L99", - "community": 78, - "norm_label": "get_state()", - "id": "src_lib_get_state" - }, - { - "label": "Result", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L99", - "community": 78, - "norm_label": "result", - "id": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" - }, - { - "label": "logout()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L179", - "community": 78, - "norm_label": "logout()", - "id": "src_lib_logout" - }, - { - "label": "run()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L185", - "community": 78, - "norm_label": "run()", - "id": "src_lib_run" - }, - { - "label": "auth.rs", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L1", - "community": 452, - "norm_label": "auth.rs", - "id": "apps_rebreak_magic_win_src_tauri_src_auth_rs" - }, - { - "label": "entry()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L11", - "community": 452, - "norm_label": "entry()", - "id": "src_auth_entry" - }, - { - "label": "Result", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L11", - "community": 452, - "norm_label": "result", - "id": "apps_rebreak_magic_win_src_tauri_src_auth_rs_result" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L11", - "community": 452, - "norm_label": "string", - "id": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" - }, - { - "label": "save_session_token()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L15", - "community": 452, - "norm_label": "save_session_token()", - "id": "src_auth_save_session_token" - }, - { - "label": "load_session_token()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L21", - "community": 452, - "norm_label": "load_session_token()", - "id": "src_auth_load_session_token" - }, - { - "label": "Option", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L21", - "community": 452, - "norm_label": "option", - "id": "apps_rebreak_magic_win_src_tauri_src_auth_rs_option" - }, - { - "label": "save_dns_token()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L25", - "community": 452, - "norm_label": "save_dns_token()", - "id": "src_auth_save_dns_token" - }, - { - "label": "load_dns_token()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L31", - "community": 452, - "norm_label": "load_dns_token()", - "id": "src_auth_load_dns_token" - }, - { - "label": "clear_all()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L35", - "community": 452, - "norm_label": "clear_all()", - "id": "src_auth_clear_all" - }, - { - "label": "main.rs", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/main.rs", - "source_location": "L1", - "community": 713, - "norm_label": "main.rs", - "id": "apps_rebreak_magic_win_src_tauri_src_main_rs" - }, - { - "label": "main()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/main.rs", - "source_location": "L4", - "community": 713, - "norm_label": "main()", - "id": "apps_rebreak_magic_win_src_tauri_src_main_rs_src_main_main" - }, - { - "label": "api.rs", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L1", - "community": 110, - "norm_label": "api.rs", - "id": "apps_rebreak_magic_win_src_tauri_src_api_rs" - }, - { - "label": "Envelope", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L8", - "community": 110, - "norm_label": "envelope", - "id": "src_api_envelope" - }, - { - "label": "T", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L11", - "community": 110, - "norm_label": "t", - "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_t" - }, - { - "label": "ErrorBody", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L15", - "community": 110, - "norm_label": "errorbody", - "id": "src_api_errorbody" - }, - { - "label": "Option", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L16", - "community": 110, - "norm_label": "option", - "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_option" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L16", - "community": 110, - "norm_label": "string", - "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "label": "PairData", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L20", - "community": 110, - "norm_label": "pairdata", - "id": "src_api_pairdata" - }, - { - "label": "MeData", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L26", - "community": 110, - "norm_label": "medata", - "id": "src_api_medata" - }, - { - "label": "RegisterData", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L33", - "community": 110, - "norm_label": "registerdata", - "id": "src_api_registerdata" - }, - { - "label": "MagicDevice", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L39", - "community": 110, - "norm_label": "magicdevice", - "id": "src_api_magicdevice" - }, - { - "label": "Api", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L45", - "community": 110, - "norm_label": "api", - "id": "src_api_api" - }, - { - "label": "Client", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L47", - "community": 110, - "norm_label": "client", - "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_client" - }, - { - "label": ".new()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L51", - "community": 110, - "norm_label": ".new()", - "id": "src_api_api_new" - }, - { - "label": "Self", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L51", - "community": 110, - "norm_label": "self", - "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_self" - }, - { - "label": ".parse()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L58", - "community": 110, - "norm_label": ".parse()", - "id": "src_api_api_parse" - }, - { - "label": "Response", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L58", - "community": 110, - "norm_label": "response", - "id": "response" - }, - { - "label": "Result", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L58", - "community": 110, - "norm_label": "result", - "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" - }, - { - "label": ".redeem_pair()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L76", - "community": 110, - "norm_label": ".redeem_pair()", - "id": "src_api_api_redeem_pair" - }, - { - "label": ".me()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L88", - "community": 110, - "norm_label": ".me()", - "id": "src_api_api_me" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L100", - "community": 110, - "norm_label": ".register()", - "id": "src_api_api_register" - }, - { - "label": ".devices()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L126", - "community": 110, - "norm_label": ".devices()", - "id": "src_api_api_devices" - }, - { - "label": "Vec", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L126", - "community": 110, - "norm_label": "vec", - "id": "apps_rebreak_magic_win_src_tauri_src_api_rs_vec" - }, - { - "label": ".request_release()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L138", - "community": 110, - "norm_label": ".request_release()", - "id": "src_api_api_request_release" - }, - { - "label": ".cancel_release()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L153", - "community": 110, - "norm_label": ".cancel_release()", - "id": "src_api_api_cancel_release" - }, - { - "label": "setup.rs", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L1", - "community": 36, - "norm_label": "setup.rs", - "id": "apps_rebreak_magic_win_src_tauri_src_setup_rs" - }, - { - "label": "resolve_doh_ip()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L13", - "community": 36, - "norm_label": "resolve_doh_ip()", - "id": "src_setup_resolve_doh_ip" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L13", - "community": 36, - "norm_label": "string", - "id": "apps_rebreak_magic_win_src_tauri_src_setup_rs_string" - }, - { - "label": "service_exe_path()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L25", - "community": 36, - "norm_label": "service_exe_path()", - "id": "src_setup_service_exe_path" - }, - { - "label": "Result", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L25", - "community": 36, - "norm_label": "result", - "id": "apps_rebreak_magic_win_src_tauri_src_setup_rs_result" - }, - { - "label": "PathBuf", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L25", - "community": 36, - "norm_label": "pathbuf", - "id": "apps_rebreak_magic_win_src_tauri_src_setup_rs_pathbuf" - }, - { - "label": "build_setup_script()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L35", - "community": 36, - "norm_label": "build_setup_script()", - "id": "src_setup_build_setup_script" - }, - { - "label": "ProtectionState", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L35", - "community": 36, - "norm_label": "protectionstate", - "id": "apps_rebreak_magic_win_src_tauri_src_setup_rs_protectionstate" - }, - { - "label": "run_elevated()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L89", - "community": 36, - "norm_label": "run_elevated()", - "id": "src_setup_run_elevated" - }, - { - "label": "App.tsx", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/App.tsx", - "source_location": "L1", - "community": 78, - "norm_label": "app.tsx", - "id": "apps_rebreak_magic_win_src_app_tsx" - }, - { - "label": "App()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/App.tsx", - "source_location": "L6", - "community": 78, - "norm_label": "app()", - "id": "src_app_app" - }, - { - "label": "main.tsx", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/main.tsx", - "source_location": "L1", - "community": 78, - "norm_label": "main.tsx", - "id": "apps_rebreak_magic_win_src_main_tsx" - }, - { - "label": "vite-env.d.ts", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/vite-env.d.ts", - "source_location": "L1", - "community": 858, - "norm_label": "vite-env.d.ts", - "id": "apps_rebreak_magic_win_src_vite_env_d_ts" - }, - { - "label": "ipc.ts", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L1", - "community": 78, - "norm_label": "ipc.ts", - "id": "apps_rebreak_magic_win_src_lib_ipc_ts" - }, - { - "label": "UiState", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L4", - "community": 78, - "norm_label": "uistate", - "id": "lib_ipc_uistate" - }, - { - "label": "getState()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L17", - "community": 78, - "norm_label": "getstate()", - "id": "lib_ipc_getstate" - }, - { - "label": "pairAndRegister()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L18", - "community": 78, - "norm_label": "pairandregister()", - "id": "lib_ipc_pairandregister" - }, - { - "label": "activateProtection()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L20", - "community": 78, - "norm_label": "activateprotection()", - "id": "lib_ipc_activateprotection" - }, - { - "label": "requestRelease()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L21", - "community": 78, - "norm_label": "requestrelease()", - "id": "lib_ipc_requestrelease" - }, - { - "label": "cancelRelease()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L22", - "community": 78, - "norm_label": "cancelrelease()", - "id": "lib_ipc_cancelrelease" - }, - { - "label": "logout()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L23", - "community": 78, - "norm_label": "logout()", - "id": "lib_ipc_logout" - }, - { - "label": "LoginView.tsx", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", - "source_location": "L1", - "community": 78, - "norm_label": "loginview.tsx", - "id": "apps_rebreak_magic_win_src_views_loginview_tsx" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", - "source_location": "L5", - "community": 78, - "norm_label": "props", - "id": "views_loginview_props" - }, - { - "label": "LoginView()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", - "source_location": "L13", - "community": 78, - "norm_label": "loginview()", - "id": "apps_rebreak_magic_win_src_views_loginview_tsx_views_loginview_loginview" - }, - { - "label": "HubView.tsx", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L1", - "community": 78, - "norm_label": "hubview.tsx", - "id": "apps_rebreak_magic_win_src_views_hubview_tsx" - }, - { - "label": "Props", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L11", - "community": 78, - "norm_label": "props", - "id": "views_hubview_props" - }, - { - "label": "useCountdown()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L16", - "community": 78, - "norm_label": "usecountdown()", - "id": "views_hubview_usecountdown" - }, - { - "label": "HubView()", - "file_type": "code", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L38", - "community": 78, - "norm_label": "hubview()", - "id": "views_hubview_hubview" - }, - { - "label": "config.example.json", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L1", - "community": 608, - "norm_label": "config.example.json", - "id": "apps_rebreak_magic_mac_config_example_json" - }, - { - "label": "supabaseUrl", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L2", - "community": 608, - "norm_label": "supabaseurl", - "id": "rebreak_magic_mac_config_example_supabaseurl" - }, - { - "label": "supabaseAnonKey", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L3", - "community": 608, - "norm_label": "supabaseanonkey", - "id": "rebreak_magic_mac_config_example_supabaseanonkey" - }, - { - "label": "backendBaseUrl", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L4", - "community": 608, - "norm_label": "backendbaseurl", - "id": "rebreak_magic_mac_config_example_backendbaseurl" - }, - { - "label": "mdmServer", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L5", - "community": 608, - "norm_label": "mdmserver", - "id": "rebreak_magic_mac_config_example_mdmserver" - }, - { - "label": "mdmUser", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L6", - "community": 608, - "norm_label": "mdmuser", - "id": "rebreak_magic_mac_config_example_mdmuser" - }, - { - "label": "mdmApiKey", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L7", - "community": 608, - "norm_label": "mdmapikey", - "id": "rebreak_magic_mac_config_example_mdmapikey" - }, - { - "label": "init()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L63", - "community": 124, - "norm_label": "init()", - "id": "models_wizardmodel_init" - }, - { - "label": "advance()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L71", - "community": 124, - "norm_label": "advance()", - "id": "models_wizardmodel_advance" - }, - { - "label": "goTo()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L77", - "community": 124, - "norm_label": "goto()", - "id": "models_wizardmodel_goto" - }, - { - "label": "registerMac()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L85", - "community": 124, - "norm_label": "registermac()", - "id": "models_wizardmodel_registermac" - }, - { - "label": "handleLogin()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L113", - "community": 124, - "norm_label": "handlelogin()", - "id": "models_wizardmodel_handlelogin" - }, - { - "label": "AuthSession", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L113", - "community": 124, - "norm_label": "authsession", - "id": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_authsession" - }, - { - "label": "handleLogout()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L119", - "community": 124, - "norm_label": "handlelogout()", - "id": "models_wizardmodel_handlelogout" - }, - { - "label": "startIOSFlow()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L130", - "community": 124, - "norm_label": "startiosflow()", - "id": "models_wizardmodel_startiosflow" - }, - { - "label": "startMacFlow()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L136", - "community": 124, - "norm_label": "startmacflow()", - "id": "models_wizardmodel_startmacflow" - }, - { - "label": "returnToHub()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L142", - "community": 124, - "norm_label": "returntohub()", - "id": "models_wizardmodel_returntohub" - }, - { - "label": "reset()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L147", - "community": 124, - "norm_label": "reset()", - "id": "models_wizardmodel_reset" - }, - { - "label": "startDebugReset()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L166", - "community": 124, - "norm_label": "startdebugreset()", - "id": "models_wizardmodel_startdebugreset" - }, - { - "label": "macRegistration", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardStep.swift", - "source_location": "L4", - "community": 421, - "norm_label": "macregistration", - "id": "models_wizardstep_wizardstep_macregistration" - }, - { - "label": "DeviceHubView.swift", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L1", - "community": 73, - "norm_label": "devicehubview.swift", - "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift" - }, - { - "label": "DeviceHubView", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L5", - "community": 73, - "norm_label": "devicehubview", - "id": "views_devicehubview_devicehubview" - }, - { - "label": "MagicDevice", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L8", - "community": 73, - "norm_label": "magicdevice", - "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_magicdevice" - }, - { - "label": "MagicUserProfile", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L9", - "community": 73, - "norm_label": "magicuserprofile", - "id": "magicuserprofile" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L11", - "community": 73, - "norm_label": "string", - "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_string" - }, - { - "label": "Bool", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L17", - "community": 73, - "norm_label": "bool", - "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_bool" - }, - { - "label": ".addDeviceButton()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L129", - "community": 73, - "norm_label": ".adddevicebutton()", - "id": "views_devicehubview_devicehubview_adddevicebutton" - }, - { - "label": "Void", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L129", - "community": 73, - "norm_label": "void", - "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_void" - }, - { - "label": ".loadDevices()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L233", - "community": 73, - "norm_label": ".loaddevices()", - "id": "views_devicehubview_devicehubview_loaddevices" - }, - { - "label": ".loadProfile()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L244", - "community": 73, - "norm_label": ".loadprofile()", - "id": "views_devicehubview_devicehubview_loadprofile" - }, - { - "label": ".handleAction()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L288", - "community": 73, - "norm_label": ".handleaction()", - "id": "views_devicehubview_devicehubview_handleaction" - }, - { - "label": "requestRelease", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L310", - "community": 73, - "norm_label": "requestrelease", - "id": "views_devicehubview_hubdeviceaction_requestrelease" - }, - { - "label": "cancelRelease", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L311", - "community": 73, - "norm_label": "cancelrelease", - "id": "views_devicehubview_hubdeviceaction_cancelrelease" - }, - { - "label": "HubDeviceRow", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L314", - "community": 73, - "norm_label": "hubdevicerow", - "id": "views_devicehubview_hubdevicerow" - }, - { - "label": "Timer", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L319", - "community": 73, - "norm_label": "timer", - "id": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_timer" - }, - { - "label": ".updateTimeRemaining()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L419", - "community": 73, - "norm_label": ".updatetimeremaining()", - "id": "views_devicehubview_hubdevicerow_updatetimeremaining" - }, - { - "label": "LoginView.swift", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L1", - "community": 447, - "norm_label": "loginview.swift", - "id": "apps_rebreak_magic_mac_sources_views_loginview_swift" - }, - { - "label": "LoginView", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L4", - "community": 447, - "norm_label": "loginview", - "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L5", - "community": 447, - "norm_label": "string", - "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_string" - }, - { - "label": "Bool", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L6", - "community": 447, - "norm_label": "bool", - "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_bool" - }, - { - "label": "AuthSession", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L10", - "community": 447, - "norm_label": "authsession", - "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_authsession" - }, - { - "label": "Void", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L10", - "community": 447, - "norm_label": "void", - "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_void" - }, - { - "label": ".digitBox()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L127", - "community": 447, - "norm_label": ".digitbox()", - "id": "views_loginview_loginview_digitbox" - }, - { - "label": "Int", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L127", - "community": 447, - "norm_label": "int", - "id": "apps_rebreak_magic_mac_sources_views_loginview_swift_int" - }, - { - "label": ".handleCodeChange()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L155", - "community": 447, - "norm_label": ".handlecodechange()", - "id": "views_loginview_loginview_handlecodechange" - }, - { - "label": ".handleSubmit()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L167", - "community": 447, - "norm_label": ".handlesubmit()", - "id": "views_loginview_loginview_handlesubmit" - }, - { - "label": "ManageBindingsView", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L3", - "community": 73, - "norm_label": "managebindingsview", - "id": "views_managebindingsview_managebindingsview" - }, - { - "label": "MagicDevice", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L4", - "community": 73, - "norm_label": "magicdevice", - "id": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_magicdevice" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L6", - "community": 73, - "norm_label": "string", - "id": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_string" - }, - { - "label": "Void", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L8", - "community": 73, - "norm_label": "void", - "id": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_void" - }, - { - "label": ".loadDevices()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L80", - "community": 73, - "norm_label": ".loaddevices()", - "id": "views_managebindingsview_managebindingsview_loaddevices" - }, - { - "label": ".handleDeviceAction()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L95", - "community": 73, - "norm_label": ".handledeviceaction()", - "id": "views_managebindingsview_managebindingsview_handledeviceaction" - }, - { - "label": "DeviceAction", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L95", - "community": 73, - "norm_label": "deviceaction", - "id": "deviceaction" - }, - { - "label": "requestRelease", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L115", - "community": 73, - "norm_label": "requestrelease", - "id": "views_managebindingsview_deviceaction_requestrelease" - }, - { - "label": "cancelRelease", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L116", - "community": 73, - "norm_label": "cancelrelease", - "id": "views_managebindingsview_deviceaction_cancelrelease" - }, - { - "label": "DeviceRow", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L119", - "community": 73, - "norm_label": "devicerow", - "id": "views_managebindingsview_devicerow" - }, - { - "label": "Timer", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L124", - "community": 73, - "norm_label": "timer", - "id": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_timer" - }, - { - "label": ".formatDate()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L212", - "community": 73, - "norm_label": ".formatdate()", - "id": "views_managebindingsview_devicerow_formatdate" - }, - { - "label": "Date", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L212", - "community": 73, - "norm_label": "date", - "id": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_date" - }, - { - "label": ".updateTimeRemaining()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L220", - "community": 73, - "norm_label": ".updatetimeremaining()", - "id": "views_managebindingsview_devicerow_updatetimeremaining" - }, - { - "label": "MagicRegistration", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L4", - "community": 869, - "norm_label": "magicregistration", - "id": "services_magicapiclient_magicregistration" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L5", - "community": 869, - "norm_label": "string", - "id": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "label": "Bool", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L8", - "community": 869, - "norm_label": "bool", - "id": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_bool" - }, - { - "label": "MagicDeviceSource", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L11", - "community": 869, - "norm_label": "magicdevicesource", - "id": "services_magicapiclient_magicdevicesource" - }, - { - "label": "magic", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L12", - "community": 869, - "norm_label": "magic", - "id": "services_magicapiclient_magicdevicesource_magic" - }, - { - "label": "locked", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L13", - "community": 869, - "norm_label": "locked", - "id": "services_magicapiclient_magicdevicesource_locked" - }, - { - "label": "protected", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L14", - "community": 869, - "norm_label": "protected", - "id": "services_magicapiclient_magicdevicesource_protected" - }, - { - "label": "MagicDevice", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L17", - "community": 869, - "norm_label": "magicdevice", - "id": "services_magicapiclient_magicdevice" - }, - { - "label": "Date", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L32", - "community": 869, - "norm_label": "date", - "id": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_date" - }, - { - "label": "MagicReleaseResponse", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L46", - "community": 869, - "norm_label": "magicreleaseresponse", - "id": "services_magicapiclient_magicreleaseresponse" - }, - { - "label": "parseISO()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L56", - "community": 869, - "norm_label": "parseiso()", - "id": "services_magicapiclient_parseiso" - }, - { - "label": "MagicUserProfile", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L66", - "community": 869, - "norm_label": "magicuserprofile", - "id": "services_magicapiclient_magicuserprofile" - }, - { - "label": "MagicError", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L72", - "community": 67, - "norm_label": "magicerror", - "id": "services_magicapiclient_magicerror" - }, - { - "label": "unauthorized", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L73", - "community": 67, - "norm_label": "unauthorized", - "id": "services_magicapiclient_magicerror_unauthorized" - }, - { - "label": "limitReached", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L74", - "community": 67, - "norm_label": "limitreached", - "id": "services_magicapiclient_magicerror_limitreached" - }, - { - "label": "networkError", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L75", - "community": 67, - "norm_label": "networkerror", - "id": "services_magicapiclient_magicerror_networkerror" - }, - { - "label": "httpError", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L76", - "community": 67, - "norm_label": "httperror", - "id": "services_magicapiclient_magicerror_httperror" - }, - { - "label": "configMissing", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L77", - "community": 67, - "norm_label": "configmissing", - "id": "services_magicapiclient_magicerror_configmissing" - }, - { - "label": "decodingError", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L78", - "community": 67, - "norm_label": "decodingerror", - "id": "services_magicapiclient_magicerror_decodingerror" - }, - { - "label": "MagicAPIClient", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L100", - "community": 67, - "norm_label": "magicapiclient", - "id": "services_magicapiclient_magicapiclient" - }, - { - "label": ".init()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L109", - "community": 67, - "norm_label": ".init()", - "id": "services_magicapiclient_magicapiclient_init" - }, - { - "label": "Config", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L113", - "community": 869, - "norm_label": "config", - "id": "services_magicapiclient_config" - }, - { - "label": ".register()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L146", - "community": 67, - "norm_label": ".register()", - "id": "services_magicapiclient_magicapiclient_register" - }, - { - "label": ".listDevices()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L209", - "community": 67, - "norm_label": ".listdevices()", - "id": "services_magicapiclient_magicapiclient_listdevices" - }, - { - "label": ".requestRelease()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L248", - "community": 67, - "norm_label": ".requestrelease()", - "id": "services_magicapiclient_magicapiclient_requestrelease" - }, - { - "label": ".cancelRelease()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L290", - "community": 67, - "norm_label": ".cancelrelease()", - "id": "services_magicapiclient_magicapiclient_cancelrelease" - }, - { - "label": ".fetchMe()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L317", - "community": 67, - "norm_label": ".fetchme()", - "id": "services_magicapiclient_magicapiclient_fetchme" - }, - { - "label": ".status()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L354", - "community": 67, - "norm_label": ".status()", - "id": "services_magicapiclient_magicapiclient_status" - }, - { - "label": ".downloadProfile()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L385", - "community": 67, - "norm_label": ".downloadprofile()", - "id": "services_magicapiclient_magicapiclient_downloadprofile" - }, - { - "label": "URL", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L385", - "community": 67, - "norm_label": "url", - "id": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_url" - }, - { - "label": ".removeApp()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMClient.swift", - "source_location": "L148", - "community": 122, - "norm_label": ".removeapp()", - "id": "services_mdmclient_mdmclient_removeapp" - }, - { - "label": "AuthService.swift", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L1", - "community": 81, - "norm_label": "authservice.swift", - "id": "apps_rebreak_magic_mac_sources_services_authservice_swift" - }, - { - "label": "AuthSession", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L8", - "community": 81, - "norm_label": "authsession", - "id": "services_authservice_authsession" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L10", - "community": 81, - "norm_label": "string", - "id": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" - }, - { - "label": "Date", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L16", - "community": 81, - "norm_label": "date", - "id": "apps_rebreak_magic_mac_sources_services_authservice_swift_date" - }, - { - "label": "Bool", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L21", - "community": 81, - "norm_label": "bool", - "id": "apps_rebreak_magic_mac_sources_services_authservice_swift_bool" - }, - { - "label": "AuthError", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L27", - "community": 81, - "norm_label": "autherror", - "id": "services_authservice_autherror" - }, - { - "label": "invalidCode", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L28", - "community": 81, - "norm_label": "invalidcode", - "id": "services_authservice_autherror_invalidcode" - }, - { - "label": "codeExpired", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L29", - "community": 81, - "norm_label": "codeexpired", - "id": "services_authservice_autherror_codeexpired" - }, - { - "label": "codeUsed", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L30", - "community": 81, - "norm_label": "codeused", - "id": "services_authservice_autherror_codeused" - }, - { - "label": "networkError", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L31", - "community": 81, - "norm_label": "networkerror", - "id": "services_authservice_autherror_networkerror" - }, - { - "label": "configMissing", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L32", - "community": 81, - "norm_label": "configmissing", - "id": "services_authservice_autherror_configmissing" - }, - { - "label": "keychainError", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L33", - "community": 81, - "norm_label": "keychainerror", - "id": "services_authservice_autherror_keychainerror" - }, - { - "label": "tokenExpired", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L34", - "community": 81, - "norm_label": "tokenexpired", - "id": "services_authservice_autherror_tokenexpired" - }, - { - "label": "refreshFailed", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L35", - "community": 81, - "norm_label": "refreshfailed", - "id": "services_authservice_autherror_refreshfailed" - }, - { - "label": "PairRedeemResponseEnvelope", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L59", - "community": 81, - "norm_label": "pairredeemresponseenvelope", - "id": "services_authservice_pairredeemresponseenvelope" - }, - { - "label": "PairRedeemResponseData", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L61", - "community": 81, - "norm_label": "pairredeemresponsedata", - "id": "pairredeemresponsedata" - }, - { - "label": "AuthService", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L74", - "community": 81, - "norm_label": "authservice", - "id": "services_authservice_authservice" - }, - { - "label": ".init()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L85", - "community": 81, - "norm_label": ".init()", - "id": "services_authservice_authservice_init" - }, - { - "label": "Config", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L89", - "community": 81, - "norm_label": "config", - "id": "services_authservice_config" - }, - { - "label": ".loadBackendUrl()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L98", - "community": 81, - "norm_label": ".loadbackendurl()", - "id": "services_authservice_authservice_loadbackendurl" - }, - { - "label": ".signInWithPairingCode()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L116", - "community": 81, - "norm_label": ".signinwithpairingcode()", - "id": "services_authservice_authservice_signinwithpairingcode" - }, - { - "label": ".signOut()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L173", - "community": 81, - "norm_label": ".signout()", - "id": "services_authservice_authservice_signout" - }, - { - "label": ".currentSession()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L180", - "community": 81, - "norm_label": ".currentsession()", - "id": "services_authservice_authservice_currentsession" - }, - { - "label": ".refreshSessionIfNeeded()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L195", - "community": 81, - "norm_label": ".refreshsessionifneeded()", - "id": "services_authservice_authservice_refreshsessionifneeded" - }, - { - "label": ".saveToKeychain()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L204", - "community": 81, - "norm_label": ".savetokeychain()", - "id": "services_authservice_authservice_savetokeychain" - }, - { - "label": ".loadFromKeychain()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L219", - "community": 81, - "norm_label": ".loadfromkeychain()", - "id": "services_authservice_authservice_loadfromkeychain" - }, - { - "label": ".deleteFromKeychain()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L236", - "community": 81, - "norm_label": ".deletefromkeychain()", - "id": "services_authservice_authservice_deletefromkeychain" - }, - { - "label": "MacDeviceInfo", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L6", - "community": 607, - "norm_label": "macdeviceinfo", - "id": "services_macdevicedetector_macdeviceinfo" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L7", - "community": 607, - "norm_label": "string", - "id": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift_string" - }, - { - "label": "MacDeviceDetectorError", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L13", - "community": 607, - "norm_label": "macdevicedetectorerror", - "id": "services_macdevicedetector_macdevicedetectorerror" - }, - { - "label": "sysctlFailed", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L15", - "community": 607, - "norm_label": "sysctlfailed", - "id": "services_macdevicedetector_macdevicedetectorerror_sysctlfailed" - }, - { - "label": ".platformUUID()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L31", - "community": 607, - "norm_label": ".platformuuid()", - "id": "services_macdevicedetector_macdevicedetector_platformuuid" - }, - { - "label": ".hwModel()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L56", - "community": 607, - "norm_label": ".hwmodel()", - "id": "services_macdevicedetector_macdevicedetector_hwmodel" - }, - { - "label": ".detect()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L69", - "community": 607, - "norm_label": ".detect()", - "id": "services_macdevicedetector_macdevicedetector_detect" - }, - { - "label": "MacProfileInstaller", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L5", - "community": 438, - "norm_label": "macprofileinstaller", - "id": "services_macprofileinstaller_macprofileinstaller" - }, - { - "label": "InstallerError", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L7", - "community": 438, - "norm_label": "installererror", - "id": "services_macprofileinstaller_installererror" - }, - { - "label": "noRegistration", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L8", - "community": 438, - "norm_label": "noregistration", - "id": "services_macprofileinstaller_installererror_noregistration" - }, - { - "label": "downloadFailed", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L9", - "community": 438, - "norm_label": "downloadfailed", - "id": "services_macprofileinstaller_installererror_downloadfailed" - }, - { - "label": "installFailed", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L10", - "community": 438, - "norm_label": "installfailed", - "id": "services_macprofileinstaller_installererror_installfailed" - }, - { - "label": "String", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L12", - "community": 438, - "norm_label": "string", - "id": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift_string" - }, - { - "label": ".downloadAndInstall()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L30", - "community": 438, - "norm_label": ".downloadandinstall()", - "id": "services_macprofileinstaller_macprofileinstaller_downloadandinstall" - }, - { - "label": "MagicRegistration", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L30", - "community": 438, - "norm_label": "magicregistration", - "id": "magicregistration" - }, - { - "label": ".isInstalled()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L57", - "community": 438, - "norm_label": ".isinstalled()", - "id": "services_macprofileinstaller_macprofileinstaller_isinstalled" - }, - { - "label": "Bool", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L57", - "community": 438, - "norm_label": "bool", - "id": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift_bool" - }, - { - "label": "remove()", - "file_type": "code", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L75", - "community": 438, - "norm_label": "remove()", - "id": "services_macprofileinstaller_remove" - }, - { - "label": "useOS.ts", - "file_type": "code", - "source_file": "apps/marketing/app/composables/useOS.ts", - "source_location": "L1", - "community": 695, - "norm_label": "useos.ts", - "id": "apps_marketing_app_composables_useos_ts" - }, - { - "label": "DetectedOS", - "file_type": "code", - "source_file": "apps/marketing/app/composables/useOS.ts", - "source_location": "L1", - "community": 695, - "norm_label": "detectedos", - "id": "composables_useos_detectedos" - }, - { - "label": "useOS()", - "file_type": "code", - "source_file": "apps/marketing/app/composables/useOS.ts", - "source_location": "L7", - "community": 695, - "norm_label": "useos()", - "id": "composables_useos_useos" - }, - { - "label": "cta_subline", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L14", - "community": 16, - "norm_label": "cta_subline", - "id": "locales_de_landing_cta_subline" - }, - { - "label": "magic_badge", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L78", - "community": 16, - "norm_label": "magic_badge", - "id": "locales_de_landing_magic_badge" - }, - { - "label": "magic_title", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L79", - "community": 16, - "norm_label": "magic_title", - "id": "locales_de_landing_magic_title" - }, - { - "label": "magic_subtitle", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L80", - "community": 16, - "norm_label": "magic_subtitle", - "id": "locales_de_landing_magic_subtitle" - }, - { - "label": "magic_desc", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L81", - "community": 16, - "norm_label": "magic_desc", - "id": "locales_de_landing_magic_desc" - }, - { - "label": "magic_feat_noreset", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L82", - "community": 16, - "norm_label": "magic_feat_noreset", - "id": "locales_de_landing_magic_feat_noreset" - }, - { - "label": "magic_feat_speed", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L83", - "community": 16, - "norm_label": "magic_feat_speed", - "id": "locales_de_landing_magic_feat_speed" - }, - { - "label": "magic_feat_lock", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L84", - "community": 16, - "norm_label": "magic_feat_lock", - "id": "locales_de_landing_magic_feat_lock" - }, - { - "label": "magic_feat_trustee", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L85", - "community": 16, - "norm_label": "magic_feat_trustee", - "id": "locales_de_landing_magic_feat_trustee" - }, - { - "label": "magic_cta", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L86", - "community": 16, - "norm_label": "magic_cta", - "id": "locales_de_landing_magic_cta" - }, - { - "label": "magic_cta_windows", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L87", - "community": 16, - "norm_label": "magic_cta_windows", - "id": "locales_de_landing_magic_cta_windows" - }, - { - "label": "magic_note", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L88", - "community": 16, - "norm_label": "magic_note", - "id": "locales_de_landing_magic_note" - }, - { - "label": "cross_device_tagline", - "file_type": "code", - "source_file": "apps/marketing/app/locales/de.json", - "source_location": "L151", - "community": 13, - "norm_label": "cross_device_tagline", - "id": "locales_de_pricing_cross_device_tagline" - }, - { - "label": "cta_subline", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L14", - "community": 14, - "norm_label": "cta_subline", - "id": "locales_en_landing_cta_subline" - }, - { - "label": "magic_badge", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L78", - "community": 14, - "norm_label": "magic_badge", - "id": "locales_en_landing_magic_badge" - }, - { - "label": "magic_title", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L79", - "community": 14, - "norm_label": "magic_title", - "id": "locales_en_landing_magic_title" - }, - { - "label": "magic_subtitle", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L80", - "community": 14, - "norm_label": "magic_subtitle", - "id": "locales_en_landing_magic_subtitle" - }, - { - "label": "magic_desc", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L81", - "community": 14, - "norm_label": "magic_desc", - "id": "locales_en_landing_magic_desc" - }, - { - "label": "magic_feat_noreset", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L82", - "community": 14, - "norm_label": "magic_feat_noreset", - "id": "locales_en_landing_magic_feat_noreset" - }, - { - "label": "magic_feat_speed", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L83", - "community": 14, - "norm_label": "magic_feat_speed", - "id": "locales_en_landing_magic_feat_speed" - }, - { - "label": "magic_feat_lock", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L84", - "community": 14, - "norm_label": "magic_feat_lock", - "id": "locales_en_landing_magic_feat_lock" - }, - { - "label": "magic_feat_trustee", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L85", - "community": 14, - "norm_label": "magic_feat_trustee", - "id": "locales_en_landing_magic_feat_trustee" - }, - { - "label": "magic_cta", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L86", - "community": 14, - "norm_label": "magic_cta", - "id": "locales_en_landing_magic_cta" - }, - { - "label": "magic_cta_windows", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L87", - "community": 14, - "norm_label": "magic_cta_windows", - "id": "locales_en_landing_magic_cta_windows" - }, - { - "label": "magic_note", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L88", - "community": 14, - "norm_label": "magic_note", - "id": "locales_en_landing_magic_note" - }, - { - "label": "cross_device_tagline", - "file_type": "code", - "source_file": "apps/marketing/app/locales/en.json", - "source_location": "L151", - "community": 12, - "norm_label": "cross_device_tagline", - "id": "locales_en_pricing_cross_device_tagline" - }, - { - "label": "PreviewPhone.vue", - "file_type": "code", - "source_file": "apps/marketing/app/components/PreviewPhone.vue", - "source_location": "L1", - "community": 859, - "norm_label": "previewphone.vue", - "id": "apps_marketing_app_components_previewphone_vue" - }, - { - "label": "PreviewDesktop.vue", - "file_type": "code", - "source_file": "apps/marketing/app/components/PreviewDesktop.vue", - "source_location": "L1", - "community": 860, - "norm_label": "previewdesktop.vue", - "id": "apps_marketing_app_components_previewdesktop_vue" - }, - { - "label": "route", - "file_type": "code", - "source_file": "apps/marketing/app/layouts/default.vue", - "source_location": "L77", - "community": 631, - "norm_label": "route", - "id": "layouts_default_route" - }, - { - "label": "{ t }", - "file_type": "code", - "source_file": "apps/marketing/app/layouts/default.vue", - "source_location": "L78", - "community": 631, - "norm_label": "{ t }", - "id": "layouts_default_t" - }, - { - "label": "menuOpen", - "file_type": "code", - "source_file": "apps/marketing/app/layouts/default.vue", - "source_location": "L79", - "community": 631, - "norm_label": "menuopen", - "id": "layouts_default_menuopen" - }, - { - "label": "navLinks", - "file_type": "code", - "source_file": "apps/marketing/app/layouts/default.vue", - "source_location": "L82", - "community": 631, - "norm_label": "navlinks", - "id": "layouts_default_navlinks" - }, - { - "label": "isActive()", - "file_type": "code", - "source_file": "apps/marketing/app/layouts/default.vue", - "source_location": "L91", - "community": 631, - "norm_label": "isactive()", - "id": "layouts_default_isactive" - }, - { - "label": "preview.vue", - "file_type": "code", - "source_file": "apps/marketing/app/pages/preview.vue", - "source_location": "L1", - "community": 21, - "norm_label": "preview.vue", - "id": "apps_marketing_app_pages_preview_vue" - }, - { - "label": "steps", - "file_type": "code", - "source_file": "apps/marketing/app/pages/preview.vue", - "source_location": "L31", - "community": 21, - "norm_label": "steps", - "id": "pages_preview_steps" - }, - { - "label": "mailProviders", - "file_type": "code", - "source_file": "apps/marketing/app/pages/preview.vue", - "source_location": "L37", - "community": 21, - "norm_label": "mailproviders", - "id": "pages_preview_mailproviders" - }, { "label": "Build Magic Windows Workflow", "file_type": "code", @@ -133179,7 +164738,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "build magic windows workflow", "id": "workflows_build_magic_win_workflow" }, @@ -133192,7 +164751,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "nsis installer (x64) build job", "id": "workflows_build_magic_win_nsis_installer" }, @@ -133205,49 +164764,10 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "tamper-service (tauri sidecar) build step", "id": "workflows_build_magic_win_tamper_service_build" }, - { - "label": "Build admin (Nuxt SSR) Job", - "file_type": "code", - "source_file": ".github/workflows/deploy-admin-staging.yml", - "source_location": null, - "source_url": null, - "captured_at": null, - "author": null, - "contributor": null, - "community": 430, - "norm_label": "build admin (nuxt ssr) job", - "id": "workflows_deploy_admin_staging_build_job" - }, - { - "label": "Deploy admin to Hetzner Job", - "file_type": "code", - "source_file": ".github/workflows/deploy-admin-staging.yml", - "source_location": null, - "source_url": null, - "captured_at": null, - "author": null, - "contributor": null, - "community": 430, - "norm_label": "deploy admin to hetzner job", - "id": "workflows_deploy_admin_staging_deploy_job" - }, - { - "label": "rebreak-admin-staging Service", - "file_type": "concept", - "source_file": ".github/workflows/deploy-admin-staging.yml", - "source_location": null, - "source_url": null, - "captured_at": null, - "author": null, - "contributor": null, - "community": 430, - "norm_label": "rebreak-admin-staging service", - "id": "concept_rebreak_admin_staging_service" - }, { "label": "Maestro Cloud E2E (mobile.dev)", "file_type": "concept", @@ -133322,7 +164842,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 276, + "community": 954, "norm_label": "rebreak magic mac phase 2 summary", "id": "rebreak_magic_mac_phase2_summary" }, @@ -133335,7 +164855,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 276, + "community": 954, "norm_label": "rebreak magic mac readme", "id": "rebreak_magic_mac_readme" }, @@ -133348,7 +164868,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 276, + "community": 954, "norm_label": "rebreak magic mac app", "id": "rebreak_magic_mac_app" }, @@ -133361,7 +164881,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 276, + "community": 954, "norm_label": "mac+iphone self-binding 6-step wizard", "id": "rebreak_magic_mac_self_bind_wizard" }, @@ -133374,7 +164894,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 276, + "community": 954, "norm_label": "authservice.swift (supabase + keychain)", "id": "rebreak_magic_mac_auth_service" }, @@ -133387,7 +164907,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 869, + "community": 67, "norm_label": "magicapiclient.swift (/api/magic/*)", "id": "rebreak_magic_mac_api_client" }, @@ -133426,7 +164946,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "macprofileinstaller.swift (dns-filter profile)", "id": "rebreak_magic_mac_profile_installer" }, @@ -133439,7 +164959,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "post /api/magic/register endpoint", "id": "concept_magic_register_endpoint" }, @@ -133452,7 +164972,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "get /api/magic/status endpoint", "id": "concept_magic_status_endpoint" }, @@ -133465,7 +164985,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 276, + "community": 954, "norm_label": "nanomdm server (mdm.rebreak.org)", "id": "concept_nanomdm_server" }, @@ -133478,7 +164998,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 276, + "community": 954, "norm_label": "supervise-magic go-cli binary", "id": "concept_supervise_magic_binary" }, @@ -133491,7 +165011,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "rebreak magic windows readme", "id": "rebreak_magic_win_readme" }, @@ -133504,7 +165024,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "rebreak magic windows app (tauri 2)", "id": "rebreak_magic_win_app" }, @@ -133517,7 +165037,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "rebreak-protection-service (windows system tamper-service)", "id": "rebreak_magic_win_tamper_service" }, @@ -133530,7 +165050,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "eigene doh-infra (dns.rebreak.org, adguard)", "id": "rebreak_magic_win_doh_infra" }, @@ -133543,7 +165063,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "24h-cooldown server-timed deactivation", "id": "rebreak_magic_win_24h_cooldown" }, @@ -133556,7 +165076,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 386, + "community": 871, "norm_label": "rebreak magic windows index.html", "id": "rebreak_magic_win_index_html" }, @@ -133842,7 +165362,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 75, + "community": 1032, "norm_label": "keine oasis-datenbank-kopplung (art. 9 dsgvo vermeidung)", "id": "marketing_onepager_behoerden_no_oasis_coupling" }, @@ -133946,7 +165466,7 @@ "captured_at": "2026-06-09", "author": null, "contributor": null, - "community": 449, + "community": 928, "norm_label": "rebreak magic re-hardening assessment & plan", "id": "magic_re_hardening" }, @@ -133959,7 +165479,7 @@ "captured_at": "2026-06-09", "author": null, "contributor": null, - "community": 449, + "community": 928, "norm_label": "windows protection.json acl-hartung (dns-token-schutz)", "id": "magic_re_hardening_protection_json_acl" }, @@ -133972,7 +165492,7 @@ "captured_at": "2026-06-09", "author": null, "contributor": null, - "community": 449, + "community": 928, "norm_label": "windows service-name-bypass (sc.exe stop rebreakprotection)", "id": "magic_re_hardening_service_name_bypass" }, @@ -133985,7 +165505,7 @@ "captured_at": "2026-06-09", "author": null, "contributor": null, - "community": 449, + "community": 928, "norm_label": "dns-token dpapi-verschlusselung (windows)", "id": "magic_re_hardening_dpapi_token_encrypt" }, @@ -133998,7 +165518,7 @@ "captured_at": "2026-06-09", "author": null, "contributor": null, - "community": 449, + "community": 928, "norm_label": "server-seitige token-revocation (kern-sicherheit im backend)", "id": "magic_re_hardening_backend_token_revocation" }, @@ -134011,7 +165531,7 @@ "captured_at": "2026-06-09", "author": null, "contributor": null, - "community": 449, + "community": 928, "norm_label": "admin-user kann alles aufheben (echter schutz = cooldown+psychologie)", "id": "magic_re_hardening_admin_can_undo" }, @@ -134024,7 +165544,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 864, + "community": 47, "norm_label": "spec protection coverage & streak (diga-kernmetrik)", "id": "protection_coverage_streak" }, @@ -134037,7 +165557,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 864, + "community": 47, "norm_label": "protection_state_log (append-only schutz-transitions-log)", "id": "protection_coverage_streak_log_model" }, @@ -134050,7 +165570,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 864, + "community": 47, "norm_label": "optimistisches streak-modell (wert fallt nie auf 0)", "id": "protection_coverage_streak_optimistic_principle" }, @@ -134154,7 +165674,7 @@ "captured_at": null, "author": "Dr. Marlene Brandt (diga-regulatory)", "contributor": null, - "community": 864, + "community": 110, "norm_label": "req-prot schutz/blocker (gerateweite zugangserschwerung)", "id": "diga_03_req_prot" }, @@ -134167,7 +165687,7 @@ "captured_at": null, "author": "Dr. Marlene Brandt (diga-regulatory)", "contributor": null, - "community": 422, + "community": 60, "norm_label": "req-magic selbstbindung (rebreakmagic lock-modus, 24h-cooldown)", "id": "diga_03_req_magic" }, @@ -134219,7 +165739,7 @@ "captured_at": null, "author": "Dr. Marlene Brandt (diga-regulatory)", "contributor": null, - "community": 9, + "community": 33, "norm_label": "server-time-authoritativer cooldown (uhr-manipulation-schutz)", "id": "diga_03_req_cooldown_server_authoritative" }, @@ -134232,7 +165752,7 @@ "captured_at": null, "author": "Dr. Marlene Brandt (diga-regulatory)", "contributor": null, - "community": 601, + "community": 1032, "norm_label": "anonymitats-invariante (kein pii in api/realtime/push/log)", "id": "diga_03_req_anonymity_invariante" }, @@ -134284,7 +165804,7 @@ "captured_at": null, "author": "Dr. Marlene Brandt (diga-regulatory)", "contributor": null, - "community": 601, + "community": 1032, "norm_label": "r-data-07 anonymitatsbruch (klarname-leak)", "id": "diga_04_risk_data_07_anonymitaetsbruch" }, @@ -134297,7 +165817,7 @@ "captured_at": null, "author": "Dr. Marlene Brandt (diga-regulatory)", "contributor": null, - "community": 422, + "community": 60, "norm_label": "r-byp-03 selbstbindung wird zur falle (legitimer ausstieg scheitert)", "id": "diga_04_risk_byp_03_selbstbindung_falle" }, @@ -134310,7 +165830,7 @@ "captured_at": null, "author": "Dr. Marlene Brandt (diga-regulatory)", "contributor": null, - "community": 864, + "community": 110, "norm_label": "r-false-01 falsche sicherheit bei inaktivem schutz", "id": "diga_04_risk_false_01_falsche_sicherheit" }, @@ -134414,7 +165934,7 @@ "captured_at": null, "author": "Ahmed (Test-Agent)", "contributor": null, - "community": 79, + "community": 422, "norm_label": "safety-req-llm-002 sicherheits-grenzen (rollen-integritat, refusal)", "id": "diga_05c_safety_req_llm_002" }, @@ -134453,7 +165973,7 @@ "captured_at": "2026-06-07", "author": "Hans M\u00fcller (externer DSB)", "contributor": null, - "community": 75, + "community": 1032, "norm_label": "art. 9 dsgvo besondere kategorien (hochste schutzstufe)", "id": "diga_08_art9_hoechste_schutzstufe" }, @@ -134518,7 +166038,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 601, + "community": 1032, "norm_label": "callkit + voip setup fur rebreak", "id": "ops_callkit_setup" }, @@ -134531,7 +166051,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 601, + "community": 1032, "norm_label": "includescallsinrecents:false (diga-privacy, kein icloud-sync)", "id": "ops_callkit_setup_diga_no_recents_sync" }, @@ -134570,7 +166090,7 @@ "captured_at": "2026-06-02", "author": "lyra-persona agent", "contributor": null, - "community": 79, + "community": 422, "norm_label": "verbotenes pathologisierungs-vokabular (sucht/suchtig/therapie)", "id": "ops_lyra_persona_no_pathologizing_vocab" }, @@ -134583,7 +166103,7 @@ "captured_at": "2026-06-02", "author": "lyra-persona agent", "contributor": null, - "community": 422, + "community": 60, "norm_label": "rebreakmagic-tech-begriffe gegenuber user verboten (mdm/supervised/nefilter)", "id": "ops_lyra_persona_magic_tech_forbidden" }, @@ -134596,7 +166116,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 601, + "community": 1032, "norm_label": "voice-calls coturn turn-server runbook", "id": "ops_calls_runbook" }, @@ -134609,7 +166129,7 @@ "captured_at": null, "author": null, "contributor": null, - "community": 601, + "community": 1032, "norm_label": "coturn force-relay (kein ip-austausch, anonymitat)", "id": "ops_calls_runbook_force_relay_anonymity" }, @@ -134746,2333 +166266,40566 @@ ], "links": [ { - "relation": "contains", + "relation": "imports_from", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L13", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L216", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_marketing_package_json", - "target": "marketing_package_dependencies" + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "apps_rebreak_magic_app_composables_usedevicestatus_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "apps_rebreak_magic_app_composables_usemdmstatus_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "apps_rebreak_magic_app_composables_usetauri_ts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L29", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L241", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_marketing_package_json", - "target": "marketing_package_devdependencies" + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_autosynccomplete" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L2", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L240", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_marketing_package_json", - "target": "marketing_package_name" + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_autosyncing" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L4", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L253", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_marketing_package_json", - "target": "marketing_package_private" + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_backendrows" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_deviceidref" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L338", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_devicename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L402", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_incompletemessage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L384", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_isprotectionincomplete" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_localapp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_localenrollment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_locallock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L304", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_localrows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L239", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_manualsyncing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L354", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_mismatches" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L387", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_onactionclick" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L358", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_platformlabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L588", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_runautosync" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L400", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_showincompletehint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_state_mdmstate_refresh_refreshmdmstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L438", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "components_iosdevicecard_topbadge" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L216", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "composables_usedevicestatus_computeddevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L216", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "composables_usedevicestatus_devicestatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "composables_usemdmstatus_usemdmstatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "composables_usetauri_getinstalledmdmversion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosDeviceCard.vue", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosdevicecard_vue", + "target": "composables_usetauri_iphonedevicestate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm.get.ts", "source_location": "L6", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_marketing_package_json", - "target": "marketing_package_scripts" + "source": "backend_server_api_magic_devices_deviceid_mdm_get_ts", + "target": "backend_server_db_device_protection_ts" }, { - "relation": "contains", + "relation": "imports_from", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L3", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm.get.ts", + "source_location": "L1", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_marketing_package_json", - "target": "marketing_package_type" + "source": "backend_server_api_magic_devices_deviceid_mdm_get_ts", + "target": "backend_server_db_mdm_ts" }, { - "relation": "contains", + "relation": "imports_from", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_marketing_package_json", - "target": "marketing_package_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "marketing_package_scripts", - "target": "marketing_package_scripts_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm.get.ts", "source_location": "L7", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_scripts", - "target": "marketing_package_scripts_dev" + "source": "backend_server_api_magic_devices_deviceid_mdm_get_ts", + "target": "backend_server_utils_auth_ts" }, { - "relation": "contains", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L9", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm.get.ts", + "source_location": "L6", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_scripts", - "target": "marketing_package_scripts_generate" + "source": "backend_server_api_magic_devices_deviceid_mdm_get_ts", + "target": "db_device_protection_getdeviceprotectionstate" }, { - "relation": "contains", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L11", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm.get.ts", + "source_location": "L1", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_scripts", - "target": "marketing_package_scripts_postinstall" + "source": "backend_server_api_magic_devices_deviceid_mdm_get_ts", + "target": "db_mdm_clearuserdevicemdmid" }, { - "relation": "contains", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L10", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm.get.ts", + "source_location": "L1", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_scripts", - "target": "marketing_package_scripts_preview" + "source": "backend_server_api_magic_devices_deviceid_mdm_get_ts", + "target": "db_mdm_getmdmstatusbyudid" }, { - "relation": "contains", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L22", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm.get.ts", + "source_location": "L1", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_chart_js" + "source": "backend_server_api_magic_devices_deviceid_mdm_get_ts", + "target": "db_mdm_getuserdevicebydeviceid" }, { - "relation": "contains", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L14", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm.get.ts", + "source_location": "L7", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_iconify_json_heroicons" + "source": "backend_server_api_magic_devices_deviceid_mdm_get_ts", + "target": "utils_auth_requireuser" }, { - "relation": "contains", + "relation": "imports_from", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L23", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm-link.post.ts", + "source_location": "L1", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_nuxt" + "source": "backend_server_api_magic_devices_deviceid_mdm_link_post_ts", + "target": "backend_server_db_mdm_ts" }, { - "relation": "contains", + "relation": "imports_from", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L15", + "source_file": "backend/server/api/magic/mdm/by-udid.get.ts", + "source_location": "L1", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_nuxt_fonts" + "source": "backend_server_api_magic_mdm_by_udid_get_ts", + "target": "backend_server_db_mdm_ts" }, { - "relation": "contains", + "relation": "imports_from", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L16", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L1", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_nuxt_icon" + "source": "backend_server_db_mdm_ts", + "target": "backend_server_utils_prisma_ts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L17", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L93", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_nuxt_image" + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_clearuserdevicemdmid" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L18", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L107", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_nuxt_ui" + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_getlinkeduserdevices" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L19", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L196", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_nuxtjs_i18n" + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_getmdmenrollmentstatusesbyudids" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L24", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L149", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_tailwindcss" + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_getmdmstatusbyudid" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L25", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L63", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_vue" + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_getuserdevicebydeviceid" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L26", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L117", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_vue_chartjs" + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_mdmdevicestatus" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", - "source_location": "L27", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L126", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_vue_router" + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_mdmenrollmentstatus" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_setuserdevicemdmid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_updateuserdevicemdmhealth" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_usemdmpool" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_user_device_mdm_health_select" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_user_device_mdm_select" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_userdevicemdmhealthrecord" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mdm_ts", + "target": "db_mdm_userdevicemdmrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mdm_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_mdm_getmdmenrollmentstatusesbyudids", + "target": "db_mdm_usemdmpool" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mdm.ts", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_mdm_getmdmstatusbyudid", + "target": "db_mdm_usemdmpool" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm-link.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_deviceid_mdm_link_post_ts", + "target": "db_mdm_getuserdevicebydeviceid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mdm.ts", + "source_location": "L68", + "weight": 1.0, + "source": "db_mdm_getuserdevicebydeviceid", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm-link.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_deviceid_mdm_link_post_ts", + "target": "db_mdm_setuserdevicemdmid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mdm.ts", + "source_location": "L83", + "weight": 1.0, + "source": "db_mdm_setuserdevicemdmid", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mdm.ts", + "source_location": "L97", + "weight": 1.0, + "source": "db_mdm_clearuserdevicemdmid", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mdm.ts", + "source_location": "L110", + "weight": 1.0, + "source": "db_mdm_getlinkeduserdevices", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/mdm/by-udid.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_mdm_by_udid_get_ts", + "target": "db_mdm_getmdmstatusbyudid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mdm.ts", + "source_location": "L239", + "weight": 1.0, + "source": "db_mdm_updateuserdevicemdmhealth", + "target": "utils_prisma_useprisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "claude_md", + "target": "rebreak_monorepo_claude_claude_md_rebreak_monorepo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_claude_claude_md_rebreak_monorepo", + "target": "rebreak_monorepo_claude_agent_verhaltensregel_keine_eigenm\u00e4chtigen_code_\u00e4nderungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_claude_claude_md_rebreak_monorepo", + "target": "rebreak_monorepo_claude_graphify_knowledge_graph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "CLAUDE.md", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_claude_claude_md_rebreak_monorepo", + "target": "rebreak_monorepo_claude_session_kontext_limit_stop_prompt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_plan_md", + "target": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri", + "target": "rebreak_magic_plan_aktueller_stand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri", + "target": "rebreak_magic_plan_frontend_struktur_nuxt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri", + "target": "rebreak_magic_plan_gemeinsamer_wizard_flow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri", + "target": "rebreak_magic_plan_n\u00e4chste_schritte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri", + "target": "rebreak_magic_plan_plattformspezifische_rust_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri", + "target": "rebreak_magic_plan_risiken_offene_punkte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri", + "target": "rebreak_magic_plan_tech_stack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/PLAN.md", "source_location": "L20", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_vueuse_motion" + "source": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri", + "target": "rebreak_magic_plan_vergleich_aktuelle_mac_vs_windows" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri", + "target": "rebreak_magic_plan_wichtige_entscheidungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/PLAN.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_plan_rebreak_magic_unified_desktop_app_nuxt_tauri", + "target": "rebreak_magic_plan_ziel" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "apps_rebreak_magic_app_composables_uselogger_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "components_devlogdrawer_badgecolor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "components_devlogdrawer_clear_exportlogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "components_devlogdrawer_copydetails" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "components_devlogdrawer_copylogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "components_devlogdrawer_entryclass" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "components_devlogdrawer_formattime" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "components_devlogdrawer_logs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "components_devlogdrawer_onkeydown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "components_devlogdrawer_open" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "composables_uselogger_logentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "composables_uselogger_uselogger" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DevLogDrawer.vue", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devlogdrawer_vue", + "target": "composables_uselogger_useloggerstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/PreflightItem.vue", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_preflightitem_vue", + "target": "components_preflightitem_toggle" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_preflight_vue", + "target": "apps_rebreak_magic_app_components_preflightitem_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/StepButton.vue", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_stepbutton_vue", + "target": "components_stepbutton_buttonclass" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/StepButton.vue", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_stepbutton_vue", + "target": "components_stepbutton_icon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useLogger.ts", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_uselogger_ts", + "target": "composables_uselogger_formaterror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useLogger.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_uselogger_ts", + "target": "composables_uselogger_logentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useLogger.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_uselogger_ts", + "target": "composables_uselogger_uselogger" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useLogger.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_uselogger_ts", + "target": "composables_uselogger_useloggerstate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "composables_usetauri_invokelogged", + "target": "apps_rebreak_magic_app_composables_uselogger_ts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useLogger.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "composables_uselogger_uselogger", + "target": "composables_uselogger_useloggerstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L122", + "weight": 1.0, + "source": "composables_usetauri_invokelogged", + "target": "composables_uselogger_uselogger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L131", + "weight": 1.0, + "source": "composables_usetauri_invokelogged", + "target": "composables_uselogger_formaterror" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usedevicestatus_ts", + "target": "apps_rebreak_magic_app_composables_usetauri_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemagicstate_ts", + "target": "apps_rebreak_magic_app_composables_usetauri_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMdmStatus.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemdmstatus_ts", + "target": "apps_rebreak_magic_app_composables_usetauri_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "apps_rebreak_magic_app_composables_usetauri_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_desktopprotectionstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_getinstalledmdmversion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_invokelogged" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_iphonedevicestate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_localserverinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_magicdeviceinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_magicsession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_mdmcommandresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_mdmpushstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_mdmstatusbyudiddata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_mdmstatusdata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_platforminfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_redeempairingresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_registerdeviceresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_releaseresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_superviseresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_supervisestatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_userprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useTauri.ts", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usetauri_ts", + "target": "composables_usetauri_usetauri" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_desktop_enroll_vue", + "target": "apps_rebreak_magic_app_composables_usetauri_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/pair.vue", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_pair_vue", + "target": "apps_rebreak_magic_app_composables_usetauri_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_desktop_enroll_vue", + "target": "composables_usetauri_platforminfo" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemagicstate_ts", + "target": "composables_usetauri_registerdeviceresponse" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usedevicestatus_ts", + "target": "composables_usetauri_magicdeviceinfo" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemagicstate_ts", + "target": "composables_usetauri_magicdeviceinfo" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "composables_usetauri_magicdeviceinfo" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usedevicestatus_ts", + "target": "composables_usetauri_iphonedevicestate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemagicstate_ts", + "target": "composables_usetauri_iphonedevicestate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "composables_usetauri_iphonedevicestate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "composables_usetauri_desktopprotectionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMdmStatus.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemdmstatus_ts", + "target": "composables_usetauri_mdmstatusdata" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMdmStatus.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "composables_usemdmstatus_mdmstatusstate", + "target": "composables_usetauri_mdmstatusdata" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMdmStatus.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemdmstatus_ts", + "target": "composables_usetauri_usetauri" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "composables_usetauri_usetauri" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_desktop_enroll_vue", + "target": "composables_usetauri_usetauri" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/pair.vue", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_pair_vue", + "target": "composables_usetauri_usetauri" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-magic/app/composables/useMdmStatus.ts", + "source_location": "L11", + "weight": 1.0, + "source": "composables_usemdmstatus_usemdmstatus", + "target": "composables_usetauri_usetauri" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L26", + "weight": 1.0, + "source": "composables_useprotectionstatus_useprotectionstatus", + "target": "composables_usetauri_usetauri" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/configure.vue", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_configure_vue", + "target": "pages_configure_if" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_desktop_enroll_vue", + "target": "apps_rebreak_magic_app_composables_usemagicstate_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_desktop_enroll_vue", + "target": "composables_usemagicstate_usemagicsession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_desktop_enroll_vue", + "target": "pages_desktop_enroll_activate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_desktop_enroll_vue", + "target": "pages_desktop_enroll_activating" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_desktop_enroll_vue", + "target": "pages_desktop_enroll_canactivate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_desktop_enroll_vue", + "target": "pages_desktop_enroll_getplatform_activateprotection_downloadprofile_setdesktopprotectionstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/desktop-enroll.vue", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_desktop_enroll_vue", + "target": "pages_desktop_enroll_session" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/detect.vue", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_detect_vue", + "target": "pages_detect_detectiphone" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/detect.vue", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_detect_vue", + "target": "pages_detect_displaymodel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/detect.vue", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_detect_vue", + "target": "pages_detect_hasrebreakapp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/enroll.vue", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_enroll_vue", + "target": "pages_enroll_cancontinue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/enroll.vue", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_enroll_vue", + "target": "pages_enroll_checkenrollment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/enroll.vue", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_enroll_vue", + "target": "pages_enroll_downloadenrollmentprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/enroll.vue", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_enroll_vue", + "target": "pages_enroll_refreshprofilelist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/enroll.vue", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pages_enroll_checkenrollment", + "target": "pages_enroll_refreshprofilelist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/pair.vue", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_pair_vue", + "target": "pages_pair_return" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_preflight_vue", + "target": "apps_rebreak_magic_app_composables_usemagicstate_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_preflight_vue", + "target": "composables_usemagicstate_useiphonedevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_preflight_vue", + "target": "pages_preflight_allchecked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_preflight_vue", + "target": "pages_preflight_checks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_preflight_vue", + "target": "pages_preflight_hasrebreakapp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/preflight.vue", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_preflight_vue", + "target": "pages_preflight_iphone" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/sideload.vue", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_sideload_vue", + "target": "pages_sideload_if" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/status.vue", + "source_location": "L270", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_status_vue", + "target": "pages_status_if" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/supervise.vue", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_supervise_vue", + "target": "pages_supervise_cancontinue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/pages/supervise.vue", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_pages_supervise_vue", + "target": "pages_supervise_runsupervise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_package_json", + "target": "rebreak_magic_package_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_package_json", + "target": "rebreak_magic_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_package_json", + "target": "rebreak_magic_package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_package_json", + "target": "rebreak_magic_package_private" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_package_json", + "target": "rebreak_magic_package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_package_json", + "target": "rebreak_magic_package_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_package_json", + "target": "rebreak_magic_package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_scripts", + "target": "rebreak_magic_package_scripts_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_scripts", + "target": "rebreak_magic_package_scripts_dev" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_scripts", + "target": "rebreak_magic_package_scripts_generate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_scripts", + "target": "rebreak_magic_package_scripts_postinstall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_scripts", + "target": "rebreak_magic_package_scripts_preview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_scripts", + "target": "rebreak_magic_package_scripts_tauri" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_scripts", + "target": "rebreak_magic_package_scripts_tauri_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_scripts", + "target": "rebreak_magic_package_scripts_tauri_dev" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L21", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_dependencies", - "target": "marketing_package_dependencies_vueuse_nuxt" + "source": "rebreak_magic_package_dependencies", + "target": "rebreak_magic_package_dependencies_nuxt" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_dependencies", + "target": "rebreak_magic_package_dependencies_nuxt_icon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_dependencies", + "target": "rebreak_magic_package_dependencies_nuxt_ui" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_dependencies", + "target": "rebreak_magic_package_dependencies_qrcode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_dependencies", + "target": "rebreak_magic_package_dependencies_tailwindcss" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_dependencies", + "target": "rebreak_magic_package_dependencies_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_dependencies", + "target": "rebreak_magic_package_dependencies_vue_router" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_dependencies", + "target": "rebreak_magic_package_dependencies_vueuse_core" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_dependencies", + "target": "rebreak_magic_package_dependencies_vueuse_nuxt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_devdependencies", + "target": "rebreak_magic_package_devdependencies_iconify_json_heroicons" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_package_devdependencies", + "target": "rebreak_magic_package_devdependencies_tauri_apps_api" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L30", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_devdependencies", - "target": "marketing_package_devdependencies_iconify_json_simple_icons" + "source": "rebreak_magic_package_devdependencies", + "target": "rebreak_magic_package_devdependencies_tauri_apps_cli" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L31", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_devdependencies", - "target": "marketing_package_devdependencies_nuxt_devtools" + "source": "rebreak_magic_package_devdependencies", + "target": "rebreak_magic_package_devdependencies_types_qrcode" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/marketing/package.json", + "source_file": "apps/rebreak-magic/package.json", "source_location": "L32", "weight": 1.0, "confidence_score": 1.0, - "source": "marketing_package_devdependencies", - "target": "marketing_package_devdependencies_typescript" + "source": "rebreak_magic_package_devdependencies", + "target": "rebreak_magic_package_devdependencies_typescript" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_file": "apps/rebreak-magic/src-tauri/binaries/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_binaries_readme_md", + "target": "binaries_readme_tauri_sidecar_binaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/binaries/README.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "binaries_readme_tauri_sidecar_binaries", + "target": "binaries_readme_supervise_magic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/binaries/README.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "binaries_readme_supervise_magic", + "target": "binaries_readme_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/binaries/README.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "binaries_readme_supervise_magic", + "target": "binaries_readme_naming_convention_for_tauri" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/build.rs", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_build_rs", + "target": "src_tauri_build_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/build.rs", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_build_rs", + "target": "src_tauri_build_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/capabilities/default.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_capabilities_default_json", + "target": "capabilities_default_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/capabilities/default.json", "source_location": "L3", "weight": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift", - "target": "views_macregistrationview_macregistrationview", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_capabilities_default_json", + "target": "capabilities_default_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/capabilities/default.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_capabilities_default_json", + "target": "capabilities_default_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/capabilities/default.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_capabilities_default_json", + "target": "capabilities_default_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/capabilities/default.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_capabilities_default_json", + "target": "capabilities_default_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", + "target": "capabilities_default_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", + "target": "capabilities_default_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", + "target": "capabilities_default_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", + "target": "capabilities_default_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", + "target": "capabilities_default_permissions" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L1", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_apienvelope" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_cooldownresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_default_active_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_magicapiclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_magicdeviceinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_mdmlinkrequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_mdmstatusbyudiddata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_mdmstatusdata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_redeempairingrequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_redeempairingresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_registerdevicerequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_registerdeviceresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_releaseresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_reportprotectionstaterequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_statusresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "backend_api_userprofile" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L2", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_backend_api_rs", + "target": "error" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", "source_location": "L10", "weight": 1.0, "context": "field", - "source": "views_macregistrationview_macregistrationview", - "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "backend_api_redeempairingrequest", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_option" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L10", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_redeempairingrequest", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L86", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_cooldownresponse", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L66", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_default_active_status", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L129", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L63", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicdeviceinfo", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L112", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_mdmlinkrequest", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L119", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_mdmstatusbyudiddata", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L106", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_mdmstatusdata", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L19", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_redeempairingresponse", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L29", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_registerdevicerequest", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L39", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_registerdeviceresponse", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L80", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_releaseresponse", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L137", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_reportprotectionstaterequest", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L93", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_userprofile", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L143", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_redeem_pairing_code", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L184", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_register_device", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L452", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_report_device_protection_state", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L63", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_magicdeviceinfo", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L119", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_mdmstatusbyudiddata", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L106", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_mdmstatusdata", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L29", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_registerdevicerequest", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L137", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_reportprotectionstaterequest", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L93", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_userprofile", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L143", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_redeem_pairing_code", + "target": "backend_api_redeempairingresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L184", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_register_device", + "target": "backend_api_registerdeviceresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L221", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_list_devices", + "target": "backend_api_magicdeviceinfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L253", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_request_release", + "target": "backend_api_releaseresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L291", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_start_cooldown", + "target": "backend_api_cooldownresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L325", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_fetch_me", + "target": "backend_api_userprofile" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L341", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_get_mdm_status", + "target": "backend_api_mdmstatusdata" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L392", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_get_mdm_status_by_udid", + "target": "backend_api_mdmstatusbyudiddata" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L131", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_apienvelope", + "target": "t" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L440", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_handle_response", + "target": "t" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L135", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_client" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L311", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_cancel_cooldown" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_cancel_release" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L382", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_download_profile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L325", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_fetch_me" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L341", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_get_mdm_status" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L392", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_get_mdm_status_by_udid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L237", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_get_status" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L408", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_handle_response" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L357", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_link_mdm_device" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_list_devices" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_redeem_pairing_code" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_register_device" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L452", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_report_device_protection_state" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_request_release" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L291", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient", + "target": "backend_api_magicapiclient_start_cooldown" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L319", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_cancel_cooldown", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L284", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_cancel_release", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L393", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_download_profile", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L334", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_fetch_me", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L350", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_get_mdm_status", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L406", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_get_mdm_status_by_udid", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_get_status", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L418", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_handle_response", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L375", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_link_mdm_device", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_list_devices", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L133", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_new", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appconfig" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L140", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_new", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_self" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_redeem_pairing_code", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L207", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_register_device", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L477", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_report_device_protection_state", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L265", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_request_release", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L305", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_start_cooldown", + "target": "backend_api_magicapiclient_new" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L143", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_redeem_pairing_code", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L311", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_cancel_cooldown", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L272", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_cancel_release", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L382", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_download_profile", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L325", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_fetch_me", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L341", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_get_mdm_status", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L392", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_get_mdm_status_by_udid", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L237", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_get_status", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L408", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_handle_response", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L357", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_link_mdm_device", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L221", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_list_devices", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L184", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_register_device", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L452", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_report_device_protection_state", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L253", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_request_release", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L291", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_start_cooldown", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L221", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_list_devices", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_vec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L382", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_download_profile", + "target": "apps_rebreak_magic_src_tauri_src_backend_api_rs_vec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/backend/api.rs", + "source_location": "L440", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "backend_api_magicapiclient_handle_response", + "target": "response" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L58", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_api_api_parse", + "target": "response" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_error_rs", + "target": "src_error_apperror" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", "source_location": "L6", "weight": 1.0, "context": "field", - "source": "views_macregistrationview_macregistrationview", - "target": "macdeviceinfo", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "src_error_apperror", + "target": "apps_rebreak_magic_src_tauri_src_error_rs_string" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_error_apperror", + "target": "display" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L155", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L37", "weight": 1.0, - "context": "field", - "source": "views_macregistrationview_macregistrationview", - "target": "view", - "confidence_score": 1.0 + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_error_apperror", + "target": "error" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_error_apperror", + "target": "from" }, { "relation": "method", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L199", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L10", "weight": 1.0, - "source": "views_macregistrationview_macregistrationview", - "target": "views_macregistrationview_macregistrationview_checkprofilestatus", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "src_error_apperror", + "target": "src_error_apperror_fmt" }, { "relation": "method", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L136", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L38", "weight": 1.0, - "source": "views_macregistrationview_macregistrationview", - "target": "views_macregistrationview_macregistrationview_errorcard", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "src_error_apperror", + "target": "src_error_apperror_from" }, { "relation": "method", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L234", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L18", "weight": 1.0, - "source": "views_macregistrationview_macregistrationview", - "target": "views_macregistrationview_macregistrationview_handleprofileinstall", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "src_error_apperror", + "target": "src_error_apperror_new" }, { - "relation": "method", + "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L210", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L18", "weight": 1.0, - "source": "views_macregistrationview_macregistrationview", - "target": "views_macregistrationview_macregistrationview_handleregistration", - "confidence_score": 1.0 + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_error_apperror_new", + "target": "apps_rebreak_magic_src_tauri_src_error_rs_string" }, { - "relation": "method", + "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L184", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L10", "weight": 1.0, - "source": "views_macregistrationview_macregistrationview", - "target": "views_macregistrationview_macregistrationview_loadmacinfo", - "confidence_score": 1.0 + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_error_apperror_fmt", + "target": "formatter" }, { - "relation": "method", + "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L112", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L10", "weight": 1.0, - "source": "views_macregistrationview_macregistrationview", - "target": "views_macregistrationview_macregistrationview_macinfocard", - "confidence_score": 1.0 + "context": "return_type", + "confidence_score": 1.0, + "source": "src_error_apperror_fmt", + "target": "result" }, { - "relation": "method", + "relation": "imports_from", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L316", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L3", "weight": 1.0, - "source": "views_macregistrationview_macregistrationview", - "target": "views_macregistrationview_macregistrationview_pollbackendactive", - "confidence_score": 1.0 + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_config_rs", + "target": "error" }, { - "relation": "method", + "relation": "imports_from", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L306", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L2", "weight": 1.0, - "source": "views_macregistrationview_macregistrationview", - "target": "views_macregistrationview_macregistrationview_polluntilprofileinstalled", - "confidence_score": 1.0 + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "error" }, { - "relation": "method", + "relation": "imports_from", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L2", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_client_rs", + "target": "error" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L1", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_server_local_http_rs", + "target": "error" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L1", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs", + "target": "error" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L169", "weight": 1.0, - "source": "views_macregistrationview_macregistrationview", - "target": "views_macregistrationview_macregistrationview_successcard", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ContentView.swift", - "source_location": "L101", - "weight": 1.0, - "context": "field", "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_contentview_swift_views_contentview_contentview", - "target": "view" + "source": "bloomfiltertool_bloomfiltertool_runtimeerror", + "target": "error" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L108", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L172", "weight": 1.0, - "context": "field", + "context": "parameter_type", "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", - "target": "view" + "source": "bloomfiltertool_bloomfiltertool_runtimeerror_init", + "target": "error" }, { - "relation": "references", + "relation": "implements", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ContentView.swift", - "source_location": "L24", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L14", "weight": 1.0, - "context": "field", "confidence_score": 1.0, - "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_contentview_swift_views_contentview_contentview", - "target": "view" + "source": "bloomfiltertool_readme", + "target": "error" }, { - "relation": "references", + "relation": "implements", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L155", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/ConfigurationModel.swift", + "source_location": "L162", "weight": 1.0, - "context": "field", "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "view" + "source": "model_configurationmodel_configurationerror", + "target": "error" }, { - "relation": "references", + "relation": "implements", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", - "source_location": "L55", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L14", "weight": 1.0, - "context": "field", "confidence_score": 1.0, - "source": "views_configurationview_configurationview", - "target": "view" + "source": "rebreakurlfilterextension_bloomfilter_bloomfiltererror", + "target": "error" }, { - "relation": "references", + "relation": "implements", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", - "source_location": "L206", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/RebreakURLFilterControlProvider.swift", + "source_location": "L18", "weight": 1.0, - "context": "return_type", "confidence_score": 1.0, - "source": "views_configurationview_configurationview_validationerrorview", - "target": "view" + "source": "rebreakurlfilterextension_rebreakurlfiltercontrolprovider_providerfiltererror", + "target": "error" }, { - "relation": "references", + "relation": "implements", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ConfigureView.swift", - "source_location": "L159", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L27", "weight": 1.0, - "context": "field", "confidence_score": 1.0, - "source": "views_configureview_configureview", - "target": "view" + "source": "services_authservice_autherror", + "target": "error" }, { - "relation": "references", + "relation": "implements", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ContentView.swift", - "source_location": "L136", + "source_file": "apps/rebreak-magic-mac/Sources/Services/DeviceDetector.swift", + "source_location": "L6", "weight": 1.0, - "context": "return_type", "confidence_score": 1.0, - "source": "views_contentview_contentview_actionview", - "target": "view" + "source": "services_devicedetector_detectorerror", + "target": "error" }, { - "relation": "references", + "relation": "implements", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ContentView.swift", - "source_location": "L115", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L13", "weight": 1.0, - "context": "return_type", "confidence_score": 1.0, - "source": "views_contentview_contentview_errorview", - "target": "view" + "source": "services_macdevicedetector_macdevicedetectorerror", + "target": "error" }, { - "relation": "references", + "relation": "implements", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ContentView.swift", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macprofileinstaller_installererror", + "target": "error" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", "source_location": "L72", "weight": 1.0, - "context": "return_type", "confidence_score": 1.0, - "source": "views_contentview_contentview_mainimageview", - "target": "view" + "source": "services_magicapiclient_magicerror", + "target": "error" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMClient.swift", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_mdmclient_mdmclienterror", + "target": "error" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_mdmstatus_mdmstatuserror", + "target": "error" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/ProcessRunner.swift", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_processrunner_processrunnererror", + "target": "error" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/SuperviseRunner.swift", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_superviserunner_runnererror", + "target": "error" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "simpleurlfilterextension_urlfiltercontrolprovider_providerfiltererror", + "target": "error" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ContentView.swift", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_error_apperror_from", + "target": "error" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfiltererror", + "target": "error" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_validationerror", + "target": "error" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_error_apperror_from", + "target": "src_error_apperror_new" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L18", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_error_apperror_new", + "target": "apps_rebreak_magic_src_tauri_src_error_rs_self" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L18", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_error_apperror_new", + "target": "into" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/error.rs", + "source_location": "L38", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_error_apperror_from", + "target": "apps_rebreak_magic_src_tauri_src_error_rs_self" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L406", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_cfgutil_live_outputs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_detect_device_state" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L245", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_detect_iphone_state" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L270", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_download_and_patch_enrollment_profile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_first_executable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_get_installed_apps" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L255", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_get_installed_profiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_get_supervise_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L265", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_install_profile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_install_profile_via_cfgutil" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_installed_app_bundle_ids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_installed_profile_ids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L385", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_iphone_state_serializes_id_casing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_iphonedevicestate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_normalize_org_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_parse_cfgutil_list" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L371", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_parse_cfgutil_list_extracts_bundle_ids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L378", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_parse_cfgutil_list_handles_empty_profile_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_parse_colon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_parse_equals" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L358", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_parse_equals_handles_multiple_spaces" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_read_supervise_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_run_cfgutil" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_run_supervise_magic_cmd" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_ios_device_rs", + "target": "src_ios_device_supervisestatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L12", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_first_executable", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L12", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_first_executable", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_install_profile_via_cfgutil", + "target": "src_ios_device_first_executable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_installed_app_bundle_ids", + "target": "src_ios_device_first_executable" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_installed_profile_ids", + "target": "src_ios_device_first_executable" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L208", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_detect_device_state", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L245", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_detect_iphone_state", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_ios_device_iphonedevicestate", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L39", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_parse_colon", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L50", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_parse_equals", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L28", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_ios_device_supervisestatus", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L270", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_ios_device_download_and_patch_enrollment_profile", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L260", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_get_installed_apps", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L255", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_get_installed_profiles", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L265", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_ios_device_install_profile", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L149", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_installed_app_bundle_ids", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L133", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_installed_profile_ids", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L20", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_iphonedevicestate", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L31", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_normalize_org_name", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L164", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_parse_cfgutil_list", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L39", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_parse_colon", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L50", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_parse_equals", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L79", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_run_cfgutil", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L63", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_run_supervise_magic_cmd", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L27", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_supervisestatus", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L208", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_detect_device_state", + "target": "src_ios_device_iphonedevicestate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L245", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_detect_iphone_state", + "target": "src_ios_device_iphonedevicestate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_ios_device_iphonedevicestate", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_vec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L260", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_get_installed_apps", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_vec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L255", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_get_installed_profiles", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_vec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L149", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_installed_app_bundle_ids", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_vec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L133", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_installed_profile_ids", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_vec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L164", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_parse_cfgutil_list", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_vec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L250", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_get_supervise_status", + "target": "src_ios_device_supervisestatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L90", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_ios_device_read_supervise_status", + "target": "src_ios_device_supervisestatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_read_supervise_status", + "target": "src_ios_device_normalize_org_name" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_detect_device_state", + "target": "src_ios_device_parse_colon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_read_supervise_status", + "target": "src_ios_device_parse_colon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_read_supervise_status", + "target": "src_ios_device_parse_equals" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_detect_device_state", + "target": "src_ios_device_run_supervise_magic_cmd" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_read_supervise_status", + "target": "src_ios_device_run_supervise_magic_cmd" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L63", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_ios_device_run_supervise_magic_cmd", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L63", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_run_supervise_magic_cmd", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L68", + "weight": 1.0, + "source": "src_ios_device_run_supervise_magic_cmd", + "target": "sidecar_supervise_magic_run_supervise_magic_raw" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L208", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_ios_device_detect_device_state", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L245", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_ios_device_detect_iphone_state", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L250", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_ios_device_get_supervise_status", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L90", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_ios_device_read_supervise_status", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L208", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_detect_device_state", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L245", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_detect_iphone_state", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L270", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_download_and_patch_enrollment_profile", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L260", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_get_installed_apps", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L255", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_get_installed_profiles", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L250", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_get_supervise_status", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L265", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_install_profile", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L181", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_install_profile_via_cfgutil", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L149", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_installed_app_bundle_ids", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L133", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_installed_profile_ids", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L90", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_read_supervise_status", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L79", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_ios_device_run_cfgutil", + "target": "apps_rebreak_magic_src_tauri_src_ios_device_rs_appresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L187", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_install_profile_via_cfgutil", + "target": "src_ios_device_run_cfgutil" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_installed_app_bundle_ids", + "target": "src_ios_device_run_cfgutil" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_installed_profile_ids", + "target": "src_ios_device_run_cfgutil" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_detect_device_state", + "target": "src_ios_device_read_supervise_status" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_get_supervise_status", + "target": "src_ios_device_read_supervise_status" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_detect_device_state", + "target": "src_ios_device_installed_profile_ids" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_get_installed_profiles", + "target": "src_ios_device_installed_profile_ids" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_installed_profile_ids", + "target": "src_ios_device_parse_cfgutil_list" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_detect_device_state", + "target": "src_ios_device_installed_app_bundle_ids" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_get_installed_apps", + "target": "src_ios_device_installed_app_bundle_ids" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_installed_app_bundle_ids", + "target": "src_ios_device_parse_cfgutil_list" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L373", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_parse_cfgutil_list_extracts_bundle_ids", + "target": "src_ios_device_parse_cfgutil_list" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_install_profile", + "target": "src_ios_device_install_profile_via_cfgutil" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/ios_device.rs", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_ios_device_detect_iphone_state", + "target": "src_ios_device_detect_device_state" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L15", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_activate_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_cancel_cooldown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_cancel_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L207", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_download_profile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_extract_dns_token" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_fetch_me" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_get_desktop_protection_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L135", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_get_device_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_get_hardware_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L237", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_get_hostname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_get_magic_devices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_get_magic_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_get_mdm_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L240", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_get_mdm_status_by_udid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_get_or_init_hardware_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_get_stored_session" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_hostname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_link_mdm_device" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_logout_magic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_redeem_pairing_code" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_register_device" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_report_device_protection_state" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_request_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_require_session" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_run" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L242", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_set_desktop_protection_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_lib_rs", + "target": "src_lib_start_cooldown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "src_lib_run" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_get_hostname", + "target": "src_lib_hostname" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L63", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_hostname", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L63", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_hostname", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_redeem_pairing_code", + "target": "src_lib_hostname" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_register_device", + "target": "src_lib_hostname" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L194", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_activate_protection", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L181", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_cancel_cooldown", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L164", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_cancel_release", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L207", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_download_profile", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L199", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_fetch_me", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L232", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_get_desktop_protection_status", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L135", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_get_device_id", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", "source_location": "L89", "weight": 1.0, "context": "return_type", "confidence_score": 1.0, - "source": "views_contentview_contentview_statusview", - "target": "view" + "source": "src_lib_get_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L272", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview", - "target": "view" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L129", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L237", "weight": 1.0, "context": "return_type", "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview_adddevicebutton", - "target": "view" + "source": "src_lib_get_hostname", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L331", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_devicehubview_hubdevicerow", - "target": "view" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DoneView.swift", - "source_location": "L67", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_doneview_doneview", - "target": "view" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DoneView.swift", - "source_location": "L57", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L141", "weight": 1.0, "context": "return_type", "confidence_score": 1.0, - "source": "views_doneview_doneview_statusrow", - "target": "view" + "source": "src_lib_get_magic_devices", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L176", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_enrollview_enrollview", - "target": "view" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L163", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L149", "weight": 1.0, "context": "return_type", "confidence_score": 1.0, - "source": "views_enrollview_enrollview_steprow", - "target": "view" + "source": "src_lib_get_magic_status", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L14", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_enrollview_transferanimationview", - "target": "view" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", - "source_location": "L59", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L209", "weight": 1.0, "context": "return_type", "confidence_score": 1.0, - "source": "views_enrollview_transferanimationview_iconnode", - "target": "view" + "source": "src_lib_get_mdm_status", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/HelpView.swift", - "source_location": "L6", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_helpview_helpview", - "target": "view" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/HelpView.swift", - "source_location": "L75", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L240", "weight": 1.0, "context": "return_type", "confidence_score": 1.0, - "source": "views_helpview_helpview_faqitem", - "target": "view" + "source": "src_lib_get_mdm_status_by_udid", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L127", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L79", "weight": 1.0, "context": "return_type", "confidence_score": 1.0, - "source": "views_loginview_loginview_digitbox", - "target": "view" + "source": "src_lib_get_or_init_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L130", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_get_stored_session", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L217", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_link_mdm_device", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L189", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_logout_magic", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L84", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_redeem_pairing_code", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L113", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_register_device", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L241", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_report_device_protection_state", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L156", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_request_release", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L77", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_require_session", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L242", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_set_desktop_protection_status", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L172", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_start_cooldown", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L194", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_activate_protection", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L181", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_cancel_cooldown", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L164", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_cancel_release", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L207", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_download_profile", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L227", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_extract_dns_token", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L135", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_device_id", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L89", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L237", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_hostname", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L149", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_get_magic_status", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L209", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_get_mdm_status", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L240", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_get_mdm_status_by_udid", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L79", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_or_init_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L217", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_link_mdm_device", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L84", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_redeem_pairing_code", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L113", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_register_device", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L241", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_report_device_protection_state", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L156", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_request_release", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L242", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_set_desktop_protection_status", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L172", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_start_cooldown", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_string" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_get_hardware_id", + "target": "src_lib_get_or_init_hardware_id" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L79", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_get_or_init_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_appconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", "source_location": "L136", "weight": 1.0, - "context": "return_type", "confidence_score": 1.0, - "source": "views_macregistrationview_macregistrationview_errorcard", - "target": "view" + "source": "src_lib_register_device", + "target": "src_lib_get_or_init_hardware_id" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L112", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L95", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_device_id", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L227", "weight": 1.0, "context": "return_type", "confidence_score": 1.0, - "source": "views_macregistrationview_macregistrationview_macinfocard", - "target": "view" + "source": "src_lib_extract_dns_token", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_option" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L169", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L232", "weight": 1.0, - "context": "return_type", + "context": "generic_arg", "confidence_score": 1.0, - "source": "views_macregistrationview_macregistrationview_successcard", - "target": "view" + "source": "src_lib_get_desktop_protection_status", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_option" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L126", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L130", "weight": 1.0, - "context": "field", + "context": "generic_arg", "confidence_score": 1.0, - "source": "views_managebindingsview_devicerow", - "target": "view" + "source": "src_lib_get_stored_session", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_option" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L84", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_redeem_pairing_code", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L113", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_register_device", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L241", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_report_device_protection_state", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_option" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_cancel_cooldown", + "target": "src_lib_require_session" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_cancel_release", + "target": "src_lib_require_session" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_download_profile", + "target": "src_lib_require_session" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L200", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_fetch_me", + "target": "src_lib_require_session" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_get_magic_devices", + "target": "src_lib_require_session" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L210", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_get_mdm_status", + "target": "src_lib_require_session" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_get_mdm_status_by_udid", + "target": "src_lib_require_session" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_link_mdm_device", + "target": "src_lib_require_session" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_register_device", + "target": "src_lib_require_session" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L248", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_report_device_protection_state", + "target": "src_lib_require_session" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_request_release", + "target": "src_lib_require_session" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L77", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_require_session", + "target": "magicsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_start_cooldown", + "target": "src_lib_require_session" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L130", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_stored_session", + "target": "magicsession" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L84", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_redeem_pairing_code", + "target": "redeempairingresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L113", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_register_device", + "target": "registerdeviceresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L143", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_magic_devices", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_vec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L141", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_magic_devices", + "target": "magicdeviceinfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L156", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_request_release", + "target": "releaseresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L189", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_start_cooldown", + "target": "apps_rebreak_magic_src_tauri_src_lib_rs_value" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L199", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_fetch_me", + "target": "userprofile" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L209", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_mdm_status", + "target": "mdmstatusdata" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L240", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_mdm_status_by_udid", + "target": "mdmstatusbyudiddata" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L213", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_download_profile", + "target": "src_lib_extract_dns_token" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/lib.rs", + "source_location": "L232", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_desktop_protection_status", + "target": "desktopprotectionstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/main.rs", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_main_rs", + "target": "src_main_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_client_rs", + "target": "mdm_client_mdmclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_client_rs", + "target": "mdm_client_mdmenqueueresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_client_rs", + "target": "mdm_client_mdmpushstatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L74", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_push", + "target": "mdm_client_mdmpushstatus" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", "source_location": "L10", "weight": 1.0, "context": "field", "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview", - "target": "view" + "source": "mdm_client_mdmpushstatus", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_string" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/PreflightView.swift", - "source_location": "L88", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L22", "weight": 1.0, "context": "field", "confidence_score": 1.0, - "source": "views_preflightview_preflightview", - "target": "view" + "source": "mdm_client_mdmclient", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_string" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/PreflightView.swift", - "source_location": "L64", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L55", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_ping", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L42", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_url", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "mdm_client_mdmenqueueresult", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L109", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_enqueue", + "target": "mdm_client_mdmenqueueresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L20", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_client" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient", + "target": "mdm_client_mdmclient_enqueue" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient", + "target": "mdm_client_mdmclient_new" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient", + "target": "mdm_client_mdmclient_ping" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient", + "target": "mdm_client_mdmclient_push" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient", + "target": "mdm_client_mdmclient_request" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient", + "target": "mdm_client_mdmclient_url" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_enqueue", + "target": "mdm_client_mdmclient_new" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L26", "weight": 1.0, "context": "return_type", "confidence_score": 1.0, - "source": "views_preflightview_preflightview_checklistitem", - "target": "view" + "source": "mdm_client_mdmclient_new", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_appresult" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/StepIndicator.swift", - "source_location": "L6", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L26", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_new", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_self" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_ping", + "target": "mdm_client_mdmclient_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_push", + "target": "mdm_client_mdmclient_new" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L109", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_enqueue", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L55", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_ping", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L74", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_push", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L47", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_request", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L42", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_url", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_appresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_request", + "target": "mdm_client_mdmclient_url" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_enqueue", + "target": "mdm_client_mdmclient_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_ping", + "target": "mdm_client_mdmclient_request" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_push", + "target": "mdm_client_mdmclient_request" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L47", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_request", + "target": "method" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L47", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_request", + "target": "requestbuilder" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/client.rs", + "source_location": "L109", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mdm_client_mdmclient_enqueue", + "target": "apps_rebreak_magic_src_tauri_src_mdm_client_rs_value" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L3", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_appresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs", + "target": "mdm_mod_mdm_install_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs", + "target": "mdm_mod_mdm_install_lock_profile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs", + "target": "mdm_mod_mdm_ping" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs", + "target": "mdm_mod_mdm_push" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs", + "target": "mdm_mod_mdm_set_supervised_mode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs", + "target": "mdm_mod_mdm_take_management" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs", + "target": "mdm_mod_mdmcommandresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L24", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_install_app", + "target": "mdm_mod_mdmcommandresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L74", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_install_lock_profile", + "target": "mdm_mod_mdmcommandresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L38", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_set_supervised_mode", + "target": "mdm_mod_mdmcommandresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L59", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_take_management", + "target": "mdm_mod_mdmcommandresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L10", "weight": 1.0, "context": "field", "confidence_score": 1.0, - "source": "views_stepindicator_stepindicator", - "target": "view" + "source": "mdm_mod_mdmcommandresult", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_string" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/SuperviseView.swift", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L24", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_install_app", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L74", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_install_lock_profile", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L14", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_ping", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L19", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_push", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_set_supervised_mode", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L59", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_take_management", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L14", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_ping", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L24", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_install_app", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L74", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_install_lock_profile", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L19", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_push", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L38", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_set_supervised_mode", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L59", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_take_management", + "target": "apps_rebreak_magic_src_tauri_src_mdm_mod_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/mdm/mod.rs", + "source_location": "L19", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "mdm_mod_mdm_push", + "target": "mdmpushstatus" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_server_local_http_rs", + "target": "pathbuf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_server_local_http_rs", + "target": "server_local_http_find_free_port" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_server_local_http_rs", + "target": "server_local_http_localserverinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_server_local_http_rs", + "target": "server_local_http_start_local_profile_server" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_server_local_http_rs", + "target": "server_local_http_stop_local_profile_server" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_server_local_http_rs", + "target": "thread" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L15", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "server_local_http_localserverinfo", + "target": "apps_rebreak_magic_src_tauri_src_server_local_http_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L19", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "server_local_http_start_local_profile_server", + "target": "server_local_http_localserverinfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L19", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "server_local_http_start_local_profile_server", + "target": "apps_rebreak_magic_src_tauri_src_server_local_http_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L19", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "server_local_http_start_local_profile_server", + "target": "apps_rebreak_magic_src_tauri_src_server_local_http_rs_appresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "server_local_http_start_local_profile_server", + "target": "server_local_http_find_free_port" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L79", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "server_local_http_find_free_port", + "target": "apps_rebreak_magic_src_tauri_src_server_local_http_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/server/local_http.rs", + "source_location": "L72", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "server_local_http_stop_local_profile_server", + "target": "apps_rebreak_magic_src_tauri_src_server_local_http_rs_appresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs", + "target": "sidecar_supervise_magic_run_supervise_magic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs", + "target": "sidecar_supervise_magic_run_supervise_magic_raw" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs", + "target": "sidecar_supervise_magic_run_supervise_magic_sync" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs", + "target": "sidecar_supervise_magic_superviseresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L41", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic", + "target": "sidecar_supervise_magic_superviseresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L13", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic_raw", + "target": "sidecar_supervise_magic_superviseresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L52", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic_sync", + "target": "sidecar_supervise_magic_superviseresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_superviseresult", + "target": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L41", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic", + "target": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_string" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic", + "target": "sidecar_supervise_magic_run_supervise_magic_raw" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L13", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic_raw", + "target": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L13", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic_raw", + "target": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L41", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic", + "target": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L41", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic", + "target": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L52", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic_sync", + "target": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L41", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic", + "target": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs", + "source_location": "L41", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "sidecar_supervise_magic_run_supervise_magic", + "target": "apps_rebreak_magic_src_tauri_src_sidecar_supervise_magic_rs_vec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_bundle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_productname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_productname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_build", + "target": "src_tauri_tauri_conf_build_beforebuildcommand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_build", + "target": "src_tauri_tauri_conf_build_beforedevcommand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_build", + "target": "src_tauri_tauri_conf_build_devurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_build", + "target": "src_tauri_tauri_conf_build_frontenddist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_app" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/SimpleURLFilterApp.swift", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "simpleurlfilter_simpleurlfilterapp_simpleurlfilterapp", + "target": "src_tauri_tauri_conf_app" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/RebreakMagicApp.swift", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sources_rebreakmagicapp_rebreakmagicapp", + "target": "src_tauri_tauri_conf_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_app", + "target": "src_tauri_tauri_conf_app_security" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_app", + "target": "src_tauri_tauri_conf_app_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_app_windows", + "target": "src_tauri_tauri_conf_windows_nsis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_bundle", + "target": "src_tauri_tauri_conf_app_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_app_security", + "target": "src_tauri_tauri_conf_security_capabilities" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_app_security", + "target": "src_tauri_tauri_conf_security_csp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "src_tauri_tauri_conf_bundle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_bundle", + "target": "src_tauri_tauri_conf_bundle_active" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_bundle", + "target": "src_tauri_tauri_conf_bundle_externalbin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_bundle", + "target": "src_tauri_tauri_conf_bundle_icon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_bundle", + "target": "src_tauri_tauri_conf_bundle_macos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_bundle", + "target": "src_tauri_tauri_conf_bundle_targets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_bundle_macos", + "target": "src_tauri_tauri_conf_macos_entitlements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_bundle_macos", + "target": "src_tauri_tauri_conf_macos_frameworks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/tauri.conf.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_bundle_macos", + "target": "src_tauri_tauri_conf_macos_minimumsystemversion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_tsconfig_json", + "target": "rebreak_magic_tsconfig_extends" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_internal_ios_nefilter_architecture_md", + "target": "internal_ios_nefilter_architecture_ios_schutz_nefilter_architektur_\u00fcbersicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_ios_schutz_nefilter_architektur_\u00fcbersicht", + "target": "internal_ios_nefilter_architecture_1_ziel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_ios_schutz_nefilter_architektur_\u00fcbersicht", + "target": "internal_ios_nefilter_architecture_2_native_ios_module_expo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_ios_schutz_nefilter_architektur_\u00fcbersicht", + "target": "internal_ios_nefilter_architecture_3_wie_nefilter_erkannt_wird" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_ios_schutz_nefilter_architektur_\u00fcbersicht", + "target": "internal_ios_nefilter_architecture_4_backend_wie_das_nefilter_tracking_funktioniert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_ios_schutz_nefilter_architektur_\u00fcbersicht", + "target": "internal_ios_nefilter_architecture_5_der_dns_token_handshake_separater_weg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_ios_schutz_nefilter_architektur_\u00fcbersicht", + "target": "internal_ios_nefilter_architecture_6_was_das_f\u00fcr_rebreak_magic_bedeutet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_ios_schutz_nefilter_architektur_\u00fcbersicht", + "target": "internal_ios_nefilter_architecture_7_wichtige_dateien_im_\u00fcberblick" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_ios_schutz_nefilter_architektur_\u00fcbersicht", + "target": "internal_ios_nefilter_architecture_8_zusammenfassung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_3_wie_nefilter_erkannt_wird", + "target": "internal_ios_nefilter_architecture_supervised_vs_unsupervised" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_4_backend_wie_das_nefilter_tracking_funktioniert", + "target": "internal_ios_nefilter_architecture_4_1_app_reportet_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_4_backend_wie_das_nefilter_tracking_funktioniert", + "target": "internal_ios_nefilter_architecture_4_2_backend_endpoint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_4_backend_wie_das_nefilter_tracking_funktioniert", + "target": "internal_ios_nefilter_architecture_4_3_datenbank" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_4_backend_wie_das_nefilter_tracking_funktioniert", + "target": "internal_ios_nefilter_architecture_4_4_auslesen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_7_wichtige_dateien_im_\u00fcberblick", + "target": "internal_ios_nefilter_architecture_app_logik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L192", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_7_wichtige_dateien_im_\u00fcberblick", + "target": "internal_ios_nefilter_architecture_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/IOS_NEFILTER_ARCHITECTURE.md", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_ios_nefilter_architecture_7_wichtige_dateien_im_\u00fcberblick", + "target": "internal_ios_nefilter_architecture_native_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_superpowers_plans_2026_06_18_mdm_health_check_md", + "target": "plans_2026_06_18_mdm_health_check_mdm_healthcheck_implementation_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_mdm_health_check_mdm_healthcheck_implementation_plan", + "target": "plans_2026_06_18_mdm_health_check_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L496", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_mdm_health_check_mdm_healthcheck_implementation_plan", + "target": "plans_2026_06_18_mdm_health_check_self_review" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_mdm_health_check_files", + "target": "plans_2026_06_18_mdm_health_check_task_1_extend_userdevice_prisma_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_mdm_health_check_files", + "target": "plans_2026_06_18_mdm_health_check_task_2_create_migration_for_mdm_health_columns" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_mdm_health_check_files", + "target": "plans_2026_06_18_mdm_health_check_task_3_extend_mdm_ts_db_layer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_mdm_health_check_files", + "target": "plans_2026_06_18_mdm_health_check_task_4_create_mdm_health_cron_ts_plugin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L339", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_mdm_health_check_files", + "target": "plans_2026_06_18_mdm_health_check_task_5_write_tests_for_mdm_healthcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-mdm-health-check.md", + "source_location": "L470", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_mdm_health_check_files", + "target": "plans_2026_06_18_mdm_health_check_task_6_apply_migration_and_verify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_json", + "target": "rebreak_monorepo_app_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "app.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_app_ios", + "target": "rebreak_monorepo_app_ios_bundleidentifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "package_json", + "target": "rebreak_monorepo_package_engines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "package_json", + "target": "rebreak_monorepo_package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "package_json", + "target": "rebreak_monorepo_package_packagemanager" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "package_json", + "target": "rebreak_monorepo_package_pnpm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "package_json", + "target": "rebreak_monorepo_package_private" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "package_json", + "target": "rebreak_monorepo_package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "package_json", + "target": "rebreak_monorepo_package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_scripts", + "target": "rebreak_monorepo_package_scripts_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_scripts", + "target": "rebreak_monorepo_package_scripts_build_admin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_scripts", + "target": "rebreak_monorepo_package_scripts_build_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_scripts", + "target": "rebreak_monorepo_package_scripts_dev_admin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_scripts", + "target": "rebreak_monorepo_package_scripts_dev_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_scripts", + "target": "rebreak_monorepo_package_scripts_dev_native" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_scripts", + "target": "rebreak_monorepo_package_scripts_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_engines", + "target": "rebreak_monorepo_package_engines_node" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_engines", + "target": "rebreak_monorepo_package_engines_pnpm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_engines", + "target": "rebreak_monorepo_package_pnpm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm", + "target": "rebreak_monorepo_package_pnpm_overrides" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm", + "target": "rebreak_monorepo_package_pnpm_patcheddependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "apps_rebreak_native_metro_config_js" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "rebreak_monorepo_package_overrides_metro" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "rebreak_monorepo_package_overrides_metro_cache" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "rebreak_monorepo_package_overrides_metro_config" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "rebreak_monorepo_package_overrides_metro_core" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "rebreak_monorepo_package_overrides_metro_file_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "rebreak_monorepo_package_overrides_metro_resolver" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "rebreak_monorepo_package_overrides_metro_runtime" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "rebreak_monorepo_package_overrides_metro_source_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "rebreak_monorepo_package_overrides_metro_symbolicate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "rebreak_monorepo_package_overrides_metro_transform_plugins" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_overrides", + "target": "rebreak_monorepo_package_overrides_metro_transform_worker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_patcheddependencies", + "target": "rebreak_monorepo_package_patcheddependencies_metro_core_0_83_3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "package.json", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_monorepo_package_pnpm_patcheddependencies", + "target": "rebreak_monorepo_package_patcheddependencies_react_native_callkeep" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tsconfig_json", + "target": "rebreak_monorepo_tsconfig_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tsconfig_json", + "target": "rebreak_monorepo_tsconfig_extends" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".expo/devices.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "expo_devices_json", + "target": "expo_devices_devices" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "backend/start-staging.sh", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_start_staging_sh", + "target": "backend_start_staging_nitro_host" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "backend/start-staging.sh", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_start_staging_sh", + "target": "backend_start_staging_nitro_port" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "backend/start-staging.sh", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_start_staging_sh", + "target": "backend_start_staging_node_env" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "backend/start-staging.sh", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_start_staging_sh", + "target": "backend_start_staging_port" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/start-staging.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_start_staging_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_backend_start_staging_sh__entry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_json", + "target": "backend_package_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_json", + "target": "backend_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_json", + "target": "backend_package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_json", + "target": "backend_package_private" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_json", + "target": "backend_package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_json", + "target": "backend_package_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_json", + "target": "backend_package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_dev" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_preview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_prisma_generate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_start" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_test_watch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_scripts", + "target": "backend_package_scripts_typecheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_expo_server_sdk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_franc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_groq_sdk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_imapflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_jose" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_openai" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_parse_node_apn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_pg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_prisma_adapter_pg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_prisma_client" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_resend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_stripe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_supabase_supabase_js" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_dependencies", + "target": "backend_package_dependencies_zod" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_h3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_nitropack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_prisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_types_node" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_types_pg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_typescript" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_vitest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/package.json", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_package_devdependencies", + "target": "backend_package_devdependencies_vitest_coverage_v8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_json", + "target": "backend_tsconfig_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_json", + "target": "backend_tsconfig_extends" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_baseurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_lib" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_moduleresolution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_noemit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_noimplicitreturns" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_resolvejsonmodule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_skiplibcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_strict" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tsconfig_compileroptions", + "target": "backend_tsconfig_compileroptions_useunknownincatchvariables" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "backend_tsconfig_compileroptions_module" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "backend_tsconfig_compileroptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/setup.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_setup_ts", + "target": "tests_setup_g" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/custom-domains/plan-limits.test.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_custom_domains_plan_limits_test_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/custom-domains/plan-limits.test.ts", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_custom_domains_plan_limits_test_ts", + "target": "custom_domains_index_post_resolvetypeandvalue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/custom-domains/plan-limits.test.ts", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_custom_domains_plan_limits_test_ts", + "target": "custom_domains_plan_limits_test_resolvetypeandvaluefortest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/custom-domains/plan-limits.test.ts", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_custom_domains_plan_limits_test_ts", + "target": "custom_domains_plan_limits_test_testresolveresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/custom-domains/plan-limits.test.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_custom_domains_plan_limits_test_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/custom-domains/plan-limits.test.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_custom_domains_plan_limits_test_ts", + "target": "utils_plan_features_plan_limits" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_custom_domains_scan_trigger_test_ts", + "target": "custom_domains_scan_trigger_test_customdomaintype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_custom_domains_scan_trigger_test_ts", + "target": "custom_domains_scan_trigger_test_setupfetchmock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_custom_domains_scan_trigger_test_ts", + "target": "custom_domains_scan_trigger_test_teardownfetchmock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_custom_domains_scan_trigger_test_ts", + "target": "custom_domains_scan_trigger_test_triggerscanifmaildomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_custom_domains_scan_trigger_test_ts", + "target": "db_domains_customdomaintype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_gmail_delete_strategy_test_ts", + "target": "mail_gmail_delete_strategy_test_mailboxentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_gmail_delete_strategy_test_ts", + "target": "mail_gmail_delete_strategy_test_makeimapmock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_gmail_delete_strategy_test_ts", + "target": "mail_gmail_delete_strategy_test_performdelete" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_gmail_delete_strategy_test_ts", + "target": "mail_gmail_delete_strategy_test_resolvetrashfolder" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mail_gmail_delete_strategy_test_performdelete", + "target": "mail_gmail_delete_strategy_test_resolvetrashfolder" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_classifier_test_ts", + "target": "backend_server_utils_mail_classifier_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L699", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_classifier_test_ts", + "target": "mail_mail_classifier_test_filterscannable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L697", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_classifier_test_ts", + "target": "mail_mail_classifier_test_mockmailbox" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_classifier_test_ts", + "target": "utils_mail_classifier_classifymail" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_classifier_test_ts", + "target": "utils_mail_classifier_computescore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_classifier_test_ts", + "target": "utils_mail_classifier_extractrelayeddomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_classifier_test_ts", + "target": "utils_mail_classifier_hasrandomtokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_classifier_test_ts", + "target": "utils_mail_classifier_matchesgamblingbrand" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_classifier_test_ts", + "target": "utils_mail_classifier_normalizebrand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L697", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "mail_mail_classifier_test_mockmailbox" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L699", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "mail_mail_classifier_test_filterscannable" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/display-name-match.test.ts", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_display_name_match_test_ts", + "target": "backend_server_utils_mail_classifier_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/display-name-match.test.ts", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_display_name_match_test_ts", + "target": "utils_mail_classifier_classifymail" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-training-utils.test.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_training_utils_test_ts", + "target": "backend_server_utils_mail_training_utils_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-training-utils.test.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_training_utils_test_ts", + "target": "utils_mail_training_utils_detectsubjectlanguage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-training-utils.test.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_mail_mail_training_utils_test_ts", + "target": "utils_mail_training_utils_sanitizesubjectfortraining" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_users_test_ts", + "target": "admin_users_test_g" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_users_test_ts", + "target": "admin_users_test_makerow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_users_test_ts", + "target": "admin_users_test_originalstubs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_users_test_ts", + "target": "admin_users_test_prismamock" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_users_test_ts", + "target": "backend_server_db_adminusers_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_users_test_ts", + "target": "db_adminusers_listadminusers" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_users_test_ts", + "target": "db_adminusers_softdeleteadminuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/users.test.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_users_test_ts", + "target": "db_adminusers_updateadminuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/domains.test.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_domains_test_ts", + "target": "admin_domains_test_makerow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/domains.test.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_domains_test_ts", + "target": "admin_domains_test_prismamock" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/domains.test.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_domains_test_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/domains.test.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_domains_test_ts", + "target": "db_domains_getpendingsubmissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/moderation.test.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_moderation_test_ts", + "target": "admin_moderation_test_prismamock" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/moderation.test.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_moderation_test_ts", + "target": "backend_server_db_moderation_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/moderation.test.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_moderation_test_ts", + "target": "db_moderation_banuserfrommoderationitem" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/moderation.test.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_moderation_test_ts", + "target": "db_moderation_deletemoderationitem" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/moderation.test.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_moderation_test_ts", + "target": "db_moderation_dismissmoderationitem" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/moderation.test.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_moderation_test_ts", + "target": "db_moderation_listmoderationqueue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/verify-admin.test.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_verify_admin_test_ts", + "target": "admin_verify_admin_test_prismamock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/verify-admin.test.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_verify_admin_test_ts", + "target": "admin_verify_admin_test_requireusermock" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/verify-admin.test.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_verify_admin_test_ts", + "target": "backend_server_db_admin_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/verify-admin.test.ts", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_verify_admin_test_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/verify-admin.test.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_verify_admin_test_ts", + "target": "db_admin_isadminuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/admin/verify-admin.test.ts", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_admin_verify_admin_test_ts", + "target": "utils_auth_requireadmin" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "backend_server_utils_crisis_filter_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "crisis_crisis_filter_test_crisisprompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "crisis_crisis_filter_test_evalprompt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "crisis_crisis_filter_test_expected_crisis_matches" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "crisis_crisis_filter_test_harmlessprompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "crisis_crisis_filter_test_loadprompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "crisis_crisis_filter_test_prompts_dir" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.95, + "weight": 0.95, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "measures recall metric", + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "diga_05c_crisis_detection_recall" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "path" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "utils_crisis_filter_detectcrisis" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "utils_crisis_filter_getcrisischips" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/crisis/crisis-filter.test.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_crisis_crisis_filter_test_ts", + "target": "utils_crisis_filter_getcrisisfallback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/social/profile-counts.test.ts", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_social_profile_counts_test_ts", + "target": "social_profile_counts_test_callhandler" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/social/profile-counts.test.ts", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_social_profile_counts_test_ts", + "target": "social_profile_counts_test_g" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/social/profile-counts.test.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_social_profile_counts_test_ts", + "target": "social_profile_counts_test_mocks" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/social/profile-counts.test.ts", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "social_profile_counts_test_callhandler", + "target": "backend_server_api_social_profile_userid_get_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.patch.test.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_patch_test_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.patch.test.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_patch_test_ts", + "target": "db_profile_tryawardprotrial" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.patch.test.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_patch_test_ts", + "target": "db_profile_updatedemographics" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.patch.test.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_patch_test_ts", + "target": "db_profile_withdrawdemographics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.patch.test.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_patch_test_ts", + "target": "profile_demographics_patch_test_full_demographics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.patch.test.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_patch_test_ts", + "target": "profile_demographics_patch_test_mocks" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/install-and-banner.test.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_install_and_banner_test_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/install-and-banner.test.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_install_and_banner_test_ts", + "target": "db_profile_dismissdigabanner" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/install-and-banner.test.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_install_and_banner_test_ts", + "target": "db_profile_recordinstallevent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/install-and-banner.test.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_install_and_banner_test_ts", + "target": "profile_install_and_banner_test_mocks" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_sos_insights_get_test_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_sos_insights_get_test_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_sos_insights_get_test_ts", + "target": "me_sos_insights_get_helper" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/sos-insights.get.test.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_sos_insights_get_test_ts", + "target": "profile_sos_insights_get_test_aggregate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/sos-insights.get.test.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_sos_insights_get_test_ts", + "target": "profile_sos_insights_get_test_session" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_sos_insights_get_test_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_sos_insights_get_test_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/approved-domains.get.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_approved_domains_get_test_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/approved-domains.get.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_approved_domains_get_test_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/approved-domains.get.test.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_approved_domains_get_test_ts", + "target": "profile_approved_domains_get_test_mocks" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/approved-domains.get.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_approved_domains_get_test_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/approved-domains.get.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_approved_domains_get_test_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.get.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_get_test_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.get.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_get_test_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.get.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_get_test_ts", + "target": "db_profile_getdemographics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.get.test.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_get_test_ts", + "target": "profile_demographics_get_test_mocks" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.get.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_get_test_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.zod.test.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_zod_test_ts", + "target": "profile_demographics_zod_test_employment_status_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.zod.test.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_zod_test_ts", + "target": "profile_demographics_zod_test_gender_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.zod.test.ts", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_zod_test_ts", + "target": "profile_demographics_zod_test_job_tenure_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.zod.test.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_zod_test_ts", + "target": "profile_demographics_zod_test_marital_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/demographics.zod.test.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_demographics_zod_test_ts", + "target": "profile_demographics_zod_test_schema" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_cooldown_history_get_test_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_cooldown_history_get_test_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_cooldown_history_get_test_ts", + "target": "me_cooldown_history_get_cooldownentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/cooldown-history.get.test.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_cooldown_history_get_test_ts", + "target": "profile_cooldown_history_get_test_cooldownrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/profile/cooldown-history.get.test.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_cooldown_history_get_test_ts", + "target": "profile_cooldown_history_get_test_derivestatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_cooldown_history_get_test_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_profile_cooldown_history_get_test_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/voice/quota.test.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_voice_quota_test_ts", + "target": "backend_server_db_voicequota_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/voice/quota.test.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_voice_quota_test_ts", + "target": "db_voicequota_consumevoicequota" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/voice/quota.test.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_voice_quota_test_ts", + "target": "db_voicequota_estimateaudioseconds" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/voice/quota.test.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_voice_quota_test_ts", + "target": "db_voicequota_getremainingvoicequota" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/voice/quota.test.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_voice_quota_test_ts", + "target": "voice_quota_test_mocks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_allprompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_calllyra" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L319", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_computecrisisrecall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_crisisprompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_drangprompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_edgecaseprompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_evalprompt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_evalresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L347", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_evalresults" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_evalrule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_evaluaterule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_getmockresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_harmlessprompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_jailbreakprompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_loadprompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_prompts_dir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_ruleresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "eval_lyra_eval_test_ruletype" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_eval_lyra_eval_test_ts", + "target": "path" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/tests/eval/lyra-eval.test.ts", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_lyra_eval_test_calllyra", + "target": "eval_lyra_eval_test_getmockresponse" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_device_account_binding_test_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_device_account_binding_test_ts", + "target": "backend_server_utils_device_lock_email_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_device_account_binding_test_ts", + "target": "db_devices_binddevicetouser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_device_account_binding_test_ts", + "target": "db_devices_canceldevicerelease" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_device_account_binding_test_ts", + "target": "db_devices_findactivedevicelock" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_device_account_binding_test_ts", + "target": "db_devices_islockingplan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_device_account_binding_test_ts", + "target": "db_devices_requestdevicerelease" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_device_account_binding_test_ts", + "target": "devices_device_account_binding_test_makedevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_device_account_binding_test_ts", + "target": "devices_device_account_binding_test_mockprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/device-account-binding.test.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_device_account_binding_test_ts", + "target": "utils_device_lock_email_islocknotifyratelimited" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/regfile.test.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_regfile_test_ts", + "target": "backend_server_utils_mobileconfig_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/regfile.test.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_regfile_test_ts", + "target": "backend_server_utils_regfile_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/regfile.test.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_regfile_test_ts", + "target": "utils_mobileconfig_labeltoslug" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/tests/devices/regfile.test.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_tests_devices_regfile_test_ts", + "target": "utils_regfile_generatewindowsdohregfile" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/device-lock-cron.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_plugins_device_lock_cron_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/device-lock-cron.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_plugins_device_lock_cron_ts", + "target": "db_devices_autoreleaseinactivedevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/device-lock-cron.ts", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_plugins_device_lock_cron_ts", + "target": "plugins_device_lock_cron_runautorelease" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/device-lock-cron.ts", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plugins_device_lock_cron_runautorelease", + "target": "db_devices_autoreleaseinactivedevices" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_plugins_mail_retention_cron_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_plugins_mail_retention_cron_ts", + "target": "plugins_mail_retention_cron_runrowcap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_plugins_mail_retention_cron_ts", + "target": "plugins_mail_retention_cron_runsamplepurge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_plugins_mail_retention_cron_ts", + "target": "plugins_mail_retention_cron_runsubjectnullification" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_plugins_mail_retention_cron_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plugins_mail_retention_cron_runsubjectnullification", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plugins_mail_retention_cron_runsamplepurge", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/mail-retention-cron.ts", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plugins_mail_retention_cron_runrowcap", + "target": "utils_prisma_useprisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/pro-trial-expiry-cron.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_plugins_pro_trial_expiry_cron_ts", + "target": "plugins_pro_trial_expiry_cron_runrevoke" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/server/plugins/pro-trial-expiry-cron.ts", + "source_location": "L49", + "weight": 1.0, + "source": "plugins_pro_trial_expiry_cron_runrevoke", + "target": "utils_prisma_useprisma" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/plugins/blocklist-cron.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_plugins_blocklist_cron_ts", + "target": "plugins_blocklist_cron_runsync" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/stats.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_stats_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/check.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_check_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/stats.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_stats_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/calls/ring.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_calls_ring_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/history.delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_history_delete_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/history.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_history_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L310", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/[postId]/index.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_postid_index_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/repost.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_repost_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/request.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_request_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/curated-domains/suggest.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_curated_domains_suggest_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_id_submit_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_suggest_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/dev/set-plan.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_dev_set_plan_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_domain_submissions_id_vote_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/feedback/[id].patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_feedback_id_patch_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/feedback/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_feedback_index_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/accept.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_accept_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id].get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/live-toggle.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_live_toggle_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_memory_move_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_move_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_rematch_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge-memory.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_memory_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/highscore.get.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_highscore_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/history.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_history_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/leaderboard.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_leaderboard_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/ranking.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_ranking_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/rating.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_rating_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/ratings.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_ratings_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/score.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_score_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/me.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_me_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].delete.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_delete_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/check-nickname.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_check_nickname_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/approved-domains.get.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_approved_domains_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_cooldown_history_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_sos_insights_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/dev-force-disabled.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_dev_force_disabled_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/mark-active.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_mark_active_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/screentime-passcode.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_screentime_passcode_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/screentime-passcode.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_screentime_passcode_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/state.get.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_state_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/webcontent-domains.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_webcontent_domains_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/providers/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_providers_index_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/profile/[userId].get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_profile_userid_get_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/portal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_portal_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/admin.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_admin_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_adminusers_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/consent.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_consent_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_cooldown_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_curateddomains_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_protection_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/diga.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_diga_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_lyramemory_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_moderation_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_notifications_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protectionstatelog_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/scores.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_scores_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/social.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_social_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/sosSession.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_sossession_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/streak.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_streak_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/urge.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_urge_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/user.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_user_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_voicequota_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_downgrade_reconciliation_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/getUsersMeta.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_getusersmeta_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magicCron.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magiccron_ts", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/prisma.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_prisma_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_protectionstate", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/getUsersMeta.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_getusersmeta_getusersmeta", + "target": "backend_server_utils_prisma_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/stats.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_stats_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/check.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_check_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/stats.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_stats_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/calls/ring.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_calls_ring_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/history.delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_history_delete_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/history.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_history_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L310", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/[postId]/index.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_postid_index_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/repost.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_repost_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/request.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_request_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/curated-domains/suggest.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_curated_domains_suggest_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_id_submit_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_suggest_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/dev/set-plan.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_dev_set_plan_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_domain_submissions_id_vote_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/feedback/[id].patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_feedback_id_patch_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/feedback/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_feedback_index_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/accept.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_accept_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id].get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/live-toggle.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_live_toggle_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_memory_move_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_move_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_rematch_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge-memory.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_memory_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/highscore.get.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_highscore_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/history.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_history_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/leaderboard.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_leaderboard_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/ranking.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_ranking_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/rating.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_rating_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/ratings.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_ratings_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/score.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_score_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/me.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_me_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].delete.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_delete_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/check-nickname.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_check_nickname_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/approved-domains.get.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_approved_domains_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_cooldown_history_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_sos_insights_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/dev-force-disabled.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_dev_force_disabled_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/mark-active.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_mark_active_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/screentime-passcode.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_screentime_passcode_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/screentime-passcode.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_screentime_passcode_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/state.get.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_state_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/webcontent-domains.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_webcontent_domains_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/providers/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_providers_index_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/profile/[userId].get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_profile_userid_get_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/portal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_portal_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/admin.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_admin_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_adminusers_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/consent.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_consent_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_cooldown_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_curateddomains_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_protection_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/diga.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_diga_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_lyramemory_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_moderation_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_notifications_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protectionstatelog_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/scores.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_scores_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/social.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_social_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/sosSession.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_sossession_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/streak.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_streak_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/urge.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_urge_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/user.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_user_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_voicequota_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_downgrade_reconciliation_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/getUsersMeta.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_getusersmeta_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magicCron.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magiccron_ts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L440", + "weight": 1.0, + "confidence_score": 1.0, + "source": "coach_message_post_detectandsavefeedback", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/admin.ts", + "source_location": "L8", + "weight": 1.0, + "source": "db_admin_isadminuser", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L48", + "weight": 1.0, + "source": "db_adminusers_listadminusers", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L181", + "weight": 1.0, + "source": "db_adminusers_softdeleteadminuser", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L111", + "weight": 1.0, + "source": "db_adminusers_updateadminuser", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat.ts", + "source_location": "L242", + "weight": 1.0, + "source": "db_chat_countunreaddms", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat.ts", + "source_location": "L16", + "weight": 1.0, + "source": "db_chat_createchatmessage", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat.ts", + "source_location": "L6", + "weight": 1.0, + "source": "db_chat_getchatmessages", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat.ts", + "source_location": "L216", + "weight": 1.0, + "source": "db_chat_getdmconversations", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat.ts", + "source_location": "L114", + "weight": 1.0, + "source": "db_chat_getdmhistory", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat.ts", + "source_location": "L198", + "weight": 1.0, + "source": "db_chat_markdmsasread", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L140", + "weight": 1.0, + "source": "db_chat_rooms_approverequest", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L173", + "weight": 1.0, + "source": "db_chat_rooms_banmember", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L53", + "weight": 1.0, + "source": "db_chat_rooms_createroom", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L241", + "weight": 1.0, + "source": "db_chat_rooms_createroommessage", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L86", + "weight": 1.0, + "source": "db_chat_rooms_deleteroom", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L168", + "weight": 1.0, + "source": "db_chat_rooms_findroombyinvitecode", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L93", + "weight": 1.0, + "source": "db_chat_rooms_getmember", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L159", + "weight": 1.0, + "source": "db_chat_rooms_getpendingrequests", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L33", + "weight": 1.0, + "source": "db_chat_rooms_getroom", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L100", + "weight": 1.0, + "source": "db_chat_rooms_getroommembers", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L209", + "weight": 1.0, + "source": "db_chat_rooms_getroommessages", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L113", + "weight": 1.0, + "source": "db_chat_rooms_joinroom", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L129", + "weight": 1.0, + "source": "db_chat_rooms_leaveroom", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L7", + "weight": 1.0, + "source": "db_chat_rooms_listrooms", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L152", + "weight": 1.0, + "source": "db_chat_rooms_rejectrequest", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L373", + "weight": 1.0, + "source": "db_chat_rooms_seeddefaultrooms", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L195", + "weight": 1.0, + "source": "db_chat_rooms_setmemberrole", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L310", + "weight": 1.0, + "source": "db_chat_rooms_togglechatmessagelike", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L333", + "weight": 1.0, + "source": "db_chat_rooms_toggledmlike", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L81", + "weight": 1.0, + "source": "db_chat_rooms_updateroom", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat.ts", + "source_location": "L36", + "weight": 1.0, + "source": "db_chat_senddirectmessage", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat.ts", + "source_location": "L189", + "weight": 1.0, + "source": "db_chat_softdeletedmmessage", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/chat.ts", + "source_location": "L161", + "weight": 1.0, + "source": "db_chat_toggledmreaction", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L324", + "weight": 1.0, + "source": "db_community_countpostlikes", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L386", + "weight": 1.0, + "source": "db_community_createcomment", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L416", + "weight": 1.0, + "source": "db_community_createcommentlike", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L262", + "weight": 1.0, + "source": "db_community_createpost", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L421", + "weight": 1.0, + "source": "db_community_deletecommentlike", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L317", + "weight": 1.0, + "source": "db_community_deletepostlike", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L289", + "weight": 1.0, + "source": "db_community_deleteuserposts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L428", + "weight": 1.0, + "source": "db_community_getcommentlike", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L428", + "weight": 1.0, + "source": "db_community_getcommentlikecount", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L353", + "weight": 1.0, + "source": "db_community_getcommentsbypost", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L237", + "weight": 1.0, + "source": "db_community_getpostbyid", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L296", + "weight": 1.0, + "source": "db_community_getpostlike", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L12", + "weight": 1.0, + "source": "db_community_getposts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L308", + "weight": 1.0, + "source": "db_community_setpostlike", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L433", + "weight": 1.0, + "source": "db_community_synccommentlikecount", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/community.ts", + "source_location": "L340", + "weight": 1.0, + "source": "db_community_syncpostlikecounts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/consent.ts", + "source_location": "L61", + "weight": 1.0, + "source": "db_consent_getconsentlogsbyuser", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/consent.ts", + "source_location": "L101", + "weight": 1.0, + "source": "db_consent_getmailconnectionwithconsent", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/consent.ts", + "source_location": "L81", + "weight": 1.0, + "source": "db_consent_setmailconnectionconsent", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/consent.ts", + "source_location": "L13", + "weight": 1.0, + "source": "db_consent_writeconsentgrant", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/consent.ts", + "source_location": "L42", + "weight": 1.0, + "source": "db_consent_writeconsentrevoke", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L46", + "weight": 1.0, + "source": "db_cooldown_cancelcooldown", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L26", + "weight": 1.0, + "source": "db_cooldown_createcooldown", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L9", + "weight": 1.0, + "source": "db_cooldown_getactivecooldown", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L38", + "weight": 1.0, + "source": "db_cooldown_resolvecooldown", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L79", + "weight": 1.0, + "source": "db_curateddomains_decidecurateddomain", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L51", + "weight": 1.0, + "source": "db_curateddomains_getcurateddomains", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L14", + "weight": 1.0, + "source": "db_curateddomains_suggestcurateddomain", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L187", + "weight": 1.0, + "source": "db_device_approvals_approverequest", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L98", + "weight": 1.0, + "source": "db_device_approvals_createapprovalrequest", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L146", + "weight": 1.0, + "source": "db_device_approvals_getapprovalbyemailtoken", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L133", + "weight": 1.0, + "source": "db_device_approvals_getapprovalrequest", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L74", + "weight": 1.0, + "source": "db_device_approvals_hasotheractivedevices", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L159", + "weight": 1.0, + "source": "db_device_approvals_listpendingapprovals", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L239", + "weight": 1.0, + "source": "db_device_approvals_markemailsent", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_device_approvals_maybeexpire", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L218", + "weight": 1.0, + "source": "db_device_approvals_rejectrequest", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L102", + "weight": 1.0, + "source": "db_device_protection_getdeviceprotectionstate", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L115", + "weight": 1.0, + "source": "db_device_protection_listdeviceprotectionstates", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L43", + "weight": 1.0, + "source": "db_device_protection_upsertdeviceprotectionstate", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L168", + "weight": 1.0, + "source": "db_devices_autoreleaseinactivedevices", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L89", + "weight": 1.0, + "source": "db_devices_binddevicetouser", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L133", + "weight": 1.0, + "source": "db_devices_canceldevicerelease", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L225", + "weight": 1.0, + "source": "db_devices_cleanupstaledevices", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L469", + "weight": 1.0, + "source": "db_devices_countactivemagicbindings", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L408", + "weight": 1.0, + "source": "db_devices_deleteuserdevice", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L523", + "weight": 1.0, + "source": "db_devices_ensuremagicremovalpassword", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L44", + "weight": 1.0, + "source": "db_devices_findactivedevicelock", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L491", + "weight": 1.0, + "source": "db_devices_findmagicdevicebytoken", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L265", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_devices_findmergecandidate", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L242", + "weight": 1.0, + "source": "db_devices_finduserdevice", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L435", + "weight": 1.0, + "source": "db_devices_listmagicdevices", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L544", + "weight": 1.0, + "source": "db_devices_listmagicremovalcredentials", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L208", + "weight": 1.0, + "source": "db_devices_listuserdevices", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L151", + "weight": 1.0, + "source": "db_devices_markdevicelocknotified", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L300", + "weight": 1.0, + "source": "db_devices_registerdevice", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L111", + "weight": 1.0, + "source": "db_devices_requestdevicerelease", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/devices.ts", + "source_location": "L381", + "weight": 1.0, + "source": "db_devices_touchdevice", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/diga.ts", + "source_location": "L27", + "weight": 1.0, + "source": "db_diga_redeemdigacode", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L92", + "weight": 1.0, + "source": "db_domains_addusercustomdomain", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L313", + "weight": 1.0, + "source": "db_domains_adminapprovesubmission", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L385", + "weight": 1.0, + "source": "db_domains_adminrejectsubmission", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L246", + "weight": 1.0, + "source": "db_domains_castdomainvote", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L69", + "weight": 1.0, + "source": "db_domains_countactivecustomdomains", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L69", + "weight": 1.0, + "source": "db_domains_countactivecustomdomainssplit", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L189", + "weight": 1.0, + "source": "db_domains_deleteallusercustomdomains", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L170", + "weight": 1.0, + "source": "db_domains_deleteusercustomdomain", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L512", + "weight": 1.0, + "source": "db_domains_getactiveblocklistcount", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L517", + "weight": 1.0, + "source": "db_domains_getactiveblocklistdomains", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L548", + "weight": 1.0, + "source": "db_domains_getblocklisteddomainsset", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L108", + "weight": 1.0, + "source": "db_domains_getcustommaildisplaynames", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L132", + "weight": 1.0, + "source": "db_domains_getmaildisplaynamepatterns", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L466", + "weight": 1.0, + "source": "db_domains_getpendingsubmissions", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L25", + "weight": 1.0, + "source": "db_domains_getusercustomdomains", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L528", + "weight": 1.0, + "source": "db_domains_isblocklisteddomain", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L218", + "weight": 1.0, + "source": "db_domains_submitdomainforreview", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L599", + "weight": 1.0, + "source": "db_domains_upsertblocklistdomains", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L146", + "weight": 1.0, + "source": "db_lyramemory_deletememorybyid", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_lyramemory_enforcemaxmemories", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L37", + "weight": 1.0, + "source": "db_lyramemory_getmemoriesforuser", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L127", + "weight": 1.0, + "source": "db_lyramemory_markreferenced", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L60", + "weight": 1.0, + "source": "db_lyramemory_upsertmemory", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L574", + "weight": 1.0, + "source": "db_mail_consumeoauthpendingstate", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L49", + "weight": 1.0, + "source": "db_mail_countmailconnections", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L546", + "weight": 1.0, + "source": "db_mail_createoauthpendingstate", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L101", + "weight": 1.0, + "source": "db_mail_deleteallmailconnections", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L94", + "weight": 1.0, + "source": "db_mail_deletemailconnection", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L343", + "weight": 1.0, + "source": "db_mail_deleteoldmailblocked", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L246", + "weight": 1.0, + "source": "db_mail_deleteusermailclassificationsamples", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L46", + "weight": 1.0, + "source": "db_mail_getallactivemailuserids", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L18", + "weight": 1.0, + "source": "db_mail_getallmailconnections", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L203", + "weight": 1.0, + "source": "db_mail_getalreadyblockeduidset", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L499", + "weight": 1.0, + "source": "db_mail_getblockedmailsbyconnection", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L455", + "weight": 1.0, + "source": "db_mail_getblockedmailsbyday", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L822", + "weight": 1.0, + "source": "db_mail_getdecryptedrefreshtoken", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L324", + "weight": 1.0, + "source": "db_mail_getimapproxyaccounts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L398", + "weight": 1.0, + "source": "db_mail_getmailblockedpaginated", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L178", + "weight": 1.0, + "source": "db_mail_getmailblockedstats", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L18", + "weight": 1.0, + "source": "db_mail_getmailconnections", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L315", + "weight": 1.0, + "source": "db_mail_getpendingconsentconnections", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L225", + "weight": 1.0, + "source": "db_mail_insertmailblocked", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L282", + "weight": 1.0, + "source": "db_mail_insertmailclassificationsample", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L190", + "weight": 1.0, + "source": "db_mail_ismailalreadyblocked", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L170", + "weight": 1.0, + "source": "db_mail_markfullsweepdone", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L156", + "weight": 1.0, + "source": "db_mail_patchfolderscanstate", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L735", + "weight": 1.0, + "source": "db_mail_refreshandsavetokens", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L110", + "weight": 1.0, + "source": "db_mail_updatemailconnectioninterval", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L125", + "weight": 1.0, + "source": "db_mail_updatemailconnectionscanstats", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L429", + "weight": 1.0, + "source": "db_mail_updatemailconnectiontitle", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L334", + "weight": 1.0, + "source": "db_mail_upsertimapproxyaccount", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L363", + "weight": 1.0, + "source": "db_mail_upsertmailblockedstat", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L65", + "weight": 1.0, + "source": "db_mail_upsertmailconnection", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L669", + "weight": 1.0, + "source": "db_mail_upsertoauthgoogleconnection", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L617", + "weight": 1.0, + "source": "db_mail_upsertoauthmicrosoftconnection", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/moderation.ts", + "source_location": "L300", + "weight": 1.0, + "source": "db_moderation_banuserfrommoderationitem", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/moderation.ts", + "source_location": "L229", + "weight": 1.0, + "source": "db_moderation_deletemoderationitem", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/moderation.ts", + "source_location": "L173", + "weight": 1.0, + "source": "db_moderation_dismissmoderationitem", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/moderation.ts", + "source_location": "L54", + "weight": 1.0, + "source": "db_moderation_listmoderationqueue", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/notifications.ts", + "source_location": "L25", + "weight": 1.0, + "source": "db_notifications_countunread", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/notifications.ts", + "source_location": "L11", + "weight": 1.0, + "source": "db_notifications_createnotification", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/notifications.ts", + "source_location": "L40", + "weight": 1.0, + "source": "db_notifications_deletenotification", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/notifications.ts", + "source_location": "L47", + "weight": 1.0, + "source": "db_notifications_deleteoldnotifications", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/notifications.ts", + "source_location": "L16", + "weight": 1.0, + "source": "db_notifications_getnotifications", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/notifications.ts", + "source_location": "L32", + "weight": 1.0, + "source": "db_notifications_markallread", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L21", + "weight": 1.0, + "source": "db_profile_deleteprofile", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L270", + "weight": 1.0, + "source": "db_profile_dismissdigabanner", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L143", + "weight": 1.0, + "source": "db_profile_getdemographics", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L289", + "weight": 1.0, + "source": "db_profile_getfollowingids", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L333", + "weight": 1.0, + "source": "db_profile_getlastseenbatch", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L4", + "weight": 1.0, + "source": "db_profile_getprofile", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L259", + "weight": 1.0, + "source": "db_profile_lyravoiceid", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L54", + "weight": 1.0, + "source": "db_profile_onboardingstep", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L278", + "weight": 1.0, + "source": "db_profile_recordinstallevent", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L398", + "weight": 1.0, + "source": "db_profile_setcallsenabled", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L259", + "weight": 1.0, + "source": "db_profile_setlyravoiceid", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L366", + "weight": 1.0, + "source": "db_profile_setmdmmanaged", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L54", + "weight": 1.0, + "source": "db_profile_setonboardingstep", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L411", + "weight": 1.0, + "source": "db_profile_setpresencevisible", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L309", + "weight": 1.0, + "source": "db_profile_touchlastseen", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L190", + "weight": 1.0, + "source": "db_profile_tryawardprotrial", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L88", + "weight": 1.0, + "source": "db_profile_updatedemographics", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L16", + "weight": 1.0, + "source": "db_profile_updateprofile", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/profile.ts", + "source_location": "L121", + "weight": 1.0, + "source": "db_profile_withdrawdemographics", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L103", + "weight": 1.0, + "source": "db_protecteddevices_confirmprotecteddeviceinstalled", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L50", + "weight": 1.0, + "source": "db_protecteddevices_countactiveprotecteddevices", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L85", + "weight": 1.0, + "source": "db_protecteddevices_createprotecteddevice", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L71", + "weight": 1.0, + "source": "db_protecteddevices_getprotecteddevice", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L71", + "weight": 1.0, + "source": "db_protecteddevices_getprotecteddevicebytoken", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L151", + "weight": 1.0, + "source": "db_protecteddevices_handshakeprotecteddevice", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L38", + "weight": 1.0, + "source": "db_protecteddevices_listprotecteddevices", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L124", + "weight": 1.0, + "source": "db_protecteddevices_revokeprotecteddevice", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L36", + "weight": 1.0, + "source": "db_protectionstatelog_appendprotectionevent", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L93", + "weight": 1.0, + "source": "db_protectionstatelog_computeprotectioncoverage", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L19", + "weight": 1.0, + "source": "db_protectionstatelog_getlastprotectionevent", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/scores.ts", + "source_location": "L27", + "weight": 1.0, + "source": "db_scores_awardpoints", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/scores.ts", + "source_location": "L55", + "weight": 1.0, + "source": "db_scores_getleaderboard", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/scores.ts", + "source_location": "L45", + "weight": 1.0, + "source": "db_scores_getrecentscoreevents", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/scores.ts", + "source_location": "L37", + "weight": 1.0, + "source": "db_scores_getuserscore", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/social.ts", + "source_location": "L86", + "weight": 1.0, + "source": "db_social_cancall", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/social.ts", + "source_location": "L14", + "weight": 1.0, + "source": "db_social_createfollow", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/social.ts", + "source_location": "L27", + "weight": 1.0, + "source": "db_social_deletefollow", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/social.ts", + "source_location": "L54", + "weight": 1.0, + "source": "db_social_getfollowingset", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/social.ts", + "source_location": "L7", + "weight": 1.0, + "source": "db_social_getfollowrelation", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/social.ts", + "source_location": "L63", + "weight": 1.0, + "source": "db_social_getprofilewithfollowers", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/sosSession.ts", + "source_location": "L18", + "weight": 1.0, + "source": "db_sossession_createsossession", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/sosSession.ts", + "source_location": "L39", + "weight": 1.0, + "source": "db_sossession_deleteusersossessions", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/streak.ts", + "source_location": "L91", + "weight": 1.0, + "source": "db_streak_addstreakevent", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/streak.ts", + "source_location": "L80", + "weight": 1.0, + "source": "db_streak_deleteuserstreaks", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/streak.ts", + "source_location": "L4", + "weight": 1.0, + "source": "db_streak_getactivestreak", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/streak.ts", + "source_location": "L98", + "weight": 1.0, + "source": "db_streak_getstreakevents", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/streak.ts", + "source_location": "L60", + "weight": 1.0, + "source": "db_streak_resetstreak", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/streak.ts", + "source_location": "L72", + "weight": 1.0, + "source": "db_streak_updatestreaksavings", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/streak.ts", + "source_location": "L14", + "weight": 1.0, + "source": "db_streak_upsertstreak", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/urge.ts", + "source_location": "L27", + "weight": 1.0, + "source": "db_urge_createurgelog", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/urge.ts", + "source_location": "L41", + "weight": 1.0, + "source": "db_urge_deleteuserurgelogs", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/urge.ts", + "source_location": "L6", + "weight": 1.0, + "source": "db_urge_getrecenturgelogs", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/user.ts", + "source_location": "L9", + "weight": 1.0, + "source": "db_user_deleteusercoachsessions", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/user.ts", + "source_location": "L4", + "weight": 1.0, + "source": "db_user_deleteusertrustedcontacts", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L84", + "weight": 1.0, + "source": "db_voicequota_consumevoicequota", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L36", + "weight": 1.0, + "source": "db_voicequota_getremainingvoicequota", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/services/push.ts", + "source_location": "L115", + "weight": 1.0, + "source": "services_push_getdisplayname", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/services/push.ts", + "source_location": "L252", + "weight": 1.0, + "source": "services_push_sendcallringpush", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/services/push.ts", + "source_location": "L39", + "weight": 1.0, + "source": "services_push_sendchatpush", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/services/push.ts", + "source_location": "L163", + "weight": 1.0, + "source": "services_push_senddeviceaddedpush", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_protectionstate", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "backend/server/utils/auth.ts", + "source_location": "L37", + "weight": 1.0, + "source": "utils_auth_requireuser", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L26", + "weight": 1.0, + "source": "utils_downgrade_reconciliation_rundowngradereconciliation", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_downgrade_reconciliation_triggerfinalscanforconnection", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/getUsersMeta.ts", + "source_location": "L1", + "weight": 1.0, + "source": "utils_getusersmeta_getusersmeta", + "target": "utils_prisma_useprisma" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/magicCron.ts", + "source_location": "L17", + "weight": 1.0, + "source": "utils_magiccron_processmagicreleases", + "target": "utils_prisma_useprisma" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_sossessions_ts", + "target": "backend_server_utils_crisis_filter_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_sossessions_ts", + "target": "utils_crisis_filter_crisislevel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_sossessions_ts", + "target": "utils_sossessions_deletesossession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_sossessions_ts", + "target": "utils_sossessions_getsossession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_sossessions_ts", + "target": "utils_sossessions_sessions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_sossessions_ts", + "target": "utils_sossessions_setsossession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/sosSessions.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_sossessions_ts", + "target": "utils_sossessions_sossessiondata" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_email_post_ts", + "target": "backend_server_utils_device_approval_email_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/device-approval-email.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_device_approval_email_ts", + "target": "utils_device_approval_email_deviceapprovalemailopts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/device-approval-email.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_device_approval_email_ts", + "target": "utils_device_approval_email_senddeviceapprovalemail" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_email_post_ts", + "target": "utils_device_approval_email_senddeviceapprovalemail" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_reg_get_ts", + "target": "backend_server_utils_regfile_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/regfile.ts", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_regfile_ts", + "target": "utils_regfile_generatewindowsdohregfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/regfile.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_regfile_ts", + "target": "utils_regfile_regescape" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/regfile.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_regfile_ts", + "target": "utils_regfile_windowsdohregopts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/regfile.ts", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_regfile_generatewindowsdohregfile", + "target": "utils_regfile_regescape" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_reg_get_ts", + "target": "utils_regfile_generatewindowsdohregfile" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "backend_server_utils_magic_removal_email_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_utils_magic_removal_email_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magic-removal-email.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magic_removal_email_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magic-removal-email.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magic_removal_email_ts", + "target": "db_devices_magicremovalcredential" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magic-removal-email.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magic_removal_email_ts", + "target": "utils_magic_removal_email_magicremovalemailopts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magic-removal-email.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magic_removal_email_ts", + "target": "utils_magic_removal_email_sendmagicremovalemail" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magic-removal-email.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_magic_removal_email_magicremovalemailopts", + "target": "db_devices_magicremovalcredential" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "utils_magic_removal_email_sendmagicremovalemail" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "utils_magic_removal_email_sendmagicremovalemail" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "backend_server_utils_domainhash_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_domainhash_ts", + "target": "utils_domainhash_buildhashlistbinary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_domainhash_ts", + "target": "utils_domainhash_etagfor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_domainhash_ts", + "target": "utils_domainhash_hashdomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_domainhash_ts", + "target": "utils_domainhash_normalizedomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhasher_domainhasher", + "target": "utils_domainhash_normalizedomain" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_domainhash_hashdomain", + "target": "utils_domainhash_normalizedomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhasher_domainhasher", + "target": "utils_domainhash_hashdomain" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_domainhash_buildhashlistbinary", + "target": "utils_domainhash_hashdomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "utils_domainhash_buildhashlistbinary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhasher_domainhasher", + "target": "utils_domainhash_buildhashlistbinary" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "utils_domainhash_etagfor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/domainHash.ts", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhasher_domainhasher", + "target": "utils_domainhash_etagfor" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/consent.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_consent_post_ts", + "target": "backend_server_utils_consent_texts_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "backend_server_utils_consent_texts_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "backend_server_utils_consent_texts_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "backend_server_utils_consent_texts_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_consent_texts_ts", + "target": "utils_consent_texts_consent_texts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_consent_texts_ts", + "target": "utils_consent_texts_consenttextentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_consent_texts_ts", + "target": "utils_consent_texts_getconsenttext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_consent_texts_ts", + "target": "utils_consent_texts_getknownconsentversions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_consent_texts_consent_texts", + "target": "utils_consent_texts_consenttextentry" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/consent.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_consent_post_ts", + "target": "utils_consent_texts_consent_texts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "utils_consent_texts_consent_texts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "utils_consent_texts_consent_texts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "utils_consent_texts_consent_texts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_consent_texts_consent_texts", + "target": "utils_consent_texts_getconsenttext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/consent-texts.ts", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_consent_texts_consent_texts", + "target": "utils_consent_texts_getknownconsentversions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "backend_server_utils_mail_training_utils_ts" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-training-utils.test.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "context": "import", + "source": "backend_server_utils_mail_training_utils_ts", + "target": "utils_mail_training_utils_detectsubjectlanguage" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-training-utils.test.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "context": "import", + "source": "backend_server_utils_mail_training_utils_ts", + "target": "utils_mail_training_utils_sanitizesubjectfortraining" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-training-utils.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_training_utils_ts", + "target": "utils_mail_training_utils_subjectsanitizationresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "utils_mail_training_utils_sanitizesubjectfortraining" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L288", + "weight": 1.0, + "source": "db_mail_insertmailclassificationsample", + "target": "utils_mail_training_utils_sanitizesubjectfortraining" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "backend_server_utils_mail_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "backend_server_utils_mail_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_auth_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_auth_ts", + "target": "backend_server_utils_crypto_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_auth_ts", + "target": "db_mail_refreshandsavetokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_auth_ts", + "target": "utils_crypto_decrypt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_auth_ts", + "target": "utils_mail_auth_imapauth" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_auth_ts", + "target": "utils_mail_auth_mailconnectionauthfields" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_auth_ts", + "target": "utils_mail_auth_oauthclientids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_auth_ts", + "target": "utils_mail_auth_resolveimapauth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "utils_mail_auth_resolveimapauth" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "utils_mail_auth_resolveimapauth" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/mail-auth.ts", + "source_location": "L71", + "weight": 1.0, + "source": "utils_mail_auth_resolveimapauth", + "target": "db_mail_refreshandsavetokens" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/gambling-keywords.mjs", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_gambling_keywords_mjs", + "target": "utils_gambling_keywords_gambling_keywords" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/gambling-keywords.mjs", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_gambling_keywords_mjs", + "target": "utils_gambling_keywords_gambling_whitelist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/gambling-keywords.mjs", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_gambling_keywords_mjs", + "target": "utils_gambling_keywords_isgamblingtext" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "backend_server_utils_gambling_keywords_mjs" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_gambling_keywords_gambling_keywords" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/gambling-keywords.mjs", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_gambling_keywords_gambling_keywords", + "target": "utils_gambling_keywords_gambling_whitelist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/gambling-keywords.mjs", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_gambling_keywords_gambling_keywords", + "target": "utils_gambling_keywords_isgamblingtext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_gambling_keywords_gambling_whitelist" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-session.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_session_post_ts", + "target": "backend_server_utils_crisis_filter_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "backend_server_utils_crisis_filter_ts" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "weight": 1.0, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "risk doc names this file", + "source": "backend_server_utils_crisis_filter_ts", + "target": "diga_04_crisis_filter_mitigation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L373", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crisis_filter_ts", + "target": "utils_crisis_filter_crisischip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crisis_filter_ts", + "target": "utils_crisis_filter_crisisdetectionresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L426", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crisis_filter_ts", + "target": "utils_crisis_filter_crisisfallbackpayload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crisis_filter_ts", + "target": "utils_crisis_filter_crisislevel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L308", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crisis_filter_ts", + "target": "utils_crisis_filter_detectcrisis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L385", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crisis_filter_ts", + "target": "utils_crisis_filter_getcrisischips" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L431", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crisis_filter_ts", + "target": "utils_crisis_filter_getcrisisfallback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crisis_filter_ts", + "target": "utils_crisis_filter_normalize" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crisis_filter_ts", + "target": "utils_crisis_filter_pattern_groups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crisis_filter_ts", + "target": "utils_crisis_filter_patterngroup" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "utils_crisis_filter_crisislevel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher_hash", + "target": "utils_crisis_filter_normalize" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_hooks_send_email_post_ts", + "target": "utils_crisis_filter_normalize" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_templates_ts", + "target": "utils_crisis_filter_normalize" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhasher_domainhasher", + "target": "utils_crisis_filter_normalize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L318", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_crisis_filter_detectcrisis", + "target": "utils_crisis_filter_normalize" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "utils_crisis_filter_normalize", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_string" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-session.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_session_post_ts", + "target": "utils_crisis_filter_detectcrisis" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.9, + "weight": 0.9, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "REQ-LYRA crisis handling", + "source": "utils_crisis_filter_detectcrisis", + "target": "diga_03_req_lyra" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "weight": 1.0, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "pre-filter fn", + "source": "utils_crisis_filter_detectcrisis", + "target": "diga_04_crisis_filter_mitigation" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.95, + "weight": 0.95, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "mitigates missed-crisis risk", + "source": "utils_crisis_filter_detectcrisis", + "target": "diga_04_risk_lyra_01_verpasste_krise" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.95, + "weight": 0.95, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "enforces Krisenreferenz-Pflicht", + "source": "utils_crisis_filter_detectcrisis", + "target": "diga_05c_safety_req_llm_001" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "utils_crisis_filter_getcrisischips" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crisis-filter.ts", + "source_location": "L440", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_crisis_filter_getcrisisfallback", + "target": "utils_crisis_filter_getcrisischips" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "utils_crisis_filter_getcrisisfallback" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.95, + "weight": 0.95, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "emits crisis-reference fallback", + "source": "utils_crisis_filter_getcrisisfallback", + "target": "diga_05c_safety_req_llm_001" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magicCron.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magiccron_ts", + "target": "backend_server_utils_adguard_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magicCron.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magiccron_ts", + "target": "utils_adguard_deleteadguardclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magicCron.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magiccron_ts", + "target": "utils_magiccron_processmagicreleases" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/magicCron.ts", + "source_location": "L51", + "weight": 1.0, + "source": "utils_magiccron_processmagicreleases", + "target": "utils_adguard_deleteadguardclient" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/avatar/upload.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_avatar_upload_post_ts", + "target": "backend_server_utils_usesupabase_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/upload-image.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_upload_image_post_ts", + "target": "backend_server_utils_usesupabase_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "backend_server_utils_usesupabase_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_utils_usesupabase_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_usesupabase_ts", + "target": "utils_usesupabase_getanonkey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_usesupabase_ts", + "target": "utils_usesupabase_getservicerolekey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_usesupabase_ts", + "target": "utils_usesupabase_getsupabaseurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_usesupabase_ts", + "target": "utils_usesupabase_serversupabaseclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_usesupabase_ts", + "target": "utils_usesupabase_serversupabaseservicerole" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_usesupabase_serversupabaseclient", + "target": "utils_usesupabase_getsupabaseurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_usesupabase_serversupabaseservicerole", + "target": "utils_usesupabase_getsupabaseurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_usesupabase_serversupabaseclient", + "target": "utils_usesupabase_getanonkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/useSupabase.ts", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_usesupabase_serversupabaseservicerole", + "target": "utils_usesupabase_getservicerolekey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/avatar/upload.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_avatar_upload_post_ts", + "target": "utils_usesupabase_serversupabaseservicerole" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/upload-image.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_upload_image_post_ts", + "target": "utils_usesupabase_serversupabaseservicerole" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "utils_usesupabase_serversupabaseservicerole" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "utils_usesupabase_serversupabaseservicerole" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/testUser.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_testuser_ts", + "target": "utils_testuser_istestuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/testUser.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_testuser_ts", + "target": "utils_testuser_test_user_emails" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L312", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "backend_server_utils_lyramemoryextract_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "backend_server_utils_lyramemoryextract_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/lyraMemoryExtract.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_lyramemoryextract_ts", + "target": "backend_server_db_lyramemory_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/lyraMemoryExtract.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_lyramemoryextract_ts", + "target": "db_lyramemory_upsertmemory" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/lyraMemoryExtract.ts", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_lyramemoryextract_ts", + "target": "utils_lyramemoryextract_extractandstorememories" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/lyraMemoryExtract.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_lyramemoryextract_ts", + "target": "utils_lyramemoryextract_valid_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L312", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "utils_lyramemoryextract_extractandstorememories" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "utils_lyramemoryextract_extractandstorememories" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/lyraMemoryExtract.ts", + "source_location": "L104", + "weight": 1.0, + "source": "utils_lyramemoryextract_extractandstorememories", + "target": "db_lyramemory_upsertmemory" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "backend_server_utils_crypto_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "backend_server_utils_crypto_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_post_ts", + "target": "backend_server_utils_crypto_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "backend_server_utils_crypto_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "backend_server_utils_crypto_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crypto.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crypto_ts", + "target": "utils_crypto_decrypt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crypto.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crypto_ts", + "target": "utils_crypto_encrypt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crypto.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_crypto_ts", + "target": "utils_crypto_getkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crypto.ts", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_crypto_decrypt", + "target": "utils_crypto_getkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/crypto.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_crypto_encrypt", + "target": "utils_crypto_getkey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "utils_crypto_encrypt" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "utils_crypto_encrypt" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_post_ts", + "target": "utils_crypto_encrypt" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "utils_crypto_encrypt" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "utils_crypto_decrypt" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "utils_crypto_decrypt" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/me.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_me_get_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L309", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_id_submit_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_get_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/dev/set-plan.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_dev_set_plan_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/enroll.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_enroll_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/index.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_index_get_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/register.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_register_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/connect.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connect_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/interval.patch.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_interval_patch_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_voicequota_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_downgrade_reconciliation_ts", + "target": "backend_server_utils_plan_features_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_plan_features_ts", + "target": "utils_plan_features_curated_blocklist_stub" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_plan_features_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_plan_features_ts", + "target": "utils_plan_features_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_plan_features_ts", + "target": "utils_plan_features_plan_limits" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_plan_features_ts", + "target": "utils_plan_features_planlimits" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_plan_features_ts", + "target": "utils_plan_features_voiceconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/plan-features.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_plan_features_ts", + "target": "utils_plan_features_voiceprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/dev/set-plan.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_dev_set_plan_post_ts", + "target": "utils_plan_features_plan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "utils_plan_features_plan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "utils_plan_features_plan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_downgrade_reconciliation_ts", + "target": "utils_plan_features_plan" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plan_change_preview_get_changepreviewresponse", + "target": "utils_plan_features_plan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "utils_plan_features_voiceconfig" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L309", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "utils_plan_features_plan_limits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/me.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_me_get_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_id_submit_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_get_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/enroll.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_enroll_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/index.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_index_get_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/register.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_register_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/connect.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connect_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/interval.patch.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_interval_patch_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_voicequota_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_downgrade_reconciliation_ts", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L81", + "weight": 1.0, + "source": "db_voicequota_consumevoicequota", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L30", + "weight": 1.0, + "source": "db_voicequota_getremainingvoicequota", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/auth.ts", + "source_location": "L112", + "weight": 1.0, + "source": "utils_auth_requireuser", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L37", + "weight": 1.0, + "source": "utils_downgrade_reconciliation_rundowngradereconciliation", + "target": "utils_plan_features_getplanlimits" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "backend_server_utils_strip_markdown_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/strip-markdown.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_strip_markdown_ts", + "target": "utils_strip_markdown_stripmarkdown" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "utils_strip_markdown_stripmarkdown" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/request.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_request_post_ts", + "target": "backend_server_utils_cooldowntoken_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "backend_server_utils_cooldowntoken_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_cooldowntoken_ts", + "target": "utils_cooldowntoken_cooldowntokenpayload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_cooldowntoken_ts", + "target": "utils_cooldowntoken_generatejti" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_cooldowntoken_ts", + "target": "utils_cooldowntoken_getsecret" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_cooldowntoken_ts", + "target": "utils_cooldowntoken_signcooldowntoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_cooldowntoken_ts", + "target": "utils_cooldowntoken_verifycooldowntoken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_cooldowntoken_signcooldowntoken", + "target": "utils_cooldowntoken_getsecret" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/cooldownToken.ts", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_cooldowntoken_verifycooldowntoken", + "target": "utils_cooldowntoken_getsecret" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/request.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_request_post_ts", + "target": "utils_cooldowntoken_signcooldowntoken" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "utils_cooldowntoken_signcooldowntoken" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.9, + "weight": 0.9, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "server-signiertes Cooldown-Token", + "source": "utils_cooldowntoken_signcooldowntoken", + "target": "diga_03_req_cooldown_server_authoritative" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.9, + "weight": 0.9, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "server-signiertes Cooldown-Token", + "source": "utils_cooldowntoken_verifycooldowntoken", + "target": "diga_03_req_cooldown_server_authoritative" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/request.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_request_post_ts", + "target": "utils_cooldowntoken_generatejti" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/dev/set-plan.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_dev_set_plan_post_ts", + "target": "backend_server_utils_downgrade_reconciliation_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "backend_server_utils_downgrade_reconciliation_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_downgrade_reconciliation_ts", + "target": "utils_downgrade_reconciliation_reconcilemailaccounts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_downgrade_reconciliation_ts", + "target": "utils_downgrade_reconciliation_reconcileprotecteddevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_downgrade_reconciliation_ts", + "target": "utils_downgrade_reconciliation_reconcileupgrade" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_downgrade_reconciliation_ts", + "target": "utils_downgrade_reconciliation_rundowngradereconciliation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_downgrade_reconciliation_ts", + "target": "utils_downgrade_reconciliation_triggerfinalscanforconnection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/dev/set-plan.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_dev_set_plan_post_ts", + "target": "utils_downgrade_reconciliation_rundowngradereconciliation" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "utils_downgrade_reconciliation_rundowngradereconciliation" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_downgrade_reconciliation_rundowngradereconciliation", + "target": "utils_downgrade_reconciliation_reconcilemailaccounts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_downgrade_reconciliation_rundowngradereconciliation", + "target": "utils_downgrade_reconciliation_reconcileprotecteddevices" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_downgrade_reconciliation_rundowngradereconciliation", + "target": "utils_downgrade_reconciliation_reconcileupgrade" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/downgrade-reconciliation.ts", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_downgrade_reconciliation_reconcilemailaccounts", + "target": "utils_downgrade_reconciliation_triggerfinalscanforconnection" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/login.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_login_post_ts", + "target": "backend_server_utils_device_lock_email_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/check-lock.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_check_lock_post_ts", + "target": "backend_server_utils_device_lock_email_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/device-lock-email.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_device_lock_email_ts", + "target": "utils_device_lock_email_devicelockemailopts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/device-lock-email.ts", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_device_lock_email_ts", + "target": "utils_device_lock_email_islocknotifyratelimited" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/device-lock-email.ts", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_device_lock_email_ts", + "target": "utils_device_lock_email_senddevicelockemail" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/login.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_login_post_ts", + "target": "utils_device_lock_email_islocknotifyratelimited" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/check-lock.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_check_lock_post_ts", + "target": "utils_device_lock_email_islocknotifyratelimited" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/login.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_login_post_ts", + "target": "utils_device_lock_email_senddevicelockemail" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/check-lock.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_check_lock_post_ts", + "target": "utils_device_lock_email_senddevicelockemail" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L314", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "backend_server_utils_detect_lang_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "backend_server_utils_detect_lang_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak-cartesia.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_cartesia_post_ts", + "target": "backend_server_utils_detect_lang_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak-elevenlabs.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_elevenlabs_post_ts", + "target": "backend_server_utils_detect_lang_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "backend_server_utils_detect_lang_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/detect-lang.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_detect_lang_ts", + "target": "utils_detect_lang_detectlang" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L314", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "utils_detect_lang_detectlang" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "utils_detect_lang_detectlang" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak-cartesia.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_cartesia_post_ts", + "target": "utils_detect_lang_detectlang" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak-elevenlabs.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_elevenlabs_post_ts", + "target": "utils_detect_lang_detectlang" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "utils_detect_lang_detectlang" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak-elevenlabs.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "coach_speak_post_speakelevenlabs", + "target": "utils_detect_lang_detectlang" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_profile_mobileconfig_get_ts", + "target": "backend_server_utils_magic_profile_template_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_mobileconfig_get_ts", + "target": "backend_server_utils_mobileconfig_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_reg_get_ts", + "target": "backend_server_utils_mobileconfig_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mobileconfig.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mobileconfig_ts", + "target": "utils_mobileconfig_generatemacosdnsprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mobileconfig.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mobileconfig_ts", + "target": "utils_mobileconfig_labeltoslug" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mobileconfig.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mobileconfig_ts", + "target": "utils_mobileconfig_xmlescape" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mobileconfig.ts", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_mobileconfig_generatemacosdnsprofile", + "target": "utils_mobileconfig_xmlescape" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_mobileconfig_get_ts", + "target": "utils_mobileconfig_labeltoslug" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_reg_get_ts", + "target": "utils_mobileconfig_labeltoslug" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_mobileconfig_get_ts", + "target": "utils_mobileconfig_generatemacosdnsprofile" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "backend_server_utils_mail_classifier_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "backend_server_utils_mail_classifier_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_classificationaction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_classificationfeatures" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_classificationresult" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "context": "import", + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_classifymail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L352", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_classifymailparams" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "context": "import", + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_computescore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_domaintobrandcandidates" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "context": "import", + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_extractrelayeddomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_gambling_brands" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "context": "import", + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_hasrandomtokens" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_mailinput" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "context": "import", + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_matchesgamblingbrand" + }, + { + "relation": "imports", + "confidence": "EXTRACTED", + "source_file": "backend/tests/mail/mail-classifier.test.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "context": "import", + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_normalizebrand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_score_weights" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_scoreresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_classifier_ts", + "target": "utils_mail_classifier_triggersource" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L427", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_mail_classifier_classifymail", + "target": "utils_mail_classifier_extractrelayeddomain" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_mail_classifier_domaintobrandcandidates", + "target": "utils_mail_classifier_normalizebrand" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L453", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_mail_classifier_classifymail", + "target": "utils_mail_classifier_domaintobrandcandidates" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L458", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_mail_classifier_classifymail", + "target": "utils_mail_classifier_hasrandomtokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail-classifier.ts", + "source_location": "L520", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_mail_classifier_classifymail", + "target": "utils_mail_classifier_computescore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "utils_mail_classifier_classifymail" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "utils_mail_classifier_classifymail" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "backend_server_utils_ms_oauth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", + "target": "backend_server_utils_ms_oauth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "backend_server_utils_ms_oauth_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_ms_oauth_ts", + "target": "utils_ms_oauth_computecodechallenge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_ms_oauth_ts", + "target": "utils_ms_oauth_exchangecodefortokens" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_ms_oauth_ts", + "target": "utils_ms_oauth_extractemailfromidtoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_ms_oauth_ts", + "target": "utils_ms_oauth_generatecodeverifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_ms_oauth_ts", + "target": "utils_ms_oauth_generatestateid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_ms_oauth_ts", + "target": "utils_ms_oauth_microsofttokenresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_ms_oauth_ts", + "target": "utils_ms_oauth_ms_oauth_scopes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/ms-oauth.ts", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_ms_oauth_ts", + "target": "utils_ms_oauth_refreshmicrosofttokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "utils_ms_oauth_ms_oauth_scopes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", + "target": "utils_ms_oauth_ms_oauth_scopes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", + "target": "utils_ms_oauth_generatecodeverifier" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", + "target": "utils_ms_oauth_computecodechallenge" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", + "target": "utils_ms_oauth_generatestateid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "utils_ms_oauth_exchangecodefortokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "utils_ms_oauth_refreshmicrosofttokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L768", + "weight": 1.0, + "source": "db_mail_refreshandsavetokens", + "target": "utils_ms_oauth_refreshmicrosofttokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "utils_ms_oauth_extractemailfromidtoken" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_profile_mobileconfig_get_ts", + "target": "backend_server_utils_magic_lock_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "backend_server_utils_magic_lock_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magic-lock.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magic_lock_ts", + "target": "path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magic-lock.ts", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magic_lock_ts", + "target": "utils_magic_lock_buildremovalpasswordpayload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magic-lock.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magic_lock_ts", + "target": "utils_magic_lock_generateremovalpassword" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/magic-lock.ts", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_magic_lock_ts", + "target": "utils_magic_lock_signprofileifconfigured" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_profile_mobileconfig_get_ts", + "target": "utils_magic_lock_generateremovalpassword" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "utils_magic_lock_generateremovalpassword" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_profile_mobileconfig_get_ts", + "target": "utils_magic_lock_buildremovalpasswordpayload" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_profile_mobileconfig_get_ts", + "target": "utils_magic_lock_signprofileifconfigured" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/message.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_message_post_ts", + "target": "backend_server_utils_scoring_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_post_ts", + "target": "backend_server_utils_scoring_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "backend_server_utils_scoring_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/post.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_post_post_ts", + "target": "backend_server_utils_scoring_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/repost.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_repost_post_ts", + "target": "backend_server_utils_scoring_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "backend_server_utils_scoring_ts" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/scoring.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_scoring_ts", + "target": "backend_server_db_scores_ts" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/scoring.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_scoring_ts", + "target": "db_scores_awardpoints" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/scoring.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_scoring_ts", + "target": "db_scores_scoreeventtype" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "backend_server_utils_google_oauth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/init.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_init_post_ts", + "target": "backend_server_utils_google_oauth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "backend_server_utils_google_oauth_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_google_oauth_ts", + "target": "utils_google_oauth_computecodechallenge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_google_oauth_ts", + "target": "utils_google_oauth_exchangecodefortokens" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_google_oauth_ts", + "target": "utils_google_oauth_extractemailfromidtoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_google_oauth_ts", + "target": "utils_google_oauth_generatecodeverifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_google_oauth_ts", + "target": "utils_google_oauth_generatestateid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_google_oauth_ts", + "target": "utils_google_oauth_google_oauth_scopes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_google_oauth_ts", + "target": "utils_google_oauth_googletokenresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/google-oauth.ts", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_google_oauth_ts", + "target": "utils_google_oauth_refreshgoogletokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "utils_google_oauth_google_oauth_scopes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/init.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_init_post_ts", + "target": "utils_google_oauth_google_oauth_scopes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/init.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_init_post_ts", + "target": "utils_google_oauth_generatecodeverifier" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/init.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_init_post_ts", + "target": "utils_google_oauth_computecodechallenge" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/init.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_init_post_ts", + "target": "utils_google_oauth_generatestateid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "utils_google_oauth_exchangecodefortokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "utils_google_oauth_refreshgoogletokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/mail.ts", + "source_location": "L762", + "weight": 1.0, + "source": "db_mail_refreshandsavetokens", + "target": "utils_google_oauth_refreshgoogletokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "utils_google_oauth_extractemailfromidtoken" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm-conversations.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_conversations_get_ts", + "target": "backend_server_utils_getusersmeta_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/index.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_index_get_ts", + "target": "backend_server_utils_getusersmeta_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_get_ts", + "target": "backend_server_utils_getusersmeta_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", + "target": "backend_server_utils_getusersmeta_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/messages.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_messages_post_ts", + "target": "backend_server_utils_getusersmeta_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/scores/leaderboard.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_scores_leaderboard_get_ts", + "target": "backend_server_utils_getusersmeta_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/profile/[userId].get.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_profile_userid_get_ts", + "target": "backend_server_utils_getusersmeta_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/getUsersMeta.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_getusersmeta_ts", + "target": "utils_getusersmeta_getusersmeta" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm-conversations.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_conversations_get_ts", + "target": "utils_getusersmeta_getusersmeta" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/index.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_index_get_ts", + "target": "utils_getusersmeta_getusersmeta" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_get_ts", + "target": "utils_getusersmeta_getusersmeta" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", + "target": "utils_getusersmeta_getusersmeta" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/messages.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_messages_post_ts", + "target": "utils_getusersmeta_getusersmeta" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/scores/leaderboard.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_scores_leaderboard_get_ts", + "target": "utils_getusersmeta_getusersmeta" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/profile/[userId].get.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_profile_userid_get_ts", + "target": "utils_getusersmeta_getusersmeta" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/connect.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connect_post_ts", + "target": "backend_server_utils_imap_providers_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "backend_server_utils_imap_providers_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_post_ts", + "target": "backend_server_utils_imap_providers_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "backend_server_utils_imap_providers_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/results.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_results_get_ts", + "target": "backend_server_utils_imap_providers_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "backend_server_utils_imap_providers_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "backend_server_utils_imap_providers_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_stats_blocked_by_connection_get_ts", + "target": "backend_server_utils_imap_providers_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/status.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_status_get_ts", + "target": "backend_server_utils_imap_providers_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_imap_providers_ts", + "target": "utils_imap_providers_detectimapprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_imap_providers_ts", + "target": "utils_imap_providers_detectimapproviderasync" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_imap_providers_ts", + "target": "utils_imap_providers_detectimapproviderbymx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_imap_providers_ts", + "target": "utils_imap_providers_detectsmtpprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_imap_providers_ts", + "target": "utils_imap_providers_host_to_provider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_imap_providers_ts", + "target": "utils_imap_providers_imapconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_imap_providers_ts", + "target": "utils_imap_providers_mx_ionos_patterns" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_imap_providers_ts", + "target": "utils_imap_providers_provider_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_imap_providers_ts", + "target": "utils_imap_providers_resolveprovidermeta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_imap_providers_ts", + "target": "utils_imap_providers_smtp_map" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usemailstats_blockedbyconnectionentry", + "target": "backend_server_utils_imap_providers_ts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/imap-providers.ts", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_imap_providers_detectimapproviderasync", + "target": "utils_imap_providers_detectimapproviderbymx" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/connect.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connect_post_ts", + "target": "utils_imap_providers_detectimapprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "utils_imap_providers_detectimapprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/connect.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connect_post_ts", + "target": "utils_imap_providers_detectimapproviderasync" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "utils_imap_providers_detectimapproviderasync" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_post_ts", + "target": "utils_imap_providers_detectsmtpprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "utils_imap_providers_detectsmtpprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/results.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_results_get_ts", + "target": "utils_imap_providers_resolveprovidermeta" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "utils_imap_providers_resolveprovidermeta" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "utils_imap_providers_resolveprovidermeta" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_stats_blocked_by_connection_get_ts", + "target": "utils_imap_providers_resolveprovidermeta" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/status.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_status_get_ts", + "target": "utils_imap_providers_resolveprovidermeta" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usemailstats_blockedbyconnectionentry", + "target": "utils_imap_providers_resolveprovidermeta" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "backend_server_utils_adguard_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/adguard.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_adguard_ts", + "target": "utils_adguard_adguardclientoptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/adguard.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_adguard_ts", + "target": "utils_adguard_adguardclientpayload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/adguard.ts", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_adguard_ts", + "target": "utils_adguard_createadguardclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/adguard.ts", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_adguard_ts", + "target": "utils_adguard_deleteadguardclient" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "utils_adguard_createadguardclient" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/verify-admin.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_verify_admin_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/calls/ice-servers.get.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_calls_ice_servers_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/calls/ring.post.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_calls_ring_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/can-call/[userId].get.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_can_call_userid_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/cancel.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_cancel_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/request.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_request_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/protection-state.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_protection_state_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm-link.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_deviceid_mdm_link_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/mdm/by-udid.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_mdm_by_udid_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/me.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_me_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/pair/create.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_pair_create_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/calls-enabled.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_calls_enabled_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/following.get.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_following_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/last-seen.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_last_seen_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/presence-visibility.post.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_presence_visibility_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/presence/last-seen.get.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_presence_last_seen_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/approved-domains.get.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_approved_domains_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_cooldown_history_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.delete.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_delete_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.get.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_patch_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/diga-banner-dismiss.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_diga_banner_dismiss_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/install-event.post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_install_event_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_sos_insights_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/coverage.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_coverage_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/dev-force-disabled.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_dev_force_disabled_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/event.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_event_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/mark-active.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_mark_active_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/screentime-passcode.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_screentime_passcode_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/screentime-passcode.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_screentime_passcode_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/state.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_state_get_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/users/me/mdm-status.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_users_me_mdm_status_post_ts", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "backend_server_db_admin_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "db_admin_isadminuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "db_devices_finduserdevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "db_devices_registerdevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "db_devices_touchdevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "utils_auth_requireadmin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_auth_ts", + "target": "utils_auth_requireuseroptions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/pair/create.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_community_createpost", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_profile_demographicspatch", + "target": "backend_server_utils_auth_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/calls/ice-servers.get.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_calls_ice_servers_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/calls/ring.post.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_calls_ring_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/can-call/[userId].get.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_can_call_userid_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/cancel.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_cancel_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/request.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_request_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/protection-state.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_protection_state_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices/[deviceId]/mdm-link.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_deviceid_mdm_link_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/mdm/by-udid.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_mdm_by_udid_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/me.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_me_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/pair/create.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_pair_create_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/calls-enabled.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_calls_enabled_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/following.get.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_following_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/last-seen.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_last_seen_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/presence-visibility.post.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_presence_visibility_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/presence/last-seen.get.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_presence_last_seen_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/approved-domains.get.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_approved_domains_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_cooldown_history_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.delete.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_delete_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.get.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_patch_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/diga-banner-dismiss.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_diga_banner_dismiss_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/install-event.post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_install_event_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_sos_insights_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/coverage.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_coverage_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/dev-force-disabled.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_dev_force_disabled_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/event.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_event_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/mark-active.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_mark_active_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/screentime-passcode.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_screentime_passcode_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/screentime-passcode.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_screentime_passcode_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/state.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_state_get_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/users/me/mdm-status.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_users_me_mdm_status_post_ts", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/pair/create.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_community_createpost", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_profile_demographicspatch", + "target": "utils_auth_requireuser" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_auth_requireadmin", + "target": "utils_auth_requireuser" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/auth.ts", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_auth_requireuser", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/auth.ts", + "source_location": "L95", + "weight": 1.0, + "source": "utils_auth_requireuser", + "target": "db_devices_finduserdevice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/auth.ts", + "source_location": "L132", + "weight": 1.0, + "source": "utils_auth_requireuser", + "target": "db_devices_listuserdevices" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/auth.ts", + "source_location": "L116", + "weight": 1.0, + "source": "utils_auth_requireuser", + "target": "db_devices_registerdevice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/auth.ts", + "source_location": "L100", + "weight": 1.0, + "source": "utils_auth_requireuser", + "target": "db_devices_touchdevice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/auth.ts", + "source_location": "L111", + "weight": 1.0, + "source": "utils_auth_requireuser", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/verify-admin.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_verify_admin_get_ts", + "target": "utils_auth_requireadmin" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/utils/auth.ts", + "source_location": "L155", + "weight": 1.0, + "source": "utils_auth_requireadmin", + "target": "db_admin_isadminuser" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/curated-domains/suggest.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_curated_domains_suggest_post_ts", + "target": "backend_server_utils_public_email_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "backend_server_utils_public_email_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_suggest_post_ts", + "target": "backend_server_utils_public_email_domains_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/public-email-domains.ts", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_public_email_domains_ts", + "target": "utils_public_email_domains_ispublicemaildomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/public-email-domains.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_public_email_domains_ts", + "target": "utils_public_email_domains_public_email_domains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/curated-domains/suggest.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_curated_domains_suggest_post_ts", + "target": "utils_public_email_domains_ispublicemaildomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "utils_public_email_domains_ispublicemaildomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_suggest_post_ts", + "target": "utils_public_email_domains_ispublicemaildomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/public-email-domains.ts", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usecustomdomains_public_email_domains", + "target": "utils_public_email_domains_ispublicemaildomain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_hooks_send_email_post_ts", + "target": "backend_server_utils_mail_brevo_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/brevo.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_brevo_ts", + "target": "mail_brevo_brevosendparams" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/brevo.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_brevo_ts", + "target": "mail_brevo_sendbrevomail" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_hooks_send_email_post_ts", + "target": "mail_brevo_sendbrevomail" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_hooks_send_email_post_ts", + "target": "backend_server_utils_mail_templates_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_templates_ts", + "target": "mail_templates_emailactiontype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L216", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_templates_ts", + "target": "mail_templates_htmlescape" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_templates_ts", + "target": "mail_templates_locale" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_templates_ts", + "target": "mail_templates_normalizelocale" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_templates_ts", + "target": "mail_templates_renderedemail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_templates_ts", + "target": "mail_templates_renderemail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_templates_ts", + "target": "mail_templates_supported_locales" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_templates_ts", + "target": "mail_templates_texts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_utils_mail_templates_ts", + "target": "stores_auth_supportedlocale" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_hooks_send_email_post_ts", + "target": "mail_templates_emailactiontype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_hooks_send_email_post_ts", + "target": "mail_templates_normalizelocale" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/utils/mail/templates.ts", + "source_location": "L239", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mail_templates_renderemail", + "target": "mail_templates_htmlescape" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_hooks_send_email_post_ts", + "target": "mail_templates_renderemail" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "backend_server_lib_lyrapostcatalog_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/lib/lyraPostCatalog.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_lib_lyrapostcatalog_ts", + "target": "lib_lyrapostcatalog_lyra_post_catalog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/lib/lyraPostCatalog.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_lib_lyrapostcatalog_ts", + "target": "lib_lyrapostcatalog_lyraposttemplate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/lib/lyraPostCatalog.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_lib_lyrapostcatalog_ts", + "target": "lib_lyrapostcatalog_lyraposttopic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/lib/lyraPostCatalog.ts", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_lib_lyrapostcatalog_ts", + "target": "lib_lyrapostcatalog_pickrandomtemplate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "lib_lyrapostcatalog_lyra_post_catalog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "lib_lyrapostcatalog_pickrandomtemplate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cron_lyra_post_postfromcatalog", + "target": "lib_lyrapostcatalog_pickrandomtemplate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/users/[id].delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_users_id_delete_ts", + "target": "backend_server_db_adminusers_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/users/[id].patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_users_id_patch_ts", + "target": "backend_server_db_adminusers_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/users/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_users_index_get_ts", + "target": "backend_server_db_adminusers_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_adminusers_ts", + "target": "db_adminusers_adminuserrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_adminusers_ts", + "target": "db_adminusers_listadminusers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_adminusers_ts", + "target": "db_adminusers_listusersopts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_adminusers_ts", + "target": "db_adminusers_softdeleteadminuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_adminusers_ts", + "target": "db_adminusers_updateadminuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_adminusers_ts", + "target": "db_adminusers_updateadminuserpatch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/adminUsers.ts", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_adminusers_ts", + "target": "db_adminusers_valid_plans" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/users/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_users_index_get_ts", + "target": "db_adminusers_listadminusers" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/users/[id].patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_users_id_patch_ts", + "target": "db_adminusers_updateadminuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/users/[id].delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_users_id_delete_ts", + "target": "db_adminusers_softdeleteadminuser" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/login.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_login_post_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/approve.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_approve_post_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/check-lock.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_check_lock_post_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/cancel-release.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_cancel_release_post_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id].delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_delete_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/request-release.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_request_release_post_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_index_get_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/register.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_register_post_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_get_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_profile_mobileconfig_get_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/status.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_status_get_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_db_devices_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_autoreleaseinactivedevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_binddevicetouser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_canceldevicerelease" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_cleanupstaledevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L466", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_countactivemagicbindings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_deleteuserdevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_device_select" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_devicerecord" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L519", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_ensuremagicremovalpassword" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_findactivedevicelock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L482", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_findmagicdevicebytoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_findmergecandidate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_finduserdevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_islockingplan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L432", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_listmagicdevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L541", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_listmagicremovalcredentials" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L207", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_listuserdevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_locking_plans" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L419", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_magicdevicerecord" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L530", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_magicremovalcredential" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_markdevicelocknotified" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_registerdevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_requestdevicerelease" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L372", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_devices_ts", + "target": "db_devices_touchdevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/login.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_login_post_ts", + "target": "db_devices_islockingplan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/check-lock.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_check_lock_post_ts", + "target": "db_devices_islockingplan" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_devices_binddevicetouser", + "target": "db_devices_islockingplan" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_devices_findactivedevicelock", + "target": "db_devices_islockingplan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/login.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_login_post_ts", + "target": "db_devices_findactivedevicelock" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/check-lock.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_check_lock_post_ts", + "target": "db_devices_findactivedevicelock" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.85, + "weight": 0.85, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "aktiver Device-Lock", + "source": "db_devices_findactivedevicelock", + "target": "diga_03_req_magic" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/login.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_login_post_ts", + "target": "db_devices_binddevicetouser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/check-lock.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_check_lock_post_ts", + "target": "db_devices_binddevicetouser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/request-release.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_request_release_post_ts", + "target": "db_devices_requestdevicerelease" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.9, + "weight": 0.9, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "legitimer Release-Pfad = Mitigation", + "source": "db_devices_requestdevicerelease", + "target": "diga_04_risk_byp_03_selbstbindung_falle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/cancel-release.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_cancel_release_post_ts", + "target": "db_devices_canceldevicerelease" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/login.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_login_post_ts", + "target": "db_devices_markdevicelocknotified" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/check-lock.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_check_lock_post_ts", + "target": "db_devices_markdevicelocknotified" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_index_get_ts", + "target": "db_devices_listuserdevices" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/register.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_register_post_ts", + "target": "db_devices_listuserdevices" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_index_get_ts", + "target": "db_devices_cleanupstaledevices" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L344", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_devices_registerdevice", + "target": "db_devices_cleanupstaledevices" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/approve.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_approve_post_ts", + "target": "db_devices_finduserdevice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L303", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_devices_registerdevice", + "target": "db_devices_finduserdevice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/devices.ts", + "source_location": "L322", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_devices_registerdevice", + "target": "db_devices_findmergecandidate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/register.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_register_post_ts", + "target": "db_devices_registerdevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id].delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_delete_ts", + "target": "db_devices_deleteuserdevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_get_ts", + "target": "db_devices_listmagicdevices" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "db_devices_listmagicdevices" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "db_devices_countactivemagicbindings" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_profile_mobileconfig_get_ts", + "target": "db_devices_findmagicdevicebytoken" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/status.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_status_get_ts", + "target": "db_devices_findmagicdevicebytoken" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_profile_mobileconfig_get_ts", + "target": "db_devices_ensuremagicremovalpassword" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/stripe/webhook.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_stripe_webhook_post_ts", + "target": "db_devices_listmagicremovalcredentials" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_devices_listmagicremovalcredentials" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/approve.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_approve_post_ts", + "target": "backend_server_db_device_approvals_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_email_post_ts", + "target": "backend_server_db_device_approvals_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id].get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_get_ts", + "target": "backend_server_db_device_approvals_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/reject.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_reject_post_ts", + "target": "backend_server_db_device_approvals_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_index_get_ts", + "target": "backend_server_db_device_approvals_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/index.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_index_post_ts", + "target": "backend_server_db_device_approvals_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_approval_select" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_approverequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_createapprovalrequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_deviceapprovalrecord" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_generatecode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_generateemailtoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_getapprovalbyemailtoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_getapprovalrequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_hasotheractivedevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_listpendingapprovals" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_markemailsent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_maybeexpire" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_approvals_ts", + "target": "db_device_approvals_rejectrequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_device_approvals_createapprovalrequest", + "target": "db_device_approvals_generatecode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L245", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_device_approvals_markemailsent", + "target": "db_device_approvals_generateemailtoken" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/index.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_index_post_ts", + "target": "db_device_approvals_createapprovalrequest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_email_post_ts", + "target": "db_device_approvals_getapprovalrequest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id].get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_get_ts", + "target": "db_device_approvals_getapprovalrequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_device_approvals_approverequest", + "target": "db_device_approvals_getapprovalrequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_device_approvals_getapprovalrequest", + "target": "db_device_approvals_maybeexpire" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L240", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_device_approvals_markemailsent", + "target": "db_device_approvals_getapprovalrequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L219", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_device_approvals_rejectrequest", + "target": "db_device_approvals_getapprovalrequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-approvals.ts", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_device_approvals_getapprovalbyemailtoken", + "target": "db_device_approvals_maybeexpire" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_index_get_ts", + "target": "db_device_approvals_listpendingapprovals" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/approve.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_approve_post_ts", + "target": "db_device_approvals_approverequest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/reject.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_reject_post_ts", + "target": "db_device_approvals_rejectrequest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_email_post_ts", + "target": "db_device_approvals_markemailsent" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/consent.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_consent_post_ts", + "target": "backend_server_db_consent_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_delete_ts", + "target": "backend_server_db_consent_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "backend_server_db_consent_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "backend_server_db_consent_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "backend_server_db_consent_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_db_consent_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/consent.ts", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_consent_ts", + "target": "db_consent_getconsentlogsbyuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/consent.ts", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_consent_ts", + "target": "db_consent_getmailconnectionwithconsent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/consent.ts", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_consent_ts", + "target": "db_consent_setmailconnectionconsent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/consent.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_consent_ts", + "target": "db_consent_writeconsentgrant" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/consent.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_consent_ts", + "target": "db_consent_writeconsentrevoke" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/consent.ts", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_consent_ts", + "target": "db_mail_getmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/consent.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_consent_post_ts", + "target": "db_consent_writeconsentgrant" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "db_consent_writeconsentgrant" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "db_consent_writeconsentgrant" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "db_consent_writeconsentgrant" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_delete_ts", + "target": "db_consent_writeconsentrevoke" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_consent_writeconsentrevoke" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/consent.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_consent_post_ts", + "target": "db_consent_setmailconnectionconsent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "db_consent_setmailconnectionconsent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "db_consent_setmailconnectionconsent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "db_consent_setmailconnectionconsent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/consent.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_consent_post_ts", + "target": "db_consent_getmailconnectionwithconsent" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/join.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_join_post_ts", + "target": "backend_server_db_chat_rooms_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/like.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_like_post_ts", + "target": "backend_server_db_chat_rooms_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_index_get_ts", + "target": "backend_server_db_chat_rooms_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/index.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_index_post_ts", + "target": "backend_server_db_chat_rooms_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_get_ts", + "target": "backend_server_db_chat_rooms_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", + "target": "backend_server_db_chat_rooms_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/join.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_join_post_ts", + "target": "backend_server_db_chat_rooms_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/leave.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_leave_post_ts", + "target": "backend_server_db_chat_rooms_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/messages.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_messages_post_ts", + "target": "backend_server_db_chat_rooms_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_approverequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_banmember" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_createroom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_createroommessage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L359", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_default_rooms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_deleteroom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_findroombyinvitecode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_getmember" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_getpendingrequests" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_getroom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_getroommembers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L204", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_getroommessages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_joinroom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_leaveroom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_listrooms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_rejectrequest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L372", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_seeddefaultrooms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L190", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_setmemberrole" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L309", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_togglechatmessagelike" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L332", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_toggledmlike" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat-rooms.ts", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_rooms_ts", + "target": "db_chat_rooms_updateroom" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_index_get_ts", + "target": "db_chat_rooms_listrooms" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_get_ts", + "target": "db_chat_rooms_getroom" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/join.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_join_post_ts", + "target": "db_chat_rooms_getroom" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/leave.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_leave_post_ts", + "target": "db_chat_rooms_getroom" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/index.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_index_post_ts", + "target": "db_chat_rooms_createroom" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", + "target": "db_chat_rooms_updateroom" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/join.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_join_post_ts", + "target": "db_chat_rooms_getmember" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_get_ts", + "target": "db_chat_rooms_getmember" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", + "target": "db_chat_rooms_getmember" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/join.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_join_post_ts", + "target": "db_chat_rooms_getmember" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/leave.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_leave_post_ts", + "target": "db_chat_rooms_getmember" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/messages.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_messages_post_ts", + "target": "db_chat_rooms_getmember" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/join.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_join_post_ts", + "target": "db_chat_rooms_joinroom" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/join.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_join_post_ts", + "target": "db_chat_rooms_joinroom" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/leave.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_leave_post_ts", + "target": "db_chat_rooms_leaveroom" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", + "target": "db_chat_rooms_approverequest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", + "target": "db_chat_rooms_rejectrequest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", + "target": "db_chat_rooms_getpendingrequests" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/join.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_join_post_ts", + "target": "db_chat_rooms_findroombyinvitecode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", + "target": "db_chat_rooms_banmember" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", + "target": "db_chat_rooms_setmemberrole" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_get_ts", + "target": "db_chat_rooms_getroommessages" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", + "target": "db_chat_rooms_createroommessage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/[roomId]/messages.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_roomid_messages_post_ts", + "target": "db_chat_rooms_createroommessage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/like.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_like_post_ts", + "target": "db_chat_rooms_togglechatmessagelike" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/like.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_like_post_ts", + "target": "db_chat_rooms_toggledmlike" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_index_get_ts", + "target": "db_chat_rooms_seeddefaultrooms" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/scores/leaderboard.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_scores_leaderboard_get_ts", + "target": "backend_server_db_scores_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/scores/me.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_scores_me_get_ts", + "target": "backend_server_db_scores_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/profile/[userId].get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_profile_userid_get_ts", + "target": "backend_server_db_scores_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/scores.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_scores_ts", + "target": "db_scores_awardpoints" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/scores.ts", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_scores_ts", + "target": "db_scores_getleaderboard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/scores.ts", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_scores_ts", + "target": "db_scores_getrecentscoreevents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/scores.ts", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_scores_ts", + "target": "db_scores_getuserscore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/scores.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_scores_ts", + "target": "db_scores_points" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/scores.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_scores_ts", + "target": "db_scores_scoreeventtype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/message.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_message_post_ts", + "target": "db_scores_awardpoints" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_post_ts", + "target": "db_scores_awardpoints" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "db_scores_awardpoints" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/post.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_post_post_ts", + "target": "db_scores_awardpoints" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/repost.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_repost_post_ts", + "target": "db_scores_awardpoints" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "db_scores_awardpoints" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/scores/me.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_scores_me_get_ts", + "target": "db_scores_getuserscore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/profile/[userId].get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_profile_userid_get_ts", + "target": "db_scores_getuserscore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/scores/me.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_scores_me_get_ts", + "target": "db_scores_getrecentscoreevents" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/scores/leaderboard.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_scores_leaderboard_get_ts", + "target": "db_scores_getleaderboard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/streak/events.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_streak_events_get_ts", + "target": "backend_server_db_streak_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/streak/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_streak_index_get_ts", + "target": "backend_server_db_streak_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/streak/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_streak_index_patch_ts", + "target": "backend_server_db_streak_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/streak/index.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_streak_index_post_ts", + "target": "backend_server_db_streak_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/urge/index.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_urge_index_post_ts", + "target": "backend_server_db_streak_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_db_streak_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/streak.ts", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_streak_ts", + "target": "db_streak_addstreakevent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/streak.ts", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_streak_ts", + "target": "db_streak_deleteuserstreaks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/streak.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_streak_ts", + "target": "db_streak_getactivestreak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/streak.ts", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_streak_ts", + "target": "db_streak_getstreakevents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/streak.ts", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_streak_ts", + "target": "db_streak_resetstreak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/streak.ts", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_streak_ts", + "target": "db_streak_updatestreaksavings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/streak.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_streak_ts", + "target": "db_streak_upsertstreak" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.8, + "weight": 0.8, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "Streak-DB-Layer", + "source": "backend_server_db_streak_ts", + "target": "protection_coverage_streak" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/streak/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_streak_index_get_ts", + "target": "db_streak_getactivestreak" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/streak/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_streak_index_patch_ts", + "target": "db_streak_getactivestreak" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/streak/index.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_streak_index_post_ts", + "target": "db_streak_upsertstreak" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/streak.ts", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_streak_upsertstreak", + "target": "db_streak_addstreakevent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/streak/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_streak_index_patch_ts", + "target": "db_streak_resetstreak" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/streak.ts", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_streak_resetstreak", + "target": "db_streak_addstreakevent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/streak/index.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_streak_index_patch_ts", + "target": "db_streak_updatestreaksavings" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_streak_deleteuserstreaks" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/urge/index.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_urge_index_post_ts", + "target": "db_streak_addstreakevent" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.85, + "weight": 0.85, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "append-only Event-Log = protection_state_log", + "source": "db_streak_addstreakevent", + "target": "protection_coverage_streak_log_model" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/streak/events.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_streak_events_get_ts", + "target": "db_streak_getstreakevents" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/sos/session.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_sos_session_post_ts", + "target": "backend_server_db_sossession_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_db_sossession_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/sosSession.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_sossession_ts", + "target": "db_sossession_createsossession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/sosSession.ts", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_sossession_ts", + "target": "db_sossession_deleteusersossessions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/sosSession.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_sossession_ts", + "target": "db_sossession_sossessioninput" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/sos/session.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_sos_session_post_ts", + "target": "db_sossession_createsossession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_sossession_deleteusersossessions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_post_ts", + "target": "backend_server_db_notifications_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "backend_server_db_notifications_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/notifications-cleanup.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_notifications_cleanup_ts", + "target": "backend_server_db_notifications_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_domain_submissions_id_vote_post_ts", + "target": "backend_server_db_notifications_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/notifications/[id].delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_notifications_id_delete_ts", + "target": "backend_server_db_notifications_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/notifications/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_notifications_index_get_ts", + "target": "backend_server_db_notifications_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/notifications/read.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_notifications_read_post_ts", + "target": "backend_server_db_notifications_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "backend_server_db_notifications_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_notifications_ts", + "target": "db_notifications_countunread" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_notifications_ts", + "target": "db_notifications_createnotification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_notifications_ts", + "target": "db_notifications_deletenotification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_notifications_ts", + "target": "db_notifications_deleteoldnotifications" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_notifications_ts", + "target": "db_notifications_getnotifications" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_notifications_ts", + "target": "db_notifications_markallread" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_post_ts", + "target": "db_notifications_createnotification" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "db_notifications_createnotification" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_domain_submissions_id_vote_post_ts", + "target": "db_notifications_createnotification" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_notifications_createnotification" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L367", + "weight": 1.0, + "source": "db_domains_adminapprovesubmission", + "target": "db_notifications_createnotification" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/db/domains.ts", + "source_location": "L416", + "weight": 1.0, + "source": "db_domains_adminrejectsubmission", + "target": "db_notifications_createnotification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "db_notifications_createnotification" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/notifications/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_notifications_index_get_ts", + "target": "db_notifications_getnotifications" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "db_notifications_getnotifications" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/notifications/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_notifications_index_get_ts", + "target": "db_notifications_countunread" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/notifications/read.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_notifications_read_post_ts", + "target": "db_notifications_markallread" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "db_notifications_markallread" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/notifications/[id].delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_notifications_id_delete_ts", + "target": "db_notifications_deletenotification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "db_notifications_deletenotification" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/notifications-cleanup.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_notifications_cleanup_ts", + "target": "db_notifications_deleteoldnotifications" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "db_notifications_deleteoldnotifications" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/confirm-installed.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_confirm_installed_post_ts", + "target": "backend_server_db_protecteddevices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_mobileconfig_get_ts", + "target": "backend_server_db_protecteddevices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_reg_get_ts", + "target": "backend_server_db_protecteddevices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/revoke.delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_revoke_delete_ts", + "target": "backend_server_db_protecteddevices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/protected.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_protected_get_ts", + "target": "backend_server_db_protecteddevices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_get_ts", + "target": "backend_server_db_protecteddevices_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "backend_server_db_protecteddevices_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_confirmprotecteddeviceinstalled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_countactiveprotecteddevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_createprotecteddevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_device_select" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_device_select_with_token" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_getdeviceblocklistmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_getprotecteddevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_getprotecteddevicebytoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_handshakeprotecteddevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_listprotecteddevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_protecteddevicerecord" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_protecteddevicewithtoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protecteddevices_ts", + "target": "db_protecteddevices_revokeprotecteddevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "db_protecteddevices_protecteddevicewithtoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "db_protecteddevices_device_select" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "db_protecteddevices_device_select_with_token" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "db_protecteddevices_listprotecteddevices" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/protected.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_protected_get_ts", + "target": "db_protecteddevices_listprotecteddevices" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_get_ts", + "target": "db_protecteddevices_listprotecteddevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "db_protecteddevices_countactiveprotecteddevices" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/enroll.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_enroll_post_ts", + "target": "db_protecteddevices_countactiveprotecteddevices" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "db_protecteddevices_countactiveprotecteddevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "db_protecteddevices_getprotecteddevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_mobileconfig_get_ts", + "target": "db_protecteddevices_getprotecteddevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_reg_get_ts", + "target": "db_protecteddevices_getprotecteddevice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_protecteddevices_getdeviceblocklistmode", + "target": "db_protecteddevices_getprotecteddevice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_protecteddevices_getdeviceblocklistmode", + "target": "db_protecteddevices_getprotecteddevicebytoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "db_protecteddevices_createprotecteddevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/enroll.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_enroll_post_ts", + "target": "db_protecteddevices_createprotecteddevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "db_protecteddevices_confirmprotecteddeviceinstalled" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/confirm-installed.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_confirm_installed_post_ts", + "target": "db_protecteddevices_confirmprotecteddeviceinstalled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "db_protecteddevices_revokeprotecteddevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/revoke.delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_revoke_delete_ts", + "target": "db_protecteddevices_revokeprotecteddevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "db_protecteddevices_handshakeprotecteddevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectedDevices.ts", + "source_location": "L178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "db_protecteddevices_getdeviceblocklistmode" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "backend_server_db_protectionstatelog_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/coverage.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_coverage_get_ts", + "target": "backend_server_db_protectionstatelog_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/event.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_event_post_ts", + "target": "backend_server_db_protectionstatelog_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protectionstatelog_ts", + "target": "db_protectionstatelog_appendprotectionevent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protectionstatelog_ts", + "target": "db_protectionstatelog_appendprotectioneventdeduped" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protectionstatelog_ts", + "target": "db_protectionstatelog_computeprotectioncoverage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protectionstatelog_ts", + "target": "db_protectionstatelog_getlastprotectionevent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protectionstatelog_ts", + "target": "db_protectionstatelog_protectioncoverage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protectionstatelog_ts", + "target": "db_protectionstatelog_protectionsource" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L213", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_protectionstatelog_ts", + "target": "db_protectionstatelog_utcdaystart" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/event.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_event_post_ts", + "target": "db_protectionstatelog_protectionsource" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_protectionstate", + "target": "db_protectionstatelog_protectionsource" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_protectionstatelog_appendprotectionevent", + "target": "db_protectionstatelog_getlastprotectionevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_protectionstatelog_appendprotectioneventdeduped", + "target": "db_protectionstatelog_getlastprotectionevent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_protectionstate", + "target": "db_protectionstatelog_getlastprotectionevent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "db_protectionstatelog_appendprotectionevent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/event.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_event_post_ts", + "target": "db_protectionstatelog_appendprotectionevent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_protectionstatelog_appendprotectioneventdeduped", + "target": "db_protectionstatelog_appendprotectionevent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_protectionstate", + "target": "db_protectionstatelog_appendprotectionevent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "db_protectionstatelog_appendprotectioneventdeduped" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/event.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_event_post_ts", + "target": "db_protectionstatelog_appendprotectioneventdeduped" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_protectionstate", + "target": "db_protectionstatelog_protectioncoverage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/coverage.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_coverage_get_ts", + "target": "db_protectionstatelog_computeprotectioncoverage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_protectionstatelog_computeprotectioncoverage", + "target": "db_protectionstatelog_utcdaystart" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_protectionstate", + "target": "db_protectionstatelog_computeprotectioncoverage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/protectionStateLog.ts", + "source_location": "L213", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_protectionstate", + "target": "db_protectionstatelog_utcdaystart" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_post_post_ts", + "target": "backend_server_db_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment-like.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_like_post_ts", + "target": "backend_server_db_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_post_ts", + "target": "backend_server_db_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "backend_server_db_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/post.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_post_post_ts", + "target": "backend_server_db_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/[postId]/comments.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_postid_comments_get_ts", + "target": "backend_server_db_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/[postId]/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_postid_index_get_ts", + "target": "backend_server_db_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/posts.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_posts_get_ts", + "target": "backend_server_db_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "backend_server_db_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_db_community_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L323", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_countpostlikes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_createcomment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L415", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_createcommentlike" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_createpost" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L420", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_deletecommentlike" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L316", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_deletepostlike" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L288", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_deleteuserposts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L427", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_getcommentlike" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L427", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_getcommentlikecount" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L349", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_getcommentsbypost" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_getpostbyid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L295", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_getpostlike" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_getposts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L303", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_setpostlike" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L432", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_synccommentlikecount" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/community.ts", + "source_location": "L335", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_community_ts", + "target": "db_community_syncpostlikecounts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/posts.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_posts_get_ts", + "target": "db_community_getposts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_post_ts", + "target": "db_community_getpostbyid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "db_community_getpostbyid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/[postId]/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_postid_index_get_ts", + "target": "db_community_getpostbyid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_post_post_ts", + "target": "db_community_createpost" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/post.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_post_post_ts", + "target": "db_community_createpost" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "db_community_createpost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cron_lyra_post_postfromcatalog", + "target": "db_community_createpost" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cron_lyra_post_postfromllm", + "target": "db_community_createpost" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_community_deleteuserposts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "db_community_getpostlike" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/[postId]/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_postid_index_get_ts", + "target": "db_community_getpostlike" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "db_community_setpostlike" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "db_community_deletepostlike" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "db_community_countpostlikes" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "db_community_syncpostlikecounts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/[postId]/comments.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_postid_comments_get_ts", + "target": "db_community_getcommentsbypost" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_post_ts", + "target": "db_community_createcomment" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment-like.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_like_post_ts", + "target": "db_community_getcommentlike" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment-like.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_like_post_ts", + "target": "db_community_createcommentlike" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment-like.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_like_post_ts", + "target": "db_community_deletecommentlike" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment-like.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_like_post_ts", + "target": "db_community_getcommentlikecount" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment-like.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_like_post_ts", + "target": "db_community_synccommentlikecount" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/admin.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_admin_ts", + "target": "db_admin_isadminuser" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/curated-domains/[id].patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_curated_domains_id_patch_ts", + "target": "backend_server_db_curateddomains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/curated-domains/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_curated_domains_index_get_ts", + "target": "backend_server_db_curateddomains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_suggest_post_ts", + "target": "backend_server_db_curateddomains_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_curateddomains_ts", + "target": "db_curateddomains_curateddomainstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_curateddomains_ts", + "target": "db_curateddomains_decidecurateddomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_curateddomains_ts", + "target": "db_curateddomains_getcurateddomains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/curatedDomains.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_curateddomains_ts", + "target": "db_curateddomains_suggestcurateddomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/curated-domains/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_curated_domains_index_get_ts", + "target": "db_curateddomains_curateddomainstatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_suggest_post_ts", + "target": "db_curateddomains_suggestcurateddomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/curated-domains/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_curated_domains_index_get_ts", + "target": "db_curateddomains_getcurateddomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/curated-domains/[id].patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_curated_domains_id_patch_ts", + "target": "db_curateddomains_decidecurateddomain" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/delete-message.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_delete_message_post_ts", + "target": "backend_server_db_chat_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm-conversations.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_conversations_get_ts", + "target": "backend_server_db_chat_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_post_ts", + "target": "backend_server_db_chat_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm/[userId].get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_userid_get_ts", + "target": "backend_server_db_chat_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/message.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_message_post_ts", + "target": "backend_server_db_chat_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/messages.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_messages_get_ts", + "target": "backend_server_db_chat_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/reaction.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_reaction_post_ts", + "target": "backend_server_db_chat_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "app_chat_dmconversation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "db_chat_countunreaddms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "db_chat_createchatmessage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "db_chat_dmconversationrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "db_chat_getchatmessages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "db_chat_getdmconversations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "db_chat_getdmhistory" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "db_chat_markdmsasread" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "db_chat_senddirectmessage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "db_chat_softdeletedmmessage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/chat.ts", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_chat_ts", + "target": "db_chat_toggledmreaction" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/messages.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_messages_get_ts", + "target": "db_chat_getchatmessages" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/message.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_message_post_ts", + "target": "db_chat_createchatmessage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_post_ts", + "target": "db_chat_senddirectmessage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm/[userId].get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_userid_get_ts", + "target": "db_chat_getdmhistory" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/reaction.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_reaction_post_ts", + "target": "db_chat_toggledmreaction" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/delete-message.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_delete_message_post_ts", + "target": "db_chat_softdeletedmmessage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm/[userId].get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_userid_get_ts", + "target": "db_chat_markdmsasread" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm-conversations.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_conversations_get_ts", + "target": "db_chat_getdmconversations" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm-conversations.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_conversations_get_ts", + "target": "db_chat_countunreaddms" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/notifications/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_notifications_index_get_ts", + "target": "db_chat_countunreaddms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/notifications.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "db_chat_countunreaddms" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/protection-state.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_protection_state_post_ts", + "target": "backend_server_db_device_protection_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_protection_ts", + "target": "db_device_protection_deviceprotectionstaterecord" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_protection_ts", + "target": "db_device_protection_getdeviceprotectionstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_protection_ts", + "target": "db_device_protection_listdeviceprotectionstates" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_protection_ts", + "target": "db_device_protection_protection_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_protection_ts", + "target": "db_device_protection_protectiontype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/device-protection.ts", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_device_protection_ts", + "target": "db_device_protection_upsertdeviceprotectionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/protection-state.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_protection_state_post_ts", + "target": "db_device_protection_protectiontype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/protection-state.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_protection_state_post_ts", + "target": "db_device_protection_protection_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/protection-state.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_protection_state_post_ts", + "target": "db_device_protection_upsertdeviceprotectionstate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/cancel.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_cancel_post_ts", + "target": "backend_server_db_cooldown_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/request.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_request_post_ts", + "target": "backend_server_db_cooldown_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "backend_server_db_cooldown_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/screentime-passcode.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_screentime_passcode_get_ts", + "target": "backend_server_db_cooldown_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/state.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_state_get_ts", + "target": "backend_server_db_cooldown_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_cooldown_ts", + "target": "db_cooldown_cancelcooldown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_cooldown_ts", + "target": "db_cooldown_createcooldown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_cooldown_ts", + "target": "db_cooldown_getactivecooldown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/cooldown.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_cooldown_ts", + "target": "db_cooldown_resolvecooldown" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/cancel.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_cancel_post_ts", + "target": "db_cooldown_getactivecooldown" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/request.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_request_post_ts", + "target": "db_cooldown_getactivecooldown" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "db_cooldown_getactivecooldown" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/screentime-passcode.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_screentime_passcode_get_ts", + "target": "db_cooldown_getactivecooldown" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/state.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_state_get_ts", + "target": "db_cooldown_getactivecooldown" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/request.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_request_post_ts", + "target": "db_cooldown_createcooldown" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "db_cooldown_resolvecooldown" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/screentime-passcode.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_screentime_passcode_get_ts", + "target": "db_cooldown_resolvecooldown" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/state.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_state_get_ts", + "target": "db_cooldown_resolvecooldown" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/cancel.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_cancel_post_ts", + "target": "db_cooldown_cancelcooldown" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/domain-submissions/[id]/approve.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_domain_submissions_id_approve_post_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/domain-submissions/[id]/reject.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_domain_submissions_id_reject_post_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/domain-submissions/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_domain_submissions_index_get_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/count.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_count_get_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/download.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_download_get_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/personal.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_personal_get_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/stats.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_stats_get_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/sync.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_sync_post_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/domain-stats.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_domain_stats_get_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/[id].delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_id_delete_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_id_submit_post_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_get_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_domain_submissions_id_vote_post_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.txt.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_txt_get_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_addusercustomdomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L309", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_adminapprovesubmission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L381", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_adminrejectsubmission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_approvedomainsubmissiontx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_castdomainvote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_countactivecustomdomains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_countactivecustomdomainssplit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_custom_domain_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_customdomaintype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_deleteallusercustomdomains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_deleteusercustomdomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L511", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_getactiveblocklistcount" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L516", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_getactiveblocklistdomains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L542", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_getblocklisteddomainsset" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_getcustommaildisplaynames" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_getmaildisplaynamepatterns" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L465", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_getpendingsubmissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_getusercustomdomains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L524", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_isblocklisteddomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L431", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_pendingsubmissionrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L204", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_submissionplan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_submitdomainforreview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L596", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "db_domains_upsertblocklistdomains" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/domains.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_domains_ts", + "target": "notification" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "blocker_vipdomainlist_vipdomainlist", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usecustomdomains_usecustomdomains", + "target": "backend_server_db_domains_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "db_domains_customdomaintype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "db_domains_custom_domain_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/personal.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_personal_get_ts", + "target": "db_domains_getusercustomdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_get_ts", + "target": "db_domains_getusercustomdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "db_domains_getusercustomdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_get_ts", + "target": "db_domains_countactivecustomdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "db_domains_countactivecustomdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "db_domains_addusercustomdomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "db_domains_getcustommaildisplaynames" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_domains_getmaildisplaynamepatterns" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/[id].delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_id_delete_ts", + "target": "db_domains_deleteusercustomdomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_domains_deleteallusercustomdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_id_submit_post_ts", + "target": "db_domains_submitdomainforreview" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_domain_submissions_id_vote_post_ts", + "target": "db_domains_castdomainvote" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/domain-submissions/[id]/approve.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_domain_submissions_id_approve_post_ts", + "target": "db_domains_adminapprovesubmission" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/domain-submissions/[id]/reject.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_domain_submissions_id_reject_post_ts", + "target": "db_domains_adminrejectsubmission" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/domain-submissions/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_domain_submissions_index_get_ts", + "target": "db_domains_getpendingsubmissions" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/count.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_count_get_ts", + "target": "db_domains_getactiveblocklistcount" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/stats.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_stats_get_ts", + "target": "db_domains_getactiveblocklistcount" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/domain-stats.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_domain_stats_get_ts", + "target": "db_domains_getactiveblocklistcount" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/download.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_download_get_ts", + "target": "db_domains_getactiveblocklistdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/personal.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_personal_get_ts", + "target": "db_domains_getactiveblocklistdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "db_domains_getactiveblocklistdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.txt.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_txt_get_ts", + "target": "db_domains_getactiveblocklistdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_domains_getblocklisteddomainsset" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "db_domains_getblocklisteddomainsset" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/blocklist/sync.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_blocklist_sync_post_ts", + "target": "db_domains_upsertblocklistdomains" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/urge/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_urge_index_get_ts", + "target": "backend_server_db_urge_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/urge/index.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_urge_index_post_ts", + "target": "backend_server_db_urge_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_db_urge_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/urge.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_urge_ts", + "target": "db_urge_createurgelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/urge.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_urge_ts", + "target": "db_urge_deleteuserurgelogs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/urge.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_urge_ts", + "target": "db_urge_emotion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/urge.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_urge_ts", + "target": "db_urge_getrecenturgelogs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/urge/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_urge_index_get_ts", + "target": "db_urge_getrecenturgelogs" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/urge/index.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_urge_index_post_ts", + "target": "db_urge_createurgelog" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_urge_deleteuserurgelogs" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/moderation/[id]/ban-user.post.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_moderation_id_ban_user_post_ts", + "target": "backend_server_db_moderation_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/moderation/[id]/delete.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_moderation_id_delete_post_ts", + "target": "backend_server_db_moderation_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/moderation/[id]/dismiss.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_moderation_id_dismiss_post_ts", + "target": "backend_server_db_moderation_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/moderation/queue.get.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_moderation_queue_get_ts", + "target": "backend_server_db_moderation_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L294", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_moderation_ts", + "target": "db_moderation_banuserfrommoderationitem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_moderation_ts", + "target": "db_moderation_deletemoderationitem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_moderation_ts", + "target": "db_moderation_dismissmoderationitem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_moderation_ts", + "target": "db_moderation_listmoderationqueue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_moderation_ts", + "target": "db_moderation_listqueueopts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_moderation_ts", + "target": "db_moderation_moderationitemtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/moderation.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_moderation_ts", + "target": "db_moderation_moderationqueueitem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/server/api/moderation/queue.get.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_admin_server_api_moderation_queue_get_ts", + "target": "db_moderation_moderationitemtype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/moderation/queue.get.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_moderation_queue_get_ts", + "target": "db_moderation_listmoderationqueue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/moderation/[id]/dismiss.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_moderation_id_dismiss_post_ts", + "target": "db_moderation_dismissmoderationitem" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/moderation/[id]/delete.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_moderation_id_delete_post_ts", + "target": "db_moderation_deletemoderationitem" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/moderation/[id]/ban-user.post.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_moderation_id_ban_user_post_ts", + "target": "db_moderation_banuserfrommoderationitem" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-profile.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_profile_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/set-lyra-avatar.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_set_lyra_avatar_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/login.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_login_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/me.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_me_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/me.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_me_patch_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/avatar/upload.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_avatar_upload_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm-conversations.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_conversations_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm/[userId].get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_userid_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/index.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_index_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L308", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_id_submit_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_email_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/check-lock.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_check_lock_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/enroll.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_enroll_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/index.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_index_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/protected.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_protected_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/register.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_register_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/dns/profile.get.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_dns_profile_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_domain_submissions_id_vote_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/accept.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_accept_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_rematch_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge-memory.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_memory_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/connect.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connect_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/interval.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_interval_patch_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/calls-enabled.post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_calls_enabled_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/following.get.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_following_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/last-seen.post.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_last_seen_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/presence-visibility.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_presence_visibility_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/presence/last-seen.get.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_presence_last_seen_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.delete.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_delete_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.get.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_patch_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/diga-banner-dismiss.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_diga_banner_dismiss_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/install-event.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_install_event_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/lyra-voice.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_lyra_voice_patch_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/onboarding-step.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_onboarding_step_patch_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/state.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_state_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/scores/leaderboard.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_scores_leaderboard_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/profile/[userId].get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_profile_userid_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/users/me/mdm-status.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_users_me_mdm_status_post_ts", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_allowed_lyra_voice_ids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_deleteprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_demographicsfields" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_dismissdigabanner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_getdemographics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L288", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_getfollowingids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L329", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_getlastseenbatch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_isallowedlyravoiceid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_isonboardingstep" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_lyravoiceid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_onboarding_steps" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_onboardingstep" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L277", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_recordinstallevent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L394", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_setcallsenabled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_setlyravoiceid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L362", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_setmdmmanaged" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_setonboardingstep" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L407", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_setpresencevisible" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L308", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_touchlastseen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_tryawardprotrial" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_updatedemographics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_updateprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/profile.ts", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_profile_ts", + "target": "db_profile_withdrawdemographics" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "context": "import", + "source": "db_profile_demographicspatch", + "target": "backend_server_db_profile_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-profile.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_profile_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/login.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_login_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/me.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_me_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm-conversations.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_conversations_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm/[userId].get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_userid_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/rooms/index.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_rooms_index_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L308", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_id_submit_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_approvals_id_email_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/check-lock.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_check_lock_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/enroll.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_enroll_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/index.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_index_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/protected.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_protected_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/register.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_register_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/dns/profile.get.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_dns_profile_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_domain_submissions_id_vote_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/accept.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_accept_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_rematch_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge-memory.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_memory_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/connect.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connect_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/interval.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_interval_patch_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/state.get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_state_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/scores/leaderboard.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_scores_leaderboard_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/profile/[userId].get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_profile_userid_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "db_profile_getprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/set-lyra-avatar.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_set_lyra_avatar_post_ts", + "target": "db_profile_updateprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth/me.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_me_patch_ts", + "target": "db_profile_updateprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/avatar/upload.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_avatar_upload_post_ts", + "target": "db_profile_updateprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_profile_deleteprofile" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/onboarding-step.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_onboarding_step_patch_ts", + "target": "db_profile_onboardingstep" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/onboarding-step.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_onboarding_step_patch_ts", + "target": "db_profile_isonboardingstep" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/onboarding-step.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_onboarding_step_patch_ts", + "target": "db_profile_setonboardingstep" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "db_profile_demographicspatch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProfileData.ts", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprofiledata_ts", + "target": "db_profile_demographicspatch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_patch_ts", + "target": "db_profile_demographicspatch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_digamilestonemodal_digamilestonemodal", + "target": "db_profile_demographicspatch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_profile_demographicspatch", + "target": "db_profile_tryawardprotrial" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_profile_demographicspatch", + "target": "db_profile_updatedemographics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_profile_demographicspatch", + "target": "me_demographics_patch_employment_status_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_profile_demographicspatch", + "target": "me_demographics_patch_gender_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_profile_demographicspatch", + "target": "me_demographics_patch_job_tenure_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_profile_demographicspatch", + "target": "me_demographics_patch_marital_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_profile_demographicspatch", + "target": "me_demographics_patch_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "db_profile_demographicspatch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_patch_ts", + "target": "db_profile_updatedemographics" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.delete.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_delete_ts", + "target": "db_profile_withdrawdemographics" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.get.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_get_ts", + "target": "db_profile_getdemographics" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_patch_ts", + "target": "db_profile_tryawardprotrial" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/lyra-voice.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_lyra_voice_patch_ts", + "target": "db_profile_lyravoiceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/lyra-voice.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_lyra_voice_patch_ts", + "target": "db_profile_isallowedlyravoiceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/lyra-voice.patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_lyra_voice_patch_ts", + "target": "db_profile_setlyravoiceid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/diga-banner-dismiss.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_diga_banner_dismiss_post_ts", + "target": "db_profile_dismissdigabanner" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/install-event.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_install_event_post_ts", + "target": "db_profile_recordinstallevent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/following.get.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_following_get_ts", + "target": "db_profile_getfollowingids" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/last-seen.post.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_last_seen_post_ts", + "target": "db_profile_touchlastseen" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/presence/last-seen.get.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_presence_last_seen_get_ts", + "target": "db_profile_getlastseenbatch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/users/me/mdm-status.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_users_me_mdm_status_post_ts", + "target": "db_profile_setmdmmanaged" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/calls-enabled.post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_calls_enabled_post_ts", + "target": "db_profile_setcallsenabled" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/me/presence-visibility.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_me_presence_visibility_post_ts", + "target": "db_profile_setpresencevisible" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/onboarding/redeem-diga-code.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_onboarding_redeem_diga_code_post_ts", + "target": "backend_server_db_diga_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/diga.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_diga_ts", + "target": "db_diga_redeemdigacode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/diga.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_diga_ts", + "target": "db_diga_redeemresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/onboarding/redeem-diga-code.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_onboarding_redeem_diga_code_post_ts", + "target": "db_diga_redeemdigacode" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "backend_server_db_voicequota_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_voicequota_ts", + "target": "db_voicequota_consumevoicequota" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_voicequota_ts", + "target": "db_voicequota_estimateaudioseconds" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_voicequota_ts", + "target": "db_voicequota_getremainingvoicequota" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_voicequota_ts", + "target": "db_voicequota_todayutcmidnight" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_voicequota_consumevoicequota", + "target": "db_voicequota_todayutcmidnight" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/voiceQuota.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_voicequota_getremainingvoicequota", + "target": "db_voicequota_todayutcmidnight" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "db_voicequota_getremainingvoicequota" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "db_voicequota_consumevoicequota" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "coach_speak_post_speakcartesia", + "target": "db_voicequota_consumevoicequota" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L292", + "weight": 1.0, + "confidence_score": 1.0, + "source": "coach_speak_post_speakelevenlabs", + "target": "db_voicequota_consumevoicequota" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "coach_speak_post_speakgoogle", + "target": "db_voicequota_consumevoicequota" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "db_voicequota_estimateaudioseconds" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "coach_speak_post_speakcartesia", + "target": "db_voicequota_estimateaudioseconds" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L292", + "weight": 1.0, + "confidence_score": 1.0, + "source": "coach_speak_post_speakelevenlabs", + "target": "db_voicequota_estimateaudioseconds" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "coach_speak_post_speakgoogle", + "target": "db_voicequota_estimateaudioseconds" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/can-call/[userId].get.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_can_call_userid_get_ts", + "target": "backend_server_db_social_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/[postId]/index.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_postid_index_get_ts", + "target": "backend_server_db_social_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/posts.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_posts_get_ts", + "target": "backend_server_db_social_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/follow.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_follow_post_ts", + "target": "backend_server_db_social_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/profile/[userId].get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_profile_userid_get_ts", + "target": "backend_server_db_social_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/social.ts", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_social_ts", + "target": "db_social_cancall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/social.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_social_ts", + "target": "db_social_createfollow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/social.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_social_ts", + "target": "db_social_deletefollow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/social.ts", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_social_ts", + "target": "db_social_getfollowingset" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/social.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_social_ts", + "target": "db_social_getfollowrelation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/social.ts", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_social_ts", + "target": "db_social_getprofilewithfollowers" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/[postId]/index.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_postid_index_get_ts", + "target": "db_social_getfollowrelation" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/follow.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_follow_post_ts", + "target": "db_social_getfollowrelation" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/profile/[userId].get.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_profile_userid_get_ts", + "target": "db_social_getfollowrelation" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/follow.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_follow_post_ts", + "target": "db_social_createfollow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/follow.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_follow_post_ts", + "target": "db_social_deletefollow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/posts.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_posts_get_ts", + "target": "db_social_getfollowingset" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/social/follow.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_social_follow_post_ts", + "target": "db_social_getprofilewithfollowers" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/can-call/[userId].get.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_can_call_userid_get_ts", + "target": "db_social_cancall" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_db_user_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/user.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_user_ts", + "target": "db_user_deleteusercoachsessions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/user.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_user_ts", + "target": "db_user_deleteusertrustedcontacts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_user_deleteusertrustedcontacts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_user_deleteusercoachsessions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L311", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "backend_server_db_lyramemory_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "backend_server_db_lyramemory_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/lyra/memories/extract.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_lyra_memories_extract_post_ts", + "target": "backend_server_db_lyramemory_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_lyramemory_ts", + "target": "db_lyramemory_deletememorybyid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_lyramemory_ts", + "target": "db_lyramemory_enforcemaxmemories" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_lyramemory_ts", + "target": "db_lyramemory_getmemoriesforuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_lyramemory_ts", + "target": "db_lyramemory_levenshteinsimilarity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_lyramemory_ts", + "target": "db_lyramemory_lyramemoryrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_lyramemory_ts", + "target": "db_lyramemory_markreferenced" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_lyramemory_ts", + "target": "db_lyramemory_upsertmemory" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L311", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "db_lyramemory_getmemoriesforuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "db_lyramemory_getmemoriesforuser" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/lyra/memories/extract.post.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_lyra_memories_extract_post_ts", + "target": "db_lyramemory_upsertmemory" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/lyraMemory.ts", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_lyramemory_upsertmemory", + "target": "db_lyramemory_enforcemaxmemories" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L311", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "db_lyramemory_markreferenced" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "db_lyramemory_markreferenced" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/connect.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connect_post_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].delete.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_delete_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_patch_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/pending-consent.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_pending_consent_get_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/disconnect.delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_disconnect_delete_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/interval.patch.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_interval_patch_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/init.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_init_post_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_get_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_post_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/results.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_results_get_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_stats_blocked_by_connection_get_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/stats/blocked-by-day.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_stats_blocked_by_day_get_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/status.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_status_get_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L569", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_consumeoauthpendingstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_countmailconnections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L540", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_createoauthpendingstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_deleteallmailconnections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_deletemailconnection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L342", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_deleteoldmailblocked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L245", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_deleteusermailclassificationsamples" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_getallactivemailuserids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_getallmailconnections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_getalreadyblockeduidset" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L498", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_getblockedmailsbyconnection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L450", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_getblockedmailsbyday" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L818", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_getdecryptedrefreshtoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L323", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_getimapproxyaccounts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L392", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_getmailblockedpaginated" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_getmailblockedstats" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_getmailconnections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L312", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_getpendingconsentconnections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L211", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_insertmailblocked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_insertmailclassificationsample" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_ismailalreadyblocked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_markfullsweepdone" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_patchfolderscanstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L731", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_refreshandsavetokens" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_updatemailconnectioninterval" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_updatemailconnectionscanstats" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L424", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_updatemailconnectiontitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L328", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_upsertimapproxyaccount" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L356", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_upsertmailblockedstat" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_upsertmailconnection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L661", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_upsertoauthgoogleconnection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/db/mail.ts", + "source_location": "L609", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_db_mail_ts", + "target": "db_mail_upsertoauthmicrosoftconnection" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usemailstats_blockedbyconnectionentry", + "target": "backend_server_db_mail_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/consent.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_consent_post_ts", + "target": "db_mail_getmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_get_ts", + "target": "db_mail_getmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_post_ts", + "target": "db_mail_getmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "db_mail_getmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_mail_getmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "db_mail_getmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/status.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_status_get_ts", + "target": "db_mail_getmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/connect.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connect_post_ts", + "target": "db_mail_countmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "db_mail_countmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "db_mail_countmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "db_mail_countmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/connect.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connect_post_ts", + "target": "db_mail_upsertmailconnection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_post_ts", + "target": "db_mail_upsertmailconnection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].delete.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_delete_ts", + "target": "db_mail_deletemailconnection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/disconnect.delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_disconnect_delete_ts", + "target": "db_mail_deletemailconnection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/disconnect.delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_disconnect_delete_ts", + "target": "db_mail_deleteallmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_mail_deleteallmailconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/interval.patch.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_interval_patch_ts", + "target": "db_mail_updatemailconnectioninterval" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_mail_updatemailconnectionscanstats" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "db_mail_updatemailconnectionscanstats" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_mail_patchfolderscanstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_mail_markfullsweepdone" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/status.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_status_get_ts", + "target": "db_mail_getmailblockedstats" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_mail_getalreadyblockeduidset" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "db_mail_getalreadyblockeduidset" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_mail_insertmailblocked" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "db_mail_insertmailblocked" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/user/delete.delete.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_user_delete_delete_ts", + "target": "db_mail_deleteusermailclassificationsamples" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_mail_insertmailclassificationsample" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "db_mail_insertmailclassificationsample" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/pending-consent.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_pending_consent_get_ts", + "target": "db_mail_getpendingconsentconnections" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_get_ts", + "target": "db_mail_getimapproxyaccounts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "db_mail_getimapproxyaccounts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-account.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_account_post_ts", + "target": "db_mail_upsertimapproxyaccount" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/results.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_results_get_ts", + "target": "db_mail_deleteoldmailblocked" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_mail_deleteoldmailblocked" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "db_mail_deleteoldmailblocked" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_mail_upsertmailblockedstat" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "db_mail_upsertmailblockedstat" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/results.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_results_get_ts", + "target": "db_mail_getmailblockedpaginated" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].patch.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_patch_ts", + "target": "db_mail_updatemailconnectiontitle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/interval.patch.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_interval_patch_ts", + "target": "db_mail_updatemailconnectiontitle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan-internal.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_internal_post_ts", + "target": "db_mail_updatemailconnectiontitle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/scan.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_scan_post_ts", + "target": "db_mail_updatemailconnectiontitle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/stats/blocked-by-day.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_stats_blocked_by_day_get_ts", + "target": "db_mail_getblockedmailsbyday" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_stats_blocked_by_connection_get_ts", + "target": "db_mail_getblockedmailsbyconnection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usemailstats_blockedbyconnectionentry", + "target": "db_mail_getblockedmailsbyconnection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/init.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_init_post_ts", + "target": "db_mail_createoauthpendingstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", + "target": "db_mail_createoauthpendingstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "db_mail_consumeoauthpendingstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "db_mail_consumeoauthpendingstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", + "target": "db_mail_upsertoauthmicrosoftconnection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_oauth_google_callback_post_ts", + "target": "db_mail_upsertoauthgoogleconnection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "db_mail_refreshandsavetokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_mail_refreshandsavetokens", + "target": "imap_idle_index_decrypt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "db_mail_refreshandsavetokens", + "target": "imap_idle_index_encrypt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L427", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_getcredentialsforconnection", + "target": "db_mail_refreshandsavetokens" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L752", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "db_mail_refreshandsavetokens" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail-connections/[id].delete.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_connections_id_delete_ts", + "target": "db_mail_getdecryptedrefreshtoken" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/calls/ring.post.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_calls_ring_post_ts", + "target": "backend_server_services_push_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/calls/ring.post.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_calls_ring_post_ts", + "target": "services_push_sendcallringpush" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/curated-domains/suggest.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_curated_domains_suggest_post_ts", + "target": "curated_domains_suggest_post_valid_countries" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/curated-domains/suggest.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_curated_domains_suggest_post_ts", + "target": "hooks_usecustomdomains_public_email_domains" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "filter_domainhasher_domainhasher" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_url_filter_blocklist_bin_get_ts", + "target": "url_filter_blocklist_bin_get_mergesortedhashbuffers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/reaction.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_reaction_post_ts", + "target": "chat_reaction_post_allowed_emojis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/chat/dm/[userId].get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_chat_dm_userid_get_ts", + "target": "dm_userid_get_aggregatereactions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cooldown/status.get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cooldown_status_get_ts", + "target": "src_lib_protectionstate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "app_devices_protecteddevicerow" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "backend_server_services_push_ts" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.85, + "weight": 0.85, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "Magic-Device-Registration = Bindung", + "source": "backend_server_api_magic_register_post_ts", + "target": "diga_03_req_magic" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/register.post.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_register_post_ts", + "target": "services_push_senddeviceaddedpush" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_get_ts", + "target": "app_devices_protecteddevicerow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/devices.get.ts", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_devices_get_ts", + "target": "magic_devices_get_prettyplatform" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "weight": 0.85, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "Release-Request-API", + "source": "backend_server_api_magic_devices_deviceid_request_release_post_ts", + "target": "diga_04_risk_byp_03_selbstbindung_falle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/pair/redeem.post.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_pair_redeem_post_ts", + "target": "pair_redeem_post_checkratelimit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/pair/redeem.post.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_pair_redeem_post_ts", + "target": "pair_redeem_post_rateentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/magic/pair/redeem.post.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_magic_pair_redeem_post_ts", + "target": "pair_redeem_post_ratelimitstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "custom_domains_index_post_resolveresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "custom_domains_index_post_resolvetypeandvalue" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/index.post.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_index_post_ts", + "target": "hooks_usecustomdomains_public_email_domains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_suggest_post_ts", + "target": "custom_domains_suggest_post_supported_countries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_suggest_post_ts", + "target": "custom_domains_suggest_post_supportedcountry" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/custom-domains/suggest.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_custom_domains_suggest_post_ts", + "target": "hooks_usecustomdomains_public_email_domains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/proxy-config.get.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_proxy_config_get_ts", + "target": "mail_proxy_config_get_escapexml" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/mail/results.get.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_mail_results_get_ts", + "target": "mail_results_get_provider_slug_to_host" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "plan_change_preview_get_changeentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "plan_change_preview_get_changepreviewresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L350", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "plan_change_preview_get_friendlymodelname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L357", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "plan_change_preview_get_friendlyprovidername" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "plan_change_preview_get_plan_order" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "plan_change_preview_get_resourcekey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/plan/change-preview.get.ts", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_plan_change_preview_get_ts", + "target": "plan_change_preview_get_valid_plans" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/providers/index.get.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_providers_index_get_ts", + "target": "providers_index_get_ggl_providers" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-generate.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_generate_post_ts", + "target": "backend_server_api_admin_lyra_post_post_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_post_post_ts", + "target": "admin_lyra_post_post_lang" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_post_post_ts", + "target": "admin_lyra_post_post_lang_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_post_post_ts", + "target": "admin_lyra_post_post_langs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_post_post_ts", + "target": "admin_lyra_post_post_lyra_topics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_post_post_ts", + "target": "admin_lyra_post_post_lyrasystemprompt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_post_post_ts", + "target": "admin_lyra_post_post_lyratopic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_post_post_ts", + "target": "admin_lyra_post_post_rebreaksystemprompt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_post_post_ts", + "target": "admin_lyra_post_post_topic_hints" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-generate.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_generate_post_ts", + "target": "admin_lyra_post_post_lyra_topics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "admin_lyra_post_post_lyra_topics" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-generate.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_generate_post_ts", + "target": "admin_lyra_post_post_lyratopic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "admin_lyra_post_post_lyratopic" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-generate.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_generate_post_ts", + "target": "admin_lyra_post_post_topic_hints" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "admin_lyra_post_post_topic_hints" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "admin_lyra_post_post_lang" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "admin_lyra_post_post_langs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "admin_lyra_post_post_lang_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "admin_lyra_post_post_lyrasystemprompt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-post.post.ts", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "admin_lyra_post_post_rebreaksystemprompt" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/lyra-generate.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_lyra_generate_post_ts", + "target": "backend_server_api_cron_lyra_post_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/admin/domain-submissions/[id]/approve.post.ts", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_admin_domain_submissions_id_approve_post_ts", + "target": "id_approve_post_lang" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L665", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "coach_message_post_candidate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L387", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "coach_message_post_detectandsavefeedback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L323", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "coach_message_post_generateplandetails" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L358", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "coach_message_post_provider_config" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/message.post.ts", + "source_location": "L675", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_message_post_ts", + "target": "coach_message_post_trymodel" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "backend_server_api_coach_message_post_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.post.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_post_ts", + "target": "backend_server_api_coach_message_post_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mail_connectmailsheet_connectmailsheet", + "target": "coach_message_post_provider_config" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "coach_speak_post_speakcartesia" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "coach_speak_post_speakelevenlabs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak.post.ts", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_post_ts", + "target": "coach_speak_post_speakgoogle" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.85, + "weight": 0.85, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "SOS coach session API", + "source": "backend_server_api_coach_sos_session_post_ts", + "target": "diga_03_req_lyra" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.post.ts", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_post_ts", + "target": "coach_sos_stream_post_cancel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.post.ts", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_post_ts", + "target": "coach_sos_stream_post_pull" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.post.ts", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_post_ts", + "target": "coach_sos_stream_post_start" + }, + { + "relation": "calls", + "confidence": "INFERRED", + "confidence_score": 0.85, + "weight": 0.85, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "native streams from SOS endpoint", + "source": "app_lyra_coachscreen", + "target": "backend_server_api_coach_sos_stream_get_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/sos-stream.get.ts", + "source_location": "L240", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_sos_stream_get_ts", + "target": "coach_sos_stream_get_soscandidate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/coach/speak-gemini.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_coach_speak_gemini_post_ts", + "target": "coach_speak_gemini_post_pcmtowav" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/event.post.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_event_post_ts", + "target": "protection_event_post_valid_sources" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/event.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_event_post_ts", + "target": "src_lib_protectionstate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/coverage.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_coverage_get_ts", + "target": "src_lib_protectionstate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/webcontent-domains.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_webcontent_domains_get_ts", + "target": "backend_server_data_gambling_domains_json" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/webcontent-domains.get.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_webcontent_domains_get_ts", + "target": "protection_webcontent_domains_get_country_keys" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/webcontent-domains.get.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_webcontent_domains_get_ts", + "target": "protection_webcontent_domains_get_countrykey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/protection/webcontent-domains.get.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_protection_webcontent_domains_get_ts", + "target": "protection_webcontent_domains_get_global_lists" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/check-nickname.get.ts", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_check_nickname_get_ts", + "target": "profile_check_nickname_get_isprofanity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/check-nickname.get.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_check_nickname_get_ts", + "target": "profile_check_nickname_get_profanity_blocklist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/sos-insights.get.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_sos_insights_get_ts", + "target": "me_sos_insights_get_helper" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_cooldown_history_get_ts", + "target": "me_cooldown_history_get_cooldownentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_patch_ts", + "target": "me_demographics_patch_employment_status_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_patch_ts", + "target": "me_demographics_patch_gender_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_patch_ts", + "target": "me_demographics_patch_job_tenure_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_patch_ts", + "target": "me_demographics_patch_marital_values" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/profile/me/demographics.patch.ts", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_profile_me_demographics_patch_ts", + "target": "me_demographics_patch_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/users/me/mdm-status.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_users_me_mdm_status_post_ts", + "target": "me_mdm_status_post_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_hooks_send_email_post_ts", + "target": "auth_hooks_send_email_post_hookbody" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/auth-hooks/send-email.post.ts", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_auth_hooks_send_email_post_ts", + "target": "auth_hooks_send_email_post_verifysignature" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/dev/set-plan.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_dev_set_plan_post_ts", + "target": "dev_set_plan_post_appplan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/dev/set-plan.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_dev_set_plan_post_ts", + "target": "dev_set_plan_post_valid_plans" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/like.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_like_post_ts", + "target": "notification" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/community/comment.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_community_comment_post_ts", + "target": "notification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/urge/index.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_urge_index_post_ts", + "target": "urge_index_post_emotion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/urge/index.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_urge_index_post_ts", + "target": "urge_index_post_valid_emotions" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_domain_submissions_id_vote_post_ts", + "target": "notification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge-memory.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_memory_post_ts", + "target": "games_challenge_memory_post_memory_emojis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge-memory.post.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_memory_post_ts", + "target": "games_challenge_memory_post_shuffle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/share-text.post.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_share_text_post_ts", + "target": "games_share_text_post_buildfallback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/share-text.post.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_share_text_post_ts", + "target": "games_share_text_post_game_vibes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/share-text.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_share_text_post_ts", + "target": "games_share_text_post_getgamevibe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_move_post_ts", + "target": "id_move_post_checkwinner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_move_post_ts", + "target": "id_move_post_win_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", + "source_location": "L668", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_urgegames_tsx", + "target": "id_move_post_checkwinner" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", + "source_location": "L678", + "weight": 1.0, + "confidence_score": 1.0, + "source": "urge_urgegames_ttwouldwin", + "target": "id_move_post_checkwinner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_rematch_post_ts", + "target": "id_rematch_post_memory_emojis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_rematch_post_ts", + "target": "id_rematch_post_shuffle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_memory_move_post_ts", + "target": "id_memory_move_post_memorycard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_games_challenge_id_memory_move_post_ts", + "target": "id_memory_move_post_memorystate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/notifications/[id].delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_notifications_id_delete_ts", + "target": "notification" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/notifications/index.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_notifications_index_get_ts", + "target": "notification" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/notifications/read.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_notifications_read_post_ts", + "target": "notification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/lyra/welcome-back.get.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_lyra_welcome_back_get_ts", + "target": "lyra_welcome_back_get_fallback_messages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/lyra/welcome-back.get.ts", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_lyra_welcome_back_get_ts", + "target": "lyra_welcome_back_get_pickrandom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/lyra/welcome-back.get.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_auth_welcomeback", + "target": "lyra_welcome_back_get_fallback_messages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/lyra/welcome-back.get.ts", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_auth_welcomeback", + "target": "lyra_welcome_back_get_pickrandom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/lyra/memories/extract.post.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_lyra_memories_extract_post_ts", + "target": "memories_extract_post_valid_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/onboarding/redeem-diga-code.post.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_onboarding_redeem_diga_code_post_ts", + "target": "onboarding_redeem_diga_code_post_errormessage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/notifications-cleanup.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_notifications_cleanup_ts", + "target": "notification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "cron_lyra_post_postfromcatalog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "cron_lyra_post_postfromllm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/cron/lyra-post.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_cron_lyra_post_ts", + "target": "cron_lyra_post_topics" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/protected.get.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_protected_get_ts", + "target": "app_devices_protecteddevicerow" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/enroll.post.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_enroll_post_ts", + "target": "app_devices_protecteddevicerow" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_reg_get_ts", + "target": "app_devices_protecteddevicerow" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_profile_mobileconfig_get_ts", + "target": "app_devices_protecteddevicerow" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/confirm-installed.post.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_confirm_installed_post_ts", + "target": "app_devices_protecteddevicerow" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/api/devices/[id]/revoke.delete.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_api_devices_id_revoke_delete_ts", + "target": "app_devices_protecteddevicerow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_data_gambling_domains_json", + "target": "data_gambling_domains_de" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_data_gambling_domains_json", + "target": "data_gambling_domains_fr" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_data_gambling_domains_json", + "target": "data_gambling_domains_gb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_data_gambling_domains_json", + "target": "data_gambling_domains_meta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_data_gambling_domains_json", + "target": "data_gambling_domains_tn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "data_gambling_domains_meta", + "target": "data_gambling_domains_meta_maxdomainspercountry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "data_gambling_domains_meta", + "target": "data_gambling_domains_meta_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "data_gambling_domains_meta", + "target": "data_gambling_domains_meta_updatedat" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/data/gambling-domains.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "data_gambling_domains_meta", + "target": "data_gambling_domains_meta_version" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "backend_server_services_voip_push_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_callringpushpayload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_chatpushpayload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_deviceaddedpushpayload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_deviceplatformlabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_ensureexpo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_expoinstance" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_expomodule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_expopushmessage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_getdisplayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_sendcallringpush" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_sendchatpush" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_senddeviceaddedpush" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_push_truncatepreview" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_push_ts", + "target": "services_voip_push_sendvoippush" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L276", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_push_sendcallringpush", + "target": "services_push_ensureexpo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_push_sendchatpush", + "target": "services_push_ensureexpo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_push_senddeviceaddedpush", + "target": "services_push_ensureexpo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/push.ts", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_push_senddeviceaddedpush", + "target": "services_push_deviceplatformlabel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "backend/server/services/push.ts", + "source_location": "L279", + "weight": 1.0, + "source": "services_push_sendcallringpush", + "target": "services_voip_push_sendvoippush" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_voip_push_ts", + "target": "services_voip_push_apnmodule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_voip_push_ts", + "target": "services_voip_push_apnnotification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_voip_push_ts", + "target": "services_voip_push_apnprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_voip_push_ts", + "target": "services_voip_push_ensureinit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_voip_push_ts", + "target": "services_voip_push_sendvoippush" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_voip_push_ts", + "target": "services_voip_push_shutdownvoipprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_voip_push_ts", + "target": "services_voip_push_tokenenvcache" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_server_services_voip_push_ts", + "target": "services_voip_push_voipcallpayload" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/server/services/voip-push.ts", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_voip_push_sendvoippush", + "target": "services_voip_push_ensureinit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/start-idle-staging.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_start_idle_staging_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_backend_imap_idle_start_idle_staging_sh__entry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_package_json", + "target": "imap_idle_package_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_package_json", + "target": "imap_idle_package_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_package_json", + "target": "imap_idle_package_engines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_package_json", + "target": "imap_idle_package_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_package_json", + "target": "imap_idle_package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_package_json", + "target": "imap_idle_package_private" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_package_json", + "target": "imap_idle_package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_package_json", + "target": "imap_idle_package_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_package_json", + "target": "imap_idle_package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_package_scripts", + "target": "imap_idle_package_scripts_start" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_package_dependencies", + "target": "imap_idle_package_dependencies_imapflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_package_dependencies", + "target": "imap_idle_package_dependencies_pg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/package.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_package_engines", + "target": "imap_idle_package_engines_node" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L885", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_assertenv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_clearconnectionerror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L499", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_coalescepending" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_decrypt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_encrypt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L411", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_getcredentialsforconnection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_getkey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L899", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_imap_socket_error_codes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L464", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_isautherror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_loadactiveconnections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L450", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L455", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_logerror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L899", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L383", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_markconnectionauthbroken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_ms_oauth_scopes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_pool" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_reconnect_delays_ms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_refreshandsavetokensdaemon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L813", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_refreshconnections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L302", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_refreshgoogletokensdaemon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L564", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_runsession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L498", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_scaninflight" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L479", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_sessions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L861", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_shutdown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L881", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_sleep" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L789", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_startsession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L800", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_stopsession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L501", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_triggerscan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_updateconnectionerror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_index_mjs", + "target": "imap_idle_index_updateidleheartbeat" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L580", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_updateconnectionerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L623", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_clearconnectionerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L622", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_updateidleheartbeat" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L816", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_refreshconnections", + "target": "imap_idle_index_loadactiveconnections" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_decrypt", + "target": "imap_idle_index_getkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_encrypt", + "target": "imap_idle_index_getkey" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L436", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_getcredentialsforconnection", + "target": "imap_idle_index_decrypt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_refreshandsavetokensdaemon", + "target": "imap_idle_index_decrypt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L319", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_refreshgoogletokensdaemon", + "target": "imap_idle_index_decrypt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_refreshandsavetokensdaemon", + "target": "imap_idle_index_encrypt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L347", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_refreshgoogletokensdaemon", + "target": "imap_idle_index_encrypt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L756", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_encrypt" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L427", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_getcredentialsforconnection", + "target": "imap_idle_index_refreshandsavetokensdaemon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L765", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_refreshandsavetokensdaemon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L425", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_getcredentialsforconnection", + "target": "imap_idle_index_refreshgoogletokensdaemon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L750", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_refreshgoogletokensdaemon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L578", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_markconnectionauthbroken" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L421", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_getcredentialsforconnection", + "target": "imap_idle_index_log" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L572", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_getcredentialsforconnection" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L902", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_main", + "target": "imap_idle_index_log" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L846", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_refreshconnections", + "target": "imap_idle_index_log" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L610", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_log" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L862", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_shutdown", + "target": "imap_idle_index_log" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L791", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_startsession", + "target": "imap_idle_index_log" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L803", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_stopsession", + "target": "imap_idle_index_log" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L507", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_triggerscan", + "target": "imap_idle_index_log" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L574", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_logerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L534", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_triggerscan", + "target": "imap_idle_index_logerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L729", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_isautherror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L632", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_triggerscan" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L712", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_runsession", + "target": "imap_idle_index_sleep" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L794", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_startsession", + "target": "imap_idle_index_runsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L827", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_refreshconnections", + "target": "imap_idle_index_startsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L834", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_refreshconnections", + "target": "imap_idle_index_stopsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L867", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_shutdown", + "target": "imap_idle_index_stopsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L906", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_main", + "target": "imap_idle_index_refreshconnections" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/index.mjs", + "source_location": "L900", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_index_main", + "target": "imap_idle_index_assertenv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_generate_pir_input_ts", + "target": "scripts_generate_pir_input_args" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_generate_pir_input_ts", + "target": "scripts_generate_pir_input_dryrun" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_generate_pir_input_ts", + "target": "scripts_generate_pir_input_fetchfromdb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_generate_pir_input_ts", + "target": "scripts_generate_pir_input_fetchfromhagezi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_generate_pir_input_ts", + "target": "scripts_generate_pir_input_formattxtpb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_generate_pir_input_ts", + "target": "scripts_generate_pir_input_getflag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_generate_pir_input_ts", + "target": "scripts_generate_pir_input_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_generate_pir_input_ts", + "target": "scripts_generate_pir_input_normalizedomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_generate_pir_input_ts", + "target": "scripts_generate_pir_input_outputpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_generate_pir_input_ts", + "target": "scripts_generate_pir_input_processdomains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_generate_pir_input_ts", + "target": "scripts_generate_pir_input_source" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_generate_pir_input_processdomains", + "target": "scripts_generate_pir_input_normalizedomain" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_generate_pir_input_main", + "target": "scripts_generate_pir_input_fetchfromdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_generate_pir_input_main", + "target": "scripts_generate_pir_input_fetchfromhagezi" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_generate_pir_input_main", + "target": "scripts_generate_pir_input_processdomains" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/generate-pir-input.ts", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_generate_pir_input_main", + "target": "scripts_generate_pir_input_formattxtpb" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/llm-bench.sh", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_llm_bench_sh", + "target": "scripts_llm_bench_anthropic_body" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/llm-bench.sh", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_llm_bench_sh", + "target": "scripts_llm_bench_benchn" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/llm-bench.sh", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_llm_bench_sh", + "target": "scripts_llm_bench_gemini_body" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/llm-bench.sh", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_llm_bench_sh", + "target": "scripts_llm_bench_openai_body" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/llm-bench.sh", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_llm_bench_sh", + "target": "scripts_llm_bench_ttfb_ms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/llm-bench.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_llm_bench_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_backend_scripts_llm_bench_sh__entry" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/llm-bench.sh", + "source_location": "L128", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_backend_scripts_llm_bench_sh__entry", + "target": "scripts_llm_bench_benchn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/seed-country-blocklists.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_seed_country_blocklists_ts", + "target": "scripts_seed_country_blocklists_db" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/seed-country-blocklists.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_seed_country_blocklists_ts", + "target": "scripts_seed_country_blocklists_initial_domains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/scripts/seed-country-blocklists.ts", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_scripts_seed_country_blocklists_ts", + "target": "scripts_seed_country_blocklists_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/Podfile.properties.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_podfile_properties_json", + "target": "ios_podfile_properties_json_ios_podfile_properties_ex_dev_client_network_inspector" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/Podfile.properties.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_podfile_properties_json", + "target": "ios_podfile_properties_json_ios_podfile_properties_expo_jsengine" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_appdelegate_swift", + "target": "rebreakmonorepo_appdelegate_appdelegate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_appdelegate_swift", + "target": "rebreakmonorepo_appdelegate_reactnativedelegate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreak_appdelegate_swift", + "target": "rebreakmonorepo_appdelegate_appdelegate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_exporeactnativefactorydelegate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L13", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_rctreactnativefactory" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_uiwindow" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "expoappdelegate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "ios_rebreakmonorepo_appdelegate_swift_exporeactnativefactorydelegate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "ios_rebreakmonorepo_appdelegate_swift_rctreactnativefactory" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "ios_rebreakmonorepo_appdelegate_swift_uiwindow" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "pkpushregistry" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "pkpushregistrydelegate" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "rebreak_appdelegate_appdelegate_application" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "rebreak_appdelegate_appdelegate_callidtouuid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "rebreak_appdelegate_appdelegate_pushregistry" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate", + "target": "rebreakmonorepo_appdelegate_appdelegate_application" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate", + "target": "expoappdelegate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate", + "target": "ios_rebreakmonorepo_appdelegate_swift_uiwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate_application", + "target": "ios_rebreakmonorepo_appdelegate_swift_uiwindow" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate", + "target": "ios_rebreakmonorepo_appdelegate_swift_exporeactnativefactorydelegate" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_reactnativedelegate", + "target": "ios_rebreakmonorepo_appdelegate_swift_exporeactnativefactorydelegate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate", + "target": "ios_rebreakmonorepo_appdelegate_swift_rctreactnativefactory" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate", + "target": "rebreakmonorepo_appdelegate_appdelegate_application" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate_application", + "target": "ios_rebreakmonorepo_appdelegate_swift_any" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L45", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate_application", + "target": "ios_rebreakmonorepo_appdelegate_swift_bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L45", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate_application", + "target": "ios_rebreakmonorepo_appdelegate_swift_nsuseractivity" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L45", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate_application", + "target": "ios_rebreakmonorepo_appdelegate_swift_uiapplication" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L45", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate_application", + "target": "ios_rebreakmonorepo_appdelegate_swift_uiuseractivityrestoring" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L36", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate_application", + "target": "ios_rebreakmonorepo_appdelegate_swift_url" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L45", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate_application", + "target": "ios_rebreakmonorepo_appdelegate_swift_void" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_appdelegate_application", + "target": "rebreakmonorepo_appdelegate_reactnativedelegate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L63", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_reactnativedelegate_bundleurl", + "target": "ios_rebreakmonorepo_appdelegate_swift_url" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L58", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_reactnativedelegate_sourceurl", + "target": "ios_rebreakmonorepo_appdelegate_swift_url" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate", + "target": "rebreakmonorepo_appdelegate_reactnativedelegate" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_reactnativedelegate", + "target": "rebreakmonorepo_appdelegate_reactnativedelegate_bundleurl" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_reactnativedelegate", + "target": "rebreakmonorepo_appdelegate_reactnativedelegate_sourceurl" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L58", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_reactnativedelegate_sourceurl", + "target": "ios_rebreakmonorepo_appdelegate_swift_rctbridge" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/AppDelegate.swift", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakmonorepo_appdelegate_reactnativedelegate_sourceurl", + "target": "rebreakmonorepo_appdelegate_reactnativedelegate_bundleurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/Images.xcassets/Contents.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_images_xcassets_contents_json", + "target": "ios_rebreakmonorepo_images_xcassets_contents_json_images_xcassets_contents_info" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/Images.xcassets/Contents.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_images_xcassets_contents_json_images_xcassets_contents_info", + "target": "ios_rebreakmonorepo_images_xcassets_contents_json_images_xcassets_contents_info_author" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/Images.xcassets/Contents.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_images_xcassets_contents_json_images_xcassets_contents_info", + "target": "ios_rebreakmonorepo_images_xcassets_contents_json_images_xcassets_contents_info_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/Images.xcassets/AppIcon.appiconset/Contents.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json", + "target": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_images" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/Images.xcassets/AppIcon.appiconset/Contents.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json", + "target": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_info" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/Images.xcassets/AppIcon.appiconset/Contents.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_info", + "target": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_info_author" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/Images.xcassets/AppIcon.appiconset/Contents.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_info", + "target": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_info_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/Images.xcassets/SplashScreenLegacy.imageset/Contents.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json", + "target": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_images" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/Images.xcassets/SplashScreenLegacy.imageset/Contents.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json", + "target": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/Images.xcassets/SplashScreenLegacy.imageset/Contents.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info", + "target": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info_author" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ios/rebreakmonorepo/Images.xcassets/SplashScreenLegacy.imageset/Contents.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info", + "target": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info_version" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-marketing.sh", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_marketing_sh", + "target": "scripts_deploy_marketing_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-marketing.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_marketing_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_marketing_sh__entry" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-marketing.sh", + "source_location": "L29", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_marketing_sh__entry", + "target": "scripts_deploy_marketing_log" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/dev.sh", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_dev_sh", + "target": "scripts_dev_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/dev.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_dev_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_scripts_dev_sh__entry" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "scripts/dev.sh", + "source_location": "L30", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_dev_sh__entry", + "target": "scripts_dev_log" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-admin-from-artifact.sh", + "source_location": "L17", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "scripts_deploy_admin_from_artifact_sh", + "target": "scripts_deploy_admin_from_artifact_log" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-admin-from-artifact.sh", + "source_location": "L18", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "scripts_deploy_admin_from_artifact_sh", + "target": "scripts_deploy_admin_from_artifact_log_err" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-admin-from-artifact.sh", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_admin_from_artifact_sh", + "target": "scripts_deploy_admin_from_artifact_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-admin-from-artifact.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_admin_from_artifact_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_admin_from_artifact_sh__entry" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-admin-from-artifact.sh", + "source_location": "L20", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_admin_from_artifact_sh__entry", + "target": "scripts_deploy_admin_from_artifact_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-admin-from-artifact.sh", + "source_location": "L25", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_admin_from_artifact_sh__entry", + "target": "scripts_deploy_admin_from_artifact_log_err" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy.sh", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_sh", + "target": "scripts_deploy_log" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy.sh", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_sh", + "target": "scripts_deploy_log_err" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy.sh", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_sh", + "target": "scripts_deploy_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_sh__entry" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy.sh", + "source_location": "L37", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_sh__entry", + "target": "scripts_deploy_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy.sh", + "source_location": "L66", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_sh__entry", + "target": "scripts_deploy_log_err" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-from-artifact.sh", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_from_artifact_sh", + "target": "scripts_deploy_from_artifact_log" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-from-artifact.sh", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_from_artifact_sh", + "target": "scripts_deploy_from_artifact_log_err" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-from-artifact.sh", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_from_artifact_sh", + "target": "scripts_deploy_from_artifact_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-from-artifact.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_from_artifact_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_from_artifact_sh__entry" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-from-artifact.sh", + "source_location": "L31", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_from_artifact_sh__entry", + "target": "scripts_deploy_from_artifact_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-from-artifact.sh", + "source_location": "L43", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_from_artifact_sh__entry", + "target": "scripts_deploy_from_artifact_log_err" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-webhook/server.mjs", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_webhook_server_mjs", + "target": "deploy_webhook_server_loadenvfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-webhook/server.mjs", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_webhook_server_mjs", + "target": "deploy_webhook_server_rundeploy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-webhook/server.mjs", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_webhook_server_mjs", + "target": "deploy_webhook_server_server" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "scripts/deploy-webhook/server.mjs", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_deploy_webhook_server_mjs", + "target": "deploy_webhook_server_verifysignature" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rationale_178", + "target": "ops_mdm_adguard_handshake_watcher_watcher_py" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_adguard_handshake_watcher_watcher_py", + "target": "adguard_handshake_watcher_watcher_cooldown_ok" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_adguard_handshake_watcher_watcher_py", + "target": "adguard_handshake_watcher_watcher_extract_client_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_adguard_handshake_watcher_watcher_py", + "target": "adguard_handshake_watcher_watcher_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_adguard_handshake_watcher_watcher_py", + "target": "adguard_handshake_watcher_watcher_mark_fired" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_adguard_handshake_watcher_watcher_py", + "target": "adguard_handshake_watcher_watcher_post_handshake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_adguard_handshake_watcher_watcher_py", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_adguard_handshake_watcher_watcher_py", + "target": "datetime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_adguard_handshake_watcher_watcher_py", + "target": "time" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_cooldown_ok", + "target": "ops_mdm_adguard_handshake_watcher_watcher_py_bool" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_cooldown_ok", + "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L288", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_main", + "target": "adguard_handshake_watcher_watcher_cooldown_ok" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rationale_68", + "target": "adguard_handshake_watcher_watcher_cooldown_ok" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_extract_client_id", + "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_mark_fired", + "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_post_handshake", + "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rotationsafetailer_init", + "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L242", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rotationsafetailer_readline", + "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_post_handshake", + "target": "adguard_handshake_watcher_watcher_mark_fired" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L290", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_main", + "target": "adguard_handshake_watcher_watcher_post_handshake" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rationale_82", + "target": "adguard_handshake_watcher_watcher_post_handshake" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_main", + "target": "adguard_handshake_watcher_watcher_extract_client_id" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rationale_185", + "target": "adguard_handshake_watcher_watcher_extract_client_id" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L280", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_main", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rationale_206", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rotationsafetailer", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer_init" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rotationsafetailer", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer_open" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L242", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rotationsafetailer", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer_readline" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L237", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rotationsafetailer", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer_seek_to_end_on_first_open" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L216", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rotationsafetailer_init", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer_open" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L248", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rotationsafetailer_readline", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer_open" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L281", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_main", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer_seek_to_end_on_first_open" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rationale_238", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer_seek_to_end_on_first_open" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L284", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_main", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer_readline" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "adguard_handshake_watcher_watcher_rationale_243", + "target": "adguard_handshake_watcher_watcher_rotationsafetailer_readline" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_confirm" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_die" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_dim" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_err" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_info" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_log" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_ok" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_run" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_state_file_for" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_state_load" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_state_set" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_usage" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "bootstrap_tool_rebreak_supervise_warn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L264", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_confirm" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L177", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_die" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L257", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_dim" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L146", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_err" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L172", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_info" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L158", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L179", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_ok" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L269", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_run" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L225", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_state_load" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L233", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_state_set" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L145", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_usage" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L165", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", + "target": "bootstrap_tool_rebreak_supervise_warn" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L62", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "bootstrap_tool_rebreak_supervise_dim", + "target": "bootstrap_tool_rebreak_supervise_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L60", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "bootstrap_tool_rebreak_supervise_err", + "target": "bootstrap_tool_rebreak_supervise_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L61", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "bootstrap_tool_rebreak_supervise_info", + "target": "bootstrap_tool_rebreak_supervise_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L58", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "bootstrap_tool_rebreak_supervise_ok", + "target": "bootstrap_tool_rebreak_supervise_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L59", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "bootstrap_tool_rebreak_supervise_warn", + "target": "bootstrap_tool_rebreak_supervise_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L64", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "bootstrap_tool_rebreak_supervise_die", + "target": "bootstrap_tool_rebreak_supervise_err" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L68", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "bootstrap_tool_rebreak_supervise_confirm", + "target": "bootstrap_tool_rebreak_supervise_dim" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", + "source_location": "L76", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "bootstrap_tool_rebreak_supervise_run", + "target": "bootstrap_tool_rebreak_supervise_dim" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/tl-patcher/main.go", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_tl_patcher_main_go", + "target": "tl_patcher_main_main" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/tl-patcher/main.go", + "source_location": "L44", + "weight": 1.0, + "source": "tl_patcher_main_main", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/dump-artifacts/main.go", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_dump_artifacts_main_go", + "target": "dump_artifacts_main_main" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/dump-artifacts/main.go", + "source_location": "L41", + "weight": 1.0, + "source": "dump_artifacts_main_main", + "target": "mobilebackup2_manifest_db_buildmanifestdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/dump-artifacts/main.go", + "source_location": "L41", + "weight": 1.0, + "source": "dump_artifacts_main_main", + "target": "mobilebackup2_manifest_db_defaultrestoreentries" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/dump-artifacts/main.go", + "source_location": "L39", + "weight": 1.0, + "source": "dump_artifacts_main_main", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", + "target": "usbmux_proxy_main_dumpchunk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", + "target": "usbmux_proxy_main_dumphex" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", + "target": "usbmux_proxy_main_handlesession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", + "target": "usbmux_proxy_main_indent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", + "target": "usbmux_proxy_main_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", + "target": "usbmux_proxy_main_pipewithlog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", + "target": "usbmux_proxy_main_tryparseplist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", + "target": "usbmux_proxy_mitm" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L55", + "weight": 1.0, + "source": "usbmux_proxy_main_main", + "target": "cert_identity_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "usbmux_proxy_main_main", + "target": "usbmux_proxy_main_handlesession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "usbmux_proxy_main_main", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L171", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "usbmux_proxy_main_dumpchunk", + "target": "usbmux_proxy_mitm" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L230", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "usbmux_proxy_main_dumphex", + "target": "usbmux_proxy_mitm" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L114", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "usbmux_proxy_main_handlesession", + "target": "usbmux_proxy_mitm" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L147", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "usbmux_proxy_main_pipewithlog", + "target": "usbmux_proxy_mitm" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L212", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "usbmux_proxy_main_tryparseplist", + "target": "usbmux_proxy_mitm" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", "source_location": "L99", "weight": 1.0, "context": "field", "confidence_score": 1.0, - "source": "views_superviseview_superviseview", - "target": "view" + "source": "usbmux_proxy_mitm", + "target": "mutex" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", - "source_location": "L10", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L100", "weight": 1.0, "context": "field", "confidence_score": 1.0, - "source": "views_welcomeview_welcomeview", - "target": "view" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", - "source_location": "L80", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "views_welcomeview_welcomeview_devicecard", - "target": "view" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L6", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "macdeviceinfo" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L112", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_macregistrationview_macregistrationview_macinfocard", - "target": "macdeviceinfo" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L10", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L136", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_macregistrationview_macregistrationview_errorcard", - "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L316", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_macregistrationview_macregistrationview_pollbackendactive", - "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L169", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_macregistrationview_macregistrationview_successcard", - "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string" + "source": "usbmux_proxy_mitm", + "target": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go_file" }, { "relation": "method", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L112", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L104", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "views_macregistrationview_macregistrationview_macinfocard" + "source": "usbmux_proxy_mitm", + "target": "usbmux_proxy_mitm_printf" }, { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L136", + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L133", "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "views_macregistrationview_macregistrationview_errorcard" + "source": "dlmessage_conn_receive", + "target": "usbmux_proxy_mitm_printf" }, { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L169", + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L94", "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "views_macregistrationview_macregistrationview_successcard" + "source": "dlmessage_conn_send", + "target": "usbmux_proxy_mitm_printf" }, { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L184", + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L186", "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "views_macregistrationview_macregistrationview_loadmacinfo" + "source": "mobilebackup2_client_baseversionexchange", + "target": "usbmux_proxy_mitm_printf" }, { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L199", + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L291", "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "views_macregistrationview_macregistrationview_checkprofilestatus" + "source": "mobilebackup2_client_sendhello", + "target": "usbmux_proxy_mitm_printf" }, { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L210", + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L329", "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "views_macregistrationview_macregistrationview_handleregistration" + "source": "mobilebackup2_client_start", + "target": "usbmux_proxy_mitm_printf" }, { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L223", + "weight": 1.0, + "source": "supervise_flow_makelogger", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L46", + "weight": 1.0, + "source": "supervise_flow_supervise", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L285", + "weight": 1.0, + "source": "supervise_flow_unsupervise", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L164", + "weight": 1.0, + "source": "supervise_main_runcertinfo", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L142", + "weight": 1.0, + "source": "supervise_main_runcheck", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L211", + "weight": 1.0, + "source": "supervise_main_runcloudconfig", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", "source_location": "L234", "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "views_macregistrationview_macregistrationview_handleprofileinstall" + "source": "supervise_main_runsupervise", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L285", + "weight": 1.0, + "source": "supervise_main_rununsupervise", + "target": "usbmux_proxy_mitm_printf" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L280", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L180", "weight": 1.0, "confidence_score": 1.0, - "source": "views_macregistrationview_macregistrationview_handleprofileinstall", - "target": "views_macregistrationview_macregistrationview_pollbackendactive" + "source": "usbmux_proxy_main_dumpchunk", + "target": "usbmux_proxy_mitm_printf" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L264", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L249", "weight": 1.0, "confidence_score": 1.0, - "source": "views_macregistrationview_macregistrationview_handleprofileinstall", - "target": "views_macregistrationview_macregistrationview_polluntilprofileinstalled" + "source": "usbmux_proxy_main_dumphex", + "target": "usbmux_proxy_mitm_printf" }, { - "relation": "method", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L306", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L116", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "views_macregistrationview_macregistrationview_polluntilprofileinstalled" + "source": "usbmux_proxy_main_handlesession", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "usbmux_proxy_main_pipewithlog", + "target": "usbmux_proxy_mitm_printf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "usbmux_proxy_main_tryparseplist", + "target": "usbmux_proxy_mitm_printf" }, { "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L306", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L114", "weight": 1.0, "context": "parameter_type", "confidence_score": 1.0, - "source": "views_macregistrationview_macregistrationview_polluntilprofileinstalled", - "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_int" + "source": "usbmux_proxy_main_handlesession", + "target": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go_conn" }, { - "relation": "references", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L306", - "weight": 1.0, - "context": "return_type", - "source": "views_macregistrationview_macregistrationview_polluntilprofileinstalled", - "target": "bool", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L316", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_macregistrationview_macregistrationview_pollbackendactive", - "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_int" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L316", - "weight": 1.0, - "context": "return_type", - "source": "views_macregistrationview_macregistrationview_pollbackendactive", - "target": "bool", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", - "source_location": "L316", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L131", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_magic_mac_registration_view", - "target": "views_macregistrationview_macregistrationview_pollbackendactive" + "source": "usbmux_proxy_main_handlesession", + "target": "usbmux_proxy_main_pipewithlog" }, { - "relation": "contains", + "relation": "references", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L1", - "weight": 1.0, - "source": "apps_rebreak_native_maestro_setup_md", - "target": "maestro_setup_maestro_e2e_local_setup_phase_a", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L274", - "weight": 1.0, - "source": "maestro_setup_maestro_e2e_local_setup_phase_a", - "target": "maestro_setup_10_run_befehle_phase_a", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L303", - "weight": 1.0, - "source": "maestro_setup_maestro_e2e_local_setup_phase_a", - "target": "maestro_setup_11_phase_b_maestro_cloud_zukunft_post_testflight", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L8", - "weight": 1.0, - "source": "maestro_setup_maestro_e2e_local_setup_phase_a", - "target": "maestro_setup_1_maestro_cli_installieren", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L29", - "weight": 1.0, - "source": "maestro_setup_maestro_e2e_local_setup_phase_a", - "target": "maestro_setup_2_app_auf_device_simulator_bauen", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L80", - "weight": 1.0, - "source": "maestro_setup_maestro_e2e_local_setup_phase_a", - "target": "maestro_setup_3_env_vars_setzen", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L122", - "weight": 1.0, - "source": "maestro_setup_maestro_e2e_local_setup_phase_a", - "target": "maestro_setup_4_flows_ausfuehren", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L155", - "weight": 1.0, - "source": "maestro_setup_maestro_e2e_local_setup_phase_a", - "target": "maestro_setup_5_flow_entwicklung_maestro_studio", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L169", - "weight": 1.0, - "source": "maestro_setup_maestro_e2e_local_setup_phase_a", - "target": "maestro_setup_6_tipps_fuer_stabile_flows", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L202", - "weight": 1.0, - "source": "maestro_setup_maestro_e2e_local_setup_phase_a", - "target": "maestro_setup_7_app_state_vor_test_lauf", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L218", - "weight": 1.0, - "source": "maestro_setup_maestro_e2e_local_setup_phase_a", - "target": "maestro_setup_8_flow_uebersicht", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L260", - "weight": 1.0, - "source": "maestro_setup_maestro_e2e_local_setup_phase_a", - "target": "maestro_setup_9_neue_env_vars_fuer_phase_a_flows", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L59", - "weight": 1.0, - "source": "maestro_setup_2_app_auf_device_simulator_bauen", - "target": "maestro_setup_android_emulator", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L73", - "weight": 1.0, - "source": "maestro_setup_2_app_auf_device_simulator_bauen", - "target": "maestro_setup_bundle_id", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L33", - "weight": 1.0, - "source": "maestro_setup_2_app_auf_device_simulator_bauen", - "target": "maestro_setup_ios_simulator", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L84", - "weight": 1.0, - "source": "maestro_setup_3_env_vars_setzen", - "target": "maestro_setup_option_a_direktes_env_flag", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L93", - "weight": 1.0, - "source": "maestro_setup_3_env_vars_setzen", - "target": "maestro_setup_option_b_infisical_wrapper", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L111", - "weight": 1.0, - "source": "maestro_setup_3_env_vars_setzen", - "target": "maestro_setup_test_account_aktueller_stand", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L132", - "weight": 1.0, - "source": "maestro_setup_4_flows_ausfuehren", - "target": "maestro_setup_alle_flows_sequenziell", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L124", - "weight": 1.0, - "source": "maestro_setup_4_flows_ausfuehren", - "target": "maestro_setup_einen_einzelnen_flow", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", "source_location": "L147", "weight": 1.0, - "source": "maestro_setup_4_flows_ausfuehren", - "target": "maestro_setup_spezifische_subdirectory", - "confidence_score": 1.0 + "context": "parameter_type", + "confidence_score": 1.0, + "source": "usbmux_proxy_main_pipewithlog", + "target": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go_conn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "usbmux_proxy_main_pipewithlog", + "target": "usbmux_proxy_main_dumpchunk" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "usbmux_proxy_main_dumpchunk", + "target": "usbmux_proxy_main_dumphex" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "usbmux_proxy_main_dumpchunk", + "target": "usbmux_proxy_main_tryparseplist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "usbmux_proxy_main_tryparseplist", + "target": "usbmux_proxy_main_dumphex" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "usbmux_proxy_main_tryparseplist", + "target": "usbmux_proxy_main_indent" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L220", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L73", "weight": 1.0, - "source": "maestro_setup_8_flow_uebersicht", - "target": "maestro_setup_bestehende_flows_phase_a", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_cliopts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/SETUP.md", - "source_location": "L235", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L274", "weight": 1.0, - "source": "maestro_setup_8_flow_uebersicht", - "target": "maestro_setup_neue_flows_phase_a_kritische_coverage", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_flow_unsupervise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L303", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_main_confirm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L265", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_main_defaultbackuppath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_main_dlmsgdebugset" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L311", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_main_exitonerr" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_main_init" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_main_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_main_runcertinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_main_runcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_main_runcloudconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_main_runsupervise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", + "target": "supervise_main_rununsupervise" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_main_main", + "target": "supervise_main_dlmsgdebugset" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L274", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_flow_unsupervise", + "target": "supervise_cliopts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L162", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_main_runcertinfo", + "target": "supervise_cliopts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L129", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_main_runcheck", + "target": "supervise_cliopts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L176", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_main_runcloudconfig", + "target": "supervise_cliopts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L221", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_main_runsupervise", + "target": "supervise_cliopts" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L274", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_main_rununsupervise", + "target": "supervise_cliopts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_main_main", + "target": "supervise_flow_unsupervise" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_main_main", + "target": "supervise_main_exitonerr" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_main_main", + "target": "supervise_main_runcertinfo" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_main_main", + "target": "supervise_main_runcheck" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_main_main", + "target": "supervise_main_runcloudconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_main_main", + "target": "supervise_main_runsupervise" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_main_main", + "target": "supervise_main_rununsupervise" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L130", + "weight": 1.0, + "source": "supervise_main_runcheck", + "target": "device_lockdown_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L163", + "weight": 1.0, + "source": "supervise_main_runcertinfo", + "target": "cert_cert_defaultdir" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L165", + "weight": 1.0, + "source": "supervise_main_runcertinfo", + "target": "cert_cert_loadorcreate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L177", + "weight": 1.0, + "source": "supervise_main_runcloudconfig", + "target": "device_lockdown_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L222", + "weight": 1.0, + "source": "supervise_main_runsupervise", + "target": "device_lockdown_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_main_runsupervise", + "target": "supervise_main_confirm" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_main_runsupervise", + "target": "supervise_main_defaultbackuppath" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_unsupervise", + "target": "supervise_main_defaultbackuppath" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L275", + "weight": 1.0, + "source": "supervise_main_rununsupervise", + "target": "device_lockdown_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L292", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_main_rununsupervise", + "target": "supervise_main_confirm" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L292", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_unsupervise", + "target": "supervise_main_confirm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/experiment-run.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_tools_experiment_run_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_supervise_magic_tools_experiment_run_sh__entry" }, { "relation": "defines", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing-loggedin.sh", + "source_file": "ops/mdm/supervise-magic/tools/ab-profile.sh", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_tools_ab_profile_sh", + "target": "tools_ab_profile_rebreak_mb2_serve_timeout_sec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/ab-profile.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_tools_ab_profile_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_supervise_magic_tools_ab_profile_sh__entry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", + "target": "mobilebackup2_embed_formatbackupdate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", + "target": "mobilebackup2_embed_renderinfoplist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", + "target": "mobilebackup2_embed_rendermanifestplist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", + "target": "mobilebackup2_embed_renderstatusplist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", + "target": "mobilebackup2_embed_rendertemplate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", + "target": "mobilebackup2_embed_tlmanifestdb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", + "target": "mobilebackup2_embed_tlmanifestplist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", + "target": "mobilebackup2_embed_tlstatusplist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", + "target": "mobilebackup2_templatevars" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L104", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "mobilebackup2_embed_tlmanifestdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L94", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "mobilebackup2_embed_tlstatusplist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L95", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "mobilebackup2_embed_tlmanifestplist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L76", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mobilebackup2_embed_renderinfoplist", + "target": "mobilebackup2_templatevars" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L71", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mobilebackup2_embed_rendermanifestplist", + "target": "mobilebackup2_templatevars" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L66", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mobilebackup2_embed_renderstatusplist", + "target": "mobilebackup2_templatevars" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L80", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mobilebackup2_embed_rendertemplate", + "target": "mobilebackup2_templatevars" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_embed_renderstatusplist", + "target": "mobilebackup2_embed_rendertemplate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L81", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "mobilebackup2_embed_renderstatusplist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_embed_rendermanifestplist", + "target": "mobilebackup2_embed_rendertemplate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L89", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "mobilebackup2_embed_rendermanifestplist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_embed_renderinfoplist", + "target": "mobilebackup2_embed_rendertemplate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L85", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "mobilebackup2_embed_renderinfoplist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L81", + "weight": 1.0, + "source": "mobilebackup2_embed_rendertemplate", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", + "source_location": "L93", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mobilebackup2_embed_formatbackupdate", + "target": "time" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L54", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "mobilebackup2_embed_formatbackupdate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go", + "target": "mobilebackup2_fileprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go", + "target": "mobilebackup2_fileserver_parseerrorcode" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L241", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mobilebackup2_client_sendfiles", + "target": "mobilebackup2_fileprovider" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L56", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mobilebackup2_client_servefiles", + "target": "mobilebackup2_fileprovider" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L320", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go_mobilebackup2_client", + "target": "mobilebackup2_client_receivefiles" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go_mobilebackup2_client", + "target": "mobilebackup2_client_sendfiles" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go_mobilebackup2_client", + "target": "mobilebackup2_client_sendstatusok" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go_mobilebackup2_client", + "target": "mobilebackup2_client_servefiles" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L303", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go_mobilebackup2_client", + "target": "mobilebackup2_client_writerawu32" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_servefiles", + "target": "mobilebackup2_client_receivefiles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_servefiles", + "target": "mobilebackup2_client_sendfiles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_servefiles", + "target": "mobilebackup2_client_sendstatusok" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_servefiles", + "target": "mobilebackup2_fileserver_parseerrorcode" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L300", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_sendfiles", + "target": "mobilebackup2_client_sendstatusok" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", + "source_location": "L247", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_sendfiles", + "target": "mobilebackup2_client_writerawu32" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go", + "target": "mobilebackup2_deviceconnreadwriter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L337", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go", + "target": "mobilebackup2_mobilebackup2_envbool" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go", + "target": "mobilebackup2_mobilebackup2_open" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go", + "target": "mobilebackup2_mobilebackup2_plistunmarshal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go", + "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L60", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mobilebackup2_mobilebackup2_open", + "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", + "target": "mobilebackup2_client_baseversionexchange" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", + "target": "mobilebackup2_client_close" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", + "target": "mobilebackup2_client_hello" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", + "target": "mobilebackup2_client_protocolversion" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L242", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", + "target": "mobilebackup2_client_receive" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L281", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", + "target": "mobilebackup2_client_sendhello" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", + "target": "mobilebackup2_client_sendrequest" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", + "target": "mobilebackup2_client_sendstatusresponse" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L298", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", + "target": "mobilebackup2_client_start" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L49", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", + "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_conn" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L48", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", + "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_deviceconnectioninterface" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L138", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "mobilebackup2_deviceconnreadwriter", + "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_deviceconnectioninterface" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L131", + "weight": 1.0, + "source": "mobilebackup2_mobilebackup2_open", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_mobilebackup2_open", + "target": "mobilebackup2_client_close" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_mobilebackup2_open", + "target": "mobilebackup2_mobilebackup2_plistunmarshal" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L60", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mobilebackup2_mobilebackup2_open", + "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_deviceentry" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_deviceconnreadwriter", + "target": "mobilebackup2_deviceconnreadwriter_read" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_deviceconnreadwriter", + "target": "mobilebackup2_deviceconnreadwriter_write" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_baseversionexchange", + "target": "mobilebackup2_client_receive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_hello", + "target": "mobilebackup2_client_sendrequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L282", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_sendhello", + "target": "mobilebackup2_client_sendrequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L330", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_start", + "target": "mobilebackup2_client_sendrequest" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_hello", + "target": "mobilebackup2_client_receive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_sendhello", + "target": "mobilebackup2_client_receive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", + "source_location": "L311", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_client_start", + "target": "mobilebackup2_mobilebackup2_envbool" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_manifest_db_go", + "target": "mobilebackup2_dbentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_manifest_db_go", + "target": "mobilebackup2_manifest_db_buildmanifestdb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_manifest_db_go", + "target": "mobilebackup2_manifest_db_computefileid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_manifest_db_go", + "target": "mobilebackup2_manifest_db_defaultrestoreentries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mobilebackup2_manifest_db_go", + "target": "mobilebackup2_manifest_db_encodembfile" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", + "source_location": "L50", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mobilebackup2_manifest_db_buildmanifestdb", + "target": "mobilebackup2_dbentry" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", + "source_location": "L238", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mobilebackup2_manifest_db_defaultrestoreentries", + "target": "mobilebackup2_dbentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_manifest_db_buildmanifestdb", + "target": "mobilebackup2_manifest_db_computefileid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mobilebackup2_manifest_db_buildmanifestdb", + "target": "mobilebackup2_manifest_db_encodembfile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L109", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "mobilebackup2_manifest_db_buildmanifestdb" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", + "source_location": "L148", + "weight": 1.0, + "source": "mobilebackup2_manifest_db_computefileid", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L120", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "mobilebackup2_manifest_db_computefileid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L107", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "mobilebackup2_manifest_db_defaultrestoreentries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_dlmessage_dlmessage_go", + "target": "dlmessage_conn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_dlmessage_dlmessage_go", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "dlmessage_conn", + "target": "dlmessage_conn_receive" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "dlmessage_conn", + "target": "dlmessage_conn_receiveprocessmessage" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "dlmessage_conn", + "target": "dlmessage_conn_send" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "dlmessage_conn", + "target": "dlmessage_conn_sendprocessmessage" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "dlmessage_conn", + "target": "dlmessage_conn_sendstatusresponse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L55", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "dlmessage_conn", + "target": "readwriter" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L59", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "dlmessage_dlmessage_new", + "target": "dlmessage_conn" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L59", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "dlmessage_dlmessage_new", + "target": "readwriter" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", + "source_location": "L28", + "weight": 1.0, + "source": "afclock_afclock_acquire", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L29", + "weight": 1.0, + "source": "device_lockdown_connect", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "dlmessage_conn_receive", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "dlmessage_conn_receiveprocessmessage", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L171", + "weight": 1.0, + "source": "mcinstall_mcinstall_escalateunsupervised", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L52", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L199", + "weight": 1.0, + "source": "supervise_flow_supervise", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L118", + "weight": 1.0, + "source": "supervise_flow_superviseescalated", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L193", + "weight": 1.0, + "source": "supervise_flow_unsupervise", + "target": "dlmessage_dlmessage_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "dlmessage_conn_sendprocessmessage", + "target": "dlmessage_conn_send" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "dlmessage_conn_sendstatusresponse", + "target": "dlmessage_conn_send" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "dlmessage_conn_receiveprocessmessage", + "target": "dlmessage_conn_receive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_notification_proxy_np_go", + "target": "notification_proxy_client" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_notification_proxy_np_go", + "target": "notification_proxy_np_open" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_notification_proxy_np_go", + "target": "notification_proxy_np_postonce" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification_proxy_client", + "target": "notification_proxy_client_close" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification_proxy_client", + "target": "notification_proxy_client_postnotification" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L30", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "notification_proxy_client", + "target": "ops_mdm_supervise_magic_internal_notification_proxy_np_go_deviceconnectioninterface" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L31", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "notification_proxy_client", + "target": "ops_mdm_supervise_magic_internal_notification_proxy_np_go_plistcodec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L35", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "notification_proxy_np_open", + "target": "notification_proxy_client" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L35", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "notification_proxy_np_open", + "target": "ops_mdm_supervise_magic_internal_notification_proxy_np_go_deviceentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification_proxy_np_postonce", + "target": "notification_proxy_np_open" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L55", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "notification_proxy_np_postonce", + "target": "ops_mdm_supervise_magic_internal_notification_proxy_np_go_deviceentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification_proxy_np_postonce", + "target": "notification_proxy_client_close" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification_proxy_np_postonce", + "target": "notification_proxy_client_postnotification" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L151", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "notification_proxy_np_postonce" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_cert_cert_go", + "target": "cert_cert_defaultdir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_cert_cert_go", + "target": "cert_cert_generate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_cert_cert_go", + "target": "cert_cert_load" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_cert_cert_go", + "target": "cert_cert_loadorcreate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_cert_cert_go", + "target": "cert_identity" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L81", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "cert_cert_generate", + "target": "cert_identity" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L60", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "cert_cert_load", + "target": "cert_identity" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L35", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "cert_cert_loadorcreate", + "target": "cert_identity" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cert_identity", + "target": "cert_identity_parse" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cert_identity", + "target": "cert_identity_save" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cert_cert_loadorcreate", + "target": "cert_cert_defaultdir" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cert_cert_loadorcreate", + "target": "cert_cert_generate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cert_cert_loadorcreate", + "target": "cert_cert_load" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cert_cert_loadorcreate", + "target": "cert_identity_save" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L43", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "cert_cert_loadorcreate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L80", + "weight": 1.0, + "source": "supervise_flow_superviseescalated", + "target": "cert_cert_loadorcreate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L142", + "weight": 1.0, + "source": "supervise_flow_supervisefresh", + "target": "cert_cert_loadorcreate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L111", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "cert_identity_parse", + "target": "ops_mdm_supervise_magic_internal_cert_cert_go_certificate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", + "source_location": "L111", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "cert_identity_parse", + "target": "privatekey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_device_lockdown_go", + "target": "device_conn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_device_lockdown_go", + "target": "device_lockdown_connect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_device_lockdown_go", + "target": "device_lockdown_waitforreconnect" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn", + "target": "device_conn_activationstate" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn", + "target": "device_conn_close" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn", + "target": "device_conn_device" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn", + "target": "device_conn_findmyenabled" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn", + "target": "device_conn_getvaluefordomain" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn", + "target": "device_conn_info" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn", + "target": "device_conn_issupervised" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn", + "target": "device_conn_reboot" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn", + "target": "device_conn_udid" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "device_conn", + "target": "ops_mdm_supervise_magic_internal_device_lockdown_go_deviceentry" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L23", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "device_lockdown_connect", + "target": "device_conn" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L137", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "device_lockdown_waitforreconnect", + "target": "device_conn" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L48", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "device_conn_device", + "target": "ops_mdm_supervise_magic_internal_device_lockdown_go_deviceentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_lockdown_waitforreconnect", + "target": "device_lockdown_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L283", + "weight": 1.0, + "source": "supervise_flow_backup_commitviamcinstall", + "target": "device_lockdown_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L32", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "device_lockdown_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L49", + "weight": 1.0, + "source": "supervise_flow_supervise", + "target": "device_lockdown_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L73", + "weight": 1.0, + "source": "supervise_flow_superviseescalated", + "target": "device_lockdown_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L135", + "weight": 1.0, + "source": "supervise_flow_supervisefresh", + "target": "device_lockdown_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", + "source_location": "L275", + "weight": 1.0, + "source": "supervise_flow_unsupervise", + "target": "device_lockdown_connect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn_activationstate", + "target": "device_conn_info" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn_findmyenabled", + "target": "device_conn_info" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "device_conn_getvaluefordomain", + "target": "device_conn_close" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", + "source_location": "L137", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "device_lockdown_waitforreconnect", + "target": "ops_mdm_supervise_magic_internal_device_lockdown_go_duration" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L224", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "device_lockdown_waitforreconnect" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L177", + "weight": 1.0, + "source": "supervise_flow_supervisefresh", + "target": "device_lockdown_waitforreconnect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", + "target": "cloudconfig_buildoptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", + "target": "cloudconfig_writer_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", + "target": "cloudconfig_writer_envbool" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", + "target": "cloudconfig_writer_envint64" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", + "target": "cloudconfig_writer_mergeskipsetup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", + "target": "cloudconfig_writer_tointerfaceslice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", + "source_location": "L47", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "cloudconfig_writer_build", + "target": "cloudconfig_buildoptions" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cloudconfig_writer_build", + "target": "cloudconfig_writer_envbool" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cloudconfig_writer_build", + "target": "cloudconfig_writer_envint64" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cloudconfig_writer_build", + "target": "cloudconfig_writer_mergeskipsetup" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cloudconfig_writer_build", + "target": "cloudconfig_writer_tointerfaceslice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go", + "target": "mcinstall_client" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go", + "target": "mcinstall_mcinstall_escalateunsupervised" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go", + "target": "mcinstall_mcinstall_open" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go", + "target": "mcinstall_superviseconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go", + "target": "supervise_flow_supervise" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "mcinstall_client_close" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "mcinstall_client_escalate" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "mcinstall_client_flush" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "mcinstall_client_getcloudconfiguration" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "mcinstall_client_hellohostidentifier" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "mcinstall_client_sendandreceive" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "mcinstall_client_setcloudconfiguration" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "mcinstall_client_supervise" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "mcinstall_client_unsupervise" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L28", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go_deviceconnectioninterface" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L29", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go_plistcodec" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "supervise_flow_supervise" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client", + "target": "supervise_flow_unsupervise" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L33", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "mcinstall_mcinstall_open", + "target": "mcinstall_client" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L33", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mcinstall_mcinstall_open", + "target": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go_deviceentry" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L170", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mcinstall_mcinstall_escalateunsupervised", + "target": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go_deviceentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_mcinstall_escalateunsupervised", + "target": "mcinstall_client_close" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_escalate", + "target": "mcinstall_client_sendandreceive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_flush", + "target": "mcinstall_client_sendandreceive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_getcloudconfiguration", + "target": "mcinstall_client_sendandreceive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_hellohostidentifier", + "target": "mcinstall_client_sendandreceive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_setcloudconfiguration", + "target": "mcinstall_client_sendandreceive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_supervise", + "target": "mcinstall_client_flush" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L237", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_unsupervise", + "target": "mcinstall_client_flush" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_supervise", + "target": "mcinstall_client_flush" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L237", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_unsupervise", + "target": "mcinstall_client_flush" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_supervise", + "target": "mcinstall_client_hellohostidentifier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L240", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_unsupervise", + "target": "mcinstall_client_hellohostidentifier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_supervise", + "target": "mcinstall_client_hellohostidentifier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L240", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_unsupervise", + "target": "mcinstall_client_hellohostidentifier" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_supervise", + "target": "mcinstall_client_getcloudconfiguration" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_supervise", + "target": "mcinstall_client_getcloudconfiguration" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_unsupervise", + "target": "mcinstall_client_getcloudconfiguration" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_supervise", + "target": "mcinstall_client_setcloudconfiguration" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mcinstall_client_unsupervise", + "target": "mcinstall_client_setcloudconfiguration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L128", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mcinstall_client_escalate", + "target": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go_certificate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_location": "L197", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "mcinstall_client_supervise", + "target": "mcinstall_superviseconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_afclock_afclock_go", + "target": "afclock_afclock_acquire" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", "source_location": "L20", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_maestro_screens_capture_marketing_loggedin_sh", - "target": "screens_capture_marketing_loggedin_path" + "source": "ops_mdm_supervise_magic_internal_afclock_afclock_go", + "target": "afclock_synclock" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", + "source_location": "L27", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "afclock_afclock_acquire", + "target": "afclock_synclock" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "afclock_synclock", + "target": "afclock_synclock_release" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "afclock_synclock", + "target": "ops_mdm_supervise_magic_internal_afclock_afclock_go_client" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "afclock_synclock", + "target": "ops_mdm_supervise_magic_internal_afclock_afclock_go_file" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", + "source_location": "L27", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "afclock_afclock_acquire", + "target": "ops_mdm_supervise_magic_internal_afclock_afclock_go_deviceentry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L156", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "afclock_afclock_acquire" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing-loggedin.sh", - "source_location": "L1", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L353", "weight": 1.0, - "source": "apps_rebreak_native_maestro_screens_capture_marketing_loggedin_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_maestro_screens_capture_marketing_loggedin_sh__entry", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go", + "target": "supervise_flow_backup_asstring" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go", + "target": "supervise_flow_backup_commitviamcinstall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go", + "target": "supervise_flow_backup_servefileswithtimeout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go", + "target": "supervise_flow_backup_superviseviabackup" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_duration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L28", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "options" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "supervise_flow_backup_asstring" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "supervise_flow_backup_commitviamcinstall" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "supervise_flow_backup_servefileswithtimeout" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L29", + "weight": 1.0, + "source": "supervise_flow_backup_superviseviabackup", + "target": "supervise_flow_makelogger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L63", + "weight": 1.0, + "source": "supervise_flow_supervise", + "target": "supervise_flow_backup_superviseviabackup" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L266", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_flow_backup_commitviamcinstall", + "target": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_conn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L276", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_backup_commitviamcinstall", + "target": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_duration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L363", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_flow_backup_servefileswithtimeout", + "target": "fileprovider" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L363", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_flow_backup_servefileswithtimeout", + "target": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_client" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", + "source_location": "L363", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_flow_backup_servefileswithtimeout", + "target": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_duration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", + "target": "supervise_flow_backupcurrentconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", + "target": "supervise_flow_makelogger" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", + "target": "supervise_flow_supervise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", + "target": "supervise_flow_superviseescalated" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", + "target": "supervise_flow_supervisefresh" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", + "target": "supervise_flow_unsupervise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", + "target": "supervise_options" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L40", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_flow_supervise", + "target": "supervise_options" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L69", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_flow_superviseescalated", + "target": "supervise_options" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L131", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_flow_supervisefresh", + "target": "supervise_options" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L189", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_flow_unsupervise", + "target": "supervise_options" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_supervise", + "target": "supervise_flow_superviseescalated" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_supervise", + "target": "supervise_flow_supervisefresh" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_superviseescalated", + "target": "supervise_flow_makelogger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_supervisefresh", + "target": "supervise_flow_makelogger" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L190", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_flow_unsupervise", + "target": "supervise_flow_makelogger" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", + "source_location": "L196", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "supervise_flow_backupcurrentconfig", + "target": "ops_mdm_supervise_magic_internal_supervise_flow_go_conn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_preflight_checks_go", + "target": "deviceinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_preflight_checks_go", + "target": "preflight_checks_asstring" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_preflight_checks_go", + "target": "preflight_checks_checkiosversionatleast" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_preflight_checks_go", + "target": "preflight_checks_run" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_preflight_checks_go", + "target": "preflight_deviceinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_internal_preflight_checks_go", + "target": "preflight_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L34", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "preflight_checks_run", + "target": "preflight_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "preflight_result", + "target": "deviceinfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L34", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "preflight_checks_run", + "target": "ops_mdm_supervise_magic_internal_preflight_checks_go_conn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "preflight_checks_run", + "target": "preflight_checks_asstring" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "preflight_checks_run", + "target": "preflight_checks_checkiosversionatleast" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_profiles_generate_unsupervised_profile_py", + "target": "profiles_generate_unsupervised_profile_batch_from_csv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_profiles_generate_unsupervised_profile_py", + "target": "profiles_generate_unsupervised_profile_generate_profile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_profiles_generate_unsupervised_profile_py", + "target": "profiles_generate_unsupervised_profile_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_profiles_generate_unsupervised_profile_py", + "target": "profiles_generate_unsupervised_profile_validate_plist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_profiles_generate_unsupervised_profile_py", + "target": "profiles_generate_unsupervised_profile_write_profile" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_generate_profile", + "target": "bytes" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_generate_profile", + "target": "ops_mdm_profiles_generate_unsupervised_profile_py_bytes" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_generate_profile", + "target": "ops_mdm_profiles_generate_unsupervised_profile_py_str" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_rationale_38", + "target": "profiles_generate_unsupervised_profile_generate_profile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_write_profile", + "target": "profiles_generate_unsupervised_profile_generate_profile" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_batch_from_csv", + "target": "ops_mdm_profiles_generate_unsupervised_profile_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_write_profile", + "target": "ops_mdm_profiles_generate_unsupervised_profile_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_validate_plist", + "target": "bytes" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_rationale_58", + "target": "profiles_generate_unsupervised_profile_validate_plist" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_validate_plist", + "target": "ops_mdm_profiles_generate_unsupervised_profile_py_bytes" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_validate_plist", + "target": "ops_mdm_profiles_generate_unsupervised_profile_py_path" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_validate_plist", + "target": "path" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_write_profile", + "target": "profiles_generate_unsupervised_profile_validate_plist" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/metro.config.js", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_metro_config_js", + "target": "path" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_allow_nonmodular_includes_js", + "target": "path" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-fmt-consteval-fix.js", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_fmt_consteval_fix_js", + "target": "path" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "path" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-ios.js", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_ios_js", + "target": "path" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-resource-bundle-signing-fix.js", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_resource_bundle_signing_fix_js", + "target": "path" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rive-asset-android.js", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rive_asset_android_js", + "target": "path" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", + "target": "path" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/scripts/fix-embed-extension.js", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_scripts_fix_embed_extension_js", + "target": "path" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/scripts/play-submit.mjs", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_scripts_play_submit_mjs", + "target": "path" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rive-asset-android.js", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plugins_with_rive_asset_android_withriveassetandroid", + "target": "path" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_batch_from_csv", + "target": "path" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_main", + "target": "path" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_write_profile", + "target": "path" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "path" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_batch_from_csv", + "target": "profiles_generate_unsupervised_profile_write_profile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_main", + "target": "profiles_generate_unsupervised_profile_write_profile" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_write_profile", + "target": "ops_mdm_profiles_generate_unsupervised_profile_py_path" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_batch_from_csv", + "target": "ops_mdm_profiles_generate_unsupervised_profile_py_path" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_main", + "target": "profiles_generate_unsupervised_profile_batch_from_csv" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_main", + "target": "ops_mdm_profiles_generate_unsupervised_profile_py_int" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_generate_unsupervised_profile_main", + "target": "ops_mdm_profiles_generate_unsupervised_profile_py_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/service-config.template.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_service_config_template_json", + "target": "pir_server_service_config_template_comment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/service-config.template.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_service_config_template_json", + "target": "pir_server_service_config_template_issuerrequesturi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/service-config.template.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_service_config_template_json", + "target": "pir_server_service_config_template_usecases" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/service-config.template.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_service_config_template_json", + "target": "pir_server_service_config_template_users" }, { "relation": "defines", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing.sh", - "source_location": "L127", + "source_file": "ops/pir-server/build-and-deploy.sh", + "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_maestro_screens_capture_marketing_sh", - "target": "screens_capture_marketing_mapping" + "source": "ops_pir_server_build_and_deploy_sh", + "target": "pir_server_build_and_deploy_log" }, { - "relation": "contains", + "relation": "defines", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing.sh", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_maestro_screens_capture_marketing_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_maestro_screens_capture_marketing_sh__entry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L1", - "weight": 1.0, - "source": "apps_rebreak_native_calls_debug_state_md", - "target": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L61", - "weight": 1.0, - "source": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", - "target": "rebreak_native_calls_debug_state_apple_constraint_kein_bug", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L6", - "weight": 1.0, - "source": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", - "target": "rebreak_native_calls_debug_state_architektur_ist_zustand", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L40", - "weight": 1.0, - "source": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", - "target": "rebreak_native_calls_debug_state_best\u00e4tigte_root_cause_3_2026_06_05_via_idevicesyslog_git", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L28", - "weight": 1.0, - "source": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", - "target": "rebreak_native_calls_debug_state_divide_conquer_phasen", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", - "source_location": "L19", - "weight": 1.0, - "source": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", - "target": "rebreak_native_calls_debug_state_verhaltens_matrix", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L1", - "weight": 1.0, - "source": "apps_rebreak_native_changelog_md", - "target": "rebreak_native_changelog_changelog", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L535", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_0_1_0_versioncode_4_2026_05_07", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L517", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_0_1_0_versioncode_5_2026_05_14", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L501", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_0_1_0_versioncode_6_2026_05_15", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L483", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_0_1_0_versioncode_7_2026_05_15", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L461", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_0_2_0_versioncode_8_2026_05_16", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L453", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_0_2_1_versioncode_9_2026_05_16", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L418", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L382", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_0_3_5_buildnumber_14_versioncode_11_2026_05_22", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L368", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_0_3_6_buildnumber_15_versioncode_11_2026_05_25", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L65", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_changed", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L88", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_features", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L130", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_features_130", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L70", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_fixed", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L84", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_fixed_84", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L101", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_fixes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L143", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_fixes_143", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L172", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_fixes_172", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_file": "ops/pir-server/build-and-deploy.sh", "source_location": "L39", "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_improved", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "ops_pir_server_build_and_deploy_sh", + "target": "pir_server_build_and_deploy_log_err" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L45", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_improved_45", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L51", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_improved_51", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L79", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_improved_79", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L58", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_new", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L74", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_new_74", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L124", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_notes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L166", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_notes_166", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L114", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_polish", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L156", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_polish_156", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L364", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_unreleased", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L358", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_26_versioncode_16_2026_05_30_n_nneue_push_f\u00fcr_chat_n", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L357", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_27_versioncode_18_2026_05_30_n_npush_notifications_f\u00fcr_chat_du_erh\u00e4ltst_jetzt_pushes_bei_neuen_direkt_nachrichten_und_raum_nachrichten_abschaltbar_in_den_einstellungen_n", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L356", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_40_versioncode_31_2026_05_30_n_nchat_dm_lange_auf_nachricht_dr\u00fccken_\u00f6ffnet_jetzt_das_native_aktions_men\u00fc_antworten_liken_kopieren_likes_erscheinen_insta_style_als_herz_unter_der_nachricht_n", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L351", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_42_versioncode_32_2026_05_30_n_nchat_dm_lange_auf_eine_nachricht_dr\u00fccken_\u00f6ffnet_das_aktions_men\u00fc_jetzt_direkt_an_der_nachricht_whatsapp_stil_statt_zentriert_neu_emoji_reaktionen_oben_antworten_und_kopieren_bei_fremden_nachrichten_sowie_l\u00f6schen_f\u00fcr_eigene_nachrichten_f\u00fcr_alle_reaktionen_erscheinen_als_kleine_bubbles_unter_der_nachricht_gel\u00f6schte_nachrichten_zeigen_nachricht_gel\u00f6scht", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L350", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_44_versioncode_33_2026_05_31_n_nlyra_multilanguage_fix_n", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L345", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_44_versioncode_35_2026_05_31_n_ndm_chat_scrollt_jetzt_zuverl\u00e4ssig_zur_neuesten_nachricht_auch_nach_eigenen_gesendeten_nachrichten_und_beim_laden_von_bildern", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L342", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_46_versioncode_36_2026_05_31_n_ndm_chat_die_letzte_nachricht_wird_jetzt_zuverl\u00e4ssig_oberhalb_der_eingabezeile_angezeigt_kein_manuelles_nachscrollen_mehr_beim_\u00f6ffnen_oder_nach_dem_senden", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L341", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_50_versioncode_40_2026_06_01_n_nlayer_3_for_ios_fix_a11y_n", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L309", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_54_versioncode_44_2026_06_01_n_n_features", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L296", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_56_versioncode_46_2026_06_01_n_n_features", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L289", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_60_versioncode_48_2026_06_02_n_n_fixes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L273", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_62_versioncode_50_2026_06_03_n_n_fixes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L255", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_65_versioncode_50_2026_06_03_n_n_fixes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L248", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_67_versioncode_50_2026_06_03_n_n_fixes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L238", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_68_versioncode_51_2026_06_03_n_n_fixes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L231", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_69_versioncode_52_2026_06_03_n_n_fixes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L216", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_70_versioncode_53_2026_06_03_n_n_fixes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L197", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_71_versioncode_54_2026_06_04_n_n_fixes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L179", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_76_versioncode_59_2026_06_04_n_n_fixes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L188", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_76_versioncode_59_2026_06_04_n_n_fixes_188", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L170", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_79_versioncode_62_2026_06_06_n_n_next_release", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L128", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_82_versioncode_63_2026_06_07_n_n_next_release", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L86", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_84_versioncode_64_2026_06_07_n_n_next_release", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L72", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_3_13_build_85_versioncode_64_2026_06_07_n_n_next_release", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L56", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_4_0_build_85_versioncode_66_2026_06_07_n_n_next_release", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L49", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_4_1_build_87_versioncode_67_2026_06_08_n_n_next_release", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L37", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_4_4_build_90_versioncode_70_2026_06_08_n_n_next_release", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L43", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_4_4_build_90_versioncode_70_2026_06_08_n_n_next_release_43", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L4", - "weight": 1.0, - "source": "rebreak_native_changelog_changelog", - "target": "rebreak_native_changelog_v0_4_5_build_90_versioncode_71_2026_06_10_n_n_next_release_notes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L212", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_71_versioncode_54_2026_06_04_n_n_fixes", - "target": "rebreak_native_changelog_changes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L205", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_71_versioncode_54_2026_06_04_n_n_fixes", - "target": "rebreak_native_changelog_features_205", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L227", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_70_versioncode_53_2026_06_03_n_n_fixes", - "target": "rebreak_native_changelog_changes_227", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L223", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_70_versioncode_53_2026_06_03_n_n_fixes", - "target": "rebreak_native_changelog_features_223", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L235", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_69_versioncode_52_2026_06_03_n_n_fixes", - "target": "rebreak_native_changelog_features_235", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L245", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_68_versioncode_51_2026_06_03_n_n_fixes", - "target": "rebreak_native_changelog_features_245", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L252", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_67_versioncode_50_2026_06_03_n_n_fixes", - "target": "rebreak_native_changelog_features_252", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L266", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_65_versioncode_50_2026_06_03_n_n_fixes", - "target": "rebreak_native_changelog_features_266", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L283", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_62_versioncode_50_2026_06_03_n_n_fixes", - "target": "rebreak_native_changelog_features_283", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L293", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_60_versioncode_48_2026_06_02_n_n_fixes", - "target": "rebreak_native_changelog_features_293", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L305", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_56_versioncode_46_2026_06_01_n_n_features", - "target": "rebreak_native_changelog_fixes_305", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L331", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_54_versioncode_44_2026_06_01_n_n_features", - "target": "rebreak_native_changelog_backend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L320", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_54_versioncode_44_2026_06_01_n_n_features", - "target": "rebreak_native_changelog_fixes_320", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L336", - "weight": 1.0, - "source": "rebreak_native_changelog_v0_3_13_build_54_versioncode_44_2026_06_01_n_n_features", - "target": "rebreak_native_changelog_infrastructure", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L375", - "weight": 1.0, - "source": "rebreak_native_changelog_0_3_6_buildnumber_15_versioncode_11_2026_05_25", - "target": "rebreak_native_changelog_backend_375", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L370", - "weight": 1.0, - "source": "rebreak_native_changelog_0_3_6_buildnumber_15_versioncode_11_2026_05_25", - "target": "rebreak_native_changelog_changed_370", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L400", - "weight": 1.0, - "source": "rebreak_native_changelog_0_3_5_buildnumber_14_versioncode_11_2026_05_22", - "target": "rebreak_native_changelog_added", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L384", - "weight": 1.0, - "source": "rebreak_native_changelog_0_3_5_buildnumber_14_versioncode_11_2026_05_22", - "target": "rebreak_native_changelog_fixed_384", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L410", - "weight": 1.0, - "source": "rebreak_native_changelog_0_3_5_buildnumber_14_versioncode_11_2026_05_22", - "target": "rebreak_native_changelog_fixed_410", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L420", - "weight": 1.0, - "source": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", - "target": "rebreak_native_changelog_added_420", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L446", - "weight": 1.0, - "source": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", - "target": "rebreak_native_changelog_backend_446", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L432", - "weight": 1.0, - "source": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", - "target": "rebreak_native_changelog_changed_432", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L436", - "weight": 1.0, - "source": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", - "target": "rebreak_native_changelog_fixed_436", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L442", - "weight": 1.0, - "source": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", - "target": "rebreak_native_changelog_i18n", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L455", - "weight": 1.0, - "source": "rebreak_native_changelog_0_2_1_versioncode_9_2026_05_16", - "target": "rebreak_native_changelog_fixed_455", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L463", - "weight": 1.0, - "source": "rebreak_native_changelog_0_2_0_versioncode_8_2026_05_16", - "target": "rebreak_native_changelog_added_463", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L474", - "weight": 1.0, - "source": "rebreak_native_changelog_0_2_0_versioncode_8_2026_05_16", - "target": "rebreak_native_changelog_changed_474", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L478", - "weight": 1.0, - "source": "rebreak_native_changelog_0_2_0_versioncode_8_2026_05_16", - "target": "rebreak_native_changelog_fixed_478", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L485", - "weight": 1.0, - "source": "rebreak_native_changelog_0_1_0_versioncode_7_2026_05_15", - "target": "rebreak_native_changelog_added_485", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L489", - "weight": 1.0, - "source": "rebreak_native_changelog_0_1_0_versioncode_7_2026_05_15", - "target": "rebreak_native_changelog_changed_489", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L494", - "weight": 1.0, - "source": "rebreak_native_changelog_0_1_0_versioncode_7_2026_05_15", - "target": "rebreak_native_changelog_fixed_494", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L503", - "weight": 1.0, - "source": "rebreak_native_changelog_0_1_0_versioncode_6_2026_05_15", - "target": "rebreak_native_changelog_added_503", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L509", - "weight": 1.0, - "source": "rebreak_native_changelog_0_1_0_versioncode_6_2026_05_15", - "target": "rebreak_native_changelog_changed_509", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L512", - "weight": 1.0, - "source": "rebreak_native_changelog_0_1_0_versioncode_6_2026_05_15", - "target": "rebreak_native_changelog_fixed_512", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L519", - "weight": 1.0, - "source": "rebreak_native_changelog_0_1_0_versioncode_5_2026_05_14", - "target": "rebreak_native_changelog_added_519", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L522", - "weight": 1.0, - "source": "rebreak_native_changelog_0_1_0_versioncode_5_2026_05_14", - "target": "rebreak_native_changelog_fixed_522", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L537", - "weight": 1.0, - "source": "rebreak_native_changelog_0_1_0_versioncode_4_2026_05_07", - "target": "rebreak_native_changelog_added_537", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/CHANGELOG.md", - "source_location": "L540", - "weight": 1.0, - "source": "rebreak_native_changelog_0_1_0_versioncode_4_2026_05_07", - "target": "rebreak_native_changelog_fixed_540", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/NEXT_RELEASE.md", + "source_file": "ops/pir-server/build-and-deploy.sh", "source_location": "L1", "weight": 1.0, - "source": "apps_rebreak_native_next_release_md", - "target": "rebreak_native_next_release_next_release", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "ops_pir_server_build_and_deploy_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_ops_pir_server_build_and_deploy_sh__entry" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/build-and-deploy.sh", + "source_location": "L41", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_pir_server_build_and_deploy_sh__entry", + "target": "pir_server_build_and_deploy_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/build-and-deploy.sh", + "source_location": "L57", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_ops_pir_server_build_and_deploy_sh__entry", + "target": "pir_server_build_and_deploy_log_err" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/NEXT_RELEASE.md", + "source_file": "ops/pir-server/gen-test-input.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_gen_test_input_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_ops_pir_server_gen_test_input_sh__entry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/process-config.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_process_config_json", + "target": "pir_server_process_config_databasetype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/process-config.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_process_config_json", + "target": "pir_server_process_config_inputdatabase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/process-config.json", "source_location": "L3", "weight": 1.0, - "source": "rebreak_native_next_release_next_release", - "target": "rebreak_native_next_release_fixes", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "ops_pir_server_process_config_json", + "target": "pir_server_process_config_outputdatabase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/process-config.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_process_config_json", + "target": "pir_server_process_config_outputpirparameters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/process-config.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_process_config_json", + "target": "pir_server_process_config_rlweparameters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/process-config.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_process_config_json", + "target": "pir_server_process_config_sharding" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/process-config.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_process_config_json", + "target": "pir_server_process_config_trialspershard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/process-config.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_process_config_sharding", + "target": "pir_server_process_config_sharding_entrycountpershard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas-release.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_eas_release_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_eas_release_sh__entry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/install-ios.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_install_ios_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_install_ios_sh__entry" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_cmd_android" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L469", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_cmd_clean" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L568", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_cmd_install_android" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L530", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_cmd_install_ios" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_cmd_ios" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L615", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_cmd_magic" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L443", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_cmd_metro" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L319", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_cmd_mobile" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L292", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_detect_android_devices" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L282", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_detect_ios_device" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L282", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_detect_ios_device_name" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_die" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_error" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_expo_public_enable_debug" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_log" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_ok" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_rebreak_dev" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_rebreak_enable_family_controls" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_section" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L298", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_start_shared_metro" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "rebreak_native_dev_warn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_dev_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L704", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", + "target": "rebreak_native_dev_cmd_android" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L716", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", + "target": "rebreak_native_dev_cmd_clean" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L724", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", + "target": "rebreak_native_dev_cmd_install_android" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L723", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", + "target": "rebreak_native_dev_cmd_install_ios" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L700", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", + "target": "rebreak_native_dev_cmd_ios" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L734", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", + "target": "rebreak_native_dev_cmd_magic" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L712", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", + "target": "rebreak_native_dev_cmd_metro" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L708", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", + "target": "rebreak_native_dev_cmd_mobile" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L726", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", + "target": "rebreak_native_dev_error" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L214", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_android", + "target": "rebreak_native_dev_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L482", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_clean", + "target": "rebreak_native_dev_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L596", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_install_android", + "target": "rebreak_native_dev_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L555", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_install_ios", + "target": "rebreak_native_dev_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L146", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_ios", + "target": "rebreak_native_dev_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L640", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_magic", + "target": "rebreak_native_dev_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L455", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_metro", + "target": "rebreak_native_dev_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L385", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_mobile", + "target": "rebreak_native_dev_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L300", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_start_shared_metro", + "target": "rebreak_native_dev_log" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L264", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_android", + "target": "rebreak_native_dev_ok" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L506", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_clean", + "target": "rebreak_native_dev_ok" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L612", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_install_android", + "target": "rebreak_native_dev_ok" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L563", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_install_ios", + "target": "rebreak_native_dev_ok" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L171", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_ios", + "target": "rebreak_native_dev_ok" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L649", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_magic", + "target": "rebreak_native_dev_ok" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L355", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_mobile", + "target": "rebreak_native_dev_ok" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L310", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_start_shared_metro", + "target": "rebreak_native_dev_ok" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L236", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_android", + "target": "rebreak_native_dev_warn" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L608", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_install_android", + "target": "rebreak_native_dev_warn" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L643", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_magic", + "target": "rebreak_native_dev_warn" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L357", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_mobile", + "target": "rebreak_native_dev_warn" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L316", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_start_shared_metro", + "target": "rebreak_native_dev_warn" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L588", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_install_android", + "target": "rebreak_native_dev_error" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L546", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_install_ios", + "target": "rebreak_native_dev_error" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L430", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_mobile", + "target": "rebreak_native_dev_error" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L99", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_die", + "target": "rebreak_native_dev_error" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L199", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_android", + "target": "rebreak_native_dev_die" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L476", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_clean", + "target": "rebreak_native_dev_die" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L578", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_install_android", + "target": "rebreak_native_dev_die" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L535", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_install_ios", + "target": "rebreak_native_dev_die" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L131", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_ios", + "target": "rebreak_native_dev_die" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L627", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_magic", + "target": "rebreak_native_dev_die" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L449", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_metro", + "target": "rebreak_native_dev_die" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L329", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_mobile", + "target": "rebreak_native_dev_die" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L203", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_android", + "target": "rebreak_native_dev_section" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L480", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_clean", + "target": "rebreak_native_dev_section" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L569", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_install_android", + "target": "rebreak_native_dev_section" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L531", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_install_ios", + "target": "rebreak_native_dev_section" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L135", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_ios", + "target": "rebreak_native_dev_section" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L631", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_magic", + "target": "rebreak_native_dev_section" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L453", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_metro", + "target": "rebreak_native_dev_section" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L333", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_mobile", + "target": "rebreak_native_dev_section" + }, + { + "relation": "calls", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/dev.sh", + "source_location": "L375", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "rebreak_native_dev_cmd_mobile", + "target": "rebreak_native_dev_start_shared_metro" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_eas_json", + "target": "rebreak_native_eas_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_eas_json", + "target": "rebreak_native_eas_cli" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_eas_json", + "target": "rebreak_native_eas_submit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_cli", + "target": "rebreak_native_eas_cli_appversionsource" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_cli", + "target": "rebreak_native_eas_cli_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build", + "target": "rebreak_native_eas_build_development" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build", + "target": "rebreak_native_eas_build_preview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build", + "target": "rebreak_native_eas_build_production" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_development", + "target": "rebreak_native_eas_development_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_development", + "target": "rebreak_native_eas_development_developmentclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_development", + "target": "rebreak_native_eas_development_distribution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_development", + "target": "rebreak_native_eas_development_env" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_development", + "target": "rebreak_native_eas_development_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_development", + "target": "rebreak_native_eas_preview_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_development", + "target": "rebreak_native_eas_preview_distribution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_development", + "target": "rebreak_native_eas_preview_env" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_development", + "target": "rebreak_native_eas_preview_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_development_env", + "target": "rebreak_native_eas_env_expo_public_api_url" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_development_env", + "target": "rebreak_native_eas_env_rebreak_enable_family_controls" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_env", + "target": "rebreak_native_eas_env_expo_public_api_url" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_env", + "target": "rebreak_native_eas_env_expo_public_api_url" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_env", + "target": "rebreak_native_eas_env_rebreak_enable_family_controls" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_env", + "target": "rebreak_native_eas_env_rebreak_enable_family_controls" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_development_ios", + "target": "rebreak_native_eas_ios_simulator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_ios", + "target": "rebreak_native_eas_ios_simulator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_development_android", + "target": "rebreak_native_eas_android_buildtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_android", + "target": "rebreak_native_eas_android_buildtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_android", + "target": "rebreak_native_eas_android_buildtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_preview", + "target": "rebreak_native_eas_preview_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_preview", + "target": "rebreak_native_eas_preview_distribution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_preview", + "target": "rebreak_native_eas_preview_env" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_preview", + "target": "rebreak_native_eas_preview_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_production", + "target": "rebreak_native_eas_preview_env" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_env", + "target": "rebreak_native_eas_env_expo_public_enable_debug" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_production", + "target": "rebreak_native_eas_preview_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_ios", + "target": "rebreak_native_eas_ios_appleid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_ios", + "target": "rebreak_native_eas_ios_appleteamid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_ios", + "target": "rebreak_native_eas_ios_ascappid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_ios", + "target": "rebreak_native_eas_ios_autoincrement" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_ios", + "target": "rebreak_native_eas_ios_resourceclass" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_ios", + "target": "rebreak_native_eas_ios_resourceclass" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_android", + "target": "rebreak_native_eas_ios_autoincrement" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_ios", + "target": "rebreak_native_eas_ios_autoincrement" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_production", + "target": "rebreak_native_eas_preview_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_android", + "target": "rebreak_native_eas_android_autoincrement" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_android", + "target": "rebreak_native_eas_android_serviceaccountkeypath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_preview_android", + "target": "rebreak_native_eas_android_track" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_android", + "target": "rebreak_native_eas_android_autoincrement" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_production", + "target": "rebreak_native_eas_production_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_production", + "target": "rebreak_native_eas_production_env" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_build_production", + "target": "rebreak_native_eas_production_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_submit", + "target": "rebreak_native_eas_build_production" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_env", + "target": "rebreak_native_eas_env_expo_public_enable_debug" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_ios", + "target": "rebreak_native_eas_ios_appleid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_ios", + "target": "rebreak_native_eas_ios_appleteamid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_ios", + "target": "rebreak_native_eas_ios_ascappid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_submit_production", + "target": "rebreak_native_eas_production_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_android", + "target": "rebreak_native_eas_android_serviceaccountkeypath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_production_android", + "target": "rebreak_native_eas_android_track" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_submit_production", + "target": "rebreak_native_eas_production_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/eas.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_eas_submit", + "target": "rebreak_native_eas_submit_production" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/metro.config.js", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_metro_config_js", + "target": "rebreak_native_metro_config_config" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/metro.config.js", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_metro_config_js", + "target": "rebreak_native_metro_config_getdefaultconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/metro.config.js", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_metro_config_js", + "target": "rebreak_native_metro_config_monoreporoot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/metro.config.js", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_metro_config_js", + "target": "rebreak_native_metro_config_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/metro.config.js", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_metro_config_js", + "target": "rebreak_native_metro_config_withnativewind" }, { "relation": "imports_from", @@ -137088,2344 +206841,992 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "app_blocker_blockerscreen" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L6", - "weight": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "apps_rebreak_native_components_appheader_tsx", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "apps_rebreak_native_components_blocker_cooldownbanner_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "apps_rebreak_native_components_blocker_setupflows_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L22", - "weight": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "apps_rebreak_native_lib_protection_ts", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "blocker_adddomainsheet_adddomainsheet" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "blocker_cooldownbanner_cooldownbanner" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_file": "apps/rebreak-native/package.json", "source_location": "L14", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "blocker_deactivationexplainersheet_deactivationexplainersheet" + "source": "apps_rebreak_native_package_json", + "target": "rebreak_native_package_dependencies" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L7", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L85", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "blocker_layerswitchcard_layerswitchcard" + "source": "apps_rebreak_native_package_json", + "target": "rebreak_native_package_devdependencies" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L13", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L5", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "blocker_protectiondetailssheet_protectiondetailssheet" + "source": "apps_rebreak_native_package_json", + "target": "rebreak_native_package_main" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_package_json", + "target": "rebreak_native_package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_package_json", + "target": "rebreak_native_package_private" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_package_json", + "target": "rebreak_native_package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_package_json", + "target": "rebreak_native_package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_scripts", + "target": "rebreak_native_package_scripts_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "blocker_protectionlockedcard_protectionlockedcard" + "source": "rebreak_native_package_scripts", + "target": "rebreak_native_package_scripts_ios" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "blocker_setupflows_androidsetupflow" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "blocker_setupflows_iosunsupervisedsetupflow" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "blocker_vipdomainlist_myfilterslist" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "blocker_vipdomainlist_vipdomainlist" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_file": "apps/rebreak-native/package.json", "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "blocker_vipswapsheet_vipswapsheet" + "source": "rebreak_native_package_scripts", + "target": "rebreak_native_package_scripts_lint" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L6", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L10", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "components_appheader_appheader" + "source": "rebreak_native_package_scripts", + "target": "rebreak_native_package_scripts_prebuild" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L16", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L7", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "components_protectionoffsheet_protectionoffsheet" + "source": "rebreak_native_package_scripts", + "target": "rebreak_native_package_scripts_start" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L20", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L12", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "hooks_useblocklistsync_useblocklistsync" + "source": "rebreak_native_package_scripts", + "target": "rebreak_native_package_scripts_typecheck" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "hooks_usecustomdomains_usecustomdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L21", - "weight": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "hooks_usedomainsubmissionrealtime_usedomainsubmissionrealtime", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "hooks_useprotectionstate_useprotectionstate" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "lib_protection_protection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "locales_de_appheader" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_file": "apps/rebreak-native/package.json", "source_location": "L15", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "locales_de_blocker_permission_denied" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_config_plugins_react_native_callkeep" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L24", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L16", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "stores_blockerstats_blockerstats" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_config_plugins_react_native_webrtc" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_blocker_tsx", - "target": "stores_blockerstats_useblockerstatsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L71", - "weight": 1.0, - "source": "app_blocker_blockerscreen", - "target": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L59", - "weight": 1.0, - "source": "app_blocker_blockerscreen", - "target": "hooks_useblocklistsync_useblocklistsync" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L58", - "weight": 1.0, - "source": "app_blocker_blockerscreen", - "target": "hooks_usecustomdomains_usecustomdomains" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L71", - "weight": 1.0, - "source": "app_blocker_blockerscreen", - "target": "hooks_usedomainsubmissionrealtime_usedomainsubmissionrealtime" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L44", - "weight": 1.0, - "source": "app_blocker_blockerscreen", - "target": "hooks_useprotectionstate_useprotectionstate" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_file": "apps/rebreak-native/package.json", "source_location": "L29", "weight": 1.0, - "source": "app_blocker_blockerscreen", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", - "source_location": "L45", - "weight": 1.0, - "source": "app_blocker_blockerscreen", - "target": "stores_blockerstats_useblockerstatsstore" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1181", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L30", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_androida11yresettoggle" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_apple_authentication" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1285", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L31", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_cooldowntestmodetoggle" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_application" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L25", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L32", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_debugscreen" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_av" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1354", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L33", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_debugstub" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_blur" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L845", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L34", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_logline" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_build_properties" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_lyraemotionpreviewcard" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1058", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_onboarding_steps" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1061", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_onboardingresettoggle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1059", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_onboardingstepvalue" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L898", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_pad" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L923", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_plan_color" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L929", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_planoverridetoggle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L921", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_plans" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_preview_emotions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_protectionlogcard" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L627", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_realtimelogcard" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_realtimestatuscard" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_redirecttestcard" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L902", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_relativeseconds" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L910", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_stateaccent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L581", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "app_debug_statusrow" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "apps_rebreak_native_components_riveavatar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "apps_rebreak_native_hooks_useme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "apps_rebreak_native_lib_api_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L20", - "weight": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "apps_rebreak_native_lib_protection_ts", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "apps_rebreak_native_lib_supabase_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "apps_rebreak_native_stores_realtimedebug_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "components_riveavatar_emotion" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "components_riveavatar_emotion_animations" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "components_riveavatar_existing_timelines" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "components_riveavatar_riveavatar" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "hooks_useme_invalidateme" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "hooks_useme_onboardingstep" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "hooks_useme_plan" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "hooks_useme_useme" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "lib_api_apifetch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L20", - "weight": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "lib_protection_getcooldowntestmode", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "lib_protection_protection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "lib_protection_setcooldowntestmode" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "lib_supabase_supabase" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "plan_planchangesheet_planchangesheet" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "stores_realtimedebug_logentry" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_debug_tsx", - "target": "stores_realtimedebug_userealtimedebugstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L28", - "weight": 1.0, - "source": "app_debug_debugscreen", - "target": "hooks_useme_useme" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L27", - "weight": 1.0, - "source": "app_debug_debugscreen", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L189", - "weight": 1.0, - "source": "app_debug_lyraemotionpreviewcard", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L295", - "weight": 1.0, - "source": "app_debug_redirecttestcard", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L444", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_debug_realtimestatuscard", - "target": "app_debug_relativeseconds" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L438", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_debug_realtimestatuscard", - "target": "app_debug_stateaccent" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L405", - "weight": 1.0, - "source": "app_debug_realtimestatuscard", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L406", - "weight": 1.0, - "source": "app_debug_realtimestatuscard", - "target": "stores_realtimedebug_userealtimedebugstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L628", - "weight": 1.0, - "source": "app_debug_realtimelogcard", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L629", - "weight": 1.0, - "source": "app_debug_realtimelogcard", - "target": "stores_realtimedebug_userealtimedebugstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L724", - "weight": 1.0, - "source": "app_debug_protectionlogcard", - "target": "lib_theme_usecolors" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L462", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_de_coach_lyra", - "target": "app_debug_protectionlogcard" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L853", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_debug_logline", - "target": "app_debug_pad" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_file": "apps/rebreak-native/package.json", "source_location": "L35", "weight": 1.0, - "source": "views_hubview_usecountdown", - "target": "app_debug_pad" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1286", - "weight": 1.0, - "source": "app_debug_cooldowntestmodetoggle", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/debug.tsx", - "source_location": "L1363", - "weight": 1.0, - "source": "app_debug_debugstub", - "target": "lib_theme_usecolors" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_clipboard" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/index.tsx", - "source_location": "L16", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L36", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_index_tsx", - "target": "app_index_ease_out" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_constants" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/index.tsx", - "source_location": "L18", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L37", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_index_tsx", - "target": "app_index_landingscreen" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/index.tsx", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_index_tsx", - "target": "apps_rebreak_native_components_brandsplash_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/index.tsx", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_index_tsx", - "target": "apps_rebreak_native_stores_auth_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/index.tsx", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_index_tsx", - "target": "components_brandsplash_brandsplash" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/index.tsx", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_index_tsx", - "target": "stores_auth_useauthstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/index.tsx", - "source_location": "L23", - "weight": 1.0, - "source": "app_index_landingscreen", - "target": "stores_auth_useauthstore" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_dev_client" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L128", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "app_lyra_coachscreen" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_device" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_file": "apps/rebreak-native/package.json", "source_location": "L39", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "app_lyra_formattimestamp" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_file_system" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_font" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_google_fonts_nunito" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_haptics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_image" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_image_manipulator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_image_picker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", "source_location": "L45", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "app_lyra_loadingpulse" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_linear_gradient" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L93", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "app_lyra_messagerow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L91", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "app_lyra_messagewithmeta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L680", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "app_lyra_styles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "app_lyra_thinkingdots" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "apps_rebreak_native_components_chat_voicerecordingbar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "apps_rebreak_native_components_riveavatar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "apps_rebreak_native_lib_api_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "apps_rebreak_native_lib_lyraresponse_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "apps_rebreak_native_lib_supabase_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "apps_rebreak_native_stores_coach_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "apps_rebreak_native_stores_theme_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "chat_voicerecordingbar_formatvoiceduration" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "chat_voicerecordingbar_voicebars" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "chat_voicerecordingbar_voicerecordingbar" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "components_riveavatar_emotion" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "components_riveavatar_riveavatar" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "lib_api_apifetch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "lib_lyraresponse_detectemotion" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "lib_supabase_supabase" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "stores_coach_message" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "stores_coach_usecoachstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_lyra_tsx", - "target": "stores_theme_usethemestore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L119", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "app_lyra_formattimestamp" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_file": "apps/rebreak-native/package.json", "source_location": "L46", "weight": 1.0, - "source": "app_lyra_loadingpulse", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L57", - "weight": 1.0, - "source": "app_lyra_thinkingdots", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "apps_rebreak_native_components_riveavatar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "apps_rebreak_native_components_urge_urgegames_tsx" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "components_riveavatar_emotion" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "components_riveavatar_riveavatar" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_linking" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L12", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L47", "weight": 1.0, "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "games_gamecard_gamecard" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L100", - "weight": 1.0, - "source": "app_lyra_messagerow", - "target": "lib_theme_usecolors" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_local_authentication" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L8", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L48", "weight": 1.0, "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "urge_messagerow_cardtype" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_localization" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L56", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L49", "weight": 1.0, "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "urge_messagerow_gameheader" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_media_library" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L40", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L18", "weight": 1.0, "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "urge_messagerow_messagerow" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_metro_runtime" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L33", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L50", "weight": 1.0, "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "urge_messagerow_messagerowprops" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_modules_core" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L22", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L51", "weight": 1.0, "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "urge_messagerow_overcomecard" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_notifications" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "urge_messagerow_sosmsg" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "urge_messagerow_st" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "urge_urgegames_game_meta" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "urge_urgegames_gamepickergrid" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_lyra_messagerow", - "target": "urge_urgegames_gametype" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "app_lyra_messagerow" - }, - { - "relation": "calls", - "confidence": "INFERRED", - "confidence_score": 0.85, - "weight": 0.85, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "native streams from SOS endpoint", - "source": "app_lyra_coachscreen", - "target": "backend_server_api_coach_sos_stream_get_ts" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.85, - "weight": 0.85, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "Lyra coach UI", - "source": "app_lyra_coachscreen", - "target": "diga_03_req_lyra" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L133", - "weight": 1.0, - "source": "app_lyra_coachscreen", - "target": "lib_theme_usecolors" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.8, - "weight": 0.8, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "persona realized in coach UI", - "source": "app_lyra_coachscreen", - "target": "ops_lyra_persona" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L137", - "weight": 1.0, - "source": "app_lyra_coachscreen", - "target": "stores_coach_usecoachstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/lyra.tsx", - "source_location": "L134", - "weight": 1.0, - "source": "app_lyra_coachscreen", - "target": "stores_theme_usethemestore" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L1351", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "app_urge_makestyles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "app_urge_sosscreen" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_components_riveavatar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_components_urge_breathing_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_components_urge_gamepickerdrawer_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_components_urge_inlineindicators_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", + "source_file": "apps/rebreak-native/package.json", "source_location": "L19", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_components_urge_urgegames_tsx" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_react_native_action_sheet" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L16", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L52", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_lib_api_ts" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_router" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L31", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L53", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_lib_lyraresponse_ts" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_speech" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L30", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L54", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_lib_sosconstants_ts" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_splash_screen" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L29", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L55", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_lib_sosprompts_ts" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_status_bar" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L32", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L20", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_lib_sosstream_ts" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_vector_icons" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L36", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L56", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_lib_sosttsbenchmark_ts" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_expo_web_browser" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L33", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L57", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_lib_sosttsqueue_ts" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_i18next" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L17", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L21", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_lib_supabase_ts" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_lodev09_react_native_true_sheet" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L18", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L58", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "apps_rebreak_native_lib_theme_ts" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_lottie_react_native" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L15", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L59", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "components_riveavatar_riveavatar" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_nativewind" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L16", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L60", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_api_apifetch" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L35", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L61", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_llmprovider_currentllmprovider" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_dom" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L35", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L62", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_llmprovider_llmprovider" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_hook_form" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L31", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L63", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_lyraresponse_chipspec" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_i18next" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L31", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L74", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_lyraresponse_detectemotion" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L31", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L22", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_lyraresponse_lyraemotion" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_async_storage_async_storage" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L31", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L65", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_lyraresponse_parselyraresponse" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_bottom_tabs" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L30", - "weight": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_sosconstants_breath_phases", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L30", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L66", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_sosconstants_breathphase" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_callkeep" }, { - "relation": "imports", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_sosconstants_chip_sets" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_sosconstants_chipset" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_sosprompts_sos_boot" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_sosstream_crisislevel" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_sosstream_streamsoslyra" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_sosttsbenchmark_benchsession" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_sosttsqueue_sosttsqueue" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_supabase_supabase" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_ttsprovider_currentprovider" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_ttsprovider_endpointforprovider" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_ttsprovider_setttsprovider" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "lib_ttsprovider_ttsprovider" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_breathing_breathingdrawer" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_inlineindicators_voicebars" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_inlineratingdrawer_inlineratingdrawer" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_messagerow_gameheader" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_messagerow_sosmsg" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", + "source_file": "apps/rebreak-native/package.json", "source_location": "L23", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_sharesuccessdrawer_sharesuccessdrawer" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_sosfeedbackmodal_sosfeedback" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_sosfeedbackmodal_sosfeedbackmodal" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_urgegames_game_meta" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_urgegames_gametype" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_urgegames_memorygame" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_urgegames_snakegame" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_urgegames_tetrisgame" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_urge_tsx", - "target": "urge_urgegames_tictactoegame" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_urge_sosscreen", - "target": "app_urge_makestyles" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L44", - "weight": 1.0, - "source": "app_urge_sosscreen", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/urge.tsx", - "source_location": "L108", - "weight": 1.0, - "source": "app_urge_sosscreen", - "target": "lib_ttsprovider_setttsprovider" + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_community_slider" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/assets/DEPRECATED.md", - "source_location": "L1", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L67", "weight": 1.0, - "source": "apps_rebreak_native_assets_deprecated_md", - "target": "assets_deprecated_deprecated_assets", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_gesture_handler" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/assets/DEPRECATED.md", - "source_location": "L12", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L68", "weight": 1.0, - "source": "assets_deprecated_deprecated_assets", - "target": "assets_deprecated_adaptive_icon_png_adaptive_foreground_png_rebreak_android_png", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_incall_manager" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/assets/DEPRECATED.md", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_keyboard_controller" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_menu_menu" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_mmkv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_picker_picker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_reanimated" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_safe_area_context" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_screens" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_sse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_svg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_url_polyfill" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_voip_push_notification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_webrtc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_native_worklets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_react_navigation_native" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_rive_react_native" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_supabase_supabase_js" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_tailwindcss" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_tanstack_react_query" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_valibot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_dependencies", + "target": "rebreak_native_package_dependencies_zustand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_devdependencies", + "target": "rebreak_native_package_devdependencies_babel_core" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_devdependencies", + "target": "rebreak_native_package_devdependencies_types_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/package.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_package_devdependencies", + "target": "rebreak_native_package_devdependencies_typescript" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_devdependencies", + "target": "rebreak_native_package_devdependencies_types_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tsconfig_json", + "target": "rebreak_native_tsconfig_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tsconfig_json", + "target": "rebreak_native_tsconfig_exclude" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tsconfig_json", + "target": "rebreak_native_tsconfig_extends" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tsconfig_json", + "target": "rebreak_native_tsconfig_include" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_tsconfig_compileroptions", + "target": "rebreak_native_tsconfig_compileroptions_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_tsconfig_compileroptions", + "target": "rebreak_native_tsconfig_compileroptions_strict" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_tsconfig_compileroptions", + "target": "rebreak_native_tsconfig_compileroptions_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", "source_location": "L6", "weight": 1.0, - "source": "assets_deprecated_deprecated_assets", - "target": "assets_deprecated_splash_png", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "rebreak_native_tsconfig_compileroptions_paths", + "target": "rebreak_native_tsconfig_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_tsconfig_compileroptions_paths", + "target": "rebreak_native_tsconfig_paths_components" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_tsconfig_compileroptions_paths", + "target": "rebreak_native_tsconfig_paths_hooks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_tsconfig_compileroptions_paths", + "target": "rebreak_native_tsconfig_paths_lib" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_tsconfig_compileroptions_paths", + "target": "rebreak_native_tsconfig_paths_locales" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_tsconfig_compileroptions_paths", + "target": "rebreak_native_tsconfig_paths_stores" }, { "relation": "defines", @@ -139499,1899 +207900,6 @@ "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_clean_sh__entry", "target": "rebreak_native_clean_rmrf" }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L9", - "weight": 1.0, - "source": "apps_rebreak_native_components_appheader_tsx", - "target": "apps_rebreak_native_stores_notifications_ts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L22", - "weight": 1.0, - "source": "apps_rebreak_native_components_appheader_tsx", - "target": "components_appheader_appheader", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L16", - "weight": 1.0, - "source": "apps_rebreak_native_components_appheader_tsx", - "target": "components_appheader_props", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L13", - "weight": 1.0, - "source": "apps_rebreak_native_components_appheader_tsx", - "target": "components_notificationsdropdown_notificationsdropdown", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L14", - "weight": 1.0, - "source": "apps_rebreak_native_components_appheader_tsx", - "target": "header_headerdropdownmenu_headerdropdownmenu", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L12", - "weight": 1.0, - "source": "apps_rebreak_native_components_appheader_tsx", - "target": "hooks_useme_useme", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L10", - "weight": 1.0, - "source": "apps_rebreak_native_components_appheader_tsx", - "target": "lib_resolveavatar_resolveavatar", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L11", - "weight": 1.0, - "source": "apps_rebreak_native_components_appheader_tsx", - "target": "lib_theme_usecolors", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L8", - "weight": 1.0, - "source": "apps_rebreak_native_components_appheader_tsx", - "target": "stores_auth_useauthstore", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L9", - "weight": 1.0, - "source": "apps_rebreak_native_components_appheader_tsx", - "target": "stores_notifications_usenotificationstore", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_de_appheader", - "target": "components_appheader_props" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/chat.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_chat_tsx", - "target": "components_appheader_appheader" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/index.tsx", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_index_tsx", - "target": "components_appheader_appheader" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/mail.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_mail_tsx", - "target": "components_appheader_appheader" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_devices_tsx", - "target": "components_appheader_appheader" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/help/about.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_help_about_tsx", - "target": "components_appheader_appheader" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/help/contact.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_help_contact_tsx", - "target": "components_appheader_appheader" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/help/crisis.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_help_crisis_tsx", - "target": "components_appheader_appheader" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/help/faq.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_help_faq_tsx", - "target": "components_appheader_appheader" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_profile_index_tsx", - "target": "components_appheader_appheader" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_settings_tsx", - "target": "components_appheader_appheader" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L28", - "weight": 1.0, - "source": "components_appheader_appheader", - "target": "hooks_useme_useme" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L45", - "weight": 1.0, - "source": "components_appheader_appheader", - "target": "lib_resolveavatar_resolveavatar" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L27", - "weight": 1.0, - "source": "components_appheader_appheader", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L26", - "weight": 1.0, - "source": "components_appheader_appheader", - "target": "stores_auth_useauthstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L29", - "weight": 1.0, - "source": "components_appheader_appheader", - "target": "stores_notifications_usenotificationstore" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppHeader.tsx", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_de_appheader", - "target": "components_appheader_appheader" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/BrandSplash.tsx", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_brandsplash_tsx", - "target": "components_brandsplash_brandsplash" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/BrandSplash.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_brandsplash_tsx", - "target": "components_brandsplash_ease_in" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/BrandSplash.tsx", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_brandsplash_tsx", - "target": "components_brandsplash_ease_out" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/BrandSplash.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_brandsplash_tsx", - "target": "components_brandsplash_height_sh" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/BrandSplash.tsx", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_brandsplash_tsx", - "target": "components_brandsplash_props" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", - "target": "apps_rebreak_native_components_riveavatar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_digamissionbanner_tsx", - "target": "apps_rebreak_native_components_riveavatar_tsx", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_emotion" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_emotion_animations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L112", - "weight": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_emotion_labels", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_existing_timelines" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_preloadriveasset" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_props" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_rive_module" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_riveavatar" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L95", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_safeanim" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L125", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_size_px" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_supportedemotion" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L109", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_sustained" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L103", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "components_riveavatar_two_phase" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_riveavatar_tsx", - "target": "urge_urgestats_emotionlabel" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_lyraresponse_ts", - "target": "apps_rebreak_native_components_riveavatar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_postcard_postcard", - "target": "apps_rebreak_native_components_riveavatar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_addwindowssheet_addwindowssheet", - "target": "apps_rebreak_native_components_riveavatar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "games_gameoverscreen_gameoverscreen", - "target": "apps_rebreak_native_components_riveavatar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "onboarding_lyrabubble_lyrabubble", - "target": "apps_rebreak_native_components_riveavatar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_digamissionbanner_digamissionbanner", - "target": "apps_rebreak_native_components_riveavatar_tsx" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_lyraresponse_ts", - "target": "components_riveavatar_emotion" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "onboarding_lyrabubble_lyrabubble", - "target": "components_riveavatar_emotion" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", - "source_location": "L144", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_riveavatar_riveavatar", - "target": "components_riveavatar_safeanim" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", - "target": "components_riveavatar_riveavatar" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_digamissionbanner_tsx", - "target": "components_riveavatar_riveavatar", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_postcard_postcard", - "target": "components_riveavatar_riveavatar" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_addwindowssheet_addwindowssheet", - "target": "components_riveavatar_riveavatar" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "games_gameoverscreen_gameoverscreen", - "target": "components_riveavatar_riveavatar" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "onboarding_lyrabubble_lyrabubble", - "target": "components_riveavatar_riveavatar" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_digamissionbanner_digamissionbanner", - "target": "components_riveavatar_riveavatar" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L283", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_androidsetupflow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L264", - "weight": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_androidsetupflowprops", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L527", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_androidstep1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L395", - "weight": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_androidstep2", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L527", - "weight": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_androidstep3", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L466", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_androidstepbattery" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_iosunsupervisedsetupflow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_setupflowprops" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L71", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_setupstep1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_setupstep2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L207", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_setupstep3" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", - "source_location": "L582", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "blocker_setupflows_setupstepcard" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.8, - "weight": 0.8, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "Schutz-Aktivierungs-Flow", - "source": "apps_rebreak_native_components_blocker_setupflows_tsx", - "target": "diga_03_req_prot" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L12", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "apps_rebreak_native_components_blocker_setupflows_tsx", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "apps_rebreak_native_components_blocker_setupflows_tsx" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L12", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "blocker_setupflows_iosunsupervisedsetupflow", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "blocker_setupflows_iosunsupervisedsetupflow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L467", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_de_blocker", - "target": "blocker_setupflows_setupstep1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L474", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_de_blocker", - "target": "blocker_setupflows_setupstep3" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L12", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "blocker_setupflows_androidsetupflow", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "blocker_setupflows_androidsetupflow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L495", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_de_blocker", - "target": "blocker_setupflows_androidstep1" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L7", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "apps_rebreak_native_lib_protection_ts", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L13", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "blocker_layerswitchcard_layerswitchcard", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L9", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "hooks_useblocklistsync_useblocklistsync", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L6", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "hooks_useme_invalidateme", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L8", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "hooks_useprotectionstate_useprotectionstate", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L5", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "lib_api_apifetch", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L10", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "lib_onboardingassets_getpermissionscreenshot", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L7", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "lib_protection_protection", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "lib_theme_usecolors", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L16", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "onboarding_ctabar_ctabar", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L15", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "onboarding_lyrabubble_lyrabubble", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L14", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "onboarding_onboardingshell_onboardingshell", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L17", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "onboarding_permissionconfirmsheet_permissionconfirmsheet", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L24", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "slides_protectionslide_confirmstep", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L40", - "weight": 1.0, - "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", - "target": "slides_protectionslide_protectionslide", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "slides_protectionslide_confirmstep" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/onboarding/index.tsx", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_onboarding_index_tsx", - "target": "slides_protectionslide_protectionslide" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "apps_rebreak_native_hooks_useme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "apps_rebreak_native_lib_api_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "apps_rebreak_native_lib_i18n_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "apps_rebreak_native_lib_onboardingassets_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "apps_rebreak_native_modules_rebreak_protection_index_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "blocker_layerswitchcard_layerswitchcard" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L9", - "weight": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "hooks_useblocklistsync_useblocklistsync" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "hooks_useme_invalidateme" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L8", - "weight": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "hooks_useprotectionstate_useprotectionstate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "lib_api_apifetch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L10", - "weight": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "lib_onboardingassets_getpermissionscreenshot" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "lib_protection_protection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "locales_de_blocker_permission_denied" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "onboarding_ctabar_ctabar" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "onboarding_lyrabubble_lyrabubble" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "onboarding_onboardingshell_onboardingshell" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "onboarding_permissionconfirmsheet_permissionconfirmsheet" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "slides_protectionslide_protectionslide", - "target": "onboarding_screenshotpointer_screenshotpointer" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L14", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "components_wheelpickermodal_wheelpickermodal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L13", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "lib_germancities_getcitiesforbundesland", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L15", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "lib_theme_usecolors", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L19", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_birth_year_options", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L97", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_bundesland_options", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L28", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_demographics", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L149", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_demographicsaccordion", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L64", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_employment_status_options", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L682", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_fieldrow", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L49", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_gender_options", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L74", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_industry_options", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L88", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_job_tenure_options", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L142", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_lookuplabel", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L55", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_marital_options", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L147", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_mockpersist", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L40", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_props", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L120", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_relevantfieldcount", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L753", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_selectbutton", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L117", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_status_with_industry", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L116", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_status_with_shift", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L118", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", - "target": "profile_demographicsaccordion_status_with_tenure", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_birth_year_options" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_props" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_gender_options" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L55", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_marital_options" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_employment_status_options" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_industry_options" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L88", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_job_tenure_options" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L97", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_bundesland_options" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_status_with_shift" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L117", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_status_with_industry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L118", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_status_with_tenure" - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L120", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_relevantfieldcount" - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L142", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_lookuplabel" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L147", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_mockpersist" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_profile_index_tsx", - "target": "profile_demographicsaccordion_demographicsaccordion" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "apps_rebreak_native_lib_germancities_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "components_wheelpickermodal_wheelpickermodal" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "db_profile_demographicspatch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "hooks_useme_plan" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "hooks_useuserplan_useuserplan" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "lib_germancities_getcitiesforbundesland" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L15", - "weight": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "lib_theme_usecolors" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L682", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_fieldrow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L753", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_demographicsaccordion_demographicsaccordion", - "target": "profile_demographicsaccordion_selectbutton" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L699", - "weight": 1.0, - "source": "profile_demographicsaccordion_fieldrow", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", - "source_location": "L754", - "weight": 1.0, - "source": "profile_demographicsaccordion_selectbutton", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_digamissionbanner_tsx", - "target": "lib_theme_usecolors", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L11", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_digamissionbanner_tsx", - "target": "profile_digamissionbanner_digamissionbanner", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L6", - "weight": 1.0, - "source": "apps_rebreak_native_components_profile_digamissionbanner_tsx", - "target": "profile_digamissionbanner_props", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_digamissionbanner_digamissionbanner", - "target": "profile_digamissionbanner_props" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_profile_index_tsx", - "target": "profile_digamissionbanner_digamissionbanner" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_digamissionbanner_digamissionbanner", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "profile_digamissionbanner_digamissionbanner", - "target": "lib_theme_usecolors" - }, { "relation": "defines", "confidence": "EXTRACTED", @@ -141528,9 +208036,9 @@ "source_file": "apps/rebreak-native/deploy.sh", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "apps_rebreak_native_deploy_sh", - "target": "rebreak_native_deploy_format_duration", - "confidence_score": 1.0 + "target": "rebreak_native_deploy_format_duration" }, { "relation": "defines", @@ -141568,9 +208076,9 @@ "source_file": "apps/rebreak-native/deploy.sh", "source_location": "L491", "weight": 1.0, + "confidence_score": 1.0, "source": "apps_rebreak_native_deploy_sh", - "target": "rebreak_native_deploy_get_current_version_code", - "confidence_score": 1.0 + "target": "rebreak_native_deploy_get_current_version_code" }, { "relation": "defines", @@ -142349,8208 +208857,105 @@ "source": "rebreak_native_deploy_deploy_testflight", "target": "rebreak_native_deploy_require_asc_api_key" }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_cmd_android" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L469", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_cmd_clean" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L568", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_cmd_install_android" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L530", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_cmd_install_ios" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L119", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_cmd_ios" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L615", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_cmd_magic" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L443", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_cmd_metro" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L319", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_cmd_mobile" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L292", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_detect_android_devices" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L282", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_detect_ios_device" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L282", - "weight": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_detect_ios_device_name", - "confidence_score": 1.0 - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L99", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_die" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L98", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_error" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_expo_public_enable_debug" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L95", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_log" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L96", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_ok" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_rebreak_dev" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L111", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_rebreak_enable_family_controls" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L101", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_section" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L298", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_start_shared_metro" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L97", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "rebreak_native_dev_warn" - }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_dev_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L704", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", - "target": "rebreak_native_dev_cmd_android" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L716", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", - "target": "rebreak_native_dev_cmd_clean" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L724", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", - "target": "rebreak_native_dev_cmd_install_android" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L723", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", - "target": "rebreak_native_dev_cmd_install_ios" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L700", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", - "target": "rebreak_native_dev_cmd_ios" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L734", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", - "target": "rebreak_native_dev_cmd_magic" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L712", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", - "target": "rebreak_native_dev_cmd_metro" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L708", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", - "target": "rebreak_native_dev_cmd_mobile" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L726", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_dev_sh__entry", - "target": "rebreak_native_dev_error" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L214", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_android", - "target": "rebreak_native_dev_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L482", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_clean", - "target": "rebreak_native_dev_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L596", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_install_android", - "target": "rebreak_native_dev_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L555", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_install_ios", - "target": "rebreak_native_dev_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L146", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_ios", - "target": "rebreak_native_dev_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L640", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_magic", - "target": "rebreak_native_dev_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L455", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_metro", - "target": "rebreak_native_dev_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L385", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_mobile", - "target": "rebreak_native_dev_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L300", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_start_shared_metro", - "target": "rebreak_native_dev_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L264", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_android", - "target": "rebreak_native_dev_ok" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L506", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_clean", - "target": "rebreak_native_dev_ok" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L612", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_install_android", - "target": "rebreak_native_dev_ok" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L563", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_install_ios", - "target": "rebreak_native_dev_ok" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L171", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_ios", - "target": "rebreak_native_dev_ok" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L649", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_magic", - "target": "rebreak_native_dev_ok" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L355", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_mobile", - "target": "rebreak_native_dev_ok" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L310", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_start_shared_metro", - "target": "rebreak_native_dev_ok" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L236", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_android", - "target": "rebreak_native_dev_warn" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L608", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_install_android", - "target": "rebreak_native_dev_warn" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L643", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_magic", - "target": "rebreak_native_dev_warn" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L357", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_mobile", - "target": "rebreak_native_dev_warn" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L316", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_start_shared_metro", - "target": "rebreak_native_dev_warn" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L588", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_install_android", - "target": "rebreak_native_dev_error" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L546", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_install_ios", - "target": "rebreak_native_dev_error" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L430", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_mobile", - "target": "rebreak_native_dev_error" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L99", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_die", - "target": "rebreak_native_dev_error" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L199", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_android", - "target": "rebreak_native_dev_die" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L476", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_clean", - "target": "rebreak_native_dev_die" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L578", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_install_android", - "target": "rebreak_native_dev_die" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L535", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_install_ios", - "target": "rebreak_native_dev_die" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L131", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_ios", - "target": "rebreak_native_dev_die" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L627", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_magic", - "target": "rebreak_native_dev_die" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L449", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_metro", - "target": "rebreak_native_dev_die" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L329", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_mobile", - "target": "rebreak_native_dev_die" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L203", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_android", - "target": "rebreak_native_dev_section" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L480", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_clean", - "target": "rebreak_native_dev_section" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L569", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_install_android", - "target": "rebreak_native_dev_section" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L531", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_install_ios", - "target": "rebreak_native_dev_section" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L135", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_ios", - "target": "rebreak_native_dev_section" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L631", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_magic", - "target": "rebreak_native_dev_section" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L453", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_metro", - "target": "rebreak_native_dev_section" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L333", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_mobile", - "target": "rebreak_native_dev_section" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/dev.sh", - "source_location": "L375", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "rebreak_native_dev_cmd_mobile", - "target": "rebreak_native_dev_start_shared_metro" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/_layout.tsx", - "source_location": "L95", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_layout_rootlayoutinner", - "target": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/_layout.tsx", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_layout_tsx", - "target": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", - "target": "apps_rebreak_native_lib_realtimestatus_ts", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", - "target": "apps_rebreak_native_lib_supabase_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", - "target": "apps_rebreak_native_stores_deviceapproval_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", - "source_location": "L17", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", - "target": "hooks_usedeviceapprovalrealtime_usedeviceapprovalrealtime", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", - "target": "lib_realtimestatus_isrealtimeerrorreal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", - "target": "lib_supabase_supabase" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", - "target": "stores_deviceapproval_usedeviceapprovalstore" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts", - "target": "apps_rebreak_native_lib_realtimestatus_ts", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts", - "target": "apps_rebreak_native_lib_supabase_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", - "source_location": "L14", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts", - "target": "hooks_usedomainsubmissionrealtime_usedomainsubmissionrealtime", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts", - "target": "lib_realtimestatus_isrealtimeerrorreal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts", - "target": "lib_supabase_supabase" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L2", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_useincomingcalls_ts", - "target": "apps_rebreak_native_lib_realtimestatus_ts", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L14", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_useincomingcalls_ts", - "target": "hooks_useincomingcalls_useincomingcalls", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L2", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_useincomingcalls_ts", - "target": "lib_realtimestatus_isrealtimeerrorreal", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L5", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_useincomingcalls_ts", - "target": "lib_supabase_supabase", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L6", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_useincomingcalls_ts", - "target": "stores_call_callpeer", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L6", - "weight": 1.0, - "source": "apps_rebreak_native_hooks_useincomingcalls_ts", - "target": "stores_call_usecallstore", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/_layout.tsx", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_layout_rootlayoutinner", - "target": "hooks_useincomingcalls_useincomingcalls" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/_layout.tsx", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_layout_tsx", - "target": "hooks_useincomingcalls_useincomingcalls" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_useincomingcalls_useincomingcalls", - "target": "apps_rebreak_native_lib_supabase_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_useincomingcalls_useincomingcalls", - "target": "apps_rebreak_native_stores_call_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_useincomingcalls_useincomingcalls", - "target": "lib_supabase_supabase" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_useincomingcalls_useincomingcalls", - "target": "stores_call_callpeer" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_useincomingcalls_useincomingcalls", - "target": "stores_call_usecallstore" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_lyraresponse_ts", - "target": "apps_rebreak_native_lib_sosconstants_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_lyraresponse_ts", - "target": "lib_lyraresponse_chipspec" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_lyraresponse_ts", - "target": "lib_lyraresponse_detectemotion" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_lyraresponse_ts", - "target": "lib_lyraresponse_lyraemotion" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/lyraResponse.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_lyraresponse_ts", - "target": "lib_lyraresponse_parselyraresponse" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.85, - "weight": 0.85, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "parses Lyra structured reply", - "source": "lib_lyraresponse_parselyraresponse", - "target": "diga_03_req_lyra" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L27", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_api_apifetch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L69", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_backendcooldownstatus", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L80", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_backendprotectionstate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L50", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_cooldownstate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L717", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_formatcooldownremaining", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L99", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_getcooldowntestmode", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L700", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_isalllayerson", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L114", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_markprotectionactivatedhere", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L127", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_protection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L42", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_protectionphase", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L57", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_protectionstate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L95", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_setcooldowntestmode", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L118", - "weight": 1.0, - "source": "apps_rebreak_native_lib_protection_ts", - "target": "lib_protection_wasprotectioneveractivehere", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L50", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "lib_protection_cooldownstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L69", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "lib_protection_backendcooldownstatus" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "lib_protection_backendprotectionstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L99", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "lib_protection_setcooldowntestmode" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L114", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "lib_protection_markprotectionactivatedhere" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L118", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "lib_protection_wasprotectioneveractivehere" - }, - { - "relation": "references", - "confidence": "INFERRED", - "confidence_score": 0.85, - "weight": 0.85, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "Bypass-Detection-Flag (everActiveHere)", - "source": "lib_protection_wasprotectioneveractivehere", - "target": "diga_04_risk_false_01_falsche_sicherheit" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_layout_tsx", - "target": "lib_protection_protection" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/ProtectionOnboardingSheet.tsx", + "source_file": "apps/rebreak-native/google-services.json", "source_location": "L7", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_components_protectiononboardingsheet_tsx", - "target": "lib_protection_protection" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "blocker_protectioncard_protectioncard", - "target": "lib_protection_protection" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "blocker_protectiondetailssheet_protectiondetailssheet", - "target": "lib_protection_protection" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "blocker_protectionlockedcard_protectionlockedcard", - "target": "lib_protection_protection" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useBlocklistSync.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_useblocklistsync_useblocklistsync", - "target": "lib_protection_protection" - }, - { - "relation": "re_exports", - "context": "export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", - "source_location": "L295", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_useprotectionstate_useprotectionstate", - "target": "lib_protection_protection" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "apps_rebreak_native_lib_api_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "apps_rebreak_native_modules_rebreak_protection_index_ts" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.85, - "weight": 0.85, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "native Protection-State-Machine", - "source": "lib_protection_protection", - "target": "diga_03_req_prot" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "lib_api_apifetch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L717", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "lib_protection_formatcooldownremaining" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L700", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "lib_protection_isalllayerson" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "src_lib_protectionstate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "src_rebreakprotection_types_activateresult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "src_rebreakprotection_types_devicelayers" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "src_rebreakprotection_types_healthprobeopts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "src_rebreakprotection_types_healthproberesult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "src_rebreakprotection_types_syncblocklistopts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "src_rebreakprotection_types_syncblocklistresult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "src_rebreakprotection_types_syncwebcontentdomainsopts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "src_rebreakprotection_types_systemsettingstarget" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/protection.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_protection_protection", - "target": "src_rebreakprotection_types_webcontentfilterresult" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/de.json", - "source_location": "L523", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_de_coach_lyra", - "target": "lib_protection_protection" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.85, - "weight": 0.85, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "prueft alle Schutz-Layer aktiv", - "source": "lib_protection_isalllayerson", - "target": "diga_03_req_prot" - }, - { - "relation": "references", - "confidence": "INFERRED", - "confidence_score": 0.9, - "weight": 0.9, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "erkennt teil-/inaktiven Schutz", - "source": "lib_protection_isalllayerson", - "target": "diga_04_risk_false_01_falsche_sicherheit" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", - "source_location": "L4", - "weight": 1.0, - "source": "hooks_useprotectionstate_useprotectionstate", - "target": "lib_protection_formatcooldownremaining" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/realtimeStatus.ts", - "source_location": "L17", - "weight": 1.0, - "source": "apps_rebreak_native_lib_realtimestatus_ts", - "target": "lib_realtimestatus_isrealtimeerrorreal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L4", - "weight": 1.0, - "source": "apps_rebreak_native_stores_notifications_ts", - "target": "apps_rebreak_native_lib_realtimestatus_ts", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L4", - "weight": 1.0, - "source": "apps_rebreak_native_stores_notifications_ts", - "target": "lib_realtimestatus_isrealtimeerrorreal", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_urge_breathing_tsx", - "target": "apps_rebreak_native_lib_sosconstants_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L48", - "weight": 1.0, - "source": "apps_rebreak_native_lib_sosconstants_ts", - "target": "lib_sosconstants_breath_phases", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_sosconstants_ts", - "target": "lib_sosconstants_breathphase" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_sosconstants_ts", - "target": "lib_sosconstants_breathstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_sosconstants_ts", - "target": "lib_sosconstants_chip" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_sosconstants_ts", - "target": "lib_sosconstants_chip_sets" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/sosConstants.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_sosconstants_ts", - "target": "lib_sosconstants_chipset" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_urge_breathing_tsx", - "target": "lib_sosconstants_breathphase" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_urge_breathing_tsx", - "target": "lib_sosconstants_breathstate" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/i18n.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_i18n_ts", - "target": "apps_rebreak_native_locales_ar_json" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L103", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_appheader" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L95", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_applock" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_auth" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L170", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_blocker" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L149", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_coach" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_common" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L127", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_games" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_headermenu" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L134", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_home" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_landing" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L398", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_onboarding" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L90", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_splash" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L119", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_locales_ar_json", - "target": "locales_ar_tabs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_common", - "target": "locales_ar_coach_error" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_common", - "target": "locales_ar_common_back" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_common", - "target": "locales_ar_common_cancel" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_common", - "target": "locales_ar_common_confirm" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_common", - "target": "locales_ar_common_continue" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L7", - "weight": 1.0, - "source": "locales_ar_common", - "target": "locales_ar_common_error", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_common", - "target": "locales_ar_common_loading" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_common", - "target": "locales_ar_common_ok" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_common", - "target": "locales_ar_common_retry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_common", - "target": "locales_ar_common_success" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_common", - "target": "locales_ar_common_unknown_error" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_acceptterms" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L55", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_accepttermssuffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_alreadyregistered" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_applesignin" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_applesignup" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_backtologin" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L50", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_backtologinplain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L51", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_backtosignup" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_chooseavatar" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_confirmbtn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_confirmed" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_confirmemaildesc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_confirmemailline1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L61", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_confirmemailline2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_confirmemailtitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_confirmfailed" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_confirming" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L65", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_confirmsuccess" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_confirmtimeout" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_device_locked_back" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L79", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_device_locked_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_device_locked_countdown" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L81", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_device_locked_email_hint" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L78", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_device_locked_headline" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_device_locked_use_original" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_devicelimitdesc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L71", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_devicelimittitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_devicelimitupgrade" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_email" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_emailplaceholder" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_emailrequired" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_fillrequired" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_forgotpassword" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_googlesignin" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_googlesignup" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_loginfailed" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_newpassword" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_nickname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_nicknameplaceholder" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_noaccount" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_nocode" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_oauthfailed" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_orwithemail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_password" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_passwordmin8" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_passwordplaceholder" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_passwordrequired" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_pleaseacceptterms" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_privacynotice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_registerfailed" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_resend" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L69", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_resendcooldown" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_resetpasswordsend" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_resetpasswordsent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_resetpasswordsentdesc" + "source": "apps_rebreak_native_google_services_json", + "target": "rebreak_native_google_services_client" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", + "source_file": "apps/rebreak-native/google-services.json", "source_location": "L47", "weight": 1.0, "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_resetpasswordsentdescprefix" + "source": "apps_rebreak_native_google_services_json", + "target": "rebreak_native_google_services_configuration_version" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L48", + "source_file": "apps/rebreak-native/google-services.json", + "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_resetpasswordsentdescsuffix" + "source": "apps_rebreak_native_google_services_json", + "target": "rebreak_native_google_services_project_info" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L43", + "source_file": "apps/rebreak-native/google-services.json", + "source_location": "L4", "weight": 1.0, "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_resetpasswordsubtitle" + "source": "rebreak_native_google_services_project_info", + "target": "rebreak_native_google_services_project_info_project_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L42", + "source_file": "apps/rebreak-native/google-services.json", + "source_location": "L3", "weight": 1.0, "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_resetpasswordtitle" + "source": "rebreak_native_google_services_project_info", + "target": "rebreak_native_google_services_project_info_project_number" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L17", + "source_file": "apps/rebreak-native/google-services.json", + "source_location": "L5", "weight": 1.0, "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_signin" + "source": "rebreak_native_google_services_project_info", + "target": "rebreak_native_google_services_project_info_storage_bucket" }, { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_signingin" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_signinsubtitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_signout" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_signup" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_signupsubtitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_signuptitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_termslink" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_tologin" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth", - "target": "locales_ar_auth_welcomeback" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L110", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_appheader", - "target": "locales_ar_auth_signout" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L460", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth_nickname", - "target": "locales_ar_coach_placeholder" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L464", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth_nickname", - "target": "locales_ar_nickname_error_profanity" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L465", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth_nickname", - "target": "locales_ar_nickname_error_taken" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L463", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth_nickname", - "target": "locales_ar_nickname_error_too_long" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L462", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth_nickname", - "target": "locales_ar_nickname_error_too_short" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L461", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth_nickname", - "target": "locales_ar_nickname_hint" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L459", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth_nickname", - "target": "locales_ar_nickname_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L407", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_auth_nickname", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L406", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_auth_nickname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L457", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_auth_nickname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L88", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_landing", - "target": "locales_ar_home_start" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_landing", - "target": "locales_ar_home_tagline" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_landing", - "target": "locales_ar_landing_appname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L88", - "weight": 1.0, - "source": "locales_ar_landing", - "target": "locales_ar_landing_start", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L87", - "weight": 1.0, - "source": "locales_ar_landing", - "target": "locales_ar_landing_tagline", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L104", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_appheader", - "target": "locales_ar_landing_appname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L92", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_splash", - "target": "locales_ar_games_subtitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L91", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_splash", - "target": "locales_ar_home_tagline" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L93", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_splash", - "target": "locales_ar_splash_madeingermany" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L92", - "weight": 1.0, - "source": "locales_ar_splash", - "target": "locales_ar_splash_subtitle", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L91", - "weight": 1.0, - "source": "locales_ar_splash", - "target": "locales_ar_splash_tagline", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L99", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_applock", - "target": "locales_ar_applock_prompt" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L101", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_applock", - "target": "locales_ar_applock_signout_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_applock", - "target": "locales_ar_applock_signout_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L97", - "weight": 1.0, - "source": "locales_ar_applock", - "target": "locales_ar_applock_subtitle", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L96", - "weight": 1.0, - "source": "locales_ar_applock", - "target": "locales_ar_applock_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L98", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_applock", - "target": "locales_ar_applock_unlock" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L97", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_applock", - "target": "locales_ar_games_subtitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L96", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_applock", - "target": "locales_ar_games_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L104", - "weight": 1.0, - "source": "locales_ar_appheader", - "target": "locales_ar_appheader_appname", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_appheader", - "target": "locales_ar_appheader_editprofile" - }, - { - "relation": "contains", + "relation": "defines", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L109", + "source_file": "apps/rebreak-native/clean-ios.sh", + "source_location": "L45", "weight": 1.0, "confidence_score": 1.0, - "source": "locales_ar_appheader", - "target": "locales_ar_appheader_settings" + "source": "apps_rebreak_native_clean_ios_sh", + "target": "rebreak_native_clean_ios_rebreak_enable_family_controls" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L110", - "weight": 1.0, - "source": "locales_ar_appheader", - "target": "locales_ar_appheader_signout", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L105", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_appheader", - "target": "locales_ar_appheader_soslabel" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L107", + "source_file": "apps/rebreak-native/clean-ios.sh", + "source_location": "L1", "weight": 1.0, "confidence_score": 1.0, - "source": "locales_ar_appheader", - "target": "locales_ar_appheader_sossubtitle" + "source": "apps_rebreak_native_clean_ios_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_clean_ios_sh__entry" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L106", + "source_file": "apps/rebreak-native/install-android.sh", + "source_location": "L1", "weight": 1.0, "confidence_score": 1.0, - "source": "locales_ar_appheader", - "target": "locales_ar_appheader_sostagline" + "source": "apps_rebreak_native_install_android_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_install_android_sh__entry" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L114", + "source_file": "apps/rebreak-native/tools/gen-android-launcher.sh", + "source_location": "L1", "weight": 1.0, "confidence_score": 1.0, - "source": "locales_ar_headermenu", - "target": "locales_ar_appheader_settings" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_headermenu", - "target": "locales_ar_games" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_headermenu", - "target": "locales_ar_headermenu_debug" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L115", - "weight": 1.0, - "source": "locales_ar_headermenu", - "target": "locales_ar_headermenu_games", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L117", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_headermenu", - "target": "locales_ar_headermenu_logout" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L113", - "weight": 1.0, - "source": "locales_ar_headermenu", - "target": "locales_ar_headermenu_profile", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L114", - "weight": 1.0, - "source": "locales_ar_headermenu", - "target": "locales_ar_headermenu_settings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_headermenu", - "target": "locales_ar_tabs_profile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L123", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_tabs", - "target": "locales_ar_blocker" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L122", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_tabs", - "target": "locales_ar_coach" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L120", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_tabs", - "target": "locales_ar_home" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L123", - "weight": 1.0, - "source": "locales_ar_tabs", - "target": "locales_ar_tabs_blocker", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L121", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_tabs", - "target": "locales_ar_tabs_chat" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L122", - "weight": 1.0, - "source": "locales_ar_tabs", - "target": "locales_ar_tabs_coach", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L120", - "weight": 1.0, - "source": "locales_ar_tabs", - "target": "locales_ar_tabs_home", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_tabs", - "target": "locales_ar_tabs_mail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L125", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_tabs", - "target": "locales_ar_tabs_profile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L130", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_games", - "target": "locales_ar_games_back_to_picker" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_games", - "target": "locales_ar_games_last_score" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L132", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_games", - "target": "locales_ar_games_skeleton_footer" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_games", - "target": "locales_ar_games_subtitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L128", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_games", - "target": "locales_ar_games_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L171", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_games_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_games_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_permission_denied", - "target": "locales_ar_games_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_games_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_games_subtitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L151", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_games_subtitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_greeting_day" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_greeting_evening" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L137", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_greeting_morning" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L144", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_quick_access" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L143", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_quote_of_day" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L136", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_start" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L146", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_stats_chats" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L147", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_stats_mails" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L145", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_stats_urges" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L140", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_streak_days_one" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L141", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_streak_days_other" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L142", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_streak_start" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L135", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_home", - "target": "locales_ar_home_tagline" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_error" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L164", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_feedback_saved" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_input_placeholder" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L155", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_lyra" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_modebadge" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_new_chat" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_online" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L160", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_placeholder" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L162", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_recording" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_speaking" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L151", - "weight": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_subtitle", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_thinking" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L150", - "weight": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L163", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_transcribing" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L152", - "weight": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_welcome", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L165", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_coach_welcome_back" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L152", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach", - "target": "locales_ar_lyra_welcome" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L442", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_audio_disable" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L440", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_audio_loading" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L439", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_audio_play" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L441", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_audio_stop" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L409", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_diga_choice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L412", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_diga_code" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L436", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_done" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L418", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_payment" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L415", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_plan" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L403", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_privacy" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L421", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_protection" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L427", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_protection_lock" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L433", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_protection_lock_android" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L424", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_protection_url" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L430", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_protection_url_android" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L400", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_lyra", - "target": "locales_ar_lyra_welcome" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L399", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_coach_lyra" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L157", - "weight": 1.0, - "source": "locales_ar_coach_modebadge", - "target": "locales_ar_modebadge_coach", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L158", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_coach_modebadge", - "target": "locales_ar_modebadge_sos" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L284", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_activate_app_lock_failed_msg" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L283", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_activate_app_lock_failed_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_activate_settings_btn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_activate_url_failed_msg" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_activate_url_failed_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_activation_failed_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L181", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_domain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L376", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_mail_help" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L377", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_mail_invalid" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L374", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_mail_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L375", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_mail_placeholder" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_sheet_add_failed" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L200", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_sheet_already_global" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L198", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_sheet_confirm_permanent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L378", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_sheet_cta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L190", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_sheet_help" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_sheet_invalid" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L187", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_sheet_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_sheet_placeholder" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L186", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_sheet_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_sheet_warning_free" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_sheet_warning_pro" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L373", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_web_help" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L371", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_web_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L372", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_add_web_placeholder" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L367", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_app_lock_coming_soon_badge" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L368", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_app_lock_coming_soon_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_cooldown_banner_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L364", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_cooldown_elapsed_message" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L365", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_cooldown_elapsed_message_ios" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L366", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_cooldown_elapsed_open_settings" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_cooldown_elapsed_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L381", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_count_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L180", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_custom_domains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L195", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_custom_filter_overview_count" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L194", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_custom_filter_overview_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_actionsheet_message" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_actionsheet_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_breathe_cta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L210", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_bullet1_text" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L209", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_bullet1_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L212", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_bullet2_text" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L211", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_bullet2_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_bullet3_text" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L213", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_bullet3_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_cancel_failed" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_failed_msg" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_heading" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_intro" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L216", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_start_anyway" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L204", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_start_cta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_starting" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L207", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_deactivation_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_delta_month" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L330", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_delta_week" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L290", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_active_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L305", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_deactivate_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L291", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_domains_blocked" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L288", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_done" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L300", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_layer_a11y_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L299", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_layer_a11y_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L296", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_layer_applock_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L295", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_layer_applock_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L302", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_layer_tamper_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L301", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_layer_tamper_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_layer_url_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_layer_url_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L298", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_layer_vpn_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L297", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_layer_vpn_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L292", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_layers_heading" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L304", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_lyra_cta_subtitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L303", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_lyra_cta_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L289", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_details_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_add_a11y" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_badge_active" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_badge_pruefung" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_badge_rejected" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_badge_voting" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L229", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_btn_erneut" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_btn_freigeben" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_btn_in_abstimmung" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_btn_rebreak_prueft" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_confirm_community_first" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L237", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_confirm_community_message" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L234", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_confirm_community_resubmit" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_confirm_legend_first" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_confirm_legend_message" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_confirm_legend_resubmit" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_empty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_limit_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_limit_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L219", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_section_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L241", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_success_community_message" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L239", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_success_community_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L240", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_success_legend_message" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_domain_success_legend_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L390", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_empty_mail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L389", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_empty_web" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L387", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_error_duplicate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L385", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_error_invalid_input" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L384", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_error_invalid_mail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L383", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_error_mail_limit_reached" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L386", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_error_public_domain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L382", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_error_web_limit_reached" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L270", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_family_controls_error" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L345", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq1_a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L344", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq1_q" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L347", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq2_a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L346", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq2_q" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L349", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq3_a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L348", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq3_q" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L351", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq4_a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L350", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq4_q" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L353", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq5_a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L352", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq5_q" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L355", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq6_a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L354", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq6_q" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L357", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq7_a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L356", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq7_q" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L359", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq8_a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L358", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq8_q" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L361", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq9_a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L360", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq9_q" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L343", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_faq_heading" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L176", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_filter_active_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_filter_inactive_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_filter_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L182", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_help_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L388", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kind_override_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L340", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_avg_per_user" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L341", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_avg_wait" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L342", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_days_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L328", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_global_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L329", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_global_subtitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L339", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_in_review" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L338", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_in_vote" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L334", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_my_submissions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L335", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_status_active" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L337", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_status_review" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L336", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_status_vote" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_submissions_subtitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L332", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_kpi_submissions_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L326", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_layers_a11y_subtitle_active" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L327", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_layers_a11y_subtitle_inactive" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_layers_app_lock_locked_hint" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L310", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_layers_app_lock_subtitle_active" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L311", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_layers_app_lock_subtitle_inactive" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L309", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_layers_app_lock_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L312", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_layers_app_lock_warning" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L307", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_layers_url_filter_subtitle_active" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L308", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_layers_url_filter_subtitle_inactive" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L306", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_layers_url_filter_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L396", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_mdm_deactivate_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L395", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_mdm_deactivate_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L394", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_mdm_info_hint" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L362", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_more_info_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_permission_denied" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L193", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_preview_invalid" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L192", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_preview_mail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_preview_web" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L245", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_card_locked_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_card_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L282", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_off_later" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L280", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_off_message" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L279", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_off_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_settings_a11y" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_stat_domains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_stat_method" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_stat_method_dns" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L393", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_stat_method_mdm" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_stat_method_native" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L392", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_stat_method_nefilter" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_stat_status" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_stat_status_live" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L247", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_subtitle_cooldown" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L248", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_subtitle_free" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_subtitle_inactive" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_subtitle_legend" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L391", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_subtitle_mdm" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_protection_subtitle_pro" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L281", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_reactivate_btn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L317", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_code_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L323", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_confirm_cta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L325", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_confirmed_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L324", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_confirmed_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L315", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L316", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_generate_cta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L322", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_open_settings_cta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_step1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L319", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_step2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L320", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_step3" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L321", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_step_note" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L314", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_screentime_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L379", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_section_domains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_section_mails" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_status_active" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L183", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_status_approved" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L174", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_status_inactive" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L185", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_status_pending" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L184", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_status_rejected" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L172", - "weight": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_subtitle", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L286", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_sync_list_failed_msg" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L285", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_sync_list_failed_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L179", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_tamper_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L178", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_tamper_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L171", - "weight": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L370", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_type_mail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L369", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_type_web" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_upgrade_alert_desc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L242", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker", - "target": "locales_ar_blocker_upgrade_alert_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L263", - "weight": 1.0, - "source": "locales_ar_blocker_permission_denied", - "target": "locales_ar_permission_denied_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L268", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_permission_denied", - "target": "locales_ar_permission_denied_fallback_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L267", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_permission_denied", - "target": "locales_ar_permission_denied_fallback_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_permission_denied", - "target": "locales_ar_permission_denied_retry_cta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L265", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_permission_denied", - "target": "locales_ar_permission_denied_retry_loading" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_permission_denied", - "target": "locales_ar_permission_denied_settings_cta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L262", - "weight": 1.0, - "source": "locales_ar_blocker_permission_denied", - "target": "locales_ar_permission_denied_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_permission_denied", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L273", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_permission_denied_retry_cta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_permission_denied_retry_loading" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L275", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_permission_denied_settings_cta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L276", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_permission_denied_fallback_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L277", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_permission_denied_fallback_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L272", - "weight": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_family_controls_error_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L277", - "weight": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_family_controls_error_fallback_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L276", - "weight": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_family_controls_error_fallback_label", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L273", - "weight": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_family_controls_error_retry_cta", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L274", - "weight": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_family_controls_error_retry_loading", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L275", - "weight": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_family_controls_error_settings_cta", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L271", - "weight": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_family_controls_error_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_blocker_family_controls_error", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L480", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_code", - "target": "locales_ar_blocker_error_invalid_input" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L467", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_lyra_diga_choice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L472", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_lyra_diga_code" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L510", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_lyra_done" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_lyra_payment" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L482", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_lyra_plan" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L450", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_lyra_privacy" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_lyra_protection" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L444", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_lyra_welcome" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L467", - "weight": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_onboarding_diga_choice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L472", - "weight": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_onboarding_diga_code", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L399", - "weight": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_onboarding_lyra", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L457", - "weight": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_onboarding_nickname", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L511", - "weight": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_onboarding_payment", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L482", - "weight": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_onboarding_plan", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L450", - "weight": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_onboarding_privacy", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L516", - "weight": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_onboarding_protection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L444", - "weight": 1.0, - "source": "locales_ar_onboarding", - "target": "locales_ar_onboarding_welcome", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L442", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_audio_disable", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L440", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_audio_loading", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L439", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_audio_play", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L441", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_audio_stop", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L409", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_diga_choice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L412", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_diga_code", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L436", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_done", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L406", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_nickname", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L418", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_payment", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L415", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_plan", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L403", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_privacy", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L421", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_protection", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L427", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_protection_lock", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L433", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_protection_lock_android", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L424", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_protection_url", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L430", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_protection_url_android", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L400", - "weight": 1.0, - "source": "locales_ar_onboarding_lyra", - "target": "locales_ar_lyra_welcome", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L401", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_welcome", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L401", - "weight": 1.0, - "source": "locales_ar_lyra_welcome", - "target": "locales_ar_welcome_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L446", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_welcome", - "target": "locales_ar_welcome_bullet_anon" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L448", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_welcome", - "target": "locales_ar_welcome_bullet_community" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L447", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_welcome", - "target": "locales_ar_welcome_bullet_protect" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_privacy", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L404", - "weight": 1.0, - "source": "locales_ar_lyra_privacy", - "target": "locales_ar_privacy_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L452", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_privacy", - "target": "locales_ar_privacy_promise_alias" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L455", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_privacy", - "target": "locales_ar_privacy_promise_germany" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L453", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_privacy", - "target": "locales_ar_privacy_promise_minimal" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L454", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_privacy", - "target": "locales_ar_privacy_promise_no_ads" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L407", - "weight": 1.0, - "source": "locales_ar_lyra_nickname", - "target": "locales_ar_nickname_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L410", - "weight": 1.0, - "source": "locales_ar_lyra_diga_choice", - "target": "locales_ar_diga_choice_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L469", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_choice", - "target": "locales_ar_diga_choice_cta_no" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L468", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_choice", - "target": "locales_ar_diga_choice_cta_yes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L470", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_choice", - "target": "locales_ar_nickname_hint" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L410", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_choice", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L413", - "weight": 1.0, - "source": "locales_ar_lyra_diga_code", - "target": "locales_ar_diga_code_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L474", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_code", - "target": "locales_ar_diga_code_cta_secondary" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L478", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_code", - "target": "locales_ar_diga_code_error_already_used" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L479", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_code", - "target": "locales_ar_diga_code_error_expired" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L477", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_code", - "target": "locales_ar_diga_code_error_not_found" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L476", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_code", - "target": "locales_ar_nickname_hint" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L475", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_code", - "target": "locales_ar_nickname_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L413", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_diga_code", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L485", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_billing_monthly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L487", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_billing_savings" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L486", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_billing_yearly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L416", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L484", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_cta_legend" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L483", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_cta_trial" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_disclaimer" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L501", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_feat_blocklist" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L504", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_feat_community" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L505", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_feat_legend_all_pro" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L506", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_feat_legend_multi_device" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L507", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_feat_legend_voice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L502", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_feat_lyra" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L503", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_feat_mail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_hardship_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L497", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_legend_anchor_yearly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L495", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_legend_price_monthly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L496", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_legend_price_yearly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L499", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_legend_subline_monthly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L500", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_legend_subline_yearly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L498", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_legend_total_yearly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L491", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_pro_anchor_yearly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L488", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_pro_badge" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L489", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_pro_price_monthly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L490", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_pro_price_yearly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L493", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_pro_subline_monthly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L494", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_pro_subline_yearly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L492", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_plan", - "target": "locales_ar_plan_tier_pro_total_yearly" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L437", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_done", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L419", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_payment", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L422", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L428", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection_lock", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L434", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection_lock_android", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L425", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection_url", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L431", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection_url_android", - "target": "locales_ar_plan_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L419", - "weight": 1.0, - "source": "locales_ar_lyra_payment", - "target": "locales_ar_payment_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_payment", - "target": "locales_ar_payment_cta_dev_skip" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_payment", - "target": "locales_ar_payment_dev_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L513", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_payment", - "target": "locales_ar_payment_dev_label" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L528", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_android_a11y_pending_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L527", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_android_a11y_pending_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L534", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_android_restart_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L536", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_android_restart_later" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L535", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_android_restart_now" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L533", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_android_restart_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L537", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_applock_failed_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L422", - "weight": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L519", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_cta_check_a11y" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L518", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_cta_open_a11y" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L532", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_dialog_button_a11y_toggle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L529", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_dialog_button_allow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L530", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_dialog_button_continue" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L531", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_dialog_button_vpn_ok" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L521", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_lock_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L523", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_lock_title_android" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L524", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_tap_marker_hint" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L526", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_tap_marker_hint_android_a11y" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L525", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_tap_marker_hint_android_vpn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L520", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_url_title" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L522", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_ar_lyra_protection", - "target": "locales_ar_protection_url_title_android" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L425", - "weight": 1.0, - "source": "locales_ar_lyra_protection_url", - "target": "locales_ar_protection_url_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L428", - "weight": 1.0, - "source": "locales_ar_lyra_protection_lock", - "target": "locales_ar_protection_lock_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L431", - "weight": 1.0, - "source": "locales_ar_lyra_protection_url_android", - "target": "locales_ar_protection_url_android_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L434", - "weight": 1.0, - "source": "locales_ar_lyra_protection_lock_android", - "target": "locales_ar_protection_lock_android_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L437", - "weight": 1.0, - "source": "locales_ar_lyra_done", - "target": "locales_ar_done_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L446", - "weight": 1.0, - "source": "locales_ar_onboarding_welcome", - "target": "locales_ar_welcome_bullet_anon", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L448", - "weight": 1.0, - "source": "locales_ar_onboarding_welcome", - "target": "locales_ar_welcome_bullet_community", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L447", - "weight": 1.0, - "source": "locales_ar_onboarding_welcome", - "target": "locales_ar_welcome_bullet_protect", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L445", - "weight": 1.0, - "source": "locales_ar_onboarding_welcome", - "target": "locales_ar_welcome_cta_primary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L451", - "weight": 1.0, - "source": "locales_ar_onboarding_privacy", - "target": "locales_ar_privacy_cta_primary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L452", - "weight": 1.0, - "source": "locales_ar_onboarding_privacy", - "target": "locales_ar_privacy_promise_alias", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L455", - "weight": 1.0, - "source": "locales_ar_onboarding_privacy", - "target": "locales_ar_privacy_promise_germany", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L453", - "weight": 1.0, - "source": "locales_ar_onboarding_privacy", - "target": "locales_ar_privacy_promise_minimal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L454", - "weight": 1.0, - "source": "locales_ar_onboarding_privacy", - "target": "locales_ar_privacy_promise_no_ads", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L458", - "weight": 1.0, - "source": "locales_ar_onboarding_nickname", - "target": "locales_ar_nickname_cta_primary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L464", - "weight": 1.0, - "source": "locales_ar_onboarding_nickname", - "target": "locales_ar_nickname_error_profanity", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L465", - "weight": 1.0, - "source": "locales_ar_onboarding_nickname", - "target": "locales_ar_nickname_error_taken", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L463", - "weight": 1.0, - "source": "locales_ar_onboarding_nickname", - "target": "locales_ar_nickname_error_too_long", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L462", - "weight": 1.0, - "source": "locales_ar_onboarding_nickname", - "target": "locales_ar_nickname_error_too_short", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L461", - "weight": 1.0, - "source": "locales_ar_onboarding_nickname", - "target": "locales_ar_nickname_hint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L459", - "weight": 1.0, - "source": "locales_ar_onboarding_nickname", - "target": "locales_ar_nickname_label", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L460", - "weight": 1.0, - "source": "locales_ar_onboarding_nickname", - "target": "locales_ar_nickname_placeholder", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L469", - "weight": 1.0, - "source": "locales_ar_onboarding_diga_choice", - "target": "locales_ar_diga_choice_cta_no", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L468", - "weight": 1.0, - "source": "locales_ar_onboarding_diga_choice", - "target": "locales_ar_diga_choice_cta_yes", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L470", - "weight": 1.0, - "source": "locales_ar_onboarding_diga_choice", - "target": "locales_ar_diga_choice_hint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L473", - "weight": 1.0, - "source": "locales_ar_onboarding_diga_code", - "target": "locales_ar_diga_code_cta_primary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L474", - "weight": 1.0, - "source": "locales_ar_onboarding_diga_code", - "target": "locales_ar_diga_code_cta_secondary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L478", - "weight": 1.0, - "source": "locales_ar_onboarding_diga_code", - "target": "locales_ar_diga_code_error_already_used", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L479", - "weight": 1.0, - "source": "locales_ar_onboarding_diga_code", - "target": "locales_ar_diga_code_error_expired", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L480", - "weight": 1.0, - "source": "locales_ar_onboarding_diga_code", - "target": "locales_ar_diga_code_error_invalid_input", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L477", - "weight": 1.0, - "source": "locales_ar_onboarding_diga_code", - "target": "locales_ar_diga_code_error_not_found", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L476", - "weight": 1.0, - "source": "locales_ar_onboarding_diga_code", - "target": "locales_ar_diga_code_hint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L475", - "weight": 1.0, - "source": "locales_ar_onboarding_diga_code", - "target": "locales_ar_diga_code_label", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L485", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_billing_monthly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L487", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_billing_savings", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L486", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_billing_yearly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L484", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_cta_legend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L483", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_cta_trial", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L508", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_disclaimer", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L501", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_feat_blocklist", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L504", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_feat_community", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L505", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_feat_legend_all_pro", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L506", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_feat_legend_multi_device", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L507", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_feat_legend_voice", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L502", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_feat_lyra", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L503", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_feat_mail", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L509", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_hardship_link", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L497", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_legend_anchor_yearly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L495", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_legend_price_monthly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L496", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_legend_price_yearly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L499", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_legend_subline_monthly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L500", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_legend_subline_yearly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L498", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_legend_total_yearly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L491", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_pro_anchor_yearly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L488", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_pro_badge", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L489", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_pro_price_monthly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L490", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_pro_price_yearly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L493", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_pro_subline_monthly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L494", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_pro_subline_yearly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L492", - "weight": 1.0, - "source": "locales_ar_onboarding_plan", - "target": "locales_ar_plan_tier_pro_total_yearly", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L512", - "weight": 1.0, - "source": "locales_ar_onboarding_payment", - "target": "locales_ar_payment_cta_dev_skip", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L514", - "weight": 1.0, - "source": "locales_ar_onboarding_payment", - "target": "locales_ar_payment_dev_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L513", - "weight": 1.0, - "source": "locales_ar_onboarding_payment", - "target": "locales_ar_payment_dev_label", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L528", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_android_a11y_pending_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L527", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_android_a11y_pending_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L534", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_android_restart_body", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L536", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_android_restart_later", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L535", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_android_restart_now", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L533", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_android_restart_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L537", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_applock_failed_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L519", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_cta_check_a11y", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L518", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_cta_open_a11y", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L517", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_cta_primary", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L532", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_dialog_button_a11y_toggle", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L529", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_dialog_button_allow", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L530", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_dialog_button_continue", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L531", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_dialog_button_vpn_ok", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L521", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_lock_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L523", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_lock_title_android", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L524", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_tap_marker_hint", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L526", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_tap_marker_hint_android_a11y", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L525", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_tap_marker_hint_android_vpn", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L520", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_url_title", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/locales/ar.json", - "source_location": "L522", - "weight": 1.0, - "source": "locales_ar_onboarding_protection", - "target": "locales_ar_protection_url_title_android", - "confidence_score": 1.0 + "source": "apps_rebreak_native_tools_gen_android_launcher_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_tools_gen_android_launcher_sh__entry" }, { "relation": "imports_from", @@ -150563,6 +208968,16 @@ "source": "apps_rebreak_native_lib_i18n_ts", "target": "apps_rebreak_native_locales_de_json" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_locales_de_json", + "target": "apps_rebreak_native_locales_de_json_locales_de_landing" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -150659,9 +209074,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "apps_rebreak_native_locales_de_json", - "target": "locales_de_landing", - "confidence_score": 1.0 + "target": "locales_de_landing" }, { "relation": "contains", @@ -150749,9 +209164,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_common", - "target": "locales_de_common_error", - "confidence_score": 1.0 + "target": "locales_de_common_error" }, { "relation": "contains", @@ -150869,9 +209284,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L50", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_backtologinplain", - "confidence_score": 1.0 + "target": "locales_de_auth_backtologinplain" }, { "relation": "contains", @@ -150929,9 +209344,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L60", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_confirmemailline1", - "confidence_score": 1.0 + "target": "locales_de_auth_confirmemailline1" }, { "relation": "contains", @@ -150939,9 +209354,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L61", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_confirmemailline2", - "confidence_score": 1.0 + "target": "locales_de_auth_confirmemailline2" }, { "relation": "contains", @@ -151219,9 +209634,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L94", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_newpasswordsave", - "confidence_score": 1.0 + "target": "locales_de_auth_newpasswordsave" }, { "relation": "contains", @@ -151229,9 +209644,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L95", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_newpasswordsaved", - "confidence_score": 1.0 + "target": "locales_de_auth_newpasswordsaved" }, { "relation": "contains", @@ -151319,9 +209734,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L26", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_password", - "confidence_score": 1.0 + "target": "locales_de_auth_password" }, { "relation": "contains", @@ -151329,9 +209744,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L29", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_passwordmin8", - "confidence_score": 1.0 + "target": "locales_de_auth_passwordmin8" }, { "relation": "contains", @@ -151439,9 +209854,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L86", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_resetotpline2", - "confidence_score": 1.0 + "target": "locales_de_auth_resetotpline2" }, { "relation": "contains", @@ -151479,9 +209894,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L45", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_resetpasswordsent", - "confidence_score": 1.0 + "target": "locales_de_auth_resetpasswordsent" }, { "relation": "contains", @@ -151489,9 +209904,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L46", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_resetpasswordsentdesc", - "confidence_score": 1.0 + "target": "locales_de_auth_resetpasswordsentdesc" }, { "relation": "contains", @@ -151499,9 +209914,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L47", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_resetpasswordsentdescprefix", - "confidence_score": 1.0 + "target": "locales_de_auth_resetpasswordsentdescprefix" }, { "relation": "contains", @@ -151509,9 +209924,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L48", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_resetpasswordsentdescsuffix", - "confidence_score": 1.0 + "target": "locales_de_auth_resetpasswordsentdescsuffix" }, { "relation": "contains", @@ -151519,9 +209934,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L43", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_auth", - "target": "locales_de_auth_resetpasswordsubtitle", - "confidence_score": 1.0 + "target": "locales_de_auth_resetpasswordsubtitle" }, { "relation": "contains", @@ -151643,26 +210058,6 @@ "source": "locales_de_auth", "target": "pages_login_password" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/lyra/welcome-back.get.ts", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_de_auth_welcomeback", - "target": "lyra_welcome_back_get_fallback_messages" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/lyra/welcome-back.get.ts", - "source_location": "L96", - "weight": 1.0, - "confidence_score": 1.0, - "source": "locales_de_auth_welcomeback", - "target": "lyra_welcome_back_get_pickrandom" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -151740,9 +210135,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L100", "weight": 1.0, - "source": "locales_de_landing", - "target": "locales_de_landing_appname", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "apps_rebreak_native_locales_de_json_locales_de_landing", + "target": "locales_de_landing_appname" }, { "relation": "contains", @@ -151750,9 +210145,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L102", "weight": 1.0, - "source": "locales_de_landing", - "target": "locales_de_landing_start", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "apps_rebreak_native_locales_de_json_locales_de_landing", + "target": "locales_de_landing_start" }, { "relation": "contains", @@ -151760,9 +210155,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L101", "weight": 1.0, - "source": "locales_de_landing", - "target": "locales_de_landing_tagline", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "apps_rebreak_native_locales_de_json_locales_de_landing", + "target": "locales_de_landing_tagline" }, { "relation": "contains", @@ -151774,6 +210169,36 @@ "source": "locales_de_appheader", "target": "locales_de_landing_appname" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_landing", + "target": "locales_de_landing_appname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_landing", + "target": "locales_de_landing_tagline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_landing", + "target": "locales_de_landing_start" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -151810,9 +210235,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_splash", - "target": "locales_de_splash_subtitle", - "confidence_score": 1.0 + "target": "locales_de_splash_subtitle" }, { "relation": "contains", @@ -151820,9 +210245,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_splash", - "target": "locales_de_splash_tagline", - "confidence_score": 1.0 + "target": "locales_de_splash_tagline" }, { "relation": "contains", @@ -151860,9 +210285,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_applock", - "target": "locales_de_applock_subtitle", - "confidence_score": 1.0 + "target": "locales_de_applock_subtitle" }, { "relation": "contains", @@ -151870,9 +210295,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_applock", - "target": "locales_de_applock_title", - "confidence_score": 1.0 + "target": "locales_de_applock_title" }, { "relation": "contains", @@ -151904,6 +210329,17 @@ "source": "locales_de_applock", "target": "locales_de_games_title" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "locales_de_appheader" + }, { "relation": "imports_from", "context": "import", @@ -152058,6 +210494,26 @@ "source": "locales_de_appheader", "target": "apps_rebreak_native_stores_notifications_ts" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_appheader", + "target": "components_appheader_appheader" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_appheader", + "target": "components_appheader_props" + }, { "relation": "imports_from", "context": "import", @@ -152119,9 +210575,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_appheader", - "target": "locales_de_appheader_appname", - "confidence_score": 1.0 + "target": "locales_de_appheader_appname" }, { "relation": "contains", @@ -152149,9 +210605,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_appheader", - "target": "locales_de_appheader_signout", - "confidence_score": 1.0 + "target": "locales_de_appheader_signout" }, { "relation": "contains", @@ -152169,9 +210625,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L121", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_appheader", - "target": "locales_de_appheader_sossubtitle", - "confidence_score": 1.0 + "target": "locales_de_appheader_sossubtitle" }, { "relation": "contains", @@ -152251,9 +210707,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_headermenu", - "target": "locales_de_headermenu_games", - "confidence_score": 1.0 + "target": "locales_de_headermenu_games" }, { "relation": "contains", @@ -152271,9 +210727,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_headermenu", - "target": "locales_de_headermenu_profile", - "confidence_score": 1.0 + "target": "locales_de_headermenu_profile" }, { "relation": "contains", @@ -152281,9 +210737,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_headermenu", - "target": "locales_de_headermenu_settings", - "confidence_score": 1.0 + "target": "locales_de_headermenu_settings" }, { "relation": "contains", @@ -152331,9 +210787,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_tabs", - "target": "locales_de_tabs_blocker", - "confidence_score": 1.0 + "target": "locales_de_tabs_blocker" }, { "relation": "contains", @@ -152351,9 +210807,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_tabs", - "target": "locales_de_tabs_coach", - "confidence_score": 1.0 + "target": "locales_de_tabs_coach" }, { "relation": "contains", @@ -152361,9 +210817,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_tabs", - "target": "locales_de_tabs_home", - "confidence_score": 1.0 + "target": "locales_de_tabs_home" }, { "relation": "contains", @@ -152741,9 +211197,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L165", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_coach", - "target": "locales_de_coach_subtitle", - "confidence_score": 1.0 + "target": "locales_de_coach_subtitle" }, { "relation": "contains", @@ -152761,9 +211217,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_coach", - "target": "locales_de_coach_title", - "confidence_score": 1.0 + "target": "locales_de_coach_title" }, { "relation": "contains", @@ -152781,9 +211237,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_coach", - "target": "locales_de_coach_welcome", - "confidence_score": 1.0 + "target": "locales_de_coach_welcome" }, { "relation": "contains", @@ -152791,9 +211247,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L179", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_coach", - "target": "locales_de_coach_welcome_back", - "confidence_score": 1.0 + "target": "locales_de_coach_welcome_back" }, { "relation": "contains", @@ -152805,6 +211261,26 @@ "source": "locales_de_coach", "target": "locales_de_lyra_welcome" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L462", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_coach_lyra", + "target": "app_debug_protectionlogcard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L523", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_coach_lyra", + "target": "lib_protection_protection" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -152861,9 +211337,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_coach_modebadge", - "target": "locales_de_modebadge_coach", - "confidence_score": 1.0 + "target": "locales_de_modebadge_coach" }, { "relation": "contains", @@ -152885,6 +211361,36 @@ "source": "locales_de_blocker", "target": "blocker_protectioncard_protectioncard" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L495", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_blocker", + "target": "blocker_setupflows_androidstep1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L467", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_blocker", + "target": "blocker_setupflows_setupstep1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/de.json", + "source_location": "L474", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_blocker", + "target": "blocker_setupflows_setupstep3" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -152901,9 +211407,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L301", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_activate_app_lock_failed_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_activate_app_lock_failed_title" }, { "relation": "contains", @@ -153191,9 +211697,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L503", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_admin_failed_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_admin_failed_title" }, { "relation": "contains", @@ -153201,9 +211707,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L495", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_battery_body", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_battery_body" }, { "relation": "contains", @@ -153211,9 +211717,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L496", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_battery_cta", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_battery_cta" }, { "relation": "contains", @@ -153221,9 +211727,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L497", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_battery_samsung_hint", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_battery_samsung_hint" }, { "relation": "contains", @@ -153231,9 +211737,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L494", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_battery_subtitle_done", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_battery_subtitle_done" }, { "relation": "contains", @@ -153241,9 +211747,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L493", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_battery_subtitle_pending", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_battery_subtitle_pending" }, { "relation": "contains", @@ -153251,9 +211757,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L492", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_battery_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_battery_title" }, { "relation": "contains", @@ -153261,9 +211767,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L482", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step1_cta", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step1_cta" }, { "relation": "contains", @@ -153301,9 +211807,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L490", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step2_cta", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step2_cta" }, { "relation": "contains", @@ -153321,9 +211827,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L488", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step2_instruction2", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step2_instruction2" }, { "relation": "contains", @@ -153331,9 +211837,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L489", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step2_instruction3", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step2_instruction3" }, { "relation": "contains", @@ -153341,9 +211847,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L491", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step2_note", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step2_note" }, { "relation": "contains", @@ -153351,9 +211857,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L486", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step2_subtitle_done", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step2_subtitle_done" }, { "relation": "contains", @@ -153361,9 +211867,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L485", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step2_subtitle_pending", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step2_subtitle_pending" }, { "relation": "contains", @@ -153371,9 +211877,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L484", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step2_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step2_title" }, { "relation": "contains", @@ -153381,9 +211887,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L501", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step3_cta", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step3_cta" }, { "relation": "contains", @@ -153391,9 +211897,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L500", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step3_subtitle_done", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step3_subtitle_done" }, { "relation": "contains", @@ -153401,9 +211907,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L499", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step3_subtitle_pending", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step3_subtitle_pending" }, { "relation": "contains", @@ -153411,9 +211917,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L498", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_android_step3_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_android_step3_title" }, { "relation": "contains", @@ -153471,9 +211977,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L383", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_cooldown_elapsed_message_ios", - "confidence_score": 1.0 + "target": "locales_de_blocker_cooldown_elapsed_message_ios" }, { "relation": "contains", @@ -153591,9 +212097,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L230", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_deactivation_bullet2_text", - "confidence_score": 1.0 + "target": "locales_de_blocker_deactivation_bullet2_text" }, { "relation": "contains", @@ -153601,9 +212107,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L229", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_deactivation_bullet2_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_deactivation_bullet2_title" }, { "relation": "contains", @@ -153611,9 +212117,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L232", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_deactivation_bullet3_text", - "confidence_score": 1.0 + "target": "locales_de_blocker_deactivation_bullet3_text" }, { "relation": "contains", @@ -153621,9 +212127,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L231", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_deactivation_bullet3_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_deactivation_bullet3_title" }, { "relation": "contains", @@ -154041,9 +212547,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L254", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_domain_confirm_legend_message", - "confidence_score": 1.0 + "target": "locales_de_blocker_domain_confirm_legend_message" }, { "relation": "contains", @@ -154051,9 +212557,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L250", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_domain_confirm_legend_resubmit", - "confidence_score": 1.0 + "target": "locales_de_blocker_domain_confirm_legend_resubmit" }, { "relation": "contains", @@ -154101,9 +212607,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L259", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_domain_success_community_message", - "confidence_score": 1.0 + "target": "locales_de_blocker_domain_success_community_message" }, { "relation": "contains", @@ -154591,9 +213097,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L351", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_kpi_submissions_subtitle", - "confidence_score": 1.0 + "target": "locales_de_blocker_kpi_submissions_subtitle" }, { "relation": "contains", @@ -154651,9 +213157,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L329", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_layers_app_lock_subtitle_inactive", - "confidence_score": 1.0 + "target": "locales_de_blocker_layers_app_lock_subtitle_inactive" }, { "relation": "contains", @@ -154821,9 +213327,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L262", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_protection_card_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_protection_card_title" }, { "relation": "contains", @@ -154891,9 +213397,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L272", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_protection_stat_method_dns", - "confidence_score": 1.0 + "target": "locales_de_blocker_protection_stat_method_dns" }, { "relation": "contains", @@ -154901,9 +213407,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L459", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_protection_stat_method_mdm", - "confidence_score": 1.0 + "target": "locales_de_blocker_protection_stat_method_mdm" }, { "relation": "contains", @@ -154941,9 +213447,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L275", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_protection_stat_status_live", - "confidence_score": 1.0 + "target": "locales_de_blocker_protection_stat_status_live" }, { "relation": "contains", @@ -155051,9 +213557,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L426", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_remove_domain_bullet1_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_remove_domain_bullet1_title" }, { "relation": "contains", @@ -155061,9 +213567,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L429", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_remove_domain_bullet2_text", - "confidence_score": 1.0 + "target": "locales_de_blocker_remove_domain_bullet2_text" }, { "relation": "contains", @@ -155071,9 +213577,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L428", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_remove_domain_bullet2_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_remove_domain_bullet2_title" }, { "relation": "contains", @@ -155101,9 +213607,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L425", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_remove_domain_intro", - "confidence_score": 1.0 + "target": "locales_de_blocker_remove_domain_intro" }, { "relation": "contains", @@ -155191,9 +213697,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L342", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_screentime_confirmed_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_screentime_confirmed_title" }, { "relation": "contains", @@ -155241,9 +213747,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L337", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_screentime_step2", - "confidence_score": 1.0 + "target": "locales_de_blocker_screentime_step2" }, { "relation": "contains", @@ -155251,9 +213757,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L338", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_screentime_step3", - "confidence_score": 1.0 + "target": "locales_de_blocker_screentime_step3" }, { "relation": "contains", @@ -155331,9 +213837,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L467", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_setup_step1_cta", - "confidence_score": 1.0 + "target": "locales_de_blocker_setup_step1_cta" }, { "relation": "contains", @@ -155371,9 +213877,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L470", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_setup_step2_subtitle_done", - "confidence_score": 1.0 + "target": "locales_de_blocker_setup_step2_subtitle_done" }, { "relation": "contains", @@ -155381,9 +213887,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L469", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_setup_step2_subtitle_pending", - "confidence_score": 1.0 + "target": "locales_de_blocker_setup_step2_subtitle_pending" }, { "relation": "contains", @@ -155391,9 +213897,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L468", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_setup_step2_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_setup_step2_title" }, { "relation": "contains", @@ -155401,9 +213907,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L474", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_setup_step3_cta", - "confidence_score": 1.0 + "target": "locales_de_blocker_setup_step3_cta" }, { "relation": "contains", @@ -155411,9 +213917,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L473", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_setup_step3_subtitle_done", - "confidence_score": 1.0 + "target": "locales_de_blocker_setup_step3_subtitle_done" }, { "relation": "contains", @@ -155421,9 +213927,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L472", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_setup_step3_subtitle_pending", - "confidence_score": 1.0 + "target": "locales_de_blocker_setup_step3_subtitle_pending" }, { "relation": "contains", @@ -155431,9 +213937,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L471", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_setup_step3_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_setup_step3_title" }, { "relation": "contains", @@ -155511,9 +214017,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L187", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_subtitle", - "confidence_score": 1.0 + "target": "locales_de_blocker_subtitle" }, { "relation": "contains", @@ -155551,9 +214057,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L453", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_suggest_curated_error_already_suggested", - "confidence_score": 1.0 + "target": "locales_de_blocker_suggest_curated_error_already_suggested" }, { "relation": "contains", @@ -155691,9 +214197,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L186", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_title" }, { "relation": "contains", @@ -155731,9 +214237,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L260", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker", - "target": "locales_de_blocker_upgrade_alert_title", - "confidence_score": 1.0 + "target": "locales_de_blocker_upgrade_alert_title" }, { "relation": "contains", @@ -155958,6 +214464,17 @@ "source": "hooks_usecustomdomains_usecustomdomains", "target": "locales_de_blocker_custom_domains" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "locales_de_blocker_permission_denied" + }, { "relation": "imports_from", "context": "import", @@ -156007,9 +214524,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L281", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker_permission_denied", - "target": "locales_de_permission_denied_body", - "confidence_score": 1.0 + "target": "locales_de_permission_denied_body" }, { "relation": "contains", @@ -156067,9 +214584,20 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L280", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker_permission_denied", - "target": "locales_de_permission_denied_title", - "confidence_score": 1.0 + "target": "locales_de_permission_denied_title" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "locales_de_blocker_permission_denied" }, { "relation": "contains", @@ -156127,9 +214655,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L290", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker_family_controls_error", - "target": "locales_de_family_controls_error_body", - "confidence_score": 1.0 + "target": "locales_de_family_controls_error_body" }, { "relation": "contains", @@ -156137,9 +214665,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L295", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker_family_controls_error", - "target": "locales_de_family_controls_error_fallback_body", - "confidence_score": 1.0 + "target": "locales_de_family_controls_error_fallback_body" }, { "relation": "contains", @@ -156147,9 +214675,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L294", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker_family_controls_error", - "target": "locales_de_family_controls_error_fallback_label", - "confidence_score": 1.0 + "target": "locales_de_family_controls_error_fallback_label" }, { "relation": "contains", @@ -156157,9 +214685,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L291", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker_family_controls_error", - "target": "locales_de_family_controls_error_retry_cta", - "confidence_score": 1.0 + "target": "locales_de_family_controls_error_retry_cta" }, { "relation": "contains", @@ -156167,9 +214695,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L292", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker_family_controls_error", - "target": "locales_de_family_controls_error_retry_loading", - "confidence_score": 1.0 + "target": "locales_de_family_controls_error_retry_loading" }, { "relation": "contains", @@ -156177,9 +214705,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L293", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker_family_controls_error", - "target": "locales_de_family_controls_error_settings_cta", - "confidence_score": 1.0 + "target": "locales_de_family_controls_error_settings_cta" }, { "relation": "contains", @@ -156187,9 +214715,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L289", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_blocker_family_controls_error", - "target": "locales_de_family_controls_error_title", - "confidence_score": 1.0 + "target": "locales_de_family_controls_error_title" }, { "relation": "contains", @@ -156257,9 +214785,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L507", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_onboarding", - "target": "locales_de_onboarding_lyra", - "confidence_score": 1.0 + "target": "locales_de_onboarding_lyra" }, { "relation": "contains", @@ -156267,9 +214795,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L517", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_onboarding_lyra", - "target": "locales_de_lyra_diga_choice", - "confidence_score": 1.0 + "target": "locales_de_lyra_diga_choice" }, { "relation": "contains", @@ -156277,9 +214805,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L520", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_onboarding_lyra", - "target": "locales_de_lyra_diga_code", - "confidence_score": 1.0 + "target": "locales_de_lyra_diga_code" }, { "relation": "contains", @@ -156287,9 +214815,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L514", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_onboarding_lyra", - "target": "locales_de_lyra_nickname", - "confidence_score": 1.0 + "target": "locales_de_lyra_nickname" }, { "relation": "contains", @@ -156297,9 +214825,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L511", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_onboarding_lyra", - "target": "locales_de_lyra_privacy", - "confidence_score": 1.0 + "target": "locales_de_lyra_privacy" }, { "relation": "contains", @@ -156307,9 +214835,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L508", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_onboarding_lyra", - "target": "locales_de_lyra_welcome", - "confidence_score": 1.0 + "target": "locales_de_lyra_welcome" }, { "relation": "contains", @@ -156317,9 +214845,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L509", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_lyra_welcome", - "target": "locales_de_welcome_body", - "confidence_score": 1.0 + "target": "locales_de_welcome_body" }, { "relation": "contains", @@ -156327,9 +214855,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L512", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_lyra_privacy", - "target": "locales_de_privacy_body", - "confidence_score": 1.0 + "target": "locales_de_privacy_body" }, { "relation": "contains", @@ -156337,9 +214865,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L515", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_lyra_nickname", - "target": "locales_de_nickname_body", - "confidence_score": 1.0 + "target": "locales_de_nickname_body" }, { "relation": "contains", @@ -156347,9 +214875,9 @@ "source_file": "apps/rebreak-native/locales/de.json", "source_location": "L518", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_de_lyra_diga_choice", - "target": "locales_de_diga_choice_body", - "confidence_score": 1.0 + "target": "locales_de_diga_choice_body" }, { "relation": "imports_from", @@ -156362,6 +214890,16 @@ "source": "apps_rebreak_native_lib_i18n_ts", "target": "apps_rebreak_native_locales_en_json" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_locales_en_json", + "target": "apps_rebreak_native_locales_en_json_locales_en_landing" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -156458,9 +214996,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L99", "weight": 1.0, + "confidence_score": 1.0, "source": "apps_rebreak_native_locales_en_json", - "target": "locales_en_landing", - "confidence_score": 1.0 + "target": "locales_en_landing" }, { "relation": "contains", @@ -156548,9 +215086,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_common", - "target": "locales_en_common_error", - "confidence_score": 1.0 + "target": "locales_en_common_error" }, { "relation": "contains", @@ -157478,9 +216016,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L100", "weight": 1.0, - "source": "locales_en_landing", - "target": "locales_en_landing_appname", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "apps_rebreak_native_locales_en_json_locales_en_landing", + "target": "locales_en_landing_appname" }, { "relation": "contains", @@ -157488,9 +216026,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L102", "weight": 1.0, - "source": "locales_en_landing", - "target": "locales_en_landing_start", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "apps_rebreak_native_locales_en_json_locales_en_landing", + "target": "locales_en_landing_start" }, { "relation": "contains", @@ -157498,9 +216036,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L101", "weight": 1.0, - "source": "locales_en_landing", - "target": "locales_en_landing_tagline", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "apps_rebreak_native_locales_en_json_locales_en_landing", + "target": "locales_en_landing_tagline" }, { "relation": "contains", @@ -157512,6 +216050,36 @@ "source": "locales_en_appheader", "target": "locales_en_landing_appname" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_en_landing", + "target": "locales_en_landing_appname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_en_landing", + "target": "locales_en_landing_tagline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/en.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_en_landing", + "target": "locales_en_landing_start" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -157548,9 +216116,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L106", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_splash", - "target": "locales_en_splash_subtitle", - "confidence_score": 1.0 + "target": "locales_en_splash_subtitle" }, { "relation": "contains", @@ -157558,9 +216126,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L105", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_splash", - "target": "locales_en_splash_tagline", - "confidence_score": 1.0 + "target": "locales_en_splash_tagline" }, { "relation": "contains", @@ -157598,9 +216166,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L111", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_applock", - "target": "locales_en_applock_subtitle", - "confidence_score": 1.0 + "target": "locales_en_applock_subtitle" }, { "relation": "contains", @@ -157608,9 +216176,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_applock", - "target": "locales_en_applock_title", - "confidence_score": 1.0 + "target": "locales_en_applock_title" }, { "relation": "contains", @@ -157648,9 +216216,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L118", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_appheader", - "target": "locales_en_appheader_appname", - "confidence_score": 1.0 + "target": "locales_en_appheader_appname" }, { "relation": "contains", @@ -157678,9 +216246,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L124", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_appheader", - "target": "locales_en_appheader_signout", - "confidence_score": 1.0 + "target": "locales_en_appheader_signout" }, { "relation": "contains", @@ -157748,9 +216316,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L129", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_headermenu", - "target": "locales_en_headermenu_games", - "confidence_score": 1.0 + "target": "locales_en_headermenu_games" }, { "relation": "contains", @@ -157768,9 +216336,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L127", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_headermenu", - "target": "locales_en_headermenu_profile", - "confidence_score": 1.0 + "target": "locales_en_headermenu_profile" }, { "relation": "contains", @@ -157778,9 +216346,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L128", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_headermenu", - "target": "locales_en_headermenu_settings", - "confidence_score": 1.0 + "target": "locales_en_headermenu_settings" }, { "relation": "contains", @@ -157828,9 +216396,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L137", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_tabs", - "target": "locales_en_tabs_blocker", - "confidence_score": 1.0 + "target": "locales_en_tabs_blocker" }, { "relation": "contains", @@ -157848,9 +216416,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L136", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_tabs", - "target": "locales_en_tabs_coach", - "confidence_score": 1.0 + "target": "locales_en_tabs_coach" }, { "relation": "contains", @@ -157858,9 +216426,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L134", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_tabs", - "target": "locales_en_tabs_home", - "confidence_score": 1.0 + "target": "locales_en_tabs_home" }, { "relation": "contains", @@ -158238,9 +216806,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L165", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_coach", - "target": "locales_en_coach_subtitle", - "confidence_score": 1.0 + "target": "locales_en_coach_subtitle" }, { "relation": "contains", @@ -158258,9 +216826,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L164", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_coach", - "target": "locales_en_coach_title", - "confidence_score": 1.0 + "target": "locales_en_coach_title" }, { "relation": "contains", @@ -158278,9 +216846,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L166", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_coach", - "target": "locales_en_coach_welcome", - "confidence_score": 1.0 + "target": "locales_en_coach_welcome" }, { "relation": "contains", @@ -158358,9 +216926,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_coach_modebadge", - "target": "locales_en_modebadge_coach", - "confidence_score": 1.0 + "target": "locales_en_modebadge_coach" }, { "relation": "contains", @@ -158688,9 +217256,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L495", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker", - "target": "locales_en_blocker_android_battery_body", - "confidence_score": 1.0 + "target": "locales_en_blocker_android_battery_body" }, { "relation": "contains", @@ -158698,9 +217266,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L496", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker", - "target": "locales_en_blocker_android_battery_cta", - "confidence_score": 1.0 + "target": "locales_en_blocker_android_battery_cta" }, { "relation": "contains", @@ -158708,9 +217276,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L497", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker", - "target": "locales_en_blocker_android_battery_samsung_hint", - "confidence_score": 1.0 + "target": "locales_en_blocker_android_battery_samsung_hint" }, { "relation": "contains", @@ -158718,9 +217286,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L494", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker", - "target": "locales_en_blocker_android_battery_subtitle_done", - "confidence_score": 1.0 + "target": "locales_en_blocker_android_battery_subtitle_done" }, { "relation": "contains", @@ -158728,9 +217296,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L493", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker", - "target": "locales_en_blocker_android_battery_subtitle_pending", - "confidence_score": 1.0 + "target": "locales_en_blocker_android_battery_subtitle_pending" }, { "relation": "contains", @@ -158738,9 +217306,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L492", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker", - "target": "locales_en_blocker_android_battery_title", - "confidence_score": 1.0 + "target": "locales_en_blocker_android_battery_title" }, { "relation": "contains", @@ -160998,9 +219566,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L187", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker", - "target": "locales_en_blocker_subtitle", - "confidence_score": 1.0 + "target": "locales_en_blocker_subtitle" }, { "relation": "contains", @@ -161178,9 +219746,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L186", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker", - "target": "locales_en_blocker_title", - "confidence_score": 1.0 + "target": "locales_en_blocker_title" }, { "relation": "contains", @@ -161408,9 +219976,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L278", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker_permission_denied", - "target": "locales_en_permission_denied_body", - "confidence_score": 1.0 + "target": "locales_en_permission_denied_body" }, { "relation": "contains", @@ -161468,9 +220036,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker_permission_denied", - "target": "locales_en_permission_denied_title", - "confidence_score": 1.0 + "target": "locales_en_permission_denied_title" }, { "relation": "contains", @@ -161528,9 +220096,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L287", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker_family_controls_error", - "target": "locales_en_family_controls_error_body", - "confidence_score": 1.0 + "target": "locales_en_family_controls_error_body" }, { "relation": "contains", @@ -161538,9 +220106,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L292", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker_family_controls_error", - "target": "locales_en_family_controls_error_fallback_body", - "confidence_score": 1.0 + "target": "locales_en_family_controls_error_fallback_body" }, { "relation": "contains", @@ -161548,9 +220116,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L291", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker_family_controls_error", - "target": "locales_en_family_controls_error_fallback_label", - "confidence_score": 1.0 + "target": "locales_en_family_controls_error_fallback_label" }, { "relation": "contains", @@ -161558,9 +220126,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L288", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker_family_controls_error", - "target": "locales_en_family_controls_error_retry_cta", - "confidence_score": 1.0 + "target": "locales_en_family_controls_error_retry_cta" }, { "relation": "contains", @@ -161568,9 +220136,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L289", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker_family_controls_error", - "target": "locales_en_family_controls_error_retry_loading", - "confidence_score": 1.0 + "target": "locales_en_family_controls_error_retry_loading" }, { "relation": "contains", @@ -161578,9 +220146,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L290", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker_family_controls_error", - "target": "locales_en_family_controls_error_settings_cta", - "confidence_score": 1.0 + "target": "locales_en_family_controls_error_settings_cta" }, { "relation": "contains", @@ -161588,9 +220156,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L286", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_blocker_family_controls_error", - "target": "locales_en_family_controls_error_title", - "confidence_score": 1.0 + "target": "locales_en_family_controls_error_title" }, { "relation": "contains", @@ -161648,9 +220216,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L507", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_onboarding", - "target": "locales_en_onboarding_lyra", - "confidence_score": 1.0 + "target": "locales_en_onboarding_lyra" }, { "relation": "contains", @@ -161658,9 +220226,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L517", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_onboarding_lyra", - "target": "locales_en_lyra_diga_choice", - "confidence_score": 1.0 + "target": "locales_en_lyra_diga_choice" }, { "relation": "contains", @@ -161668,9 +220236,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L520", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_onboarding_lyra", - "target": "locales_en_lyra_diga_code", - "confidence_score": 1.0 + "target": "locales_en_lyra_diga_code" }, { "relation": "contains", @@ -161678,9 +220246,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L514", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_onboarding_lyra", - "target": "locales_en_lyra_nickname", - "confidence_score": 1.0 + "target": "locales_en_lyra_nickname" }, { "relation": "contains", @@ -161688,9 +220256,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L511", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_onboarding_lyra", - "target": "locales_en_lyra_privacy", - "confidence_score": 1.0 + "target": "locales_en_lyra_privacy" }, { "relation": "contains", @@ -161698,9 +220266,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L508", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_onboarding_lyra", - "target": "locales_en_lyra_welcome", - "confidence_score": 1.0 + "target": "locales_en_lyra_welcome" }, { "relation": "contains", @@ -161708,9 +220276,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L509", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_lyra_welcome", - "target": "locales_en_welcome_body", - "confidence_score": 1.0 + "target": "locales_en_welcome_body" }, { "relation": "contains", @@ -161718,9 +220286,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L512", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_lyra_privacy", - "target": "locales_en_privacy_body", - "confidence_score": 1.0 + "target": "locales_en_privacy_body" }, { "relation": "contains", @@ -161728,9 +220296,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L515", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_lyra_nickname", - "target": "locales_en_nickname_body", - "confidence_score": 1.0 + "target": "locales_en_nickname_body" }, { "relation": "contains", @@ -161738,9 +220306,9 @@ "source_file": "apps/rebreak-native/locales/en.json", "source_location": "L518", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_en_lyra_diga_choice", - "target": "locales_en_diga_choice_body", - "confidence_score": 1.0 + "target": "locales_en_diga_choice_body" }, { "relation": "imports_from", @@ -161939,9 +220507,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_common", - "target": "locales_fr_common_error", - "confidence_score": 1.0 + "target": "locales_fr_common_error" }, { "relation": "contains", @@ -162829,9 +221397,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L88", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_landing", - "target": "locales_fr_landing_start", - "confidence_score": 1.0 + "target": "locales_fr_landing_start" }, { "relation": "contains", @@ -162839,9 +221407,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L87", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_landing", - "target": "locales_fr_landing_tagline", - "confidence_score": 1.0 + "target": "locales_fr_landing_tagline" }, { "relation": "contains", @@ -162889,9 +221457,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L92", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_splash", - "target": "locales_fr_splash_subtitle", - "confidence_score": 1.0 + "target": "locales_fr_splash_subtitle" }, { "relation": "contains", @@ -162899,9 +221467,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L91", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_splash", - "target": "locales_fr_splash_tagline", - "confidence_score": 1.0 + "target": "locales_fr_splash_tagline" }, { "relation": "contains", @@ -162939,9 +221507,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L97", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_applock", - "target": "locales_fr_applock_subtitle", - "confidence_score": 1.0 + "target": "locales_fr_applock_subtitle" }, { "relation": "contains", @@ -162949,9 +221517,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L96", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_applock", - "target": "locales_fr_applock_title", - "confidence_score": 1.0 + "target": "locales_fr_applock_title" }, { "relation": "contains", @@ -162989,9 +221557,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L104", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_appheader", - "target": "locales_fr_appheader_appname", - "confidence_score": 1.0 + "target": "locales_fr_appheader_appname" }, { "relation": "contains", @@ -163019,9 +221587,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L110", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_appheader", - "target": "locales_fr_appheader_signout", - "confidence_score": 1.0 + "target": "locales_fr_appheader_signout" }, { "relation": "contains", @@ -163089,9 +221657,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L115", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_headermenu", - "target": "locales_fr_headermenu_games", - "confidence_score": 1.0 + "target": "locales_fr_headermenu_games" }, { "relation": "contains", @@ -163109,9 +221677,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L113", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_headermenu", - "target": "locales_fr_headermenu_profile", - "confidence_score": 1.0 + "target": "locales_fr_headermenu_profile" }, { "relation": "contains", @@ -163119,9 +221687,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L114", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_headermenu", - "target": "locales_fr_headermenu_settings", - "confidence_score": 1.0 + "target": "locales_fr_headermenu_settings" }, { "relation": "contains", @@ -163169,9 +221737,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L123", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_tabs", - "target": "locales_fr_tabs_blocker", - "confidence_score": 1.0 + "target": "locales_fr_tabs_blocker" }, { "relation": "contains", @@ -163189,9 +221757,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L122", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_tabs", - "target": "locales_fr_tabs_coach", - "confidence_score": 1.0 + "target": "locales_fr_tabs_coach" }, { "relation": "contains", @@ -163199,9 +221767,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L120", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_tabs", - "target": "locales_fr_tabs_home", - "confidence_score": 1.0 + "target": "locales_fr_tabs_home" }, { "relation": "contains", @@ -163569,9 +222137,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L151", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_coach", - "target": "locales_fr_coach_subtitle", - "confidence_score": 1.0 + "target": "locales_fr_coach_subtitle" }, { "relation": "contains", @@ -163589,9 +222157,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L150", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_coach", - "target": "locales_fr_coach_title", - "confidence_score": 1.0 + "target": "locales_fr_coach_title" }, { "relation": "contains", @@ -163609,9 +222177,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L152", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_coach", - "target": "locales_fr_coach_welcome", - "confidence_score": 1.0 + "target": "locales_fr_coach_welcome" }, { "relation": "contains", @@ -163809,9 +222377,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L157", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_coach_modebadge", - "target": "locales_fr_modebadge_coach", - "confidence_score": 1.0 + "target": "locales_fr_modebadge_coach" }, { "relation": "contains", @@ -165809,9 +224377,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L172", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_blocker", - "target": "locales_fr_blocker_subtitle", - "confidence_score": 1.0 + "target": "locales_fr_blocker_subtitle" }, { "relation": "contains", @@ -165859,9 +224427,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L171", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_blocker", - "target": "locales_fr_blocker_title", - "confidence_score": 1.0 + "target": "locales_fr_blocker_title" }, { "relation": "contains", @@ -165909,9 +224477,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L263", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_blocker_permission_denied", - "target": "locales_fr_permission_denied_body", - "confidence_score": 1.0 + "target": "locales_fr_permission_denied_body" }, { "relation": "contains", @@ -165969,9 +224537,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L262", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_blocker_permission_denied", - "target": "locales_fr_permission_denied_title", - "confidence_score": 1.0 + "target": "locales_fr_permission_denied_title" }, { "relation": "contains", @@ -166039,9 +224607,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L272", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_blocker_family_controls_error", - "target": "locales_fr_family_controls_error_body", - "confidence_score": 1.0 + "target": "locales_fr_family_controls_error_body" }, { "relation": "contains", @@ -166049,9 +224617,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L277", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_blocker_family_controls_error", - "target": "locales_fr_family_controls_error_fallback_body", - "confidence_score": 1.0 + "target": "locales_fr_family_controls_error_fallback_body" }, { "relation": "contains", @@ -166059,9 +224627,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L276", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_blocker_family_controls_error", - "target": "locales_fr_family_controls_error_fallback_label", - "confidence_score": 1.0 + "target": "locales_fr_family_controls_error_fallback_label" }, { "relation": "contains", @@ -166069,9 +224637,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L273", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_blocker_family_controls_error", - "target": "locales_fr_family_controls_error_retry_cta", - "confidence_score": 1.0 + "target": "locales_fr_family_controls_error_retry_cta" }, { "relation": "contains", @@ -166079,9 +224647,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L274", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_blocker_family_controls_error", - "target": "locales_fr_family_controls_error_retry_loading", - "confidence_score": 1.0 + "target": "locales_fr_family_controls_error_retry_loading" }, { "relation": "contains", @@ -166089,9 +224657,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L275", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_blocker_family_controls_error", - "target": "locales_fr_family_controls_error_settings_cta", - "confidence_score": 1.0 + "target": "locales_fr_family_controls_error_settings_cta" }, { "relation": "contains", @@ -166099,9 +224667,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L271", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_blocker_family_controls_error", - "target": "locales_fr_family_controls_error_title", - "confidence_score": 1.0 + "target": "locales_fr_family_controls_error_title" }, { "relation": "contains", @@ -166209,9 +224777,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L465", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding", - "target": "locales_fr_onboarding_diga_choice", - "confidence_score": 1.0 + "target": "locales_fr_onboarding_diga_choice" }, { "relation": "contains", @@ -166219,9 +224787,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L470", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding", - "target": "locales_fr_onboarding_diga_code", - "confidence_score": 1.0 + "target": "locales_fr_onboarding_diga_code" }, { "relation": "contains", @@ -166229,9 +224797,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L397", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding", - "target": "locales_fr_onboarding_lyra", - "confidence_score": 1.0 + "target": "locales_fr_onboarding_lyra" }, { "relation": "contains", @@ -166239,9 +224807,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L455", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding", - "target": "locales_fr_onboarding_nickname", - "confidence_score": 1.0 + "target": "locales_fr_onboarding_nickname" }, { "relation": "contains", @@ -166249,9 +224817,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L509", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding", - "target": "locales_fr_onboarding_payment", - "confidence_score": 1.0 + "target": "locales_fr_onboarding_payment" }, { "relation": "contains", @@ -166259,9 +224827,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L480", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding", - "target": "locales_fr_onboarding_plan", - "confidence_score": 1.0 + "target": "locales_fr_onboarding_plan" }, { "relation": "contains", @@ -166269,9 +224837,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L448", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding", - "target": "locales_fr_onboarding_privacy", - "confidence_score": 1.0 + "target": "locales_fr_onboarding_privacy" }, { "relation": "contains", @@ -166279,9 +224847,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L514", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding", - "target": "locales_fr_onboarding_protection", - "confidence_score": 1.0 + "target": "locales_fr_onboarding_protection" }, { "relation": "contains", @@ -166289,9 +224857,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L442", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding", - "target": "locales_fr_onboarding_welcome", - "confidence_score": 1.0 + "target": "locales_fr_onboarding_welcome" }, { "relation": "contains", @@ -166299,9 +224867,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L440", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_audio_disable", - "confidence_score": 1.0 + "target": "locales_fr_lyra_audio_disable" }, { "relation": "contains", @@ -166309,9 +224877,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L438", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_audio_loading", - "confidence_score": 1.0 + "target": "locales_fr_lyra_audio_loading" }, { "relation": "contains", @@ -166319,9 +224887,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L437", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_audio_play", - "confidence_score": 1.0 + "target": "locales_fr_lyra_audio_play" }, { "relation": "contains", @@ -166329,9 +224897,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L439", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_audio_stop", - "confidence_score": 1.0 + "target": "locales_fr_lyra_audio_stop" }, { "relation": "contains", @@ -166339,9 +224907,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L407", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_diga_choice", - "confidence_score": 1.0 + "target": "locales_fr_lyra_diga_choice" }, { "relation": "contains", @@ -166349,9 +224917,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L410", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_diga_code", - "confidence_score": 1.0 + "target": "locales_fr_lyra_diga_code" }, { "relation": "contains", @@ -166359,9 +224927,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L434", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_done", - "confidence_score": 1.0 + "target": "locales_fr_lyra_done" }, { "relation": "contains", @@ -166369,9 +224937,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L404", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_nickname", - "confidence_score": 1.0 + "target": "locales_fr_lyra_nickname" }, { "relation": "contains", @@ -166379,9 +224947,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L416", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_payment", - "confidence_score": 1.0 + "target": "locales_fr_lyra_payment" }, { "relation": "contains", @@ -166389,9 +224957,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L413", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_plan", - "confidence_score": 1.0 + "target": "locales_fr_lyra_plan" }, { "relation": "contains", @@ -166399,9 +224967,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L401", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_privacy", - "confidence_score": 1.0 + "target": "locales_fr_lyra_privacy" }, { "relation": "contains", @@ -166409,9 +224977,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L419", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_protection", - "confidence_score": 1.0 + "target": "locales_fr_lyra_protection" }, { "relation": "contains", @@ -166419,9 +224987,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L425", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_protection_lock", - "confidence_score": 1.0 + "target": "locales_fr_lyra_protection_lock" }, { "relation": "contains", @@ -166429,9 +224997,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L431", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_protection_lock_android", - "confidence_score": 1.0 + "target": "locales_fr_lyra_protection_lock_android" }, { "relation": "contains", @@ -166439,9 +225007,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L422", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_protection_url", - "confidence_score": 1.0 + "target": "locales_fr_lyra_protection_url" }, { "relation": "contains", @@ -166449,9 +225017,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L428", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_protection_url_android", - "confidence_score": 1.0 + "target": "locales_fr_lyra_protection_url_android" }, { "relation": "contains", @@ -166459,9 +225027,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L398", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_lyra", - "target": "locales_fr_lyra_welcome", - "confidence_score": 1.0 + "target": "locales_fr_lyra_welcome" }, { "relation": "contains", @@ -166479,9 +225047,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L399", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_welcome", - "target": "locales_fr_welcome_body", - "confidence_score": 1.0 + "target": "locales_fr_welcome_body" }, { "relation": "contains", @@ -166529,9 +225097,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L402", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_privacy", - "target": "locales_fr_privacy_body", - "confidence_score": 1.0 + "target": "locales_fr_privacy_body" }, { "relation": "contains", @@ -166579,9 +225147,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L405", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_nickname", - "target": "locales_fr_nickname_body", - "confidence_score": 1.0 + "target": "locales_fr_nickname_body" }, { "relation": "contains", @@ -166589,9 +225157,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L408", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_diga_choice", - "target": "locales_fr_diga_choice_body", - "confidence_score": 1.0 + "target": "locales_fr_diga_choice_body" }, { "relation": "contains", @@ -166639,9 +225207,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L411", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_diga_code", - "target": "locales_fr_diga_code_body", - "confidence_score": 1.0 + "target": "locales_fr_diga_code_body" }, { "relation": "contains", @@ -167069,9 +225637,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L417", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_payment", - "target": "locales_fr_payment_body", - "confidence_score": 1.0 + "target": "locales_fr_payment_body" }, { "relation": "contains", @@ -167179,9 +225747,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L420", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_protection", - "target": "locales_fr_protection_body", - "confidence_score": 1.0 + "target": "locales_fr_protection_body" }, { "relation": "contains", @@ -167309,9 +225877,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L423", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_protection_url", - "target": "locales_fr_protection_url_body", - "confidence_score": 1.0 + "target": "locales_fr_protection_url_body" }, { "relation": "contains", @@ -167319,9 +225887,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L426", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_protection_lock", - "target": "locales_fr_protection_lock_body", - "confidence_score": 1.0 + "target": "locales_fr_protection_lock_body" }, { "relation": "contains", @@ -167329,9 +225897,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L429", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_protection_url_android", - "target": "locales_fr_protection_url_android_body", - "confidence_score": 1.0 + "target": "locales_fr_protection_url_android_body" }, { "relation": "contains", @@ -167339,9 +225907,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L432", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_protection_lock_android", - "target": "locales_fr_protection_lock_android_body", - "confidence_score": 1.0 + "target": "locales_fr_protection_lock_android_body" }, { "relation": "contains", @@ -167349,9 +225917,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L435", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_lyra_done", - "target": "locales_fr_done_body", - "confidence_score": 1.0 + "target": "locales_fr_done_body" }, { "relation": "contains", @@ -167359,9 +225927,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L444", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_welcome", - "target": "locales_fr_welcome_bullet_anon", - "confidence_score": 1.0 + "target": "locales_fr_welcome_bullet_anon" }, { "relation": "contains", @@ -167369,9 +225937,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L446", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_welcome", - "target": "locales_fr_welcome_bullet_community", - "confidence_score": 1.0 + "target": "locales_fr_welcome_bullet_community" }, { "relation": "contains", @@ -167379,9 +225947,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L445", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_welcome", - "target": "locales_fr_welcome_bullet_protect", - "confidence_score": 1.0 + "target": "locales_fr_welcome_bullet_protect" }, { "relation": "contains", @@ -167389,9 +225957,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L443", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_welcome", - "target": "locales_fr_welcome_cta_primary", - "confidence_score": 1.0 + "target": "locales_fr_welcome_cta_primary" }, { "relation": "contains", @@ -167399,9 +225967,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L449", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_privacy", - "target": "locales_fr_privacy_cta_primary", - "confidence_score": 1.0 + "target": "locales_fr_privacy_cta_primary" }, { "relation": "contains", @@ -167409,9 +225977,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L450", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_privacy", - "target": "locales_fr_privacy_promise_alias", - "confidence_score": 1.0 + "target": "locales_fr_privacy_promise_alias" }, { "relation": "contains", @@ -167419,9 +225987,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L453", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_privacy", - "target": "locales_fr_privacy_promise_germany", - "confidence_score": 1.0 + "target": "locales_fr_privacy_promise_germany" }, { "relation": "contains", @@ -167429,9 +225997,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L451", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_privacy", - "target": "locales_fr_privacy_promise_minimal", - "confidence_score": 1.0 + "target": "locales_fr_privacy_promise_minimal" }, { "relation": "contains", @@ -167439,9 +226007,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L452", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_privacy", - "target": "locales_fr_privacy_promise_no_ads", - "confidence_score": 1.0 + "target": "locales_fr_privacy_promise_no_ads" }, { "relation": "contains", @@ -167449,9 +226017,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L456", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_nickname", - "target": "locales_fr_nickname_cta_primary", - "confidence_score": 1.0 + "target": "locales_fr_nickname_cta_primary" }, { "relation": "contains", @@ -167459,9 +226027,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L462", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_nickname", - "target": "locales_fr_nickname_error_profanity", - "confidence_score": 1.0 + "target": "locales_fr_nickname_error_profanity" }, { "relation": "contains", @@ -167469,9 +226037,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L463", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_nickname", - "target": "locales_fr_nickname_error_taken", - "confidence_score": 1.0 + "target": "locales_fr_nickname_error_taken" }, { "relation": "contains", @@ -167479,9 +226047,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L461", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_nickname", - "target": "locales_fr_nickname_error_too_long", - "confidence_score": 1.0 + "target": "locales_fr_nickname_error_too_long" }, { "relation": "contains", @@ -167489,9 +226057,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L460", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_nickname", - "target": "locales_fr_nickname_error_too_short", - "confidence_score": 1.0 + "target": "locales_fr_nickname_error_too_short" }, { "relation": "contains", @@ -167499,9 +226067,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L459", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_nickname", - "target": "locales_fr_nickname_hint", - "confidence_score": 1.0 + "target": "locales_fr_nickname_hint" }, { "relation": "contains", @@ -167509,9 +226077,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L457", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_nickname", - "target": "locales_fr_nickname_label", - "confidence_score": 1.0 + "target": "locales_fr_nickname_label" }, { "relation": "contains", @@ -167519,9 +226087,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L458", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_nickname", - "target": "locales_fr_nickname_placeholder", - "confidence_score": 1.0 + "target": "locales_fr_nickname_placeholder" }, { "relation": "contains", @@ -167529,9 +226097,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L467", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_diga_choice", - "target": "locales_fr_diga_choice_cta_no", - "confidence_score": 1.0 + "target": "locales_fr_diga_choice_cta_no" }, { "relation": "contains", @@ -167539,9 +226107,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L466", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_diga_choice", - "target": "locales_fr_diga_choice_cta_yes", - "confidence_score": 1.0 + "target": "locales_fr_diga_choice_cta_yes" }, { "relation": "contains", @@ -167549,9 +226117,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L468", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_diga_choice", - "target": "locales_fr_diga_choice_hint", - "confidence_score": 1.0 + "target": "locales_fr_diga_choice_hint" }, { "relation": "contains", @@ -167559,9 +226127,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L471", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_diga_code", - "target": "locales_fr_diga_code_cta_primary", - "confidence_score": 1.0 + "target": "locales_fr_diga_code_cta_primary" }, { "relation": "contains", @@ -167569,9 +226137,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L472", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_diga_code", - "target": "locales_fr_diga_code_cta_secondary", - "confidence_score": 1.0 + "target": "locales_fr_diga_code_cta_secondary" }, { "relation": "contains", @@ -167579,9 +226147,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L476", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_diga_code", - "target": "locales_fr_diga_code_error_already_used", - "confidence_score": 1.0 + "target": "locales_fr_diga_code_error_already_used" }, { "relation": "contains", @@ -167589,9 +226157,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L477", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_diga_code", - "target": "locales_fr_diga_code_error_expired", - "confidence_score": 1.0 + "target": "locales_fr_diga_code_error_expired" }, { "relation": "contains", @@ -167599,9 +226167,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L478", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_diga_code", - "target": "locales_fr_diga_code_error_invalid_input", - "confidence_score": 1.0 + "target": "locales_fr_diga_code_error_invalid_input" }, { "relation": "contains", @@ -167609,9 +226177,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L475", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_diga_code", - "target": "locales_fr_diga_code_error_not_found", - "confidence_score": 1.0 + "target": "locales_fr_diga_code_error_not_found" }, { "relation": "contains", @@ -167619,9 +226187,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L474", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_diga_code", - "target": "locales_fr_diga_code_hint", - "confidence_score": 1.0 + "target": "locales_fr_diga_code_hint" }, { "relation": "contains", @@ -167629,9 +226197,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L473", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_diga_code", - "target": "locales_fr_diga_code_label", - "confidence_score": 1.0 + "target": "locales_fr_diga_code_label" }, { "relation": "contains", @@ -167639,9 +226207,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L483", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_billing_monthly", - "confidence_score": 1.0 + "target": "locales_fr_plan_billing_monthly" }, { "relation": "contains", @@ -167649,9 +226217,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L485", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_billing_savings", - "confidence_score": 1.0 + "target": "locales_fr_plan_billing_savings" }, { "relation": "contains", @@ -167659,9 +226227,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L484", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_billing_yearly", - "confidence_score": 1.0 + "target": "locales_fr_plan_billing_yearly" }, { "relation": "contains", @@ -167669,9 +226237,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L482", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_cta_legend", - "confidence_score": 1.0 + "target": "locales_fr_plan_cta_legend" }, { "relation": "contains", @@ -167679,9 +226247,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L481", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_cta_trial", - "confidence_score": 1.0 + "target": "locales_fr_plan_cta_trial" }, { "relation": "contains", @@ -167689,9 +226257,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L506", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_disclaimer", - "confidence_score": 1.0 + "target": "locales_fr_plan_disclaimer" }, { "relation": "contains", @@ -167699,9 +226267,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L499", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_feat_blocklist", - "confidence_score": 1.0 + "target": "locales_fr_plan_feat_blocklist" }, { "relation": "contains", @@ -167709,9 +226277,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L502", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_feat_community", - "confidence_score": 1.0 + "target": "locales_fr_plan_feat_community" }, { "relation": "contains", @@ -167719,9 +226287,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L503", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_feat_legend_all_pro", - "confidence_score": 1.0 + "target": "locales_fr_plan_feat_legend_all_pro" }, { "relation": "contains", @@ -167729,9 +226297,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L504", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_feat_legend_multi_device", - "confidence_score": 1.0 + "target": "locales_fr_plan_feat_legend_multi_device" }, { "relation": "contains", @@ -167739,9 +226307,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L505", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_feat_legend_voice", - "confidence_score": 1.0 + "target": "locales_fr_plan_feat_legend_voice" }, { "relation": "contains", @@ -167749,9 +226317,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L500", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_feat_lyra", - "confidence_score": 1.0 + "target": "locales_fr_plan_feat_lyra" }, { "relation": "contains", @@ -167759,9 +226327,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L501", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_feat_mail", - "confidence_score": 1.0 + "target": "locales_fr_plan_feat_mail" }, { "relation": "contains", @@ -167769,9 +226337,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L507", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_hardship_link", - "confidence_score": 1.0 + "target": "locales_fr_plan_hardship_link" }, { "relation": "contains", @@ -167779,9 +226347,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L495", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_legend_anchor_yearly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_legend_anchor_yearly" }, { "relation": "contains", @@ -167789,9 +226357,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L493", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_legend_price_monthly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_legend_price_monthly" }, { "relation": "contains", @@ -167799,9 +226367,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L494", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_legend_price_yearly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_legend_price_yearly" }, { "relation": "contains", @@ -167809,9 +226377,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L497", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_legend_subline_monthly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_legend_subline_monthly" }, { "relation": "contains", @@ -167819,9 +226387,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L498", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_legend_subline_yearly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_legend_subline_yearly" }, { "relation": "contains", @@ -167829,9 +226397,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L496", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_legend_total_yearly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_legend_total_yearly" }, { "relation": "contains", @@ -167839,9 +226407,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L489", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_pro_anchor_yearly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_pro_anchor_yearly" }, { "relation": "contains", @@ -167849,9 +226417,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L486", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_pro_badge", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_pro_badge" }, { "relation": "contains", @@ -167859,9 +226427,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L487", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_pro_price_monthly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_pro_price_monthly" }, { "relation": "contains", @@ -167869,9 +226437,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L488", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_pro_price_yearly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_pro_price_yearly" }, { "relation": "contains", @@ -167879,9 +226447,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L491", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_pro_subline_monthly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_pro_subline_monthly" }, { "relation": "contains", @@ -167889,9 +226457,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L492", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_pro_subline_yearly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_pro_subline_yearly" }, { "relation": "contains", @@ -167899,9 +226467,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L490", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_plan", - "target": "locales_fr_plan_tier_pro_total_yearly", - "confidence_score": 1.0 + "target": "locales_fr_plan_tier_pro_total_yearly" }, { "relation": "contains", @@ -167919,9 +226487,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L510", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_payment", - "target": "locales_fr_payment_cta_dev_skip", - "confidence_score": 1.0 + "target": "locales_fr_payment_cta_dev_skip" }, { "relation": "contains", @@ -167929,9 +226497,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L512", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_payment", - "target": "locales_fr_payment_dev_body", - "confidence_score": 1.0 + "target": "locales_fr_payment_dev_body" }, { "relation": "contains", @@ -167939,9 +226507,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L511", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_payment", - "target": "locales_fr_payment_dev_label", - "confidence_score": 1.0 + "target": "locales_fr_payment_dev_label" }, { "relation": "contains", @@ -167949,9 +226517,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L526", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_android_a11y_pending_body", - "confidence_score": 1.0 + "target": "locales_fr_protection_android_a11y_pending_body" }, { "relation": "contains", @@ -167959,9 +226527,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L525", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_android_a11y_pending_title", - "confidence_score": 1.0 + "target": "locales_fr_protection_android_a11y_pending_title" }, { "relation": "contains", @@ -167969,9 +226537,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L532", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_android_restart_body", - "confidence_score": 1.0 + "target": "locales_fr_protection_android_restart_body" }, { "relation": "contains", @@ -167979,9 +226547,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L534", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_android_restart_later", - "confidence_score": 1.0 + "target": "locales_fr_protection_android_restart_later" }, { "relation": "contains", @@ -167989,9 +226557,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L533", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_android_restart_now", - "confidence_score": 1.0 + "target": "locales_fr_protection_android_restart_now" }, { "relation": "contains", @@ -167999,9 +226567,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L531", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_android_restart_title", - "confidence_score": 1.0 + "target": "locales_fr_protection_android_restart_title" }, { "relation": "contains", @@ -168009,9 +226577,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L536", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_applock_failed_msg", - "confidence_score": 1.0 + "target": "locales_fr_protection_applock_failed_msg" }, { "relation": "contains", @@ -168019,9 +226587,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L535", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_applock_failed_title", - "confidence_score": 1.0 + "target": "locales_fr_protection_applock_failed_title" }, { "relation": "contains", @@ -168029,9 +226597,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L537", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_applock_skip", - "confidence_score": 1.0 + "target": "locales_fr_protection_applock_skip" }, { "relation": "contains", @@ -168039,9 +226607,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L517", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_cta_check_a11y", - "confidence_score": 1.0 + "target": "locales_fr_protection_cta_check_a11y" }, { "relation": "contains", @@ -168049,9 +226617,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L516", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_cta_open_a11y", - "confidence_score": 1.0 + "target": "locales_fr_protection_cta_open_a11y" }, { "relation": "contains", @@ -168059,9 +226627,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L515", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_cta_primary", - "confidence_score": 1.0 + "target": "locales_fr_protection_cta_primary" }, { "relation": "contains", @@ -168069,9 +226637,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L530", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_dialog_button_a11y_toggle", - "confidence_score": 1.0 + "target": "locales_fr_protection_dialog_button_a11y_toggle" }, { "relation": "contains", @@ -168079,9 +226647,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L527", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_dialog_button_allow", - "confidence_score": 1.0 + "target": "locales_fr_protection_dialog_button_allow" }, { "relation": "contains", @@ -168089,9 +226657,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L528", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_dialog_button_continue", - "confidence_score": 1.0 + "target": "locales_fr_protection_dialog_button_continue" }, { "relation": "contains", @@ -168099,9 +226667,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L529", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_dialog_button_vpn_ok", - "confidence_score": 1.0 + "target": "locales_fr_protection_dialog_button_vpn_ok" }, { "relation": "contains", @@ -168109,9 +226677,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L519", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_lock_title", - "confidence_score": 1.0 + "target": "locales_fr_protection_lock_title" }, { "relation": "contains", @@ -168119,9 +226687,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L521", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_lock_title_android", - "confidence_score": 1.0 + "target": "locales_fr_protection_lock_title_android" }, { "relation": "contains", @@ -168129,9 +226697,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L522", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_tap_marker_hint", - "confidence_score": 1.0 + "target": "locales_fr_protection_tap_marker_hint" }, { "relation": "contains", @@ -168139,9 +226707,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L524", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_tap_marker_hint_android_a11y", - "confidence_score": 1.0 + "target": "locales_fr_protection_tap_marker_hint_android_a11y" }, { "relation": "contains", @@ -168149,9 +226717,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L523", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_tap_marker_hint_android_vpn", - "confidence_score": 1.0 + "target": "locales_fr_protection_tap_marker_hint_android_vpn" }, { "relation": "contains", @@ -168159,9 +226727,9 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L518", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_url_title", - "confidence_score": 1.0 + "target": "locales_fr_protection_url_title" }, { "relation": "contains", @@ -168169,33125 +226737,6440 @@ "source_file": "apps/rebreak-native/locales/fr.json", "source_location": "L520", "weight": 1.0, + "confidence_score": 1.0, "source": "locales_fr_onboarding_protection", - "target": "locales_fr_protection_url_title_android", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L62", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L72", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" - }, - { - "relation": "inherits", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "backend_tsconfig_compileroptions_module" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L73", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "linearlayout" - }, - { - "relation": "inherits", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "module" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L64", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "promise" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L797", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_a11ystepforactivity" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1163", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1079", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_advancestickyhintstep" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1032", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_bringrebreaktofront" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1118", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L869", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_cancelguidenotification" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L756", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenta11ystep" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentforegroundactivity" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1194", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenthashcount" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1071", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentstickyhinttext" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L78", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1189", - "weight": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_disarmtamperlock", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1292", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L819", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_ensureguidechannel" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L925", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L705", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_hasusageaccess" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1242", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1142", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1181", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1342", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isotimestamp" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1184", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1009", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L837", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1174", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L629", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1059", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetsettingstoroot" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1083", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetstickyhintprogress" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1169", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_sendlayerchange" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L998", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showguidestep" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L939", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L879", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_starta11yguidewatch" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L659", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startvpnservice" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L918", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopa11yguidewatch" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1004", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1087", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopsamsungguideoverlay" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1103", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopstickyhint" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1332", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L701", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "runnable" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_armtamperlock" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L74", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "textview" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L76", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "windowmanager" - }, - { - "relation": "inherits", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "module" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L797", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_a11ystepforactivity", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L756", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenta11ystep", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1194", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenthashcount", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L925", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L837", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L998", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showguidestep", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L939", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L954", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", - "target": "linearlayout" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L959", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", - "target": "textview" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L105", - "weight": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "intent" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L90", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L180", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L529", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenthashcount" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L400", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentstickyhinttext" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L173", - "weight": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_disarmtamperlock", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L193", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L397", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_hasusageaccess" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L277", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L574", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L608", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L437", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L530", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L198", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L494", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L160", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L89", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L101", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_sendlayerchange" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L398", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_starta11yguidewatch" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L401", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L88", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startvpnservice" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L288", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopsamsungguideoverlay" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopstickyhint" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", - "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_armtamperlock" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L629", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext", - "target": "context" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1178", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1109", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startvpnservice", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1032", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_bringrebreaktofront", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1118", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L869", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_cancelguidenotification", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L756", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenta11ystep", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L723", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentforegroundactivity", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1194", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenthashcount", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1071", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentstickyhinttext", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1189", - "weight": 1.0, - "context": "parameter_type", - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_disarmtamperlock", - "target": "context", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1292", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L819", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_ensureguidechannel", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L925", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L705", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_hasusageaccess", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1242", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1142", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1181", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1154", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1184", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1208", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1009", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L837", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1174", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1059", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetsettingstoroot", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L998", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showguidestep", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L939", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L879", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_starta11yguidewatch", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L659", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L918", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopa11yguidewatch", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1004", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1332", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1189", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_armtamperlock", - "target": "context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L659", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L660", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopstickyhint" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L797", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_a11ystepforactivity", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1163", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1118", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L723", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentforegroundactivity", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1071", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentstickyhinttext", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1292", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L925", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1342", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isotimestamp", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L705", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_hasusageaccess", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1242", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1142", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1181", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1154", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1184", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1208", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1009", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1177", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L939", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L838", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_ensureguidechannel" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1000", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showguidestep", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1006", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_cancelguidenotification" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L921", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopa11yguidewatch", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L989", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L943", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopstickyhint" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1005", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopsamsungguideoverlay" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1011", - "weight": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings", - "target": "intent" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1061", - "weight": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetsettingstoroot", - "target": "intent" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L469", - "weight": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startvpnservice", - "target": "intent" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1118", - "weight": 1.0, - "context": "generic_arg", - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "target": "any", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1118", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "target": "map" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1132", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1136", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1123", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1121", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1171", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_sendlayerchange", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1163", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult", - "target": "map" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1292", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", - "target": "map" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1163", - "weight": 1.0, - "context": "generic_arg", - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult", - "target": "any", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1292", - "weight": 1.0, - "context": "generic_arg", - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", - "target": "any", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L172", - "weight": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop", - "target": "any" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1190", - "weight": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_disarmtamperlock", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1301", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1182", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1185", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1178", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1190", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_armtamperlock", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1304", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isotimestamp" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1314", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", - "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", - "source_location": "L1332", - "weight": 1.0, - "context": "parameter_type", - "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic", - "target": "bytearray", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L173", - "weight": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop", - "target": "bytearray" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L39", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt", - "target": "vpn_rebreakvpnservice_rebreakvpnservice", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L45", - "weight": 1.0, - "context": "field", - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "hashlist", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L40", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "parcelfiledescriptor" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L41", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "thread" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L289", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_buildnotification" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_clearenabledflag" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_oncreate" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_ondestroy" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_onrevoke" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L51", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L101", - "weight": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_promotetoforegroundorstop", - "confidence_score": 1.0 - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L135", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L174", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_scheduleblocklistselfheal" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L277", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_setenabledflag" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L88", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L125", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_tryautorecoverafterrevoke" - }, - { - "relation": "inherits", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice", - "target": "vpnservice" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_scheduleblocklistselfheal", - "target": "thread" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L117", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn", - "target": "thread" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L49", - "weight": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_oncreate", - "target": "hashlist", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L51", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_int" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L51", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", - "target": "intent" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_buildnotification" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_scheduleblocklistselfheal" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_tryautorecoverafterrevoke", - "target": "intent" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L101", - "weight": 1.0, - "context": "return_type", - "source": "vpn_rebreakvpnservice_rebreakvpnservice_promotetoforegroundorstop", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_boolean", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L106", - "weight": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_promotetoforegroundorstop", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_buildnotification", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L115", - "weight": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_promotetoforegroundorstop", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn", - "confidence_score": 1.0 - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L277", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_setenabledflag", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_boolean" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L117", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_setenabledflag" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_ondestroy", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L213", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_onrevoke", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L138", - "weight": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop", - "target": "fileoutputstream" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L219", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_onrevoke", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_clearenabledflag" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_onrevoke", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_tryautorecoverafterrevoke" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L229", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_tryautorecoverafterrevoke", - "target": "vpn_rebreakvpnservice_rebreakvpnservice_clearenabledflag" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", - "source_location": "L289", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "vpn_rebreakvpnservice_rebreakvpnservice_buildnotification", - "target": "notification" + "target": "locales_fr_protection_url_title_android" }, { "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_post_ts", - "target": "notification" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "notification" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/notifications-cleanup.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_notifications_cleanup_ts", - "target": "notification" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_domain_submissions_id_vote_post_ts", - "target": "notification" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/notifications/[id].delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_notifications_id_delete_ts", - "target": "notification" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/notifications/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_notifications_index_get_ts", - "target": "notification" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/notifications/read.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_notifications_read_post_ts", - "target": "notification" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "notification" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_file": "apps/rebreak-native/lib/i18n.ts", "source_location": "L7", "weight": 1.0, "confidence_score": 1.0, - "source": "components_notificationsdropdown_notificationsdropdown", - "target": "notification" - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", - "source_location": "L147", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "app_notifications_iconfortype" + "source": "apps_rebreak_native_lib_i18n_ts", + "target": "apps_rebreak_native_locales_ar_json" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", - "source_location": "L12", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L103", "weight": 1.0, "confidence_score": 1.0, - "source": "notification", - "target": "app_notifications_notificationsscreen" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "context": "import", - "source": "notification", - "target": "apps_rebreak_native_stores_notifications_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "components_emptystate_emptystate" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "components_heroshieldcheck_heroshieldcheck" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_appheader" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L24", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L95", "weight": 1.0, "confidence_score": 1.0, - "source": "notification", - "target": "db_chat_countunreaddms" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_applock" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "db_notifications_createnotification" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "db_notifications_deletenotification" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "db_notifications_deleteoldnotifications" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "db_notifications_getnotifications" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "db_notifications_markallread" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", - "source_location": "L10", - "weight": 1.0, - "source": "notification", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "stores_notifications_usenotificationstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/notifications.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification", - "target": "utils_prisma_useprisma" - }, - { - "relation": "re_exports", - "context": "export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L69", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_activateresult" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_devicelayers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_disableresult" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L133", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_healthprobeopts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_healthprobeoutcome" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L140", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_healthproberesult" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L88", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_protectionlayerkey" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L162", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_rebreakprotectionevents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L96", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_syncblocklistopts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L101", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_syncblocklistresult" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_syncwebcontentdomainsopts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L124", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_syncwebcontentdomainsresult", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L147", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_systemsettingstarget" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "target": "src_rebreakprotection_types_webcontentfilterresult" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_devicelayers" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_devicelayers", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotection_types_devicelayers" - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_getdevicestate", - "target": "src_rebreakprotection_types_devicelayers" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_webcontentfilterresult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_webcontentfilterresult", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_useprotectionstate_useprotectionstate", - "target": "src_rebreakprotection_types_webcontentfilterresult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotection_types_webcontentfilterresult" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_activateresult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_activateresult", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotection_types_activateresult" - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_activate", - "target": "src_rebreakprotection_types_activateresult" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_disableresult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_disableresult", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotection_types_disableresult" - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_disable", - "target": "src_rebreakprotection_types_disableresult" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_protectionlayerkey" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_syncblocklistopts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_syncblocklistopts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotection_types_syncblocklistopts" - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_rebreakprotection_types_syncblocklistopts", - "target": "src_rebreakprotection_types_syncblocklistresult" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_syncblocklistresult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_syncblocklistresult", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotection_types_syncblocklistresult" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_syncwebcontentdomainsopts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_syncwebcontentdomainsopts", - "confidence_score": 1.0 - }, - { - "relation": "method", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotection_types_syncwebcontentdomainsopts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_syncwebcontentdomainsresult", - "confidence_score": 1.0 - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_healthprobeoutcome" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_healthprobeopts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_healthprobeopts", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotection_types_healthprobeopts" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_healthproberesult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_healthproberesult", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotection_types_healthproberesult" - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_runhealthprobe", - "target": "src_rebreakprotection_types_healthproberesult" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_systemsettingstarget" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_systemsettingstarget", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotection_types_systemsettingstarget" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", - "target": "src_rebreakprotection_types_rebreakprotectionevents" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L3", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotection_types_rebreakprotectionevents", - "confidence_score": 1.0 - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotection_types_rebreakprotectionevents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L18", - "weight": 1.0, - "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", - "target": "src_rebreakprotectionmodule_rebreakprotectionmodule", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "src_rebreakprotectionmodule_rebreakprotectionmodule" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L14", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_package_json", - "target": "rebreak_native_package_dependencies" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_auth" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L85", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L170", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_package_json", - "target": "rebreak_native_package_devdependencies" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_blocker" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L5", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L149", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_package_json", - "target": "rebreak_native_package_main" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_coach" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_package_json", - "target": "rebreak_native_package_name" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_common" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L4", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L127", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_package_json", - "target": "rebreak_native_package_private" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_games" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L6", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L112", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_package_json", - "target": "rebreak_native_package_scripts" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_headermenu" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L3", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L134", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_package_json", - "target": "rebreak_native_package_version" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_home" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L85", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_scripts", - "target": "rebreak_native_package_scripts_android" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_landing" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L8", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L398", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_scripts", - "target": "rebreak_native_package_scripts_ios" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_onboarding" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L11", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L90", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_scripts", - "target": "rebreak_native_package_scripts_lint" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_splash" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L10", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L119", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_scripts", - "target": "rebreak_native_package_scripts_prebuild" + "source": "apps_rebreak_native_locales_ar_json", + "target": "locales_ar_tabs" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L7", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_scripts", - "target": "rebreak_native_package_scripts_start" + "source": "locales_ar_common", + "target": "locales_ar_coach_error" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_common", + "target": "locales_ar_common_back" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_common", + "target": "locales_ar_common_cancel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_common", + "target": "locales_ar_common_confirm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_common", + "target": "locales_ar_common_continue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_common", + "target": "locales_ar_common_error" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_common", + "target": "locales_ar_common_loading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_common", + "target": "locales_ar_common_ok" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_common", + "target": "locales_ar_common_retry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_common", + "target": "locales_ar_common_success" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L12", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_scripts", - "target": "rebreak_native_package_scripts_typecheck" + "source": "locales_ar_common", + "target": "locales_ar_common_unknown_error" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L15", - "weight": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_config_plugins_react_native_callkeep", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_config_plugins_react_native_webrtc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_apple_authentication" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_application" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_av" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_blur" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_build_properties" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_clipboard" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_constants" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_dev_client" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_device" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_file_system" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_font" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_google_fonts_nunito" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_haptics" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_image" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_image_manipulator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_image_picker" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_linear_gradient" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_linking" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_local_authentication" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_localization" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_media_library" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_metro_runtime" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L50", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_modules_core" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L51", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_notifications" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_react_native_action_sheet" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_router" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_speech" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L54", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_splash_screen" + "source": "locales_ar_auth", + "target": "locales_ar_auth_acceptterms" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L55", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_status_bar" + "source": "locales_ar_auth", + "target": "locales_ar_auth_accepttermssuffix" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L20", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L34", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_vector_icons" + "source": "locales_ar_auth", + "target": "locales_ar_auth_alreadyregistered" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L56", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L37", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_expo_web_browser" + "source": "locales_ar_auth", + "target": "locales_ar_auth_applesignin" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L57", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L39", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_i18next" + "source": "locales_ar_auth", + "target": "locales_ar_auth_applesignup" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L21", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L49", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_lodev09_react_native_true_sheet" + "source": "locales_ar_auth", + "target": "locales_ar_auth_backtologin" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L58", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L50", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_lottie_react_native" + "source": "locales_ar_auth", + "target": "locales_ar_auth_backtologinplain" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L59", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L51", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_nativewind" + "source": "locales_ar_auth", + "target": "locales_ar_auth_backtosignup" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L60", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L52", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react" + "source": "locales_ar_auth", + "target": "locales_ar_auth_chooseavatar" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L61", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_dom" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L62", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_hook_form" + "source": "locales_ar_auth", + "target": "locales_ar_auth_confirmbtn" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L63", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_i18next" + "source": "locales_ar_auth", + "target": "locales_ar_auth_confirmed" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L74", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L59", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native" + "source": "locales_ar_auth", + "target": "locales_ar_auth_confirmemaildesc" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L22", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L60", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_async_storage_async_storage" + "source": "locales_ar_auth", + "target": "locales_ar_auth_confirmemailline1" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L65", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L61", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_bottom_tabs" + "source": "locales_ar_auth", + "target": "locales_ar_auth_confirmemailline2" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L66", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L58", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_callkeep" + "source": "locales_ar_auth", + "target": "locales_ar_auth_confirmemailtitle" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_community_slider" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L67", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_gesture_handler" + "source": "locales_ar_auth", + "target": "locales_ar_auth_confirmfailed" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L68", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L64", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_incall_manager" + "source": "locales_ar_auth", + "target": "locales_ar_auth_confirming" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L69", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L65", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_keyboard_controller" + "source": "locales_ar_auth", + "target": "locales_ar_auth_confirmsuccess" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L24", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L66", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_menu_menu" + "source": "locales_ar_auth", + "target": "locales_ar_auth_confirmtimeout" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_mmkv" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_picker_picker" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L71", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_reanimated" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_safe_area_context" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_screens" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L74", - "weight": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_sse", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_svg" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_url_polyfill" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_voip_push_notification" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L78", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_webrtc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L79", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_native_worklets" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_react_navigation_native" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_rive_react_native" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_supabase_supabase_js" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L81", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_tailwindcss" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_tanstack_react_query" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_valibot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L83", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_dependencies", - "target": "rebreak_native_package_dependencies_zustand" + "source": "locales_ar_auth", + "target": "locales_ar_auth_device_locked_back" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L86", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L79", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_devdependencies", - "target": "rebreak_native_package_devdependencies_babel_core" + "source": "locales_ar_auth", + "target": "locales_ar_auth_device_locked_body" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L87", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L80", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_devdependencies", - "target": "rebreak_native_package_devdependencies_types_react" + "source": "locales_ar_auth", + "target": "locales_ar_auth_device_locked_countdown" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/package.json", - "source_location": "L88", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L81", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_package_devdependencies", - "target": "rebreak_native_package_devdependencies_typescript" + "source": "locales_ar_auth", + "target": "locales_ar_auth_device_locked_email_hint" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L21", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L78", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_magic_win_package_devdependencies", - "target": "rebreak_native_package_devdependencies_types_react" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "path" + "source": "locales_ar_auth", + "target": "locales_ar_auth_device_locked_headline" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L100", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L82", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_ensureaccessibilityservice" + "source": "locales_ar_auth", + "target": "locales_ar_auth_device_locked_use_original" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L145", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L72", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_ensurebootpermission" + "source": "locales_ar_auth", + "target": "locales_ar_auth_devicelimitdesc" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L165", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L71", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_ensurereceivers" + "source": "locales_ar_auth", + "target": "locales_ar_auth_devicelimittitle" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L50", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L73", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_ensuretoolsnamespace" + "source": "locales_ar_auth", + "target": "locales_ar_auth_devicelimitupgrade" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L59", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L23", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_ensurevpnservice" + "source": "locales_ar_auth", + "target": "locales_ar_auth_email" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_emailplaceholder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_emailrequired" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_fillrequired" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_forgotpassword" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L36", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_fs" + "source": "locales_ar_auth", + "target": "locales_ar_auth_googlesignin" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_module_a11y_xml" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L286", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_module_device_admin_xml" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L266", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_witha11yconfigxml" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L233", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_witha11ystringresource" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_withandroidmanifest_withstringsxml_withdangerousmod_androidconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L291", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_withdeviceadminxml" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L311", - "weight": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", - "target": "plugins_with_rebreak_protection_android_withrebreakprotectionandroid", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L320", - "weight": 1.0, - "source": "plugins_with_rebreak_protection_android_withrebreakprotectionandroid", - "target": "plugins_with_rebreak_protection_android_witha11ystringresource", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L321", - "weight": 1.0, - "source": "plugins_with_rebreak_protection_android_withrebreakprotectionandroid", - "target": "plugins_with_rebreak_protection_android_witha11yconfigxml", - "confidence_score": 1.0 - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", - "source_location": "L322", - "weight": 1.0, - "source": "plugins_with_rebreak_protection_android_withrebreakprotectionandroid", - "target": "plugins_with_rebreak_protection_android_withdeviceadminxml", - "confidence_score": 1.0 - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_layout_tsx", - "target": "apps_rebreak_native_stores_notifications_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/auth.ts", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_auth_ts", - "target": "apps_rebreak_native_stores_notifications_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_notifications_ts", - "target": "apps_rebreak_native_lib_api_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_notifications_ts", - "target": "apps_rebreak_native_lib_supabase_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_notifications_ts", - "target": "lib_api_apifetch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_notifications_ts", - "target": "lib_supabase_supabase" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L7", - "weight": 1.0, - "source": "apps_rebreak_native_stores_notifications_ts", - "target": "stores_notifications_appnotification", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L18", - "weight": 1.0, - "source": "apps_rebreak_native_stores_notifications_ts", - "target": "stores_notifications_notificationstate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/notifications.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_notifications_ts", - "target": "stores_notifications_usenotificationstore" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_notificationsdropdown_notificationsdropdown", - "target": "apps_rebreak_native_stores_notifications_ts" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", - "source_location": "L33", - "weight": 1.0, - "source": "app_layout_applayout", - "target": "stores_notifications_usenotificationstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", - "source_location": "L16", - "weight": 1.0, - "source": "app_notifications_notificationsscreen", - "target": "stores_notifications_usenotificationstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_app_layout_tsx", - "target": "stores_notifications_usenotificationstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/auth.ts", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_auth_ts", - "target": "stores_notifications_usenotificationstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", - "source_location": "L7", - "weight": 1.0, - "source": "components_notificationsdropdown_notificationsdropdown", - "target": "stores_notifications_usenotificationstore" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L1", - "weight": 1.0, - "source": "docs_internal_session_2026_06_07_handoff_md", - "target": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L73", - "weight": 1.0, - "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", - "target": "internal_session_2026_06_07_handoff_artefakte_lokal", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L65", - "weight": 1.0, - "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", - "target": "internal_session_2026_06_07_handoff_committed_deployed_heute", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L82", - "weight": 1.0, - "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", - "target": "internal_session_2026_06_07_handoff_key_findings_auch_in_memory", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L89", - "weight": 1.0, - "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", - "target": "internal_session_2026_06_07_handoff_mac_speicher_kritisch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L31", - "weight": 1.0, - "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", - "target": "internal_session_2026_06_07_handoff_offene_threads_entscheidungen", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L8", - "weight": 1.0, - "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", - "target": "internal_session_2026_06_07_handoff_sofort_n\u00e4chster_schritt_offen_blockt_mac_entscheidung", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L19", - "weight": 1.0, - "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", - "target": "internal_session_2026_06_07_handoff_was_heute_fertig_wurde_verifiziert", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", - "source_location": "L47", - "weight": 1.0, - "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", - "target": "internal_session_2026_06_07_handoff_working_tree_uncommitted_nicht_deployed", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L1", - "weight": 1.0, - "source": "docs_internal_session_2026_06_08_handoff_md", - "target": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L9", - "weight": 1.0, - "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", - "target": "internal_session_2026_06_08_handoff_das_grosse_ding_rebreak_magic_f\u00fcr_windows_l\u00e4uft_e2e", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L68", - "weight": 1.0, - "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", - "target": "internal_session_2026_06_08_handoff_fags_fachverband_gl\u00fccksspielsucht_strategisch", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L33", - "weight": 1.0, - "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", - "target": "internal_session_2026_06_08_handoff_marketing_live_auf_prod_rebreak_org", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L42", - "weight": 1.0, - "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", - "target": "internal_session_2026_06_08_handoff_native_ui_polish_committet_lokal_6_commits_ahead_von_origin_db6db54", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L52", - "weight": 1.0, - "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", - "target": "internal_session_2026_06_08_handoff_n\u00e4chste_session_der_eigentliche_gamechanger_user_priorit\u00e4t", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L23", - "weight": 1.0, - "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", - "target": "internal_session_2026_06_08_handoff_phase_a_backend_live_auf_staging_commit_a95e665", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L16", - "weight": 1.0, - "source": "internal_session_2026_06_08_handoff_das_grosse_ding_rebreak_magic_f\u00fcr_windows_l\u00e4uft_e2e", - "target": "internal_session_2026_06_08_handoff_wichtige_lektion_kostete_stunde_falsche_box", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L12", - "weight": 1.0, - "source": "internal_session_2026_06_08_handoff_das_grosse_ding_rebreak_magic_f\u00fcr_windows_l\u00e4uft_e2e", - "target": "internal_session_2026_06_08_handoff_zwei_harte_backend_bugs_heute_gefunden_gefixt_waren_der_blocker", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", - "source_location": "L59", - "weight": 1.0, - "source": "internal_session_2026_06_08_handoff_n\u00e4chste_session_der_eigentliche_gamechanger_user_priorit\u00e4t", - "target": "internal_session_2026_06_08_handoff_weitere_offene_threads_prio_absteigend", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L1", - "weight": 1.0, - "source": "docs_internal_session_2026_06_08_preview_screenshots_handoff_md", - "target": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L60", - "weight": 1.0, - "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", - "target": "internal_session_2026_06_08_preview_screenshots_handoff_agenten_lernpunkt", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L18", - "weight": 1.0, - "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", - "target": "internal_session_2026_06_08_preview_screenshots_handoff_done_diese_session", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L6", - "weight": 1.0, - "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", - "target": "internal_session_2026_06_08_preview_screenshots_handoff_erledigt_in_fortsetzung_2026_06_09", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L13", - "weight": 1.0, - "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", - "target": "internal_session_2026_06_08_preview_screenshots_handoff_laufender_zustand_der_umgebung_wichtig", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", - "source_location": "L53", - "weight": 1.0, - "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", - "target": "internal_session_2026_06_08_preview_screenshots_handoff_n\u00e4chste_schritte_bypass_session", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L38", "weight": 1.0, - "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", - "target": "internal_session_2026_06_08_preview_screenshots_handoff_offene_bugs_vom_founder_beim_testen_gefunden", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_googlesignup" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_loginfailed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L30", "weight": 1.0, - "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", - "target": "internal_session_2026_06_08_preview_screenshots_handoff_screenshot_status", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_newpassword" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L1", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L31", "weight": 1.0, - "source": "docs_marketing_ilona_vorstand_mail_md", - "target": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_nickname" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L87", - "weight": 1.0, - "source": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", - "target": "marketing_ilona_vorstand_mail_forums_antwort_1_zeile_faden_warm_halten", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L94", - "weight": 1.0, - "source": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", - "target": "marketing_ilona_vorstand_mail_lange_fassung_backup", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L27", - "weight": 1.0, - "source": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", - "target": "marketing_ilona_vorstand_mail_mail_entwurf_kompakt_mit_tabelle", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L9", - "weight": 1.0, - "source": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", - "target": "marketing_ilona_vorstand_mail_stil_hinweis", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/marketing/ilona-vorstand-mail.md", - "source_location": "L15", - "weight": 1.0, - "source": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", - "target": "marketing_ilona_vorstand_mail_vor_dem_senden_ausf\u00fcllen_best\u00e4tigen", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L470", - "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_10_swot_analyse", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L505", - "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_11_roadmap_24_monate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L557", - "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_12_3_jahres_finanzplan", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L619", - "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L659", - "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_14_risiken_mitigation", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L690", - "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_15_anhang", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L32", "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_1_executive_summary", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_nicknameplaceholder" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L54", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L33", "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_2_unternehmen", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_noaccount" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L98", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L70", "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_3_produkt_technologie", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_nocode" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L191", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L75", "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_4_problem_markt", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_oauthfailed" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L261", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L40", "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_5_zielgruppe", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_orwithemail" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L296", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L26", "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_6_wettbewerb", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_password" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L330", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L29", "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_passwordmin8" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L374", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L27", "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_8_marketing_vertrieb", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_passwordplaceholder" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L431", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L28", "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_9_organisation_team", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_passwordrequired" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L1", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L57", "weight": 1.0, - "source": "ops_business_plan_nbank_md", - "target": "ops_business_plan_nbank_businessplan_rebreak", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_pleaseacceptterms" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L2", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L53", "weight": 1.0, - "source": "ops_business_plan_nbank_businessplan_rebreak", - "target": "ops_business_plan_nbank_antrag_nbank_niedersachsen_gr\u00fcndungskredit_zielvolumen_75_000", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_privacynotice" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L12", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L77", "weight": 1.0, - "source": "ops_business_plan_nbank_businessplan_rebreak", - "target": "ops_business_plan_nbank_inhaltsverzeichnis", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_registerfailed" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_resend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_resendcooldown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_resetpasswordsend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_resetpasswordsent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_resetpasswordsentdesc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_resetpasswordsentdescprefix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_resetpasswordsentdescsuffix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_resetpasswordsubtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_resetpasswordtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_signin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_signingin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_signinsubtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_signout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_signup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_signupsubtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_signuptitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L56", "weight": 1.0, - "source": "ops_business_plan_nbank_2_unternehmen", - "target": "ops_business_plan_nbank_2_1_gr\u00fcnder", - "confidence_score": 1.0 + "confidence_score": 1.0, + "source": "locales_ar_auth", + "target": "locales_ar_auth_termslink" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L66", - "weight": 1.0, - "source": "ops_business_plan_nbank_2_unternehmen", - "target": "ops_business_plan_nbank_2_2_sitz_rechtsform", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L78", - "weight": 1.0, - "source": "ops_business_plan_nbank_2_unternehmen", - "target": "ops_business_plan_nbank_2_3_vision", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L82", - "weight": 1.0, - "source": "ops_business_plan_nbank_2_unternehmen", - "target": "ops_business_plan_nbank_2_4_mission", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L89", - "weight": 1.0, - "source": "ops_business_plan_nbank_2_unternehmen", - "target": "ops_business_plan_nbank_2_5_werte_leitplanken", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L100", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_produkt_technologie", - "target": "ops_business_plan_nbank_3_1_produkt_\u00fcberblick", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L111", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_produkt_technologie", - "target": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L134", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_produkt_technologie", - "target": "ops_business_plan_nbank_3_3_mail_schutz_layer_2", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L142", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_produkt_technologie", - "target": "ops_business_plan_nbank_3_4_lyra_ki_coach_layer_3", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L150", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_produkt_technologie", - "target": "ops_business_plan_nbank_3_5_streak_community_onboarding", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L156", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_produkt_technologie", - "target": "ops_business_plan_nbank_3_6_rebreak_magic_selbstbindungs_modus_optional", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L166", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_produkt_technologie", - "target": "ops_business_plan_nbank_3_7_multi_device", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L171", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_produkt_technologie", - "target": "ops_business_plan_nbank_3_8_tech_stack_kurzfassung", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L185", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_produkt_technologie", - "target": "ops_business_plan_nbank_3_9_plattform_coverage_strategie", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L119", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1", - "target": "ops_business_plan_nbank_android", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L128", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1", - "target": "ops_business_plan_nbank_custom_domains_user_pflegbar", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L113", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1", - "target": "ops_business_plan_nbank_ios", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L124", - "weight": 1.0, - "source": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1", - "target": "ops_business_plan_nbank_macos", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L193", - "weight": 1.0, - "source": "ops_business_plan_nbank_4_problem_markt", - "target": "ops_business_plan_nbank_4_1_pr\u00e4valenz_gl\u00fccksspielsucht_in_deutschland", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L206", - "weight": 1.0, - "source": "ops_business_plan_nbank_4_problem_markt", - "target": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L234", - "weight": 1.0, - "source": "ops_business_plan_nbank_4_problem_markt", - "target": "ops_business_plan_nbank_4_3_marktgr\u00f6sse_top_down_bottom_up", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L254", - "weight": 1.0, - "source": "ops_business_plan_nbank_4_problem_markt", - "target": "ops_business_plan_nbank_4_4_regulatorisches_fenster", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L208", - "weight": 1.0, - "source": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken", - "target": "ops_business_plan_nbank_l\u00fccke_1_offshore_schwarzmarkt_nach_oasis_sperrung", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L215", - "weight": 1.0, - "source": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken", - "target": "ops_business_plan_nbank_l\u00fccke_2_werbe_druck_via_e_mail", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L222", - "weight": 1.0, - "source": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken", - "target": "ops_business_plan_nbank_l\u00fccke_3_zeit_zwischen_beratungsterminen", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L229", - "weight": 1.0, - "source": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken", - "target": "ops_business_plan_nbank_l\u00fccke_4_ger\u00e4te_bypass", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L244", - "weight": 1.0, - "source": "ops_business_plan_nbank_4_3_marktgr\u00f6sse_top_down_bottom_up", - "target": "ops_business_plan_nbank_bottom_up_conversion_annahmen", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L236", - "weight": 1.0, - "source": "ops_business_plan_nbank_4_3_marktgr\u00f6sse_top_down_bottom_up", - "target": "ops_business_plan_nbank_top_down_deutschland", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L263", - "weight": 1.0, - "source": "ops_business_plan_nbank_5_zielgruppe", - "target": "ops_business_plan_nbank_5_1_kernpersona_marcus_38", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L277", - "weight": 1.0, - "source": "ops_business_plan_nbank_5_zielgruppe", - "target": "ops_business_plan_nbank_5_2_sekund\u00e4rpersona_angeh\u00f6rige_sandra_41", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L285", - "weight": 1.0, - "source": "ops_business_plan_nbank_5_zielgruppe", - "target": "ops_business_plan_nbank_5_3_terti\u00e4re_persona_b2b_multiplikator_fachstellenleiter_dr_k_phase_2", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L298", - "weight": 1.0, - "source": "ops_business_plan_nbank_6_wettbewerb", - "target": "ops_business_plan_nbank_6_1_wettbewerbs_matrix_verifiziert_stand_2026", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L310", - "weight": 1.0, - "source": "ops_business_plan_nbank_6_wettbewerb", - "target": "ops_business_plan_nbank_6_2_usp_analyse_rebreak", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L322", - "weight": 1.0, - "source": "ops_business_plan_nbank_6_wettbewerb", - "target": "ops_business_plan_nbank_6_3_was_rebreak_bewusst_nicht_macht", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L332", - "weight": 1.0, - "source": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell", - "target": "ops_business_plan_nbank_7_1_erl\u00f6smodell_stand_2026_05_29", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L344", - "weight": 1.0, - "source": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell", - "target": "ops_business_plan_nbank_7_2_erl\u00f6squellen_mittel_bis_langfristig", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L351", - "weight": 1.0, - "source": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell", - "target": "ops_business_plan_nbank_7_3_unit_economics_sch\u00e4tzung", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L366", - "weight": 1.0, - "source": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell", - "target": "ops_business_plan_nbank_7_4_pricing_disziplin", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L376", - "weight": 1.0, - "source": "ops_business_plan_nbank_8_marketing_vertrieb", - "target": "ops_business_plan_nbank_8_1_vertriebs_strategie_auf_einen_blick", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L387", - "weight": 1.0, - "source": "ops_business_plan_nbank_8_marketing_vertrieb", - "target": "ops_business_plan_nbank_8_2_b2b_outreach_hauptkanal_jahr_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L404", - "weight": 1.0, - "source": "ops_business_plan_nbank_8_marketing_vertrieb", - "target": "ops_business_plan_nbank_8_3_content_strategie_b2c", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L415", - "weight": 1.0, - "source": "ops_business_plan_nbank_8_marketing_vertrieb", - "target": "ops_business_plan_nbank_8_4_brand_position", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L423", - "weight": 1.0, - "source": "ops_business_plan_nbank_8_marketing_vertrieb", - "target": "ops_business_plan_nbank_8_5_pr_anker_2026_27", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L433", - "weight": 1.0, - "source": "ops_business_plan_nbank_9_organisation_team", - "target": "ops_business_plan_nbank_9_1_status_quo_29_05_2026", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L446", - "weight": 1.0, - "source": "ops_business_plan_nbank_9_organisation_team", - "target": "ops_business_plan_nbank_9_2_geplante_hires_jahr_2_nach_f\u00f6rderzusage", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L457", - "weight": 1.0, - "source": "ops_business_plan_nbank_9_organisation_team", - "target": "ops_business_plan_nbank_9_3_externe_partner", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L488", - "weight": 1.0, - "source": "ops_business_plan_nbank_10_swot_analyse", - "target": "ops_business_plan_nbank_opportunities", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L472", - "weight": 1.0, - "source": "ops_business_plan_nbank_10_swot_analyse", - "target": "ops_business_plan_nbank_strengths", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L495", - "weight": 1.0, - "source": "ops_business_plan_nbank_10_swot_analyse", - "target": "ops_business_plan_nbank_threats", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L480", - "weight": 1.0, - "source": "ops_business_plan_nbank_10_swot_analyse", - "target": "ops_business_plan_nbank_weaknesses", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L507", - "weight": 1.0, - "source": "ops_business_plan_nbank_11_roadmap_24_monate", - "target": "ops_business_plan_nbank_11_1_visuelle_roadmap", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L515", - "weight": 1.0, - "source": "ops_business_plan_nbank_11_roadmap_24_monate", - "target": "ops_business_plan_nbank_11_2_quartals_detail", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L536", - "weight": 1.0, - "source": "ops_business_plan_nbank_11_2_quartals_detail", - "target": "ops_business_plan_nbank_q1_2027", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L517", - "weight": 1.0, - "source": "ops_business_plan_nbank_11_2_quartals_detail", - "target": "ops_business_plan_nbank_q2_2026_jetzt_vor_f\u00f6rderung", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L541", - "weight": 1.0, - "source": "ops_business_plan_nbank_11_2_quartals_detail", - "target": "ops_business_plan_nbank_q2_2027", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L523", - "weight": 1.0, - "source": "ops_business_plan_nbank_11_2_quartals_detail", - "target": "ops_business_plan_nbank_q3_2026_f\u00f6rderzusage_angenommen", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L546", - "weight": 1.0, - "source": "ops_business_plan_nbank_11_2_quartals_detail", - "target": "ops_business_plan_nbank_q3_2027", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L530", - "weight": 1.0, - "source": "ops_business_plan_nbank_11_2_quartals_detail", - "target": "ops_business_plan_nbank_q4_2026", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L550", - "weight": 1.0, - "source": "ops_business_plan_nbank_11_2_quartals_detail", - "target": "ops_business_plan_nbank_q4_2027", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L562", - "weight": 1.0, - "source": "ops_business_plan_nbank_12_3_jahres_finanzplan", - "target": "ops_business_plan_nbank_12_1_annahmen_block", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L573", - "weight": 1.0, - "source": "ops_business_plan_nbank_12_3_jahres_finanzplan", - "target": "ops_business_plan_nbank_12_2_guv_\u00fcbersicht_plan", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L600", - "weight": 1.0, - "source": "ops_business_plan_nbank_12_3_jahres_finanzplan", - "target": "ops_business_plan_nbank_12_3_liquidit\u00e4ts_rohbild", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L612", - "weight": 1.0, - "source": "ops_business_plan_nbank_12_3_jahres_finanzplan", - "target": "ops_business_plan_nbank_12_4_break_even_logik", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L621", - "weight": 1.0, - "source": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000", - "target": "ops_business_plan_nbank_13_1_verwendungsplan", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L634", - "weight": 1.0, - "source": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000", - "target": "ops_business_plan_nbank_13_2_eigenkapital_anteil", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L643", - "weight": 1.0, - "source": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000", - "target": "ops_business_plan_nbank_13_3_warum_kein_beteiligungskapital_in_phase_1", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L649", - "weight": 1.0, - "source": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000", - "target": "ops_business_plan_nbank_13_4_tilgungsf\u00e4higkeit", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L661", - "weight": 1.0, - "source": "ops_business_plan_nbank_14_risiken_mitigation", - "target": "ops_business_plan_nbank_14_1_risiko_matrix", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L676", - "weight": 1.0, - "source": "ops_business_plan_nbank_14_risiken_mitigation", - "target": "ops_business_plan_nbank_14_2_realistischer_worst_case_24_monate", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L692", - "weight": 1.0, - "source": "ops_business_plan_nbank_15_anhang", - "target": "ops_business_plan_nbank_a_cv_chahine_brini", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L696", - "weight": 1.0, - "source": "ops_business_plan_nbank_15_anhang", - "target": "ops_business_plan_nbank_b_vorl\u00e4ufige_loi_liste", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L710", - "weight": 1.0, - "source": "ops_business_plan_nbank_15_anhang", - "target": "ops_business_plan_nbank_c_quellen_belege", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L720", - "weight": 1.0, - "source": "ops_business_plan_nbank_15_anhang", - "target": "ops_business_plan_nbank_d_app_demo", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L725", - "weight": 1.0, - "source": "ops_business_plan_nbank_15_anhang", - "target": "ops_business_plan_nbank_e_screenshots_der_app", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L729", - "weight": 1.0, - "source": "ops_business_plan_nbank_15_anhang", - "target": "ops_business_plan_nbank_f_lyra_persona_produkt_spezifikation_auszug", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/BUSINESS_PLAN_NBANK.md", - "source_location": "L733", - "weight": 1.0, - "source": "ops_business_plan_nbank_15_anhang", - "target": "ops_business_plan_nbank_g_kontakt", - "confidence_score": 1.0 - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L212", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L74", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "db_mail_refreshandsavetokens" + "source": "locales_ar_auth", + "target": "locales_ar_auth_tologin" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L885", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L15", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_assertenv" + "source": "locales_ar_auth", + "target": "locales_ar_auth_welcomeback" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L93", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L110", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_clearconnectionerror" + "source": "locales_ar_appheader", + "target": "locales_ar_auth_signout" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L499", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L460", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_coalescepending" + "source": "locales_ar_auth_nickname", + "target": "locales_ar_coach_placeholder" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_decrypt" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_encrypt" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L411", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_getcredentialsforconnection" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L142", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_getkey" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L899", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_imap_socket_error_codes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L464", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_isautherror" + "source": "locales_ar_auth_nickname", + "target": "locales_ar_nickname_error_profanity" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_loadactiveconnections" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L450", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_log" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L455", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_logerror" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L899", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L383", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_markconnectionauthbroken" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_ms_oauth_scopes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_pool" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_reconnect_delays_ms" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L212", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_refreshandsavetokensdaemon" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L813", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_refreshconnections" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L302", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_refreshgoogletokensdaemon" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L564", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_runsession" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L498", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_scaninflight" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L479", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_sessions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L861", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_shutdown" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L881", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_sleep" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L789", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_startsession" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L800", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_stopsession" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L501", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_triggerscan" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_updateconnectionerror" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L102", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_index_mjs", - "target": "imap_idle_index_updateidleheartbeat" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L580", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_updateconnectionerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L623", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_clearconnectionerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L622", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_updateidleheartbeat" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L816", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_refreshconnections", - "target": "imap_idle_index_loadactiveconnections" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L160", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_decrypt", - "target": "imap_idle_index_getkey" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_encrypt", - "target": "imap_idle_index_getkey" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L229", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_mail_refreshandsavetokens", - "target": "imap_idle_index_decrypt" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L436", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_getcredentialsforconnection", - "target": "imap_idle_index_decrypt" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L229", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_refreshandsavetokensdaemon", - "target": "imap_idle_index_decrypt" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L319", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_refreshgoogletokensdaemon", - "target": "imap_idle_index_decrypt" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_mail_refreshandsavetokens", - "target": "imap_idle_index_encrypt" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_refreshandsavetokensdaemon", - "target": "imap_idle_index_encrypt" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L347", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_refreshgoogletokensdaemon", - "target": "imap_idle_index_encrypt" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L756", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_encrypt" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L427", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_getcredentialsforconnection", - "target": "imap_idle_index_refreshandsavetokensdaemon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L765", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_refreshandsavetokensdaemon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L425", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_getcredentialsforconnection", - "target": "imap_idle_index_refreshgoogletokensdaemon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L750", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_refreshgoogletokensdaemon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L578", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_markconnectionauthbroken" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L427", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_getcredentialsforconnection", - "target": "db_mail_refreshandsavetokens" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L421", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_getcredentialsforconnection", - "target": "imap_idle_index_log" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L572", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_getcredentialsforconnection" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L902", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_main", - "target": "imap_idle_index_log" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L846", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_refreshconnections", - "target": "imap_idle_index_log" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L610", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_log" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L862", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_shutdown", - "target": "imap_idle_index_log" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L791", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_startsession", - "target": "imap_idle_index_log" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L803", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_stopsession", - "target": "imap_idle_index_log" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L507", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_triggerscan", - "target": "imap_idle_index_log" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L574", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_logerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L534", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_triggerscan", - "target": "imap_idle_index_logerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L729", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_isautherror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L632", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_triggerscan" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L752", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "db_mail_refreshandsavetokens" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L712", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_runsession", - "target": "imap_idle_index_sleep" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L794", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_startsession", - "target": "imap_idle_index_runsession" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L827", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_refreshconnections", - "target": "imap_idle_index_startsession" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L834", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_refreshconnections", - "target": "imap_idle_index_stopsession" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L867", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_shutdown", - "target": "imap_idle_index_stopsession" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L906", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_main", - "target": "imap_idle_index_refreshconnections" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/index.mjs", - "source_location": "L900", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_index_main", - "target": "imap_idle_index_assertenv" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-from-artifact.sh", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_from_artifact_sh", - "target": "scripts_deploy_from_artifact_log" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-from-artifact.sh", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_from_artifact_sh", - "target": "scripts_deploy_from_artifact_log_err" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-from-artifact.sh", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_from_artifact_sh", - "target": "scripts_deploy_from_artifact_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-from-artifact.sh", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_from_artifact_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_from_artifact_sh__entry" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-from-artifact.sh", - "source_location": "L31", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_from_artifact_sh__entry", - "target": "scripts_deploy_from_artifact_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-from-artifact.sh", - "source_location": "L43", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_from_artifact_sh__entry", - "target": "scripts_deploy_from_artifact_log_err" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppLockGate.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_applockgate_tsx", - "target": "apps_rebreak_native_components_lockscreen_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/LockScreen.tsx", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_lockscreen_tsx", - "target": "apps_rebreak_native_stores_applock_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/LockScreen.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_lockscreen_tsx", - "target": "apps_rebreak_native_stores_auth_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/LockScreen.tsx", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_lockscreen_tsx", - "target": "components_lockscreen_lockscreen" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/LockScreen.tsx", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_lockscreen_tsx", - "target": "stores_applock_useapplockstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/LockScreen.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_lockscreen_tsx", - "target": "stores_auth_useauthstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppLockGate.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_applockgate_tsx", - "target": "components_lockscreen_lockscreen" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/LockScreen.tsx", - "source_location": "L26", - "weight": 1.0, - "source": "components_lockscreen_lockscreen", - "target": "stores_applock_useapplockstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/LockScreen.tsx", - "source_location": "L27", - "weight": 1.0, - "source": "components_lockscreen_lockscreen", - "target": "stores_auth_useauthstore" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/_layout.tsx", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_layout_tsx", - "target": "apps_rebreak_native_stores_applock_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_settings_tsx", - "target": "apps_rebreak_native_stores_applock_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppLockGate.tsx", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_applockgate_tsx", - "target": "apps_rebreak_native_stores_applock_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/appLock.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_applock_ts", - "target": "stores_applock_applockstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/appLock.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_applock_ts", - "target": "stores_applock_localauthmodule" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/appLock.ts", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_applock_ts", - "target": "stores_applock_useapplockstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/_layout.tsx", - "source_location": "L69", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_layout_rootlayoutinner", - "target": "stores_applock_useapplockstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L163", - "weight": 1.0, - "source": "app_settings_settingsscreen", - "target": "stores_applock_useapplockstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/_layout.tsx", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_layout_tsx", - "target": "stores_applock_useapplockstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/settings.tsx", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_settings_tsx", - "target": "stores_applock_useapplockstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/AppLockGate.tsx", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_applockgate_tsx", - "target": "stores_applock_useapplockstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/AppLockGate.tsx", - "source_location": "L18", - "weight": 1.0, - "source": "components_applockgate_applockgate", - "target": "stores_applock_useapplockstore" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "backend_server_utils_imap_providers_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "backend_server_utils_mail_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "backend_server_utils_mail_classifier_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_domains_getblocklisteddomainsset" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_domains_getmaildisplaynamepatterns" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_mail_deleteoldmailblocked" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_mail_getalreadyblockeduidset" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_mail_getmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_mail_insertmailblocked" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_mail_insertmailclassificationsample" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_mail_markfullsweepdone" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_mail_patchfolderscanstate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_mail_updatemailconnectiontitle" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_mail_upsertmailblockedstat" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "utils_imap_providers_resolveprovidermeta" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "utils_mail_auth_resolveimapauth" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "utils_mail_classifier_classifymail" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan-internal.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_internal_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "backend_server_utils_imap_providers_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "backend_server_utils_mail_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "backend_server_utils_mail_classifier_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "db_domains_getblocklisteddomainsset" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "db_domains_getcustommaildisplaynames" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "db_mail_deleteoldmailblocked" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "db_mail_getalreadyblockeduidset" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "db_mail_getmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "db_mail_insertmailblocked" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "db_mail_insertmailclassificationsample" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "db_mail_updatemailconnectiontitle" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "db_mail_upsertmailblockedstat" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "utils_imap_providers_resolveprovidermeta" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "utils_mail_auth_resolveimapauth" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "utils_mail_classifier_classifymail" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/scan.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_scan_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/calls/ring.post.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_calls_ring_post_ts", - "target": "backend_server_services_push_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "backend_server_services_push_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "backend_server_services_voip_push_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_callringpushpayload" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_chatpushpayload" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_deviceaddedpushpayload" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L140", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_deviceplatformlabel" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_ensureexpo" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_expoinstance" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_expomodule" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_expopushmessage" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L114", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_getdisplayname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_sendcallringpush" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_sendchatpush" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L159", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_senddeviceaddedpush" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L126", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_push_truncatepreview" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "services_voip_push_sendvoippush" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_push_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L276", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_push_sendcallringpush", - "target": "services_push_ensureexpo" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L61", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_push_sendchatpush", - "target": "services_push_ensureexpo" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L186", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_push_senddeviceaddedpush", - "target": "services_push_ensureexpo" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/services/push.ts", - "source_location": "L39", - "weight": 1.0, - "source": "services_push_sendchatpush", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/services/push.ts", - "source_location": "L115", - "weight": 1.0, - "source": "services_push_getdisplayname", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/push.ts", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_push_senddeviceaddedpush", - "target": "services_push_deviceplatformlabel" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "services_push_senddeviceaddedpush" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/services/push.ts", - "source_location": "L163", - "weight": 1.0, - "source": "services_push_senddeviceaddedpush", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/calls/ring.post.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_calls_ring_post_ts", - "target": "services_push_sendcallringpush" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/services/push.ts", - "source_location": "L279", - "weight": 1.0, - "source": "services_push_sendcallringpush", - "target": "services_voip_push_sendvoippush" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/services/push.ts", - "source_location": "L252", - "weight": 1.0, - "source": "services_push_sendcallringpush", - "target": "utils_prisma_useprisma" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "CLAUDE.md", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "claude_md", - "target": "rebreak_monorepo_claude_claude_md_rebreak_monorepo" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "CLAUDE.md", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_claude_claude_md_rebreak_monorepo", - "target": "rebreak_monorepo_claude_graphify_knowledge_graph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "app.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_json", - "target": "rebreak_monorepo_app_ios" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "app.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_app_ios", - "target": "rebreak_monorepo_app_ios_bundleidentifier" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "package_json", - "target": "rebreak_monorepo_package_engines" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "package_json", - "target": "rebreak_monorepo_package_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "package_json", - "target": "rebreak_monorepo_package_packagemanager" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "package_json", - "target": "rebreak_monorepo_package_pnpm" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "package_json", - "target": "rebreak_monorepo_package_private" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "package_json", - "target": "rebreak_monorepo_package_scripts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "package_json", - "target": "rebreak_monorepo_package_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_scripts", - "target": "rebreak_monorepo_package_scripts_android" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_scripts", - "target": "rebreak_monorepo_package_scripts_build_admin" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_scripts", - "target": "rebreak_monorepo_package_scripts_build_backend" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_scripts", - "target": "rebreak_monorepo_package_scripts_dev_admin" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_scripts", - "target": "rebreak_monorepo_package_scripts_dev_backend" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_scripts", - "target": "rebreak_monorepo_package_scripts_dev_native" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_scripts", - "target": "rebreak_monorepo_package_scripts_ios" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_engines", - "target": "rebreak_monorepo_package_engines_node" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_engines", - "target": "rebreak_monorepo_package_pnpm" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm", - "target": "rebreak_monorepo_package_pnpm_overrides" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm", - "target": "rebreak_monorepo_package_pnpm_patcheddependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_overrides", - "target": "apps_rebreak_native_metro_config_js" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_overrides", - "target": "rebreak_monorepo_package_overrides_metro" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_overrides", - "target": "rebreak_monorepo_package_overrides_metro_cache" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_overrides", - "target": "rebreak_monorepo_package_overrides_metro_core" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_overrides", - "target": "rebreak_monorepo_package_overrides_metro_file_map" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_overrides", - "target": "rebreak_monorepo_package_overrides_metro_resolver" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_overrides", - "target": "rebreak_monorepo_package_overrides_metro_runtime" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_overrides", - "target": "rebreak_monorepo_package_overrides_metro_source_map" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_overrides", - "target": "rebreak_monorepo_package_overrides_metro_symbolicate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_overrides", - "target": "rebreak_monorepo_package_overrides_metro_transform_plugins" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_overrides", - "target": "rebreak_monorepo_package_overrides_metro_transform_worker" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "backend/start-staging.sh", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_start_staging_sh", - "target": "backend_start_staging_nitro_host" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "backend/start-staging.sh", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_start_staging_sh", - "target": "backend_start_staging_nitro_port" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "backend/start-staging.sh", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_start_staging_sh", - "target": "backend_start_staging_node_env" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "backend/start-staging.sh", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_start_staging_sh", - "target": "backend_start_staging_port" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/start-staging.sh", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_start_staging_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_backend_start_staging_sh__entry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_json", - "target": "backend_package_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_json", - "target": "backend_package_devdependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_json", - "target": "backend_package_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_json", - "target": "backend_package_private" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_json", - "target": "backend_package_scripts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_json", - "target": "backend_package_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_json", - "target": "backend_package_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_scripts", - "target": "backend_package_scripts_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_scripts", - "target": "backend_package_scripts_dev" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_scripts", - "target": "backend_package_scripts_preview" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_scripts", - "target": "backend_package_scripts_prisma_generate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_scripts", - "target": "backend_package_scripts_start" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_scripts", - "target": "backend_package_scripts_test" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_scripts", - "target": "backend_package_scripts_test_watch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_scripts", - "target": "backend_package_scripts_typecheck" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_expo_server_sdk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_franc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_groq_sdk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_imapflow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_jose" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_openai" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_parse_node_apn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_pg" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_prisma_adapter_pg" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_prisma_client" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_resend" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_stripe" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_supabase_supabase_js" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_dependencies", - "target": "backend_package_dependencies_zod" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_h3" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_nitropack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_prisma" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_node" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_types_pg" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_typescript" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_vitest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/package.json", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_package_devdependencies", - "target": "backend_package_devdependencies_vitest_coverage_v8" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_json", - "target": "backend_tsconfig_compileroptions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_json", - "target": "backend_tsconfig_extends" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_allowsyntheticdefaultimports" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_baseurl" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_forceconsistentcasinginfilenames" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_lib" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_module" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_moduleresolution" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_noemit" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_nofallthroughcasesinswitch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_noimplicitreturns" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_resolvejsonmodule" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_skiplibcheck" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_strict" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_target" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tsconfig.json", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tsconfig_compileroptions", - "target": "backend_tsconfig_compileroptions_useunknownincatchvariables" - }, - { - "relation": "inherits", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", - "target": "backend_tsconfig_compileroptions_module" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/setup.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_setup_ts", - "target": "tests_setup_g" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/custom-domains/plan-limits.test.ts", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_custom_domains_plan_limits_test_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/custom-domains/plan-limits.test.ts", - "source_location": "L183", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_custom_domains_plan_limits_test_ts", - "target": "custom_domains_index_post_resolvetypeandvalue" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/custom-domains/plan-limits.test.ts", - "source_location": "L179", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_custom_domains_plan_limits_test_ts", - "target": "custom_domains_plan_limits_test_testresolveresult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/custom-domains/plan-limits.test.ts", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_custom_domains_plan_limits_test_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/custom-domains/plan-limits.test.ts", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_custom_domains_plan_limits_test_ts", - "target": "utils_plan_features_plan_limits" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_custom_domains_scan_trigger_test_ts", - "target": "custom_domains_scan_trigger_test_setupfetchmock" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_custom_domains_scan_trigger_test_ts", - "target": "custom_domains_scan_trigger_test_teardownfetchmock" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_custom_domains_scan_trigger_test_ts", - "target": "custom_domains_scan_trigger_test_triggerscanifmaildomain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/custom-domains/scan-trigger.test.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_custom_domains_scan_trigger_test_ts", - "target": "db_domains_customdomaintype" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_mail_gmail_delete_strategy_test_ts", - "target": "mail_gmail_delete_strategy_test_mailboxentry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_mail_gmail_delete_strategy_test_ts", - "target": "mail_gmail_delete_strategy_test_makeimapmock" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_mail_gmail_delete_strategy_test_ts", - "target": "mail_gmail_delete_strategy_test_performdelete" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", - "source_location": "L55", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_mail_gmail_delete_strategy_test_ts", - "target": "mail_gmail_delete_strategy_test_resolvetrashfolder" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/gmail-delete-strategy.test.ts", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mail_gmail_delete_strategy_test_performdelete", - "target": "mail_gmail_delete_strategy_test_resolvetrashfolder" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/mail-classifier.test.ts", - "source_location": "L697", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "mail_mail_classifier_test_mockmailbox" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/mail-classifier.test.ts", - "source_location": "L699", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "mail_mail_classifier_test_filterscannable" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/display-name-match.test.ts", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_mail_display_name_match_test_ts", - "target": "backend_server_utils_mail_classifier_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/display-name-match.test.ts", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_mail_display_name_match_test_ts", - "target": "utils_mail_classifier_classifymail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_users_test_ts", - "target": "admin_users_test_g" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_users_test_ts", - "target": "admin_users_test_makerow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_users_test_ts", - "target": "admin_users_test_originalstubs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_users_test_ts", - "target": "admin_users_test_prismamock" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_users_test_ts", - "target": "backend_server_db_adminusers_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_users_test_ts", - "target": "db_adminusers_listadminusers" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_users_test_ts", - "target": "db_adminusers_softdeleteadminuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/users.test.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_users_test_ts", - "target": "db_adminusers_updateadminuser" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/domains.test.ts", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_domains_test_ts", - "target": "admin_domains_test_makerow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/domains.test.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_domains_test_ts", - "target": "admin_domains_test_prismamock" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/domains.test.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_domains_test_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/domains.test.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_domains_test_ts", - "target": "db_domains_getpendingsubmissions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/moderation.test.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_moderation_test_ts", - "target": "admin_moderation_test_prismamock" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/moderation.test.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_moderation_test_ts", - "target": "backend_server_db_moderation_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/moderation.test.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_moderation_test_ts", - "target": "db_moderation_banuserfrommoderationitem" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/moderation.test.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_moderation_test_ts", - "target": "db_moderation_deletemoderationitem" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/moderation.test.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_moderation_test_ts", - "target": "db_moderation_dismissmoderationitem" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/moderation.test.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_moderation_test_ts", - "target": "db_moderation_listmoderationqueue" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/verify-admin.test.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_verify_admin_test_ts", - "target": "admin_verify_admin_test_prismamock" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/verify-admin.test.ts", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_verify_admin_test_ts", - "target": "admin_verify_admin_test_requireusermock" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/verify-admin.test.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_verify_admin_test_ts", - "target": "backend_server_db_admin_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/verify-admin.test.ts", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_verify_admin_test_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/verify-admin.test.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_verify_admin_test_ts", - "target": "db_admin_isadminuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/admin/verify-admin.test.ts", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_admin_verify_admin_test_ts", - "target": "utils_auth_requireadmin" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/social/profile-counts.test.ts", - "source_location": "L81", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_social_profile_counts_test_ts", - "target": "social_profile_counts_test_callhandler" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/social/profile-counts.test.ts", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_social_profile_counts_test_ts", - "target": "social_profile_counts_test_g" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/social/profile-counts.test.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_social_profile_counts_test_ts", - "target": "social_profile_counts_test_mocks" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/social/profile-counts.test.ts", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "social_profile_counts_test_callhandler", - "target": "backend_server_api_social_profile_userid_get_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.patch.test.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_patch_test_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.patch.test.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_patch_test_ts", - "target": "db_profile_tryawardprotrial" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.patch.test.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_patch_test_ts", - "target": "db_profile_updatedemographics" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.patch.test.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_patch_test_ts", - "target": "db_profile_withdrawdemographics" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.patch.test.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_patch_test_ts", - "target": "profile_demographics_patch_test_full_demographics" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.patch.test.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_patch_test_ts", - "target": "profile_demographics_patch_test_mocks" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/install-and-banner.test.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_install_and_banner_test_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/install-and-banner.test.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_install_and_banner_test_ts", - "target": "db_profile_dismissdigabanner" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/install-and-banner.test.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_install_and_banner_test_ts", - "target": "db_profile_recordinstallevent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/install-and-banner.test.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_install_and_banner_test_ts", - "target": "profile_install_and_banner_test_mocks" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/sos-insights.get.ts", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_sos_insights_get_test_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/sos-insights.get.ts", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_sos_insights_get_test_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/sos-insights.get.ts", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_sos_insights_get_test_ts", - "target": "me_sos_insights_get_helper" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/sos-insights.get.test.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_sos_insights_get_test_ts", - "target": "profile_sos_insights_get_test_aggregate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/sos-insights.get.test.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_sos_insights_get_test_ts", - "target": "profile_sos_insights_get_test_session" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/sos-insights.get.ts", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_sos_insights_get_test_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/sos-insights.get.ts", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_sos_insights_get_test_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/approved-domains.get.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_approved_domains_get_test_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/approved-domains.get.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_approved_domains_get_test_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/approved-domains.get.test.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_approved_domains_get_test_ts", - "target": "profile_approved_domains_get_test_mocks" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/approved-domains.get.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_approved_domains_get_test_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/approved-domains.get.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_approved_domains_get_test_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.get.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_get_test_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.get.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_get_test_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.get.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_get_test_ts", - "target": "db_profile_getdemographics" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.get.test.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_get_test_ts", - "target": "profile_demographics_get_test_mocks" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.get.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_get_test_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.zod.test.ts", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_zod_test_ts", - "target": "profile_demographics_zod_test_employment_status_values" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.zod.test.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_zod_test_ts", - "target": "profile_demographics_zod_test_gender_values" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.zod.test.ts", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_zod_test_ts", - "target": "profile_demographics_zod_test_job_tenure_values" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.zod.test.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_zod_test_ts", - "target": "profile_demographics_zod_test_marital_values" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/demographics.zod.test.ts", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_demographics_zod_test_ts", - "target": "profile_demographics_zod_test_schema" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_cooldown_history_get_test_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_cooldown_history_get_test_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_cooldown_history_get_test_ts", - "target": "me_cooldown_history_get_cooldownentry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/cooldown-history.get.test.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_cooldown_history_get_test_ts", - "target": "profile_cooldown_history_get_test_cooldownrow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/profile/cooldown-history.get.test.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_cooldown_history_get_test_ts", - "target": "profile_cooldown_history_get_test_derivestatus" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_cooldown_history_get_test_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/cooldown-history.get.ts", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_profile_cooldown_history_get_test_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/voice/quota.test.ts", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_voice_quota_test_ts", - "target": "backend_server_db_voicequota_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/voice/quota.test.ts", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_voice_quota_test_ts", - "target": "db_voicequota_consumevoicequota" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/voice/quota.test.ts", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_voice_quota_test_ts", - "target": "db_voicequota_estimateaudioseconds" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/voice/quota.test.ts", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_voice_quota_test_ts", - "target": "db_voicequota_getremainingvoicequota" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/voice/quota.test.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_voice_quota_test_ts", - "target": "voice_quota_test_mocks" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_device_account_binding_test_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_device_account_binding_test_ts", - "target": "backend_server_utils_device_lock_email_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_device_account_binding_test_ts", - "target": "db_devices_binddevicetouser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_device_account_binding_test_ts", - "target": "db_devices_canceldevicerelease" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_device_account_binding_test_ts", - "target": "db_devices_findactivedevicelock" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_device_account_binding_test_ts", - "target": "db_devices_islockingplan" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_device_account_binding_test_ts", - "target": "db_devices_requestdevicerelease" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_device_account_binding_test_ts", - "target": "devices_device_account_binding_test_makedevice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_device_account_binding_test_ts", - "target": "devices_device_account_binding_test_mockprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/device-account-binding.test.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_device_account_binding_test_ts", - "target": "utils_device_lock_email_islocknotifyratelimited" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/regfile.test.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_regfile_test_ts", - "target": "backend_server_utils_mobileconfig_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/regfile.test.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_regfile_test_ts", - "target": "backend_server_utils_regfile_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/regfile.test.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_regfile_test_ts", - "target": "utils_mobileconfig_labeltoslug" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/devices/regfile.test.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_devices_regfile_test_ts", - "target": "utils_regfile_generatewindowsdohregfile" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/device-lock-cron.ts", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_device_lock_cron_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/device-lock-cron.ts", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_device_lock_cron_ts", - "target": "db_devices_autoreleaseinactivedevices" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/device-lock-cron.ts", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_device_lock_cron_ts", - "target": "plugins_device_lock_cron_runautorelease" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/device-lock-cron.ts", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "plugins_device_lock_cron_runautorelease", - "target": "db_devices_autoreleaseinactivedevices" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-scan-cron.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_mail_scan_cron_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-scan-cron.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_mail_scan_cron_ts", - "target": "db_mail_getallactivemailuserids" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-scan-cron.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_mail_scan_cron_ts", - "target": "plugins_mail_scan_cron_runscan" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-scan-cron.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "plugins_mail_scan_cron_runscan", - "target": "db_mail_getallactivemailuserids" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_mail_retention_cron_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_mail_retention_cron_ts", - "target": "plugins_mail_retention_cron_runrowcap" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L95", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_mail_retention_cron_ts", - "target": "plugins_mail_retention_cron_runsamplepurge" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_mail_retention_cron_ts", - "target": "plugins_mail_retention_cron_runsubjectnullification" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_mail_retention_cron_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "plugins_mail_retention_cron_runsubjectnullification", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L96", - "weight": 1.0, - "confidence_score": 1.0, - "source": "plugins_mail_retention_cron_runsamplepurge", - "target": "utils_prisma_useprisma" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/pro-trial-expiry-cron.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_pro_trial_expiry_cron_ts", - "target": "plugins_pro_trial_expiry_cron_runrevoke" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/server/plugins/pro-trial-expiry-cron.ts", - "source_location": "L49", - "weight": 1.0, - "source": "plugins_pro_trial_expiry_cron_runrevoke", - "target": "utils_prisma_useprisma" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/blocklist-cron.ts", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_plugins_blocklist_cron_ts", - "target": "plugins_blocklist_cron_runsync" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/stats.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_stats_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/check.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_check_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/stats.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_stats_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/calls/ring.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_calls_ring_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/history.delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_history_delete_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/history.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_history_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L310", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/[postId]/index.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_postid_index_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/repost.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_repost_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/request.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_request_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_status_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/curated-domains/suggest.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_curated_domains_suggest_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_id_submit_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/suggest.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_suggest_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/dev/set-plan.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_dev_set_plan_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_domain_submissions_id_vote_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/feedback/[id].patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_feedback_id_patch_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/feedback/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_feedback_index_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/accept.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_accept_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id].get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/live-toggle.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_live_toggle_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_memory_move_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_move_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_rematch_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge-memory.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_memory_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/highscore.get.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_highscore_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/history.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_history_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/leaderboard.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_leaderboard_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/ranking.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_ranking_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/rating.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_rating_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/ratings.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_ratings_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/score.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_score_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/devices.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_devices_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/me.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_me_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].delete.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_delete_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/check-nickname.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_check_nickname_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/dev-force-disabled.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_dev_force_disabled_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/mark-active.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_mark_active_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/screentime-passcode.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_screentime_passcode_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/screentime-passcode.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_screentime_passcode_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/state.get.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_state_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/webcontent-domains.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_webcontent_domains_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/providers/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_providers_index_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/profile/[userId].get.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_profile_userid_get_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/portal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_portal_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/admin.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_admin_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_adminusers_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/consent.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_consent_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_cooldown_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_curateddomains_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/diga.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_diga_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_lyramemory_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_moderation_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/scores.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_scores_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/social.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_social_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/sosSession.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_sossession_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/streak.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_streak_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/urge.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_urge_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/user.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_user_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_voicequota_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_downgrade_reconciliation_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magicCron.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magiccron_ts", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/prisma.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_prisma_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_protectionstate", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/getUsersMeta.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_getusersmeta_getusersmeta", - "target": "backend_server_utils_prisma_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/stats.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_stats_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/check.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_check_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/stats.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_stats_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/calls/ring.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_calls_ring_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/history.delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_history_delete_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/history.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_history_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L310", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/[postId]/index.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_postid_index_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/repost.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_repost_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/request.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_request_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_status_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/curated-domains/suggest.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_curated_domains_suggest_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_id_submit_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/suggest.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_suggest_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/dev/set-plan.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_dev_set_plan_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_domain_submissions_id_vote_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/feedback/[id].patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_feedback_id_patch_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/feedback/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_feedback_index_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/accept.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_accept_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id].get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/live-toggle.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_live_toggle_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_memory_move_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_move_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_rematch_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge-memory.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_memory_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/highscore.get.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_highscore_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/history.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_history_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/leaderboard.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_leaderboard_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/ranking.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_ranking_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/rating.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_rating_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/ratings.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_ratings_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/score.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_score_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/devices.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_devices_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/me.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_me_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].delete.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_delete_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/check-nickname.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_check_nickname_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/dev-force-disabled.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_dev_force_disabled_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/mark-active.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_mark_active_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/screentime-passcode.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_screentime_passcode_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/screentime-passcode.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_screentime_passcode_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/state.get.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_state_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/webcontent-domains.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_webcontent_domains_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/providers/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_providers_index_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/profile/[userId].get.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_profile_userid_get_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/portal.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_portal_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/admin.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_admin_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_adminusers_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/consent.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_consent_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_cooldown_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_curateddomains_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/diga.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_diga_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_lyramemory_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_moderation_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/scores.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_scores_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/social.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_social_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/sosSession.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_sossession_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/streak.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_streak_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/urge.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_urge_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/user.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_user_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_voicequota_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_downgrade_reconciliation_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magicCron.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magiccron_ts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L440", - "weight": 1.0, - "confidence_score": 1.0, - "source": "coach_message_post_detectandsavefeedback", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/admin.ts", - "source_location": "L8", - "weight": 1.0, - "source": "db_admin_isadminuser", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L48", - "weight": 1.0, - "source": "db_adminusers_listadminusers", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L181", - "weight": 1.0, - "source": "db_adminusers_softdeleteadminuser", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L111", - "weight": 1.0, - "source": "db_adminusers_updateadminuser", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat.ts", - "source_location": "L242", - "weight": 1.0, - "source": "db_chat_countunreaddms", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat.ts", - "source_location": "L16", - "weight": 1.0, - "source": "db_chat_createchatmessage", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat.ts", - "source_location": "L6", - "weight": 1.0, - "source": "db_chat_getchatmessages", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat.ts", - "source_location": "L216", - "weight": 1.0, - "source": "db_chat_getdmconversations", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat.ts", - "source_location": "L114", - "weight": 1.0, - "source": "db_chat_getdmhistory", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat.ts", - "source_location": "L198", - "weight": 1.0, - "source": "db_chat_markdmsasread", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L140", - "weight": 1.0, - "source": "db_chat_rooms_approverequest", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L173", - "weight": 1.0, - "source": "db_chat_rooms_banmember", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L53", - "weight": 1.0, - "source": "db_chat_rooms_createroom", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L241", - "weight": 1.0, - "source": "db_chat_rooms_createroommessage", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L86", - "weight": 1.0, - "source": "db_chat_rooms_deleteroom", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L168", - "weight": 1.0, - "source": "db_chat_rooms_findroombyinvitecode", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L93", - "weight": 1.0, - "source": "db_chat_rooms_getmember", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L159", - "weight": 1.0, - "source": "db_chat_rooms_getpendingrequests", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L33", - "weight": 1.0, - "source": "db_chat_rooms_getroom", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L100", - "weight": 1.0, - "source": "db_chat_rooms_getroommembers", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L209", - "weight": 1.0, - "source": "db_chat_rooms_getroommessages", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L113", - "weight": 1.0, - "source": "db_chat_rooms_joinroom", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L129", - "weight": 1.0, - "source": "db_chat_rooms_leaveroom", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L7", - "weight": 1.0, - "source": "db_chat_rooms_listrooms", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L152", - "weight": 1.0, - "source": "db_chat_rooms_rejectrequest", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L373", - "weight": 1.0, - "source": "db_chat_rooms_seeddefaultrooms", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L195", - "weight": 1.0, - "source": "db_chat_rooms_setmemberrole", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L310", - "weight": 1.0, - "source": "db_chat_rooms_togglechatmessagelike", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L333", - "weight": 1.0, - "source": "db_chat_rooms_toggledmlike", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L81", - "weight": 1.0, - "source": "db_chat_rooms_updateroom", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat.ts", - "source_location": "L36", - "weight": 1.0, - "source": "db_chat_senddirectmessage", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat.ts", - "source_location": "L189", - "weight": 1.0, - "source": "db_chat_softdeletedmmessage", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/chat.ts", - "source_location": "L161", - "weight": 1.0, - "source": "db_chat_toggledmreaction", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L324", - "weight": 1.0, - "source": "db_community_countpostlikes", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L386", - "weight": 1.0, - "source": "db_community_createcomment", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L416", - "weight": 1.0, - "source": "db_community_createcommentlike", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L262", - "weight": 1.0, - "source": "db_community_createpost", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L421", - "weight": 1.0, - "source": "db_community_deletecommentlike", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L317", - "weight": 1.0, - "source": "db_community_deletepostlike", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L289", - "weight": 1.0, - "source": "db_community_deleteuserposts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L428", - "weight": 1.0, - "source": "db_community_getcommentlike", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L353", - "weight": 1.0, - "source": "db_community_getcommentsbypost", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L237", - "weight": 1.0, - "source": "db_community_getpostbyid", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L296", - "weight": 1.0, - "source": "db_community_getpostlike", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L12", - "weight": 1.0, - "source": "db_community_getposts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L308", - "weight": 1.0, - "source": "db_community_setpostlike", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L433", - "weight": 1.0, - "source": "db_community_synccommentlikecount", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/community.ts", - "source_location": "L340", - "weight": 1.0, - "source": "db_community_syncpostlikecounts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/consent.ts", - "source_location": "L61", - "weight": 1.0, - "source": "db_consent_getconsentlogsbyuser", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/consent.ts", - "source_location": "L81", - "weight": 1.0, - "source": "db_consent_setmailconnectionconsent", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/consent.ts", - "source_location": "L13", - "weight": 1.0, - "source": "db_consent_writeconsentgrant", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/consent.ts", - "source_location": "L42", - "weight": 1.0, - "source": "db_consent_writeconsentrevoke", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L46", - "weight": 1.0, - "source": "db_cooldown_cancelcooldown", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L26", - "weight": 1.0, - "source": "db_cooldown_createcooldown", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L9", - "weight": 1.0, - "source": "db_cooldown_getactivecooldown", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L38", - "weight": 1.0, - "source": "db_cooldown_resolvecooldown", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L79", - "weight": 1.0, - "source": "db_curateddomains_decidecurateddomain", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L51", - "weight": 1.0, - "source": "db_curateddomains_getcurateddomains", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L14", - "weight": 1.0, - "source": "db_curateddomains_suggestcurateddomain", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L187", - "weight": 1.0, - "source": "db_device_approvals_approverequest", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L98", - "weight": 1.0, - "source": "db_device_approvals_createapprovalrequest", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L146", - "weight": 1.0, - "source": "db_device_approvals_getapprovalbyemailtoken", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L133", - "weight": 1.0, - "source": "db_device_approvals_getapprovalrequest", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L74", - "weight": 1.0, - "source": "db_device_approvals_hasotheractivedevices", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L159", - "weight": 1.0, - "source": "db_device_approvals_listpendingapprovals", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L239", - "weight": 1.0, - "source": "db_device_approvals_markemailsent", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_device_approvals_maybeexpire", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L218", - "weight": 1.0, - "source": "db_device_approvals_rejectrequest", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L168", - "weight": 1.0, - "source": "db_devices_autoreleaseinactivedevices", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L89", - "weight": 1.0, - "source": "db_devices_binddevicetouser", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L133", - "weight": 1.0, - "source": "db_devices_canceldevicerelease", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L225", - "weight": 1.0, - "source": "db_devices_cleanupstaledevices", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L469", - "weight": 1.0, - "source": "db_devices_countactivemagicbindings", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L408", - "weight": 1.0, - "source": "db_devices_deleteuserdevice", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L523", - "weight": 1.0, - "source": "db_devices_ensuremagicremovalpassword", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L44", - "weight": 1.0, - "source": "db_devices_findactivedevicelock", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L491", - "weight": 1.0, - "source": "db_devices_findmagicdevicebytoken", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L265", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_devices_findmergecandidate", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L242", - "weight": 1.0, - "source": "db_devices_finduserdevice", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L435", - "weight": 1.0, - "source": "db_devices_listmagicdevices", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L544", - "weight": 1.0, - "source": "db_devices_listmagicremovalcredentials", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L208", - "weight": 1.0, - "source": "db_devices_listuserdevices", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L151", - "weight": 1.0, - "source": "db_devices_markdevicelocknotified", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L300", - "weight": 1.0, - "source": "db_devices_registerdevice", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L111", - "weight": 1.0, - "source": "db_devices_requestdevicerelease", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/devices.ts", - "source_location": "L381", - "weight": 1.0, - "source": "db_devices_touchdevice", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/diga.ts", - "source_location": "L27", - "weight": 1.0, - "source": "db_diga_redeemdigacode", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L92", - "weight": 1.0, - "source": "db_domains_addusercustomdomain", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L313", - "weight": 1.0, - "source": "db_domains_adminapprovesubmission", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L385", - "weight": 1.0, - "source": "db_domains_adminrejectsubmission", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L246", - "weight": 1.0, - "source": "db_domains_castdomainvote", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L69", - "weight": 1.0, - "source": "db_domains_countactivecustomdomains", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L189", - "weight": 1.0, - "source": "db_domains_deleteallusercustomdomains", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L170", - "weight": 1.0, - "source": "db_domains_deleteusercustomdomain", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L512", - "weight": 1.0, - "source": "db_domains_getactiveblocklistcount", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L517", - "weight": 1.0, - "source": "db_domains_getactiveblocklistdomains", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L548", - "weight": 1.0, - "source": "db_domains_getblocklisteddomainsset", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L108", - "weight": 1.0, - "source": "db_domains_getcustommaildisplaynames", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L132", - "weight": 1.0, - "source": "db_domains_getmaildisplaynamepatterns", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L466", - "weight": 1.0, - "source": "db_domains_getpendingsubmissions", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L25", - "weight": 1.0, - "source": "db_domains_getusercustomdomains", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L528", - "weight": 1.0, - "source": "db_domains_isblocklisteddomain", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L218", - "weight": 1.0, - "source": "db_domains_submitdomainforreview", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L599", - "weight": 1.0, - "source": "db_domains_upsertblocklistdomains", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L146", - "weight": 1.0, - "source": "db_lyramemory_deletememorybyid", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_lyramemory_enforcemaxmemories", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L37", - "weight": 1.0, - "source": "db_lyramemory_getmemoriesforuser", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L127", - "weight": 1.0, - "source": "db_lyramemory_markreferenced", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L60", - "weight": 1.0, - "source": "db_lyramemory_upsertmemory", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L574", - "weight": 1.0, - "source": "db_mail_consumeoauthpendingstate", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L49", - "weight": 1.0, - "source": "db_mail_countmailconnections", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L546", - "weight": 1.0, - "source": "db_mail_createoauthpendingstate", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L101", - "weight": 1.0, - "source": "db_mail_deleteallmailconnections", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L94", - "weight": 1.0, - "source": "db_mail_deletemailconnection", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L343", - "weight": 1.0, - "source": "db_mail_deleteoldmailblocked", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L246", - "weight": 1.0, - "source": "db_mail_deleteusermailclassificationsamples", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L46", - "weight": 1.0, - "source": "db_mail_getallactivemailuserids", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L203", - "weight": 1.0, - "source": "db_mail_getalreadyblockeduidset", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L499", - "weight": 1.0, - "source": "db_mail_getblockedmailsbyconnection", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L455", - "weight": 1.0, - "source": "db_mail_getblockedmailsbyday", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L822", - "weight": 1.0, - "source": "db_mail_getdecryptedrefreshtoken", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L324", - "weight": 1.0, - "source": "db_mail_getimapproxyaccounts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L398", - "weight": 1.0, - "source": "db_mail_getmailblockedpaginated", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L178", - "weight": 1.0, - "source": "db_mail_getmailblockedstats", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L18", - "weight": 1.0, - "source": "db_mail_getmailconnections", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L315", - "weight": 1.0, - "source": "db_mail_getpendingconsentconnections", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L225", - "weight": 1.0, - "source": "db_mail_insertmailblocked", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L282", - "weight": 1.0, - "source": "db_mail_insertmailclassificationsample", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L190", - "weight": 1.0, - "source": "db_mail_ismailalreadyblocked", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L170", - "weight": 1.0, - "source": "db_mail_markfullsweepdone", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L156", - "weight": 1.0, - "source": "db_mail_patchfolderscanstate", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L735", - "weight": 1.0, - "source": "db_mail_refreshandsavetokens", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L429", - "weight": 1.0, - "source": "db_mail_updatemailconnectiontitle", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L334", - "weight": 1.0, - "source": "db_mail_upsertimapproxyaccount", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L363", - "weight": 1.0, - "source": "db_mail_upsertmailblockedstat", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L65", - "weight": 1.0, - "source": "db_mail_upsertmailconnection", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L669", - "weight": 1.0, - "source": "db_mail_upsertoauthgoogleconnection", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L617", - "weight": 1.0, - "source": "db_mail_upsertoauthmicrosoftconnection", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/moderation.ts", - "source_location": "L300", - "weight": 1.0, - "source": "db_moderation_banuserfrommoderationitem", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/moderation.ts", - "source_location": "L229", - "weight": 1.0, - "source": "db_moderation_deletemoderationitem", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/moderation.ts", - "source_location": "L173", - "weight": 1.0, - "source": "db_moderation_dismissmoderationitem", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/moderation.ts", - "source_location": "L54", - "weight": 1.0, - "source": "db_moderation_listmoderationqueue", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/notifications.ts", - "source_location": "L11", - "weight": 1.0, - "source": "db_notifications_createnotification", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/notifications.ts", - "source_location": "L40", - "weight": 1.0, - "source": "db_notifications_deletenotification", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/notifications.ts", - "source_location": "L47", - "weight": 1.0, - "source": "db_notifications_deleteoldnotifications", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/notifications.ts", - "source_location": "L16", - "weight": 1.0, - "source": "db_notifications_getnotifications", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/notifications.ts", - "source_location": "L32", - "weight": 1.0, - "source": "db_notifications_markallread", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L21", - "weight": 1.0, - "source": "db_profile_deleteprofile", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L270", - "weight": 1.0, - "source": "db_profile_dismissdigabanner", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L143", - "weight": 1.0, - "source": "db_profile_getdemographics", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L289", - "weight": 1.0, - "source": "db_profile_getfollowingids", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L333", - "weight": 1.0, - "source": "db_profile_getlastseenbatch", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L4", - "weight": 1.0, - "source": "db_profile_getprofile", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L259", - "weight": 1.0, - "source": "db_profile_lyravoiceid", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L54", - "weight": 1.0, - "source": "db_profile_onboardingstep", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L278", - "weight": 1.0, - "source": "db_profile_recordinstallevent", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L398", - "weight": 1.0, - "source": "db_profile_setcallsenabled", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L366", - "weight": 1.0, - "source": "db_profile_setmdmmanaged", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L411", - "weight": 1.0, - "source": "db_profile_setpresencevisible", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L309", - "weight": 1.0, - "source": "db_profile_touchlastseen", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L190", - "weight": 1.0, - "source": "db_profile_tryawardprotrial", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L88", - "weight": 1.0, - "source": "db_profile_updatedemographics", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L16", - "weight": 1.0, - "source": "db_profile_updateprofile", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/profile.ts", - "source_location": "L121", - "weight": 1.0, - "source": "db_profile_withdrawdemographics", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L103", - "weight": 1.0, - "source": "db_protecteddevices_confirmprotecteddeviceinstalled", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L50", - "weight": 1.0, - "source": "db_protecteddevices_countactiveprotecteddevices", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L85", - "weight": 1.0, - "source": "db_protecteddevices_createprotecteddevice", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L71", - "weight": 1.0, - "source": "db_protecteddevices_getprotecteddevice", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L151", - "weight": 1.0, - "source": "db_protecteddevices_handshakeprotecteddevice", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L38", - "weight": 1.0, - "source": "db_protecteddevices_listprotecteddevices", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L124", - "weight": 1.0, - "source": "db_protecteddevices_revokeprotecteddevice", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L36", - "weight": 1.0, - "source": "db_protectionstatelog_appendprotectionevent", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L93", - "weight": 1.0, - "source": "db_protectionstatelog_computeprotectioncoverage", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L19", - "weight": 1.0, - "source": "db_protectionstatelog_getlastprotectionevent", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/scores.ts", - "source_location": "L27", - "weight": 1.0, - "source": "db_scores_awardpoints", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/scores.ts", - "source_location": "L55", - "weight": 1.0, - "source": "db_scores_getleaderboard", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/scores.ts", - "source_location": "L45", - "weight": 1.0, - "source": "db_scores_getrecentscoreevents", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/scores.ts", - "source_location": "L37", - "weight": 1.0, - "source": "db_scores_getuserscore", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/social.ts", - "source_location": "L86", - "weight": 1.0, - "source": "db_social_cancall", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/social.ts", - "source_location": "L14", - "weight": 1.0, - "source": "db_social_createfollow", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/social.ts", - "source_location": "L27", - "weight": 1.0, - "source": "db_social_deletefollow", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/social.ts", - "source_location": "L54", - "weight": 1.0, - "source": "db_social_getfollowingset", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/social.ts", - "source_location": "L7", - "weight": 1.0, - "source": "db_social_getfollowrelation", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/social.ts", - "source_location": "L63", - "weight": 1.0, - "source": "db_social_getprofilewithfollowers", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/sosSession.ts", - "source_location": "L18", - "weight": 1.0, - "source": "db_sossession_createsossession", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/sosSession.ts", - "source_location": "L39", - "weight": 1.0, - "source": "db_sossession_deleteusersossessions", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/streak.ts", - "source_location": "L91", - "weight": 1.0, - "source": "db_streak_addstreakevent", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/streak.ts", - "source_location": "L80", - "weight": 1.0, - "source": "db_streak_deleteuserstreaks", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/streak.ts", - "source_location": "L4", - "weight": 1.0, - "source": "db_streak_getactivestreak", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/streak.ts", - "source_location": "L98", - "weight": 1.0, - "source": "db_streak_getstreakevents", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/streak.ts", - "source_location": "L60", - "weight": 1.0, - "source": "db_streak_resetstreak", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/streak.ts", - "source_location": "L72", - "weight": 1.0, - "source": "db_streak_updatestreaksavings", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/streak.ts", - "source_location": "L14", - "weight": 1.0, - "source": "db_streak_upsertstreak", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/urge.ts", - "source_location": "L27", - "weight": 1.0, - "source": "db_urge_createurgelog", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/urge.ts", - "source_location": "L41", - "weight": 1.0, - "source": "db_urge_deleteuserurgelogs", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/urge.ts", - "source_location": "L6", - "weight": 1.0, - "source": "db_urge_getrecenturgelogs", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/user.ts", - "source_location": "L9", - "weight": 1.0, - "source": "db_user_deleteusercoachsessions", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/user.ts", - "source_location": "L4", - "weight": 1.0, - "source": "db_user_deleteusertrustedcontacts", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L84", - "weight": 1.0, - "source": "db_voicequota_consumevoicequota", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L36", - "weight": 1.0, - "source": "db_voicequota_getremainingvoicequota", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/plugins/mail-retention-cron.ts", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "plugins_mail_retention_cron_runrowcap", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_protectionstate", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "backend/server/utils/auth.ts", - "source_location": "L37", - "weight": 1.0, - "source": "utils_auth_requireuser", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L26", - "weight": 1.0, - "source": "utils_downgrade_reconciliation_rundowngradereconciliation", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L179", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_downgrade_reconciliation_triggerfinalscanforconnection", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/getUsersMeta.ts", - "source_location": "L1", - "weight": 1.0, - "source": "utils_getusersmeta_getusersmeta", - "target": "utils_prisma_useprisma" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/magicCron.ts", - "source_location": "L17", - "weight": 1.0, - "source": "utils_magiccron_processmagicreleases", - "target": "utils_prisma_useprisma" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_sossessions_ts", - "target": "backend_server_utils_crisis_filter_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_sossessions_ts", - "target": "utils_crisis_filter_crisislevel" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_sossessions_ts", - "target": "utils_sossessions_deletesossession" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_sossessions_ts", - "target": "utils_sossessions_getsossession" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_sossessions_ts", - "target": "utils_sossessions_sessions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_sossessions_ts", - "target": "utils_sossessions_setsossession" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/sosSessions.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_sossessions_ts", - "target": "utils_sossessions_sossessiondata" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_profile_reg_get_ts", - "target": "backend_server_utils_regfile_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/regfile.ts", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_regfile_ts", - "target": "utils_regfile_generatewindowsdohregfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/regfile.ts", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_regfile_ts", - "target": "utils_regfile_regescape" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/regfile.ts", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_regfile_ts", - "target": "utils_regfile_windowsdohregopts" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/regfile.ts", - "source_location": "L51", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_regfile_generatewindowsdohregfile", - "target": "utils_regfile_regescape" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_profile_reg_get_ts", - "target": "utils_regfile_generatewindowsdohregfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/domainHash.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "filter_domainhasher_domainhasher", - "target": "utils_domainhash_normalizedomain" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/domainHash.ts", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_domainhash_hashdomain", - "target": "utils_domainhash_normalizedomain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/domainHash.ts", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "filter_domainhasher_domainhasher", - "target": "utils_domainhash_hashdomain" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/domainHash.ts", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_domainhash_buildhashlistbinary", - "target": "utils_domainhash_hashdomain" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_bin_get_ts", - "target": "utils_domainhash_buildhashlistbinary" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/domainHash.ts", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "filter_domainhasher_domainhasher", - "target": "utils_domainhash_buildhashlistbinary" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_bin_get_ts", - "target": "utils_domainhash_etagfor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/domainHash.ts", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "filter_domainhasher_domainhasher", - "target": "utils_domainhash_etagfor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/consent-texts.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_consent_texts_consent_texts", - "target": "utils_consent_texts_consenttextentry" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/consent.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_consent_post_ts", - "target": "utils_consent_texts_consent_texts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "utils_consent_texts_consent_texts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "utils_consent_texts_consent_texts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "utils_consent_texts_consent_texts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/consent-texts.ts", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_consent_texts_consent_texts", - "target": "utils_consent_texts_getconsenttext" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/consent-texts.ts", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_consent_texts_consent_texts", - "target": "utils_consent_texts_getknownconsentversions" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "backend_server_utils_mail_training_utils_ts" - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/mail-training-utils.test.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "context": "import", - "source": "backend_server_utils_mail_training_utils_ts", - "target": "utils_mail_training_utils_detectsubjectlanguage" - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/mail-training-utils.test.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "context": "import", - "source": "backend_server_utils_mail_training_utils_ts", - "target": "utils_mail_training_utils_sanitizesubjectfortraining" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-training-utils.ts", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_training_utils_ts", - "target": "utils_mail_training_utils_subjectsanitizationresult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "utils_mail_training_utils_sanitizesubjectfortraining" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L288", - "weight": 1.0, - "source": "db_mail_insertmailclassificationsample", - "target": "utils_mail_training_utils_sanitizesubjectfortraining" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_auth_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_auth_ts", - "target": "backend_server_utils_crypto_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_auth_ts", - "target": "db_mail_refreshandsavetokens" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_auth_ts", - "target": "utils_crypto_decrypt" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_auth_ts", - "target": "utils_mail_auth_imapauth" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_auth_ts", - "target": "utils_mail_auth_mailconnectionauthfields" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_auth_ts", - "target": "utils_mail_auth_oauthclientids" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_auth_ts", - "target": "utils_mail_auth_resolveimapauth" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/mail-auth.ts", - "source_location": "L71", - "weight": 1.0, - "source": "utils_mail_auth_resolveimapauth", - "target": "db_mail_refreshandsavetokens" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_gambling_keywords_gambling_keywords" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/gambling-keywords.mjs", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_gambling_keywords_gambling_keywords", - "target": "utils_gambling_keywords_gambling_whitelist" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/gambling-keywords.mjs", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_gambling_keywords_gambling_keywords", - "target": "utils_gambling_keywords_isgamblingtext" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_gambling_keywords_gambling_whitelist" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/avatar/upload.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_avatar_upload_post_ts", - "target": "backend_server_utils_usesupabase_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/upload-image.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_upload_image_post_ts", - "target": "backend_server_utils_usesupabase_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "backend_server_utils_usesupabase_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_utils_usesupabase_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_usesupabase_ts", - "target": "utils_usesupabase_getanonkey" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_usesupabase_ts", - "target": "utils_usesupabase_getservicerolekey" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_usesupabase_ts", - "target": "utils_usesupabase_getsupabaseurl" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_usesupabase_ts", - "target": "utils_usesupabase_serversupabaseclient" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L65", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_usesupabase_ts", - "target": "utils_usesupabase_serversupabaseservicerole" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_usesupabase_serversupabaseclient", - "target": "utils_usesupabase_getsupabaseurl" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_usesupabase_serversupabaseservicerole", - "target": "utils_usesupabase_getsupabaseurl" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_usesupabase_serversupabaseclient", - "target": "utils_usesupabase_getanonkey" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/useSupabase.ts", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_usesupabase_serversupabaseservicerole", - "target": "utils_usesupabase_getservicerolekey" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/avatar/upload.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_avatar_upload_post_ts", - "target": "utils_usesupabase_serversupabaseservicerole" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/upload-image.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_upload_image_post_ts", - "target": "utils_usesupabase_serversupabaseservicerole" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "utils_usesupabase_serversupabaseservicerole" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "utils_usesupabase_serversupabaseservicerole" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/testUser.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_testuser_ts", - "target": "utils_testuser_istestuser" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/testUser.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_testuser_ts", - "target": "utils_testuser_test_user_emails" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L312", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "backend_server_utils_lyramemoryextract_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "backend_server_utils_lyramemoryextract_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/lyraMemoryExtract.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_lyramemoryextract_ts", - "target": "backend_server_db_lyramemory_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/lyraMemoryExtract.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_lyramemoryextract_ts", - "target": "db_lyramemory_upsertmemory" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/lyraMemoryExtract.ts", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_lyramemoryextract_ts", - "target": "utils_lyramemoryextract_extractandstorememories" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/lyraMemoryExtract.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_lyramemoryextract_ts", - "target": "utils_lyramemoryextract_valid_types" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L312", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "utils_lyramemoryextract_extractandstorememories" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "utils_lyramemoryextract_extractandstorememories" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/lyraMemoryExtract.ts", - "source_location": "L104", - "weight": 1.0, - "source": "utils_lyramemoryextract_extractandstorememories", - "target": "db_lyramemory_upsertmemory" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "backend_server_utils_crypto_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "backend_server_utils_crypto_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_post_ts", - "target": "backend_server_utils_crypto_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "backend_server_utils_crypto_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "backend_server_utils_crypto_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crypto.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crypto_ts", - "target": "utils_crypto_decrypt" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crypto.ts", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crypto_ts", - "target": "utils_crypto_encrypt" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crypto.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crypto_ts", - "target": "utils_crypto_getkey" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crypto.ts", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_crypto_decrypt", - "target": "utils_crypto_getkey" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crypto.ts", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_crypto_encrypt", - "target": "utils_crypto_getkey" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "utils_crypto_encrypt" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "utils_crypto_encrypt" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_post_ts", - "target": "utils_crypto_encrypt" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "utils_crypto_encrypt" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "utils_crypto_decrypt" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "utils_crypto_decrypt" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/me.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_me_get_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L309", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_id_submit_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_get_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/dev/set-plan.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_dev_set_plan_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/enroll.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_enroll_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/index.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_index_get_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/register.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_register_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/connect.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connect_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/interval.patch.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_interval_patch_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_bin_get_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_voicequota_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_downgrade_reconciliation_ts", - "target": "backend_server_utils_plan_features_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_plan_features_ts", - "target": "utils_plan_features_curated_blocklist_stub" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_plan_features_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_plan_features_ts", - "target": "utils_plan_features_plan" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_plan_features_ts", - "target": "utils_plan_features_plan_limits" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_plan_features_ts", - "target": "utils_plan_features_planlimits" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_plan_features_ts", - "target": "utils_plan_features_voiceconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/plan-features.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_plan_features_ts", - "target": "utils_plan_features_voiceprovider" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/dev/set-plan.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_dev_set_plan_post_ts", - "target": "utils_plan_features_plan" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "utils_plan_features_plan" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "utils_plan_features_plan" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_downgrade_reconciliation_ts", - "target": "utils_plan_features_plan" - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "plan_change_preview_get_changepreviewresponse", - "target": "utils_plan_features_plan" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_post_ts", - "target": "utils_plan_features_voiceconfig" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L309", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "utils_plan_features_plan_limits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/me.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_me_get_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_id_submit_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_get_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/enroll.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_enroll_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/index.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_index_get_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/register.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_register_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/connect.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connect_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/interval.patch.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_interval_patch_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_post_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_bin_get_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_voicequota_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_downgrade_reconciliation_ts", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L81", - "weight": 1.0, - "source": "db_voicequota_consumevoicequota", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L30", - "weight": 1.0, - "source": "db_voicequota_getremainingvoicequota", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/auth.ts", - "source_location": "L112", - "weight": 1.0, - "source": "utils_auth_requireuser", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L37", - "weight": 1.0, - "source": "utils_downgrade_reconciliation_rundowngradereconciliation", - "target": "utils_plan_features_getplanlimits" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "utils_strip_markdown_stripmarkdown" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/request.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_request_post_ts", - "target": "backend_server_utils_cooldowntoken_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_status_get_ts", - "target": "backend_server_utils_cooldowntoken_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_cooldowntoken_ts", - "target": "utils_cooldowntoken_cooldowntokenpayload" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L81", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_cooldowntoken_ts", - "target": "utils_cooldowntoken_generatejti" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_cooldowntoken_ts", - "target": "utils_cooldowntoken_getsecret" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_cooldowntoken_ts", - "target": "utils_cooldowntoken_signcooldowntoken" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_cooldowntoken_ts", - "target": "utils_cooldowntoken_verifycooldowntoken" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_cooldowntoken_signcooldowntoken", - "target": "utils_cooldowntoken_getsecret" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/cooldownToken.ts", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_cooldowntoken_verifycooldowntoken", - "target": "utils_cooldowntoken_getsecret" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/request.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_request_post_ts", - "target": "utils_cooldowntoken_signcooldowntoken" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_status_get_ts", - "target": "utils_cooldowntoken_signcooldowntoken" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.9, - "weight": 0.9, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "server-signiertes Cooldown-Token", - "source": "utils_cooldowntoken_signcooldowntoken", - "target": "diga_03_req_cooldown_server_authoritative" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.9, - "weight": 0.9, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "server-signiertes Cooldown-Token", - "source": "utils_cooldowntoken_verifycooldowntoken", - "target": "diga_03_req_cooldown_server_authoritative" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/request.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_request_post_ts", - "target": "utils_cooldowntoken_generatejti" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/dev/set-plan.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_dev_set_plan_post_ts", - "target": "backend_server_utils_downgrade_reconciliation_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "backend_server_utils_downgrade_reconciliation_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_downgrade_reconciliation_ts", - "target": "utils_downgrade_reconciliation_reconcilemailaccounts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_downgrade_reconciliation_ts", - "target": "utils_downgrade_reconciliation_reconcileprotecteddevices" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L133", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_downgrade_reconciliation_ts", - "target": "utils_downgrade_reconciliation_reconcileupgrade" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_downgrade_reconciliation_ts", - "target": "utils_downgrade_reconciliation_rundowngradereconciliation" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L170", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_downgrade_reconciliation_ts", - "target": "utils_downgrade_reconciliation_triggerfinalscanforconnection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/dev/set-plan.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_dev_set_plan_post_ts", - "target": "utils_downgrade_reconciliation_rundowngradereconciliation" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "utils_downgrade_reconciliation_rundowngradereconciliation" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_downgrade_reconciliation_rundowngradereconciliation", - "target": "utils_downgrade_reconciliation_reconcilemailaccounts" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_downgrade_reconciliation_rundowngradereconciliation", - "target": "utils_downgrade_reconciliation_reconcileprotecteddevices" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_downgrade_reconciliation_rundowngradereconciliation", - "target": "utils_downgrade_reconciliation_reconcileupgrade" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/downgrade-reconciliation.ts", - "source_location": "L97", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_downgrade_reconciliation_reconcilemailaccounts", - "target": "utils_downgrade_reconciliation_triggerfinalscanforconnection" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/login.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_login_post_ts", - "target": "backend_server_utils_device_lock_email_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/check-lock.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_check_lock_post_ts", - "target": "backend_server_utils_device_lock_email_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/device-lock-email.ts", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_device_lock_email_ts", - "target": "utils_device_lock_email_islocknotifyratelimited" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/device-lock-email.ts", - "source_location": "L51", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_device_lock_email_ts", - "target": "utils_device_lock_email_senddevicelockemail" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/login.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_login_post_ts", - "target": "utils_device_lock_email_islocknotifyratelimited" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/check-lock.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_check_lock_post_ts", - "target": "utils_device_lock_email_islocknotifyratelimited" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/login.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_login_post_ts", - "target": "utils_device_lock_email_senddevicelockemail" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/check-lock.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_check_lock_post_ts", - "target": "utils_device_lock_email_senddevicelockemail" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L314", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "utils_detect_lang_detectlang" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "utils_detect_lang_detectlang" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak-cartesia.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_cartesia_post_ts", - "target": "utils_detect_lang_detectlang" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_post_ts", - "target": "utils_detect_lang_detectlang" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak-elevenlabs.post.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "coach_speak_post_speakelevenlabs", - "target": "utils_detect_lang_detectlang" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_profile_mobileconfig_get_ts", - "target": "backend_server_utils_mobileconfig_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_profile_reg_get_ts", - "target": "backend_server_utils_mobileconfig_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mobileconfig.ts", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mobileconfig_ts", - "target": "utils_mobileconfig_generatemacosdnsprofile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mobileconfig.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mobileconfig_ts", - "target": "utils_mobileconfig_labeltoslug" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mobileconfig.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mobileconfig_ts", - "target": "utils_mobileconfig_xmlescape" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mobileconfig.ts", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_mobileconfig_generatemacosdnsprofile", - "target": "utils_mobileconfig_xmlescape" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_profile_mobileconfig_get_ts", - "target": "utils_mobileconfig_labeltoslug" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_profile_reg_get_ts", - "target": "utils_mobileconfig_labeltoslug" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_profile_mobileconfig_get_ts", - "target": "utils_mobileconfig_generatemacosdnsprofile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_classificationaction" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_classificationfeatures" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_classificationresult" - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/mail-classifier.test.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "context": "import", - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_classifymail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L352", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_classifymailparams" - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/mail-classifier.test.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "context": "import", - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_computescore" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L164", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_domaintobrandcandidates" - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/mail-classifier.test.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "context": "import", - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_extractrelayeddomain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L103", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_gambling_brands" - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/mail-classifier.test.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "context": "import", - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_hasrandomtokens" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_mailinput" - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/mail-classifier.test.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "context": "import", - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_matchesgamblingbrand" - }, - { - "relation": "imports", - "confidence": "EXTRACTED", - "source_file": "backend/tests/mail/mail-classifier.test.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "context": "import", - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_normalizebrand" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_score_weights" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_scoreresult" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_classifier_ts", - "target": "utils_mail_classifier_triggersource" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L427", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_mail_classifier_classifymail", - "target": "utils_mail_classifier_extractrelayeddomain" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_mail_classifier_domaintobrandcandidates", - "target": "utils_mail_classifier_normalizebrand" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L453", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_mail_classifier_classifymail", - "target": "utils_mail_classifier_domaintobrandcandidates" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L458", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_mail_classifier_classifymail", - "target": "utils_mail_classifier_hasrandomtokens" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail-classifier.ts", - "source_location": "L520", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_mail_classifier_classifymail", - "target": "utils_mail_classifier_computescore" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "backend_server_utils_ms_oauth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", - "target": "backend_server_utils_ms_oauth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "backend_server_utils_ms_oauth_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_ms_oauth_ts", - "target": "utils_ms_oauth_computecodechallenge" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_ms_oauth_ts", - "target": "utils_ms_oauth_exchangecodefortokens" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L178", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_ms_oauth_ts", - "target": "utils_ms_oauth_extractemailfromidtoken" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_ms_oauth_ts", - "target": "utils_ms_oauth_generatecodeverifier" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_ms_oauth_ts", - "target": "utils_ms_oauth_generatestateid" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_ms_oauth_ts", - "target": "utils_ms_oauth_microsofttokenresponse" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_ms_oauth_ts", - "target": "utils_ms_oauth_ms_oauth_scopes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/ms-oauth.ts", - "source_location": "L127", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_ms_oauth_ts", - "target": "utils_ms_oauth_refreshmicrosofttokens" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "utils_ms_oauth_ms_oauth_scopes" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", - "target": "utils_ms_oauth_ms_oauth_scopes" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", - "target": "utils_ms_oauth_generatecodeverifier" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", - "target": "utils_ms_oauth_computecodechallenge" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", - "target": "utils_ms_oauth_generatestateid" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "utils_ms_oauth_exchangecodefortokens" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "utils_ms_oauth_refreshmicrosofttokens" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L768", - "weight": 1.0, - "source": "db_mail_refreshandsavetokens", - "target": "utils_ms_oauth_refreshmicrosofttokens" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "utils_ms_oauth_extractemailfromidtoken" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/message.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_message_post_ts", - "target": "backend_server_utils_scoring_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_post_ts", - "target": "backend_server_utils_scoring_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "backend_server_utils_scoring_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/post.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_post_post_ts", - "target": "backend_server_utils_scoring_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/repost.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_repost_post_ts", - "target": "backend_server_utils_scoring_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "backend_server_utils_scoring_ts" - }, - { - "relation": "re_exports", - "context": "export", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/scoring.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_scoring_ts", - "target": "backend_server_db_scores_ts" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/scoring.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_scoring_ts", - "target": "db_scores_awardpoints" - }, - { - "relation": "re_exports", - "context": "re-export", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/scoring.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_scoring_ts", - "target": "db_scores_scoreeventtype" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "backend_server_utils_google_oauth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/init.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_init_post_ts", - "target": "backend_server_utils_google_oauth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "backend_server_utils_google_oauth_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L61", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_google_oauth_ts", - "target": "utils_google_oauth_computecodechallenge" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L93", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_google_oauth_ts", - "target": "utils_google_oauth_exchangecodefortokens" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L195", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_google_oauth_ts", - "target": "utils_google_oauth_extractemailfromidtoken" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_google_oauth_ts", - "target": "utils_google_oauth_generatecodeverifier" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_google_oauth_ts", - "target": "utils_google_oauth_generatestateid" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_google_oauth_ts", - "target": "utils_google_oauth_google_oauth_scopes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_google_oauth_ts", - "target": "utils_google_oauth_googletokenresponse" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/google-oauth.ts", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_google_oauth_ts", - "target": "utils_google_oauth_refreshgoogletokens" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "utils_google_oauth_google_oauth_scopes" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/init.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_init_post_ts", - "target": "utils_google_oauth_google_oauth_scopes" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/init.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_init_post_ts", - "target": "utils_google_oauth_generatecodeverifier" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/init.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_init_post_ts", - "target": "utils_google_oauth_computecodechallenge" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/init.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_init_post_ts", - "target": "utils_google_oauth_generatestateid" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "utils_google_oauth_exchangecodefortokens" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "utils_google_oauth_refreshgoogletokens" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/mail.ts", - "source_location": "L762", - "weight": 1.0, - "source": "db_mail_refreshandsavetokens", - "target": "utils_google_oauth_refreshgoogletokens" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "utils_google_oauth_extractemailfromidtoken" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm-conversations.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_conversations_get_ts", - "target": "utils_getusersmeta_getusersmeta" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/index.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_index_get_ts", - "target": "utils_getusersmeta_getusersmeta" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_get_ts", - "target": "utils_getusersmeta_getusersmeta" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", - "target": "utils_getusersmeta_getusersmeta" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/messages.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_messages_post_ts", - "target": "utils_getusersmeta_getusersmeta" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/scores/leaderboard.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_scores_leaderboard_get_ts", - "target": "utils_getusersmeta_getusersmeta" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/profile/[userId].get.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_profile_userid_get_ts", - "target": "utils_getusersmeta_getusersmeta" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/connect.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connect_post_ts", - "target": "backend_server_utils_imap_providers_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "backend_server_utils_imap_providers_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_post_ts", - "target": "backend_server_utils_imap_providers_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "backend_server_utils_imap_providers_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/results.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_results_get_ts", - "target": "backend_server_utils_imap_providers_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/status.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_status_get_ts", - "target": "backend_server_utils_imap_providers_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_imap_providers_ts", - "target": "utils_imap_providers_detectimapprovider" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L136", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_imap_providers_ts", - "target": "utils_imap_providers_detectsmtpprovider" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_imap_providers_ts", - "target": "utils_imap_providers_host_to_provider" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_imap_providers_ts", - "target": "utils_imap_providers_imapconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_imap_providers_ts", - "target": "utils_imap_providers_mx_ionos_patterns" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_imap_providers_ts", - "target": "utils_imap_providers_provider_map" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L163", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_imap_providers_ts", - "target": "utils_imap_providers_resolveprovidermeta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/imap-providers.ts", - "source_location": "L124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_imap_providers_ts", - "target": "utils_imap_providers_smtp_map" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usemailstats_blockedbyconnectionentry", - "target": "backend_server_utils_imap_providers_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/connect.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connect_post_ts", - "target": "utils_imap_providers_detectimapprovider" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "utils_imap_providers_detectimapprovider" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_post_ts", - "target": "utils_imap_providers_detectsmtpprovider" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "utils_imap_providers_detectsmtpprovider" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/results.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_results_get_ts", - "target": "utils_imap_providers_resolveprovidermeta" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/status.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_status_get_ts", - "target": "utils_imap_providers_resolveprovidermeta" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usemailstats_blockedbyconnectionentry", - "target": "utils_imap_providers_resolveprovidermeta" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/verify-admin.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_verify_admin_get_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/calls/ice-servers.get.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_calls_ice_servers_get_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/calls/ring.post.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_calls_ring_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/can-call/[userId].get.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_can_call_userid_get_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/cancel.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_cancel_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/request.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_request_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_status_get_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/devices.get.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_devices_get_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/me.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_me_get_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/calls-enabled.post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_calls_enabled_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/following.get.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_following_get_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/last-seen.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_last_seen_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/presence-visibility.post.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_presence_visibility_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/presence/last-seen.get.ts", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_presence_last_seen_get_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.delete.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_demographics_delete_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/diga-banner-dismiss.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_diga_banner_dismiss_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/install-event.post.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_install_event_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/coverage.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_coverage_get_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/dev-force-disabled.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_dev_force_disabled_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/event.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_event_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/mark-active.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_mark_active_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/screentime-passcode.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_screentime_passcode_get_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/screentime-passcode.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_screentime_passcode_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/state.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_state_get_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/users/me/mdm-status.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_users_me_mdm_status_post_ts", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "backend_server_db_admin_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "db_admin_isadminuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "db_devices_finduserdevice" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "db_devices_registerdevice" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "db_devices_touchdevice" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L152", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "utils_auth_requireadmin" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_auth_ts", - "target": "utils_auth_requireuseroptions" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/pair/create.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_community_createpost", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_profile_demographicspatch", - "target": "backend_server_utils_auth_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/calls/ice-servers.get.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_calls_ice_servers_get_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/calls/ring.post.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_calls_ring_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/can-call/[userId].get.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_can_call_userid_get_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/cancel.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_cancel_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/request.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_request_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_status_get_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/devices.get.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_devices_get_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/me.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_me_get_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/calls-enabled.post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_calls_enabled_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/following.get.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_following_get_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/last-seen.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_last_seen_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/presence-visibility.post.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_presence_visibility_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/presence/last-seen.get.ts", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_presence_last_seen_get_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.delete.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_demographics_delete_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/diga-banner-dismiss.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_diga_banner_dismiss_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/install-event.post.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_install_event_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/coverage.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_coverage_get_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/dev-force-disabled.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_dev_force_disabled_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/event.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_event_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/mark-active.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_mark_active_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/screentime-passcode.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_screentime_passcode_get_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/screentime-passcode.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_screentime_passcode_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/state.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_state_get_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/users/me/mdm-status.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_users_me_mdm_status_post_ts", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/pair/create.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_community_createpost", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_profile_demographicspatch", - "target": "utils_auth_requireuser" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_auth_requireadmin", - "target": "utils_auth_requireuser" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/auth.ts", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_auth_requireuser", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/auth.ts", - "source_location": "L95", - "weight": 1.0, - "source": "utils_auth_requireuser", - "target": "db_devices_finduserdevice" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/auth.ts", - "source_location": "L132", - "weight": 1.0, - "source": "utils_auth_requireuser", - "target": "db_devices_listuserdevices" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/auth.ts", - "source_location": "L116", - "weight": 1.0, - "source": "utils_auth_requireuser", - "target": "db_devices_registerdevice" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/auth.ts", - "source_location": "L100", - "weight": 1.0, - "source": "utils_auth_requireuser", - "target": "db_devices_touchdevice" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/auth.ts", - "source_location": "L111", - "weight": 1.0, - "source": "utils_auth_requireuser", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/verify-admin.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_verify_admin_get_ts", - "target": "utils_auth_requireadmin" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/auth.ts", - "source_location": "L155", - "weight": 1.0, - "source": "utils_auth_requireadmin", - "target": "db_admin_isadminuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/curated-domains/suggest.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_curated_domains_suggest_post_ts", - "target": "utils_public_email_domains_ispublicemaildomain" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "utils_public_email_domains_ispublicemaildomain" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/suggest.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_suggest_post_ts", - "target": "utils_public_email_domains_ispublicemaildomain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/public-email-domains.ts", - "source_location": "L51", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usecustomdomains_public_email_domains", - "target": "utils_public_email_domains_ispublicemaildomain" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth-hooks/send-email.post.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_hooks_send_email_post_ts", - "target": "backend_server_utils_mail_brevo_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail/brevo.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_brevo_ts", - "target": "mail_brevo_brevosendparams" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail/brevo.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_brevo_ts", - "target": "mail_brevo_sendbrevomail" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth-hooks/send-email.post.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_hooks_send_email_post_ts", - "target": "mail_brevo_sendbrevomail" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth-hooks/send-email.post.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_hooks_send_email_post_ts", - "target": "backend_server_utils_mail_templates_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_templates_ts", - "target": "mail_templates_emailactiontype" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L216", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_templates_ts", - "target": "mail_templates_htmlescape" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_templates_ts", - "target": "mail_templates_locale" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_templates_ts", - "target": "mail_templates_renderedemail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L229", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_templates_ts", - "target": "mail_templates_renderemail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_templates_ts", - "target": "mail_templates_texts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_templates_ts", - "target": "stores_auth_supportedlocale" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_mail_templates_ts", - "target": "utils_crisis_filter_normalize" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth-hooks/send-email.post.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_hooks_send_email_post_ts", - "target": "mail_templates_emailactiontype" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/mail/templates.ts", - "source_location": "L239", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mail_templates_renderemail", - "target": "mail_templates_htmlescape" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth-hooks/send-email.post.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_hooks_send_email_post_ts", - "target": "mail_templates_renderemail" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "backend_server_lib_lyrapostcatalog_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/lib/lyraPostCatalog.ts", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_lib_lyrapostcatalog_ts", - "target": "lib_lyrapostcatalog_lyra_post_catalog" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/lib/lyraPostCatalog.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_lib_lyrapostcatalog_ts", - "target": "lib_lyrapostcatalog_lyraposttemplate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/lib/lyraPostCatalog.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_lib_lyrapostcatalog_ts", - "target": "lib_lyrapostcatalog_lyraposttopic" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/lib/lyraPostCatalog.ts", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_lib_lyrapostcatalog_ts", - "target": "lib_lyrapostcatalog_pickrandomtemplate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "lib_lyrapostcatalog_lyra_post_catalog" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "lib_lyrapostcatalog_pickrandomtemplate" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L118", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cron_lyra_post_postfromcatalog", - "target": "lib_lyrapostcatalog_pickrandomtemplate" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/users/[id].delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_users_id_delete_ts", - "target": "backend_server_db_adminusers_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/users/[id].patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_users_id_patch_ts", - "target": "backend_server_db_adminusers_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/users/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_users_index_get_ts", - "target": "backend_server_db_adminusers_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_adminusers_ts", - "target": "db_adminusers_adminuserrow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_adminusers_ts", - "target": "db_adminusers_listadminusers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_adminusers_ts", - "target": "db_adminusers_listusersopts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_adminusers_ts", - "target": "db_adminusers_softdeleteadminuser" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L107", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_adminusers_ts", - "target": "db_adminusers_updateadminuser" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L95", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_adminusers_ts", - "target": "db_adminusers_updateadminuserpatch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/adminUsers.ts", - "source_location": "L93", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_adminusers_ts", - "target": "db_adminusers_valid_plans" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/users/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_users_index_get_ts", - "target": "db_adminusers_listadminusers" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/users/[id].patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_users_id_patch_ts", - "target": "db_adminusers_updateadminuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/users/[id].delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_users_id_delete_ts", - "target": "db_adminusers_softdeleteadminuser" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/login.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_login_post_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/approve.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_approve_post_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/check-lock.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_check_lock_post_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/cancel-release.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_cancel_release_post_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id].delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_delete_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/request-release.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_request_release_post_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_index_get_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/register.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_register_post_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/devices.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_devices_get_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_profile_mobileconfig_get_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/status.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_status_get_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_autoreleaseinactivedevices" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_binddevicetouser" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_canceldevicerelease" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_cleanupstaledevices" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L466", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_countactivemagicbindings" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_deleteuserdevice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L186", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_device_select" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_devicerecord" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L519", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_ensuremagicremovalpassword" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_findactivedevicelock" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L482", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_findmagicdevicebytoken" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_findmergecandidate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_finduserdevice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_islockingplan" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L432", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_listmagicdevices" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L541", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_listmagicremovalcredentials" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L207", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_listuserdevices" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_locking_plans" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L419", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_magicdevicerecord" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L530", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_magicremovalcredential" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_markdevicelocknotified" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_registerdevice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L107", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_requestdevicerelease" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L372", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_devices_ts", - "target": "db_devices_touchdevice" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magic-removal-email.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magic_removal_email_ts", - "target": "backend_server_db_devices_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/login.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_login_post_ts", - "target": "db_devices_islockingplan" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/check-lock.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_check_lock_post_ts", - "target": "db_devices_islockingplan" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_devices_binddevicetouser", - "target": "db_devices_islockingplan" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_devices_findactivedevicelock", - "target": "db_devices_islockingplan" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/login.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_login_post_ts", - "target": "db_devices_findactivedevicelock" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/check-lock.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_check_lock_post_ts", - "target": "db_devices_findactivedevicelock" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.85, - "weight": 0.85, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "aktiver Device-Lock", - "source": "db_devices_findactivedevicelock", - "target": "diga_03_req_magic" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/login.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_login_post_ts", - "target": "db_devices_binddevicetouser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/check-lock.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_check_lock_post_ts", - "target": "db_devices_binddevicetouser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/request-release.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_request_release_post_ts", - "target": "db_devices_requestdevicerelease" - }, - { - "relation": "references", - "confidence": "INFERRED", - "confidence_score": 0.9, - "weight": 0.9, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "legitimer Release-Pfad = Mitigation", - "source": "db_devices_requestdevicerelease", - "target": "diga_04_risk_byp_03_selbstbindung_falle" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/cancel-release.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_cancel_release_post_ts", - "target": "db_devices_canceldevicerelease" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/login.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_login_post_ts", - "target": "db_devices_markdevicelocknotified" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/check-lock.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_check_lock_post_ts", - "target": "db_devices_markdevicelocknotified" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_index_get_ts", - "target": "db_devices_listuserdevices" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/register.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_register_post_ts", - "target": "db_devices_listuserdevices" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/approve.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_approve_post_ts", - "target": "db_devices_finduserdevice" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L303", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_devices_registerdevice", - "target": "db_devices_finduserdevice" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L322", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_devices_registerdevice", - "target": "db_devices_findmergecandidate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/register.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_register_post_ts", - "target": "db_devices_registerdevice" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/devices.ts", - "source_location": "L344", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_devices_registerdevice", - "target": "db_devices_cleanupstaledevices" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id].delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_delete_ts", - "target": "db_devices_deleteuserdevice" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/consent.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_consent_post_ts", - "target": "backend_server_db_consent_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_delete_ts", - "target": "backend_server_db_consent_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "backend_server_db_consent_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "backend_server_db_consent_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "backend_server_db_consent_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_db_consent_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/consent.ts", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_consent_ts", - "target": "db_consent_getconsentlogsbyuser" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/consent.ts", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_consent_ts", - "target": "db_consent_setmailconnectionconsent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/consent.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_consent_ts", - "target": "db_consent_writeconsentgrant" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/consent.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_consent_ts", - "target": "db_consent_writeconsentrevoke" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/consent.ts", - "source_location": "L97", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_consent_ts", - "target": "db_mail_getmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/consent.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_consent_post_ts", - "target": "db_consent_writeconsentgrant" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "db_consent_writeconsentgrant" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "db_consent_writeconsentgrant" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "db_consent_writeconsentgrant" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_delete_ts", - "target": "db_consent_writeconsentrevoke" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_consent_writeconsentrevoke" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/consent.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_consent_post_ts", - "target": "db_consent_setmailconnectionconsent" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "db_consent_setmailconnectionconsent" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "db_consent_setmailconnectionconsent" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "db_consent_setmailconnectionconsent" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/join.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_join_post_ts", - "target": "backend_server_db_chat_rooms_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/like.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_like_post_ts", - "target": "backend_server_db_chat_rooms_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_index_get_ts", - "target": "backend_server_db_chat_rooms_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/index.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_index_post_ts", - "target": "backend_server_db_chat_rooms_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_get_ts", - "target": "backend_server_db_chat_rooms_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", - "target": "backend_server_db_chat_rooms_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/join.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_join_post_ts", - "target": "backend_server_db_chat_rooms_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/leave.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_leave_post_ts", - "target": "backend_server_db_chat_rooms_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/messages.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_messages_post_ts", - "target": "backend_server_db_chat_rooms_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_approverequest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_banmember" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_createroom" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_createroommessage" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L359", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_default_rooms" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_deleteroom" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_findroombyinvitecode" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L92", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_getmember" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L158", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_getpendingrequests" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_getroom" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L99", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_getroommembers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L204", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_getroommessages" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_joinroom" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L128", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_leaveroom" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_listrooms" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L151", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_rejectrequest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L372", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_seeddefaultrooms" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L190", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_setmemberrole" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L309", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_togglechatmessagelike" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L332", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_toggledmlike" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat-rooms.ts", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_rooms_ts", - "target": "db_chat_rooms_updateroom" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_index_get_ts", - "target": "db_chat_rooms_listrooms" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_get_ts", - "target": "db_chat_rooms_getroom" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/join.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_join_post_ts", - "target": "db_chat_rooms_getroom" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/leave.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_leave_post_ts", - "target": "db_chat_rooms_getroom" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/index.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_index_post_ts", - "target": "db_chat_rooms_createroom" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", - "target": "db_chat_rooms_updateroom" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/join.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_join_post_ts", - "target": "db_chat_rooms_getmember" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_get_ts", - "target": "db_chat_rooms_getmember" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", - "target": "db_chat_rooms_getmember" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/join.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_join_post_ts", - "target": "db_chat_rooms_getmember" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/leave.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_leave_post_ts", - "target": "db_chat_rooms_getmember" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/messages.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_messages_post_ts", - "target": "db_chat_rooms_getmember" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/join.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_join_post_ts", - "target": "db_chat_rooms_joinroom" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/join.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_join_post_ts", - "target": "db_chat_rooms_joinroom" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/leave.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_leave_post_ts", - "target": "db_chat_rooms_leaveroom" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", - "target": "db_chat_rooms_approverequest" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", - "target": "db_chat_rooms_rejectrequest" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", - "target": "db_chat_rooms_getpendingrequests" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/join.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_join_post_ts", - "target": "db_chat_rooms_findroombyinvitecode" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", - "target": "db_chat_rooms_banmember" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", - "target": "db_chat_rooms_setmemberrole" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_get_ts", - "target": "db_chat_rooms_getroommessages" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_index_patch_ts", - "target": "db_chat_rooms_createroommessage" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/[roomId]/messages.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_roomid_messages_post_ts", - "target": "db_chat_rooms_createroommessage" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/like.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_like_post_ts", - "target": "db_chat_rooms_togglechatmessagelike" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/like.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_like_post_ts", - "target": "db_chat_rooms_toggledmlike" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_index_get_ts", - "target": "db_chat_rooms_seeddefaultrooms" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/scores/leaderboard.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_scores_leaderboard_get_ts", - "target": "backend_server_db_scores_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/scores/me.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_scores_me_get_ts", - "target": "backend_server_db_scores_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/profile/[userId].get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_profile_userid_get_ts", - "target": "backend_server_db_scores_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/scores.ts", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_scores_ts", - "target": "db_scores_awardpoints" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/scores.ts", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_scores_ts", - "target": "db_scores_getleaderboard" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/scores.ts", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_scores_ts", - "target": "db_scores_getrecentscoreevents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/scores.ts", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_scores_ts", - "target": "db_scores_getuserscore" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/scores.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_scores_ts", - "target": "db_scores_points" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/scores.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_scores_ts", - "target": "db_scores_scoreeventtype" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/message.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_message_post_ts", - "target": "db_scores_awardpoints" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_post_ts", - "target": "db_scores_awardpoints" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "db_scores_awardpoints" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/post.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_post_post_ts", - "target": "db_scores_awardpoints" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/repost.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_repost_post_ts", - "target": "db_scores_awardpoints" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "db_scores_awardpoints" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/scores/me.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_scores_me_get_ts", - "target": "db_scores_getuserscore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/profile/[userId].get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_profile_userid_get_ts", - "target": "db_scores_getuserscore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/scores/me.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_scores_me_get_ts", - "target": "db_scores_getrecentscoreevents" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/scores/leaderboard.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_scores_leaderboard_get_ts", - "target": "db_scores_getleaderboard" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/streak/events.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_streak_events_get_ts", - "target": "backend_server_db_streak_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/streak/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_streak_index_get_ts", - "target": "backend_server_db_streak_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/streak/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_streak_index_patch_ts", - "target": "backend_server_db_streak_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/streak/index.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_streak_index_post_ts", - "target": "backend_server_db_streak_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/urge/index.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_urge_index_post_ts", - "target": "backend_server_db_streak_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_db_streak_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/streak.ts", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_streak_ts", - "target": "db_streak_addstreakevent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/streak.ts", - "source_location": "L79", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_streak_ts", - "target": "db_streak_deleteuserstreaks" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/streak.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_streak_ts", - "target": "db_streak_getactivestreak" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/streak.ts", - "source_location": "L97", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_streak_ts", - "target": "db_streak_getstreakevents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/streak.ts", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_streak_ts", - "target": "db_streak_resetstreak" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/streak.ts", - "source_location": "L71", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_streak_ts", - "target": "db_streak_updatestreaksavings" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/streak.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_streak_ts", - "target": "db_streak_upsertstreak" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.8, - "weight": 0.8, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "Streak-DB-Layer", - "source": "backend_server_db_streak_ts", - "target": "protection_coverage_streak" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/streak/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_streak_index_get_ts", - "target": "db_streak_getactivestreak" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/streak/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_streak_index_patch_ts", - "target": "db_streak_getactivestreak" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/streak/index.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_streak_index_post_ts", - "target": "db_streak_upsertstreak" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/streak.ts", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_streak_upsertstreak", - "target": "db_streak_addstreakevent" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/streak/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_streak_index_patch_ts", - "target": "db_streak_resetstreak" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/streak.ts", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_streak_resetstreak", - "target": "db_streak_addstreakevent" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/streak/index.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_streak_index_patch_ts", - "target": "db_streak_updatestreaksavings" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_streak_deleteuserstreaks" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/urge/index.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_urge_index_post_ts", - "target": "db_streak_addstreakevent" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.85, - "weight": 0.85, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "append-only Event-Log = protection_state_log", - "source": "db_streak_addstreakevent", - "target": "protection_coverage_streak_log_model" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/streak/events.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_streak_events_get_ts", - "target": "db_streak_getstreakevents" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/sos/session.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_sos_session_post_ts", - "target": "backend_server_db_sossession_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_db_sossession_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/sosSession.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_sossession_ts", - "target": "db_sossession_createsossession" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/sosSession.ts", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_sossession_ts", - "target": "db_sossession_deleteusersossessions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/sosSession.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_sossession_ts", - "target": "db_sossession_sossessioninput" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/sos/session.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_sos_session_post_ts", - "target": "db_sossession_createsossession" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_sossession_deleteusersossessions" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_post_ts", - "target": "db_notifications_createnotification" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "db_notifications_createnotification" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_domain_submissions_id_vote_post_ts", - "target": "db_notifications_createnotification" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_notifications_createnotification" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L367", - "weight": 1.0, - "source": "db_domains_adminapprovesubmission", - "target": "db_notifications_createnotification" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/db/domains.ts", - "source_location": "L416", - "weight": 1.0, - "source": "db_domains_adminrejectsubmission", - "target": "db_notifications_createnotification" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/notifications/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_notifications_index_get_ts", - "target": "db_notifications_getnotifications" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/notifications/read.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_notifications_read_post_ts", - "target": "db_notifications_markallread" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/notifications/[id].delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_notifications_id_delete_ts", - "target": "db_notifications_deletenotification" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/notifications-cleanup.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_notifications_cleanup_ts", - "target": "db_notifications_deleteoldnotifications" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "db_protecteddevices_protecteddevicewithtoken" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "db_protecteddevices_device_select" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "db_protecteddevices_device_select_with_token" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "db_protecteddevices_listprotecteddevices" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/protected.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_protected_get_ts", - "target": "db_protecteddevices_listprotecteddevices" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/devices.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_devices_get_ts", - "target": "db_protecteddevices_listprotecteddevices" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "db_protecteddevices_countactiveprotecteddevices" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/enroll.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_enroll_post_ts", - "target": "db_protecteddevices_countactiveprotecteddevices" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "db_protecteddevices_countactiveprotecteddevices" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "db_protecteddevices_getprotecteddevice" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_profile_mobileconfig_get_ts", - "target": "db_protecteddevices_getprotecteddevice" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_profile_reg_get_ts", - "target": "db_protecteddevices_getprotecteddevice" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L181", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_protecteddevices_getdeviceblocklistmode", - "target": "db_protecteddevices_getprotecteddevice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L79", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "db_protecteddevices_createprotecteddevice" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/enroll.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_enroll_post_ts", - "target": "db_protecteddevices_createprotecteddevice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L99", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "db_protecteddevices_confirmprotecteddeviceinstalled" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/confirm-installed.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_confirm_installed_post_ts", - "target": "db_protecteddevices_confirmprotecteddeviceinstalled" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L120", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "db_protecteddevices_revokeprotecteddevice" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/revoke.delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_revoke_delete_ts", - "target": "db_protecteddevices_revokeprotecteddevice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L146", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "db_protecteddevices_handshakeprotecteddevice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectedDevices.ts", - "source_location": "L178", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "db_protecteddevices_getdeviceblocklistmode" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment-like.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_like_post_ts", - "target": "backend_server_db_community_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_post_ts", - "target": "backend_server_db_community_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "backend_server_db_community_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/post.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_post_post_ts", - "target": "backend_server_db_community_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/[postId]/comments.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_postid_comments_get_ts", - "target": "backend_server_db_community_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/[postId]/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_postid_index_get_ts", - "target": "backend_server_db_community_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/posts.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_posts_get_ts", - "target": "backend_server_db_community_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "backend_server_db_community_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_db_community_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L323", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_countpostlikes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_createcomment" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L415", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_createcommentlike" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_createpost" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L420", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_deletecommentlike" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L316", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_deletepostlike" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L288", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_deleteuserposts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L427", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_getcommentlike" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L349", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_getcommentsbypost" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_getpostbyid" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L295", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_getpostlike" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_getposts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L303", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_setpostlike" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L432", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_synccommentlikecount" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/community.ts", - "source_location": "L335", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_community_ts", - "target": "db_community_syncpostlikecounts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/posts.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_posts_get_ts", - "target": "db_community_getposts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_post_ts", - "target": "db_community_getpostbyid" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "db_community_getpostbyid" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/[postId]/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_postid_index_get_ts", - "target": "db_community_getpostbyid" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/post.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_post_post_ts", - "target": "db_community_createpost" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "db_community_createpost" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L127", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cron_lyra_post_postfromcatalog", - "target": "db_community_createpost" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L184", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cron_lyra_post_postfromllm", - "target": "db_community_createpost" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_community_deleteuserposts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "db_community_getpostlike" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/[postId]/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_postid_index_get_ts", - "target": "db_community_getpostlike" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "db_community_setpostlike" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "db_community_deletepostlike" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "db_community_countpostlikes" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "db_community_syncpostlikecounts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/[postId]/comments.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_postid_comments_get_ts", - "target": "db_community_getcommentsbypost" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_post_ts", - "target": "db_community_createcomment" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment-like.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_like_post_ts", - "target": "db_community_getcommentlike" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment-like.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_like_post_ts", - "target": "db_community_createcommentlike" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment-like.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_like_post_ts", - "target": "db_community_deletecommentlike" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment-like.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_like_post_ts", - "target": "db_community_synccommentlikecount" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/admin.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_admin_ts", - "target": "db_admin_isadminuser" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/curated-domains/[id].patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_curated_domains_id_patch_ts", - "target": "backend_server_db_curateddomains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/curated-domains/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_curated_domains_index_get_ts", - "target": "backend_server_db_curateddomains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/suggest.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_suggest_post_ts", - "target": "backend_server_db_curateddomains_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_curateddomains_ts", - "target": "db_curateddomains_decidecurateddomain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_curateddomains_ts", - "target": "db_curateddomains_getcurateddomains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/curatedDomains.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_curateddomains_ts", - "target": "db_curateddomains_suggestcurateddomain" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/suggest.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_suggest_post_ts", - "target": "db_curateddomains_suggestcurateddomain" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/curated-domains/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_curated_domains_index_get_ts", - "target": "db_curateddomains_getcurateddomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/curated-domains/[id].patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_curated_domains_id_patch_ts", - "target": "db_curateddomains_decidecurateddomain" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/delete-message.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_delete_message_post_ts", - "target": "backend_server_db_chat_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm-conversations.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_conversations_get_ts", - "target": "backend_server_db_chat_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_post_ts", - "target": "backend_server_db_chat_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm/[userId].get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_userid_get_ts", - "target": "backend_server_db_chat_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/message.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_message_post_ts", - "target": "backend_server_db_chat_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/messages.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_messages_get_ts", - "target": "backend_server_db_chat_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/reaction.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_reaction_post_ts", - "target": "backend_server_db_chat_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "app_chat_dmconversation" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L241", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "db_chat_countunreaddms" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "db_chat_createchatmessage" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "db_chat_getchatmessages" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "db_chat_getdmconversations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "db_chat_getdmhistory" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "db_chat_markdmsasread" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "db_chat_senddirectmessage" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "db_chat_softdeletedmmessage" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/chat.ts", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_chat_ts", - "target": "db_chat_toggledmreaction" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/messages.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_messages_get_ts", - "target": "db_chat_getchatmessages" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/message.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_message_post_ts", - "target": "db_chat_createchatmessage" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_post_ts", - "target": "db_chat_senddirectmessage" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm/[userId].get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_userid_get_ts", - "target": "db_chat_getdmhistory" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/reaction.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_reaction_post_ts", - "target": "db_chat_toggledmreaction" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/delete-message.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_delete_message_post_ts", - "target": "db_chat_softdeletedmmessage" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm/[userId].get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_userid_get_ts", - "target": "db_chat_markdmsasread" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm-conversations.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_conversations_get_ts", - "target": "db_chat_getdmconversations" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm-conversations.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_conversations_get_ts", - "target": "db_chat_countunreaddms" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/notifications/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_notifications_index_get_ts", - "target": "db_chat_countunreaddms" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/cancel.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_cancel_post_ts", - "target": "backend_server_db_cooldown_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/request.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_request_post_ts", - "target": "backend_server_db_cooldown_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_status_get_ts", - "target": "backend_server_db_cooldown_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/screentime-passcode.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_screentime_passcode_get_ts", - "target": "backend_server_db_cooldown_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/state.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_state_get_ts", - "target": "backend_server_db_cooldown_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_cooldown_ts", - "target": "db_cooldown_cancelcooldown" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_cooldown_ts", - "target": "db_cooldown_createcooldown" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_cooldown_ts", - "target": "db_cooldown_getactivecooldown" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/cooldown.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_cooldown_ts", - "target": "db_cooldown_resolvecooldown" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/cancel.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_cancel_post_ts", - "target": "db_cooldown_getactivecooldown" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/request.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_request_post_ts", - "target": "db_cooldown_getactivecooldown" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_status_get_ts", - "target": "db_cooldown_getactivecooldown" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/screentime-passcode.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_screentime_passcode_get_ts", - "target": "db_cooldown_getactivecooldown" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/state.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_state_get_ts", - "target": "db_cooldown_getactivecooldown" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/request.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_request_post_ts", - "target": "db_cooldown_createcooldown" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_status_get_ts", - "target": "db_cooldown_resolvecooldown" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/screentime-passcode.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_screentime_passcode_get_ts", - "target": "db_cooldown_resolvecooldown" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/state.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_state_get_ts", - "target": "db_cooldown_resolvecooldown" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/cancel.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_cancel_post_ts", - "target": "db_cooldown_cancelcooldown" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/domain-submissions/[id]/approve.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_domain_submissions_id_approve_post_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/domain-submissions/[id]/reject.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_domain_submissions_id_reject_post_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/domain-submissions/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_domain_submissions_index_get_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/count.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_count_get_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/download.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_download_get_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/personal.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_personal_get_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/stats.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_stats_get_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/sync.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_sync_post_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/domain-stats.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_domain_stats_get_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/[id].delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_id_delete_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_id_submit_post_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_get_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_domain_submissions_id_vote_post_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_bin_get_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.txt.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_txt_get_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_addusercustomdomain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L309", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_adminapprovesubmission" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L381", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_adminrejectsubmission" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_approvedomainsubmissiontx" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L241", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_castdomainvote" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_countactivecustomdomains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_customdomaintype" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_deleteallusercustomdomains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L169", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_deleteusercustomdomain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_getactiveblocklistcount" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_getactiveblocklistdomains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L542", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_getblocklisteddomainsset" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L107", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_getcustommaildisplaynames" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_getmaildisplaynamepatterns" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L465", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_getpendingsubmissions" + "source": "locales_ar_auth_nickname", + "target": "locales_ar_nickname_error_taken" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L24", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L463", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_getusercustomdomains" + "source": "locales_ar_auth_nickname", + "target": "locales_ar_nickname_error_too_long" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L524", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L462", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_isblocklisteddomain" + "source": "locales_ar_auth_nickname", + "target": "locales_ar_nickname_error_too_short" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L431", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L461", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_pendingsubmissionrow" + "source": "locales_ar_auth_nickname", + "target": "locales_ar_nickname_hint" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L204", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L459", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_submissionplan" + "source": "locales_ar_auth_nickname", + "target": "locales_ar_nickname_label" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_submitdomainforreview" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/domains.ts", - "source_location": "L596", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_domains_ts", - "target": "db_domains_upsertblocklistdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "blocker_vipdomainlist_vipdomainlist", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usecustomdomains_usecustomdomains", - "target": "backend_server_db_domains_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "db_domains_customdomaintype" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/personal.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_personal_get_ts", - "target": "db_domains_getusercustomdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_get_ts", - "target": "db_domains_getusercustomdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_bin_get_ts", - "target": "db_domains_getusercustomdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_get_ts", - "target": "db_domains_countactivecustomdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "db_domains_countactivecustomdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "db_domains_addusercustomdomain" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/[id].delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_id_delete_ts", - "target": "db_domains_deleteusercustomdomain" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_domains_deleteallusercustomdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_id_submit_post_ts", - "target": "db_domains_submitdomainforreview" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_domain_submissions_id_vote_post_ts", - "target": "db_domains_castdomainvote" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/domain-submissions/[id]/approve.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_domain_submissions_id_approve_post_ts", - "target": "db_domains_adminapprovesubmission" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/domain-submissions/[id]/reject.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_domain_submissions_id_reject_post_ts", - "target": "db_domains_adminrejectsubmission" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/domain-submissions/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_domain_submissions_index_get_ts", - "target": "db_domains_getpendingsubmissions" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/count.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_count_get_ts", - "target": "db_domains_getactiveblocklistcount" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/stats.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_stats_get_ts", - "target": "db_domains_getactiveblocklistcount" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/domain-stats.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_domain_stats_get_ts", - "target": "db_domains_getactiveblocklistcount" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/download.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_download_get_ts", - "target": "db_domains_getactiveblocklistdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/personal.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_personal_get_ts", - "target": "db_domains_getactiveblocklistdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_bin_get_ts", - "target": "db_domains_getactiveblocklistdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.txt.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_txt_get_ts", - "target": "db_domains_getactiveblocklistdomains" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/blocklist/sync.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_blocklist_sync_post_ts", - "target": "db_domains_upsertblocklistdomains" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/urge/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_urge_index_get_ts", - "target": "backend_server_db_urge_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/urge/index.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_urge_index_post_ts", - "target": "backend_server_db_urge_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_db_urge_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/urge.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_urge_ts", - "target": "db_urge_createurgelog" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/urge.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_urge_ts", - "target": "db_urge_deleteuserurgelogs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/urge.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_urge_ts", - "target": "db_urge_emotion" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/urge.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_urge_ts", - "target": "db_urge_getrecenturgelogs" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/urge/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_urge_index_get_ts", - "target": "db_urge_getrecenturgelogs" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/urge/index.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_urge_index_post_ts", - "target": "db_urge_createurgelog" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_urge_deleteuserurgelogs" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/moderation/[id]/ban-user.post.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_moderation_id_ban_user_post_ts", - "target": "backend_server_db_moderation_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/moderation/[id]/delete.post.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_moderation_id_delete_post_ts", - "target": "backend_server_db_moderation_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/moderation/[id]/dismiss.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_moderation_id_dismiss_post_ts", - "target": "backend_server_db_moderation_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/moderation/queue.get.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_moderation_queue_get_ts", - "target": "backend_server_db_moderation_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_moderation_ts", - "target": "db_moderation_banuserfrommoderationitem" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_moderation_ts", - "target": "db_moderation_deletemoderationitem" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_moderation_ts", - "target": "db_moderation_dismissmoderationitem" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L50", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_moderation_ts", - "target": "db_moderation_listmoderationqueue" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_moderation_ts", - "target": "db_moderation_listqueueopts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_moderation_ts", - "target": "db_moderation_moderationitemtype" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/moderation.ts", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_moderation_ts", - "target": "db_moderation_moderationqueueitem" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/admin/server/api/moderation/queue.get.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_admin_server_api_moderation_queue_get_ts", - "target": "db_moderation_moderationitemtype" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/moderation/queue.get.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_moderation_queue_get_ts", - "target": "db_moderation_listmoderationqueue" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/moderation/[id]/dismiss.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_moderation_id_dismiss_post_ts", - "target": "db_moderation_dismissmoderationitem" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/moderation/[id]/delete.post.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_moderation_id_delete_post_ts", - "target": "db_moderation_deletemoderationitem" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/moderation/[id]/ban-user.post.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_moderation_id_ban_user_post_ts", - "target": "db_moderation_banuserfrommoderationitem" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-profile.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_lyra_profile_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/set-lyra-avatar.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_set_lyra_avatar_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/login.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_login_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/me.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_me_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/me.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_me_patch_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/avatar/upload.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_avatar_upload_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm-conversations.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_conversations_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm/[userId].get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_userid_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/index.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_index_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L308", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_id_submit_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_email_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/check-lock.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_check_lock_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/enroll.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_enroll_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/index.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_index_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/protected.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_protected_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/register.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_register_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/dns/profile.get.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_dns_profile_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_domain_submissions_id_vote_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/accept.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_accept_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_rematch_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge-memory.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_memory_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/connect.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connect_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/interval.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_interval_patch_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/calls-enabled.post.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_calls_enabled_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/following.get.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_following_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/last-seen.post.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_last_seen_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/presence-visibility.post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_presence_visibility_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/presence/last-seen.get.ts", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_presence_last_seen_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.delete.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_demographics_delete_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/diga-banner-dismiss.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_diga_banner_dismiss_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/install-event.post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_install_event_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/lyra-voice.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_lyra_voice_patch_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/onboarding-step.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_onboarding_step_patch_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/state.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_state_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/scores/leaderboard.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_scores_leaderboard_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/profile/[userId].get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_profile_userid_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_bin_get_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/users/me/mdm-status.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_users_me_mdm_status_post_ts", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_allowed_lyra_voice_ids" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_deleteprofile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_demographicsfields" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_dismissdigabanner" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L142", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_getdemographics" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L288", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_getfollowingids" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L329", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_getlastseenbatch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_isallowedlyravoiceid" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_lyravoiceid" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_onboardingstep" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L277", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_recordinstallevent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L394", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_setcallsenabled" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L362", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_setmdmmanaged" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L407", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_setpresencevisible" + "source": "locales_ar_auth_nickname", + "target": "locales_ar_plan_body" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L308", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L406", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_touchlastseen" + "source": "locales_ar_coach_lyra", + "target": "locales_ar_auth_nickname" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L186", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L457", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_tryawardprotrial" + "source": "locales_ar_onboarding", + "target": "locales_ar_auth_nickname" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L84", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L88", "weight": 1.0, "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_updatedemographics" + "source": "locales_ar_landing", + "target": "locales_ar_home_start" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_updateprofile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/profile.ts", - "source_location": "L120", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_profile_ts", - "target": "db_profile_withdrawdemographics" - }, - { - "relation": "imports_from", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "context": "import", - "source": "db_profile_demographicspatch", - "target": "backend_server_db_profile_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-profile.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_lyra_profile_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/login.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_login_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/me.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_me_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm-conversations.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_conversations_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm/[userId].get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_userid_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/rooms/index.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_rooms_index_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L308", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/comment.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_comment_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/like.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_like_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/[id]/submit.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_id_submit_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_email_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/check-lock.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_check_lock_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/enroll.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_enroll_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/index.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_index_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/protected.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_protected_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/register.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_register_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/dns/profile.get.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_dns_profile_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/domain-submissions/[id]/vote.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_domain_submissions_id_vote_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/accept.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_accept_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_rematch_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge-memory.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_memory_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/connect.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connect_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/interval.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_interval_patch_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_post_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/state.get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_state_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/scores/leaderboard.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_scores_leaderboard_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/profile/[userId].get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_profile_userid_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_bin_get_ts", - "target": "db_profile_getprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/set-lyra-avatar.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_set_lyra_avatar_post_ts", - "target": "db_profile_updateprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth/me.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_me_patch_ts", - "target": "db_profile_updateprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/avatar/upload.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_avatar_upload_post_ts", - "target": "db_profile_updateprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_profile_deleteprofile" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/onboarding-step.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_onboarding_step_patch_ts", - "target": "db_profile_onboardingstep" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_profile_index_tsx", - "target": "db_profile_demographicspatch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useProfileData.ts", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_hooks_useprofiledata_ts", - "target": "db_profile_demographicspatch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_digamilestonemodal_digamilestonemodal", - "target": "db_profile_demographicspatch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_profile_demographicspatch", - "target": "db_profile_tryawardprotrial" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_profile_demographicspatch", - "target": "db_profile_updatedemographics" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_profile_demographicspatch", - "target": "me_demographics_patch_employment_status_values" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_profile_demographicspatch", - "target": "me_demographics_patch_gender_values" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_profile_demographicspatch", - "target": "me_demographics_patch_job_tenure_values" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_profile_demographicspatch", - "target": "me_demographics_patch_marital_values" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.patch.ts", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_profile_demographicspatch", - "target": "me_demographics_patch_schema" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/demographics.delete.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_demographics_delete_ts", - "target": "db_profile_withdrawdemographics" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/lyra-voice.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_lyra_voice_patch_ts", - "target": "db_profile_lyravoiceid" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/lyra-voice.patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_lyra_voice_patch_ts", - "target": "db_profile_isallowedlyravoiceid" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/diga-banner-dismiss.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_diga_banner_dismiss_post_ts", - "target": "db_profile_dismissdigabanner" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/me/install-event.post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_me_install_event_post_ts", - "target": "db_profile_recordinstallevent" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/following.get.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_following_get_ts", - "target": "db_profile_getfollowingids" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/last-seen.post.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_last_seen_post_ts", - "target": "db_profile_touchlastseen" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/presence/last-seen.get.ts", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_presence_last_seen_get_ts", - "target": "db_profile_getlastseenbatch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/users/me/mdm-status.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_users_me_mdm_status_post_ts", - "target": "db_profile_setmdmmanaged" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/presence-visibility.post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_presence_visibility_post_ts", - "target": "db_profile_setpresencevisible" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/onboarding/redeem-diga-code.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_onboarding_redeem_diga_code_post_ts", - "target": "backend_server_db_diga_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/diga.ts", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_diga_ts", - "target": "db_diga_redeemdigacode" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/diga.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_diga_ts", - "target": "db_diga_redeemresult" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/onboarding/redeem-diga-code.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_onboarding_redeem_diga_code_post_ts", - "target": "db_diga_redeemdigacode" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_post_ts", - "target": "backend_server_db_voicequota_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_voicequota_ts", - "target": "db_voicequota_consumevoicequota" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L102", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_voicequota_ts", - "target": "db_voicequota_estimateaudioseconds" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_voicequota_ts", - "target": "db_voicequota_getremainingvoicequota" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_voicequota_ts", - "target": "db_voicequota_todayutcmidnight" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_voicequota_consumevoicequota", - "target": "db_voicequota_todayutcmidnight" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/voiceQuota.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_voicequota_getremainingvoicequota", - "target": "db_voicequota_todayutcmidnight" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_post_ts", - "target": "db_voicequota_getremainingvoicequota" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_post_ts", - "target": "db_voicequota_consumevoicequota" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "coach_speak_post_speakcartesia", - "target": "db_voicequota_consumevoicequota" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L292", - "weight": 1.0, - "confidence_score": 1.0, - "source": "coach_speak_post_speakelevenlabs", - "target": "db_voicequota_consumevoicequota" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L159", - "weight": 1.0, - "confidence_score": 1.0, - "source": "coach_speak_post_speakgoogle", - "target": "db_voicequota_consumevoicequota" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_post_ts", - "target": "db_voicequota_estimateaudioseconds" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "coach_speak_post_speakcartesia", - "target": "db_voicequota_estimateaudioseconds" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L292", - "weight": 1.0, - "confidence_score": 1.0, - "source": "coach_speak_post_speakelevenlabs", - "target": "db_voicequota_estimateaudioseconds" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L159", - "weight": 1.0, - "confidence_score": 1.0, - "source": "coach_speak_post_speakgoogle", - "target": "db_voicequota_estimateaudioseconds" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/can-call/[userId].get.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_can_call_userid_get_ts", - "target": "backend_server_db_social_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/[postId]/index.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_postid_index_get_ts", - "target": "backend_server_db_social_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/posts.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_posts_get_ts", - "target": "backend_server_db_social_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/follow.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_follow_post_ts", - "target": "backend_server_db_social_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/profile/[userId].get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_profile_userid_get_ts", - "target": "backend_server_db_social_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/social.ts", - "source_location": "L81", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_social_ts", - "target": "db_social_cancall" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/social.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_social_ts", - "target": "db_social_createfollow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/social.ts", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_social_ts", - "target": "db_social_deletefollow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/social.ts", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_social_ts", - "target": "db_social_getfollowingset" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/social.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_social_ts", - "target": "db_social_getfollowrelation" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/social.ts", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_social_ts", - "target": "db_social_getprofilewithfollowers" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/[postId]/index.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_postid_index_get_ts", - "target": "db_social_getfollowrelation" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/follow.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_follow_post_ts", - "target": "db_social_getfollowrelation" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/profile/[userId].get.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_profile_userid_get_ts", - "target": "db_social_getfollowrelation" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/follow.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_follow_post_ts", - "target": "db_social_createfollow" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/follow.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_follow_post_ts", - "target": "db_social_deletefollow" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/community/posts.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_community_posts_get_ts", - "target": "db_social_getfollowingset" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/social/follow.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_social_follow_post_ts", - "target": "db_social_getprofilewithfollowers" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_db_user_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/user.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_user_ts", - "target": "db_user_deleteusercoachsessions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/user.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_user_ts", - "target": "db_user_deleteusertrustedcontacts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_user_deleteusertrustedcontacts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_user_deleteusercoachsessions" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L311", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "backend_server_db_lyramemory_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "backend_server_db_lyramemory_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/lyra/memories/extract.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_lyra_memories_extract_post_ts", - "target": "backend_server_db_lyramemory_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L142", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_lyramemory_ts", - "target": "db_lyramemory_deletememorybyid" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L155", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_lyramemory_ts", - "target": "db_lyramemory_enforcemaxmemories" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_lyramemory_ts", - "target": "db_lyramemory_getmemoriesforuser" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_lyramemory_ts", - "target": "db_lyramemory_levenshteinsimilarity" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_lyramemory_ts", - "target": "db_lyramemory_lyramemoryrow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L125", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_lyramemory_ts", - "target": "db_lyramemory_markreferenced" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_lyramemory_ts", - "target": "db_lyramemory_upsertmemory" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L311", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "db_lyramemory_getmemoriesforuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "db_lyramemory_getmemoriesforuser" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/lyra/memories/extract.post.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_lyra_memories_extract_post_ts", - "target": "db_lyramemory_upsertmemory" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/lyraMemory.ts", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_lyramemory_upsertmemory", - "target": "db_lyramemory_enforcemaxmemories" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L311", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "db_lyramemory_markreferenced" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "db_lyramemory_markreferenced" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/connect.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connect_post_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].delete.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_delete_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_patch_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/pending-consent.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_pending_consent_get_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/disconnect.delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_disconnect_delete_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/interval.patch.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_interval_patch_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/init.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_init_post_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_get_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_post_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/results.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_results_get_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/stats/blocked-by-day.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_stats_blocked_by_day_get_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/status.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_status_get_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L569", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_consumeoauthpendingstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_countmailconnections" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L540", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_createoauthpendingstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_deleteallmailconnections" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L90", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_deletemailconnection" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L342", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_deleteoldmailblocked" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L245", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_deleteusermailclassificationsamples" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_getallactivemailuserids" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L198", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_getalreadyblockeduidset" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L498", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_getblockedmailsbyconnection" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L450", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_getblockedmailsbyday" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L818", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_getdecryptedrefreshtoken" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L323", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_getimapproxyaccounts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L392", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_getmailblockedpaginated" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_getmailblockedstats" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_getmailconnections" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L312", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_getpendingconsentconnections" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L211", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_insertmailblocked" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_insertmailclassificationsample" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L186", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_ismailalreadyblocked" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L169", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_markfullsweepdone" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L151", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_patchfolderscanstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L731", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_refreshandsavetokens" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L424", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_updatemailconnectiontitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L328", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_upsertimapproxyaccount" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L356", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_upsertmailblockedstat" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_upsertmailconnection" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L661", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_upsertoauthgoogleconnection" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/mail.ts", - "source_location": "L609", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_mail_ts", - "target": "db_mail_upsertoauthmicrosoftconnection" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usemailstats_blockedbyconnectionentry", - "target": "backend_server_db_mail_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/consent.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_consent_post_ts", - "target": "db_mail_getmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_get_ts", - "target": "db_mail_getmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_post_ts", - "target": "db_mail_getmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "db_mail_getmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/status.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_status_get_ts", - "target": "db_mail_getmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/connect.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connect_post_ts", - "target": "db_mail_countmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "db_mail_countmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "db_mail_countmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "db_mail_countmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/connect.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connect_post_ts", - "target": "db_mail_upsertmailconnection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_post_ts", - "target": "db_mail_upsertmailconnection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].delete.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_delete_ts", - "target": "db_mail_deletemailconnection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/disconnect.delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_disconnect_delete_ts", - "target": "db_mail_deletemailconnection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/disconnect.delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_disconnect_delete_ts", - "target": "db_mail_deleteallmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_mail_deleteallmailconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/status.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_status_get_ts", - "target": "db_mail_getmailblockedstats" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_mail_deleteusermailclassificationsamples" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/pending-consent.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_pending_consent_get_ts", - "target": "db_mail_getpendingconsentconnections" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_get_ts", - "target": "db_mail_getimapproxyaccounts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "db_mail_getimapproxyaccounts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-account.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_account_post_ts", - "target": "db_mail_upsertimapproxyaccount" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/results.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_results_get_ts", - "target": "db_mail_deleteoldmailblocked" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/results.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_results_get_ts", - "target": "db_mail_getmailblockedpaginated" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].patch.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_patch_ts", - "target": "db_mail_updatemailconnectiontitle" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/interval.patch.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_interval_patch_ts", - "target": "db_mail_updatemailconnectiontitle" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/stats/blocked-by-day.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_stats_blocked_by_day_get_ts", - "target": "db_mail_getblockedmailsbyday" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/stats/blocked-by-connection.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usemailstats_blockedbyconnectionentry", - "target": "db_mail_getblockedmailsbyconnection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/init.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_init_post_ts", - "target": "db_mail_createoauthpendingstate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/init.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_init_post_ts", - "target": "db_mail_createoauthpendingstate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "db_mail_consumeoauthpendingstate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "db_mail_consumeoauthpendingstate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/microsoft/callback.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_microsoft_callback_post_ts", - "target": "db_mail_upsertoauthmicrosoftconnection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/oauth/google/callback.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_oauth_google_callback_post_ts", - "target": "db_mail_upsertoauthgoogleconnection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail-connections/[id].delete.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_connections_id_delete_ts", - "target": "db_mail_getdecryptedrefreshtoken" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/curated-domains/suggest.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_curated_domains_suggest_post_ts", - "target": "curated_domains_suggest_post_valid_countries" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/curated-domains/suggest.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_curated_domains_suggest_post_ts", - "target": "hooks_usecustomdomains_public_email_domains" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_bin_get_ts", - "target": "filter_domainhasher_domainhasher" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/url-filter/blocklist.bin.get.ts", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_url_filter_blocklist_bin_get_ts", - "target": "url_filter_blocklist_bin_get_mergesortedhashbuffers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/reaction.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_reaction_post_ts", - "target": "chat_reaction_post_allowed_emojis" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/dm/[userId].get.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_dm_userid_get_ts", - "target": "dm_userid_get_aggregatereactions" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_status_get_ts", - "target": "db_protectionstatelog_appendprotectionevent" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cooldown/status.get.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cooldown_status_get_ts", - "target": "src_lib_protectionstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "custom_domains_index_post_resolveresult" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "custom_domains_index_post_resolvetypeandvalue" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/index.post.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_index_post_ts", - "target": "hooks_usecustomdomains_public_email_domains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/suggest.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_suggest_post_ts", - "target": "custom_domains_suggest_post_supportedcountry" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/custom-domains/suggest.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_custom_domains_suggest_post_ts", - "target": "hooks_usecustomdomains_public_email_domains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/proxy-config.get.ts", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_proxy_config_get_ts", - "target": "mail_proxy_config_get_escapexml" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/mail/results.get.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_mail_results_get_ts", - "target": "mail_results_get_provider_slug_to_host" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "plan_change_preview_get_changeentry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "plan_change_preview_get_changepreviewresponse" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L350", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "plan_change_preview_get_friendlymodelname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L357", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "plan_change_preview_get_friendlyprovidername" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "plan_change_preview_get_plan_order" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "plan_change_preview_get_resourcekey" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/plan/change-preview.get.ts", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_plan_change_preview_get_ts", - "target": "plan_change_preview_get_valid_plans" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/providers/index.get.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_providers_index_get_ts", - "target": "providers_index_get_ggl_providers" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-generate.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_lyra_generate_post_ts", - "target": "admin_lyra_post_post_lyra_topics" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "admin_lyra_post_post_lyra_topics" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-generate.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_lyra_generate_post_ts", - "target": "admin_lyra_post_post_lyratopic" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "admin_lyra_post_post_lyratopic" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-generate.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_lyra_generate_post_ts", - "target": "admin_lyra_post_post_topic_hints" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "admin_lyra_post_post_topic_hints" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "admin_lyra_post_post_lang" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "admin_lyra_post_post_langs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "admin_lyra_post_post_lang_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "admin_lyra_post_post_lyrasystemprompt" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-post.post.ts", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "admin_lyra_post_post_rebreaksystemprompt" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/lyra-generate.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_lyra_generate_post_ts", - "target": "backend_server_api_cron_lyra_post_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/admin/domain-submissions/[id]/approve.post.ts", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_admin_domain_submissions_id_approve_post_ts", - "target": "id_approve_post_lang" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "backend_server_utils_magic_removal_email_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "db_devices_listmagicremovalcredentials" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/user/delete.delete.ts", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_user_delete_delete_ts", - "target": "utils_magic_removal_email_sendmagicremovalemail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L665", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "coach_message_post_candidate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L387", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "coach_message_post_detectandsavefeedback" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L323", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "coach_message_post_generateplandetails" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L358", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "coach_message_post_provider_config" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/message.post.ts", - "source_location": "L675", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_message_post_ts", - "target": "coach_message_post_trymodel" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "backend_server_api_coach_message_post_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.post.ts", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_post_ts", - "target": "backend_server_api_coach_message_post_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mail_connectmailsheet_connectmailsheet", - "target": "coach_message_post_provider_config" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L171", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_post_ts", - "target": "coach_speak_post_speakcartesia" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L229", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_post_ts", - "target": "coach_speak_post_speakelevenlabs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak.post.ts", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_post_ts", - "target": "coach_speak_post_speakgoogle" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-session.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_session_post_ts", - "target": "backend_server_utils_crisis_filter_ts" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.85, - "weight": 0.85, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "SOS coach session API", - "source": "backend_server_api_coach_sos_session_post_ts", - "target": "diga_03_req_lyra" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-session.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_session_post_ts", - "target": "utils_crisis_filter_detectcrisis" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.post.ts", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_post_ts", - "target": "coach_sos_stream_post_cancel" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.post.ts", - "source_location": "L160", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_post_ts", - "target": "coach_sos_stream_post_pull" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.post.ts", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_post_ts", - "target": "coach_sos_stream_post_start" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "backend_server_utils_crisis_filter_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "utils_crisis_filter_crisislevel" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "utils_crisis_filter_getcrisischips" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/sos-stream.get.ts", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_sos_stream_get_ts", - "target": "utils_crisis_filter_getcrisisfallback" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/coach/speak-gemini.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_coach_speak_gemini_post_ts", - "target": "coach_speak_gemini_post_pcmtowav" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/webcontent-domains.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_webcontent_domains_get_ts", - "target": "backend_server_data_gambling_domains_json" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/webcontent-domains.get.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_webcontent_domains_get_ts", - "target": "protection_webcontent_domains_get_countrykey" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/webcontent-domains.get.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_webcontent_domains_get_ts", - "target": "protection_webcontent_domains_get_global_lists" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/check-nickname.get.ts", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_check_nickname_get_ts", - "target": "profile_check_nickname_get_isprofanity" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/profile/check-nickname.get.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_profile_check_nickname_get_ts", - "target": "profile_check_nickname_get_profanity_blocklist" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/users/me/mdm-status.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_users_me_mdm_status_post_ts", - "target": "me_mdm_status_post_body" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth-hooks/send-email.post.ts", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_hooks_send_email_post_ts", - "target": "auth_hooks_send_email_post_hookbody" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth-hooks/send-email.post.ts", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_hooks_send_email_post_ts", - "target": "auth_hooks_send_email_post_verifysignature" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/auth-hooks/send-email.post.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_auth_hooks_send_email_post_ts", - "target": "utils_crisis_filter_normalize" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/dev/set-plan.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_dev_set_plan_post_ts", - "target": "dev_set_plan_post_appplan" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/dev/set-plan.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_dev_set_plan_post_ts", - "target": "dev_set_plan_post_valid_plans" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/urge/index.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_urge_index_post_ts", - "target": "urge_index_post_emotion" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/urge/index.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_urge_index_post_ts", - "target": "urge_index_post_valid_emotions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge-memory.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_memory_post_ts", - "target": "games_challenge_memory_post_memory_emojis" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge-memory.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_memory_post_ts", - "target": "games_challenge_memory_post_shuffle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/share-text.post.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_share_text_post_ts", - "target": "games_share_text_post_buildfallback" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/share-text.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_share_text_post_ts", - "target": "games_share_text_post_game_vibes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/share-text.post.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_share_text_post_ts", - "target": "games_share_text_post_getgamevibe" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_move_post_ts", - "target": "id_move_post_checkwinner" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/move.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_move_post_ts", - "target": "id_move_post_win_lines" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", - "source_location": "L668", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_urge_urgegames_tsx", - "target": "id_move_post_checkwinner" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", - "source_location": "L678", - "weight": 1.0, - "confidence_score": 1.0, - "source": "urge_urgegames_ttwouldwin", - "target": "id_move_post_checkwinner" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_rematch_post_ts", - "target": "id_rematch_post_memory_emojis" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/rematch.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_rematch_post_ts", - "target": "id_rematch_post_shuffle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_memory_move_post_ts", - "target": "id_memory_move_post_memorycard" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/games/challenge/[id]/memory-move.post.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_games_challenge_id_memory_move_post_ts", - "target": "id_memory_move_post_memorystate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/lyra/memories/extract.post.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_lyra_memories_extract_post_ts", - "target": "memories_extract_post_valid_types" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/onboarding/redeem-diga-code.post.ts", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_onboarding_redeem_diga_code_post_ts", - "target": "onboarding_redeem_diga_code_post_errormessage" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L106", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "cron_lyra_post_postfromcatalog" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L134", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "cron_lyra_post_postfromllm" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/cron/lyra-post.ts", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_cron_lyra_post_ts", - "target": "cron_lyra_post_topics" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_index_get_ts", - "target": "db_devices_cleanupstaledevices" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/protected.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_protected_get_ts", - "target": "app_devices_protecteddevicerow" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/enroll.post.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_enroll_post_ts", - "target": "app_devices_protecteddevicerow" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/profile.reg.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_profile_reg_get_ts", - "target": "app_devices_protecteddevicerow" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/profile.mobileconfig.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_profile_mobileconfig_get_ts", - "target": "app_devices_protecteddevicerow" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/confirm-installed.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_confirm_installed_post_ts", - "target": "app_devices_protecteddevicerow" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/[id]/revoke.delete.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_id_revoke_delete_ts", - "target": "app_devices_protecteddevicerow" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "backend_server_utils_magic_removal_email_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "db_devices_listmagicremovalcredentials" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/stripe/webhook.post.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_stripe_webhook_post_ts", - "target": "utils_magic_removal_email_sendmagicremovalemail" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_data_gambling_domains_json", - "target": "data_gambling_domains_de" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L78", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_data_gambling_domains_json", - "target": "data_gambling_domains_fr" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_data_gambling_domains_json", - "target": "data_gambling_domains_gb" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_data_gambling_domains_json", - "target": "data_gambling_domains_meta" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_data_gambling_domains_json", - "target": "data_gambling_domains_tn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "data_gambling_domains_meta", - "target": "data_gambling_domains_meta_maxdomainspercountry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "data_gambling_domains_meta", - "target": "data_gambling_domains_meta_status" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "data_gambling_domains_meta", - "target": "data_gambling_domains_meta_updatedat" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/data/gambling-domains.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "data_gambling_domains_meta", - "target": "data_gambling_domains_meta_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_package_json", - "target": "imap_idle_package_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_package_json", - "target": "imap_idle_package_description" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_package_json", - "target": "imap_idle_package_engines" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_package_json", - "target": "imap_idle_package_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_package_json", - "target": "imap_idle_package_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_package_json", - "target": "imap_idle_package_private" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_package_json", - "target": "imap_idle_package_scripts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_package_json", - "target": "imap_idle_package_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_imap_idle_package_json", - "target": "imap_idle_package_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_package_scripts", - "target": "imap_idle_package_scripts_start" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_package_dependencies", - "target": "imap_idle_package_dependencies_imapflow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_package_dependencies", - "target": "imap_idle_package_dependencies_pg" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/imap-idle/package.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "imap_idle_package_engines", - "target": "imap_idle_package_engines_node" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_generate_pir_input_ts", - "target": "scripts_generate_pir_input_args" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_generate_pir_input_ts", - "target": "scripts_generate_pir_input_dryrun" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_generate_pir_input_ts", - "target": "scripts_generate_pir_input_fetchfromdb" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L101", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_generate_pir_input_ts", - "target": "scripts_generate_pir_input_fetchfromhagezi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L132", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_generate_pir_input_ts", - "target": "scripts_generate_pir_input_formattxtpb" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L50", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_generate_pir_input_ts", - "target": "scripts_generate_pir_input_getflag" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L141", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_generate_pir_input_ts", - "target": "scripts_generate_pir_input_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_generate_pir_input_ts", - "target": "scripts_generate_pir_input_normalizedomain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_generate_pir_input_ts", - "target": "scripts_generate_pir_input_outputpath" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L119", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_generate_pir_input_ts", - "target": "scripts_generate_pir_input_processdomains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_generate_pir_input_ts", - "target": "scripts_generate_pir_input_source" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L122", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_generate_pir_input_processdomains", - "target": "scripts_generate_pir_input_normalizedomain" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_generate_pir_input_main", - "target": "scripts_generate_pir_input_fetchfromdb" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_generate_pir_input_main", - "target": "scripts_generate_pir_input_fetchfromhagezi" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L155", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_generate_pir_input_main", - "target": "scripts_generate_pir_input_processdomains" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/generate-pir-input.ts", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_generate_pir_input_main", - "target": "scripts_generate_pir_input_formattxtpb" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/llm-bench.sh", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_llm_bench_sh", - "target": "scripts_llm_bench_anthropic_body" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/llm-bench.sh", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_llm_bench_sh", - "target": "scripts_llm_bench_benchn" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/llm-bench.sh", - "source_location": "L97", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_llm_bench_sh", - "target": "scripts_llm_bench_gemini_body" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/llm-bench.sh", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_llm_bench_sh", - "target": "scripts_llm_bench_openai_body" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/llm-bench.sh", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_llm_bench_sh", - "target": "scripts_llm_bench_ttfb_ms" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/llm-bench.sh", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_llm_bench_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_backend_scripts_llm_bench_sh__entry" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/llm-bench.sh", - "source_location": "L128", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_backend_scripts_llm_bench_sh__entry", - "target": "scripts_llm_bench_benchn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/seed-country-blocklists.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_seed_country_blocklists_ts", - "target": "scripts_seed_country_blocklists_db" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/seed-country-blocklists.ts", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_seed_country_blocklists_ts", - "target": "scripts_seed_country_blocklists_initial_domains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/scripts/seed-country-blocklists.ts", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_scripts_seed_country_blocklists_ts", - "target": "scripts_seed_country_blocklists_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/Podfile.properties.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_podfile_properties_json", - "target": "ios_podfile_properties_json_ios_podfile_properties_ex_dev_client_network_inspector" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/Podfile.properties.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_podfile_properties_json", - "target": "ios_podfile_properties_json_ios_podfile_properties_expo_jsengine" - }, - { - "relation": "inherits", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate", - "target": "expoappdelegate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L7", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate", - "target": "ios_rebreakmonorepo_appdelegate_swift_uiwindow" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_appdelegate_application", - "target": "ios_rebreakmonorepo_appdelegate_swift_uiwindow" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L9", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate", - "target": "ios_rebreakmonorepo_appdelegate_swift_exporeactnativefactorydelegate" - }, - { - "relation": "inherits", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L55", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_reactnativedelegate", - "target": "ios_rebreakmonorepo_appdelegate_swift_exporeactnativefactorydelegate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L10", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate", - "target": "ios_rebreakmonorepo_appdelegate_swift_rctreactnativefactory" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate", - "target": "rebreakmonorepo_appdelegate_appdelegate_application" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L36", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_appdelegate_application", - "target": "ios_rebreakmonorepo_appdelegate_swift_any" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L45", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_appdelegate_application", - "target": "ios_rebreakmonorepo_appdelegate_swift_bool" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L45", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_appdelegate_application", - "target": "ios_rebreakmonorepo_appdelegate_swift_nsuseractivity" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L45", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_appdelegate_application", - "target": "ios_rebreakmonorepo_appdelegate_swift_uiapplication" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L45", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_appdelegate_application", - "target": "ios_rebreakmonorepo_appdelegate_swift_uiuseractivityrestoring" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L36", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_appdelegate_application", - "target": "ios_rebreakmonorepo_appdelegate_swift_url" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L45", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_appdelegate_application", - "target": "ios_rebreakmonorepo_appdelegate_swift_void" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_appdelegate_application", - "target": "rebreakmonorepo_appdelegate_reactnativedelegate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L63", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_reactnativedelegate_bundleurl", - "target": "ios_rebreakmonorepo_appdelegate_swift_url" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L58", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_reactnativedelegate_sourceurl", - "target": "ios_rebreakmonorepo_appdelegate_swift_url" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L55", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate", - "target": "rebreakmonorepo_appdelegate_reactnativedelegate" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_reactnativedelegate", - "target": "rebreakmonorepo_appdelegate_reactnativedelegate_bundleurl" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_reactnativedelegate", - "target": "rebreakmonorepo_appdelegate_reactnativedelegate_sourceurl" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L58", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_reactnativedelegate_sourceurl", - "target": "ios_rebreakmonorepo_appdelegate_swift_rctbridge" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/AppDelegate.swift", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreakmonorepo_appdelegate_reactnativedelegate_sourceurl", - "target": "rebreakmonorepo_appdelegate_reactnativedelegate_bundleurl" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/Images.xcassets/Contents.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakmonorepo_images_xcassets_contents_json", - "target": "ios_rebreakmonorepo_images_xcassets_contents_json_images_xcassets_contents_info" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/Images.xcassets/Contents.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakmonorepo_images_xcassets_contents_json_images_xcassets_contents_info", - "target": "ios_rebreakmonorepo_images_xcassets_contents_json_images_xcassets_contents_info_author" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/Images.xcassets/Contents.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakmonorepo_images_xcassets_contents_json_images_xcassets_contents_info", - "target": "ios_rebreakmonorepo_images_xcassets_contents_json_images_xcassets_contents_info_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/Images.xcassets/AppIcon.appiconset/Contents.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json", - "target": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_images" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/Images.xcassets/AppIcon.appiconset/Contents.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json", - "target": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_info" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/Images.xcassets/AppIcon.appiconset/Contents.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_info", - "target": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_info_author" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/Images.xcassets/AppIcon.appiconset/Contents.json", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_info", - "target": "ios_rebreakmonorepo_images_xcassets_appicon_appiconset_contents_json_appicon_appiconset_contents_info_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/Images.xcassets/SplashScreenLegacy.imageset/Contents.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json", - "target": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_images" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/Images.xcassets/SplashScreenLegacy.imageset/Contents.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json", - "target": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/Images.xcassets/SplashScreenLegacy.imageset/Contents.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info", - "target": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info_author" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ios/rebreakmonorepo/Images.xcassets/SplashScreenLegacy.imageset/Contents.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info", - "target": "ios_rebreakmonorepo_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info_version" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-admin-from-artifact.sh", - "source_location": "L17", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "scripts_deploy_admin_from_artifact_sh", - "target": "scripts_deploy_admin_from_artifact_log" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-admin-from-artifact.sh", - "source_location": "L18", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "scripts_deploy_admin_from_artifact_sh", - "target": "scripts_deploy_admin_from_artifact_log_err" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-admin-from-artifact.sh", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_admin_from_artifact_sh", - "target": "scripts_deploy_admin_from_artifact_path" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy.sh", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_sh", - "target": "scripts_deploy_log" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy.sh", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_sh", - "target": "scripts_deploy_log_err" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy.sh", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_sh", - "target": "scripts_deploy_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy.sh", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_sh__entry" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy.sh", - "source_location": "L37", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_sh__entry", - "target": "scripts_deploy_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy.sh", - "source_location": "L66", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_sh__entry", - "target": "scripts_deploy_log_err" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-webhook/server.mjs", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_webhook_server_mjs", - "target": "deploy_webhook_server_loadenvfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-webhook/server.mjs", - "source_location": "L61", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_webhook_server_mjs", - "target": "deploy_webhook_server_rundeploy" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-webhook/server.mjs", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_webhook_server_mjs", - "target": "deploy_webhook_server_server" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-webhook/server.mjs", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_webhook_server_mjs", - "target": "deploy_webhook_server_verifysignature" - }, - { - "relation": "rationale_for", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L178", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rationale_178", - "target": "ops_mdm_adguard_handshake_watcher_watcher_py" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_adguard_handshake_watcher_watcher_py", - "target": "adguard_handshake_watcher_watcher_cooldown_ok" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L184", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_adguard_handshake_watcher_watcher_py", - "target": "adguard_handshake_watcher_watcher_extract_client_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_adguard_handshake_watcher_watcher_py", - "target": "adguard_handshake_watcher_watcher_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_adguard_handshake_watcher_watcher_py", - "target": "adguard_handshake_watcher_watcher_mark_fired" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L81", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_adguard_handshake_watcher_watcher_py", - "target": "adguard_handshake_watcher_watcher_post_handshake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_adguard_handshake_watcher_watcher_py", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_adguard_handshake_watcher_watcher_py", - "target": "time" - }, - { - "relation": "references", - "context": "return_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_cooldown_ok", - "target": "ops_mdm_adguard_handshake_watcher_watcher_py_bool" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_cooldown_ok", - "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L288", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_main", - "target": "adguard_handshake_watcher_watcher_cooldown_ok" - }, - { - "relation": "rationale_for", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rationale_68", - "target": "adguard_handshake_watcher_watcher_cooldown_ok" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L184", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_extract_client_id", - "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_mark_fired", - "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L81", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_post_handshake", - "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L212", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rotationsafetailer_init", - "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" - }, - { - "relation": "references", - "context": "generic_arg", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L242", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rotationsafetailer_readline", - "target": "ops_mdm_adguard_handshake_watcher_watcher_py_str" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L117", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_post_handshake", - "target": "adguard_handshake_watcher_watcher_mark_fired" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L290", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_main", - "target": "adguard_handshake_watcher_watcher_post_handshake" - }, - { - "relation": "rationale_for", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rationale_82", - "target": "adguard_handshake_watcher_watcher_post_handshake" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_main", - "target": "adguard_handshake_watcher_watcher_extract_client_id" - }, - { - "relation": "rationale_for", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L185", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rationale_185", - "target": "adguard_handshake_watcher_watcher_extract_client_id" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L280", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_main", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer" - }, - { - "relation": "rationale_for", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rationale_206", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L212", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rotationsafetailer", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer_init" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rotationsafetailer", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer_open" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L242", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rotationsafetailer", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer_readline" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L237", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rotationsafetailer", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer_seek_to_end_on_first_open" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L216", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rotationsafetailer_init", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer_open" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L248", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rotationsafetailer_readline", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer_open" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L281", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_main", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer_seek_to_end_on_first_open" - }, - { - "relation": "rationale_for", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rationale_238", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer_seek_to_end_on_first_open" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L284", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_main", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer_readline" - }, - { - "relation": "rationale_for", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/adguard-handshake-watcher/watcher.py", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "adguard_handshake_watcher_watcher_rationale_243", - "target": "adguard_handshake_watcher_watcher_rotationsafetailer_readline" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_confirm" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_die" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_dim" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_err" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L61", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_info" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_log" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_ok" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_run" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L90", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_state_file_for" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L92", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_state_load" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_state_set" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L122", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_usage" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "bootstrap_tool_rebreak_supervise_warn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_bootstrap_tool_rebreak_supervise_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L264", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_confirm" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L177", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_die" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L257", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_dim" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L146", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_err" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L172", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_info" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L158", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L179", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_ok" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L269", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_run" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L225", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_state_load" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L233", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_state_set" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L145", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_usage" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L165", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_bootstrap_tool_rebreak_supervise_sh__entry", - "target": "bootstrap_tool_rebreak_supervise_warn" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L62", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "bootstrap_tool_rebreak_supervise_dim", - "target": "bootstrap_tool_rebreak_supervise_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L60", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "bootstrap_tool_rebreak_supervise_err", - "target": "bootstrap_tool_rebreak_supervise_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L61", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "bootstrap_tool_rebreak_supervise_info", - "target": "bootstrap_tool_rebreak_supervise_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L58", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "bootstrap_tool_rebreak_supervise_ok", - "target": "bootstrap_tool_rebreak_supervise_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L59", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "bootstrap_tool_rebreak_supervise_warn", - "target": "bootstrap_tool_rebreak_supervise_log" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L64", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "bootstrap_tool_rebreak_supervise_die", - "target": "bootstrap_tool_rebreak_supervise_err" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L68", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "bootstrap_tool_rebreak_supervise_confirm", - "target": "bootstrap_tool_rebreak_supervise_dim" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/bootstrap-tool/rebreak-supervise.sh", - "source_location": "L76", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "bootstrap_tool_rebreak_supervise_run", - "target": "bootstrap_tool_rebreak_supervise_dim" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/tl-patcher/main.go", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_tl_patcher_main_go", - "target": "tl_patcher_main_main" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/tl-patcher/main.go", - "source_location": "L44", - "weight": 1.0, - "source": "tl_patcher_main_main", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/dump-artifacts/main.go", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_dump_artifacts_main_go", - "target": "dump_artifacts_main_main" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/dump-artifacts/main.go", - "source_location": "L41", - "weight": 1.0, - "source": "dump_artifacts_main_main", - "target": "mobilebackup2_manifest_db_buildmanifestdb" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/dump-artifacts/main.go", - "source_location": "L41", - "weight": 1.0, - "source": "dump_artifacts_main_main", - "target": "mobilebackup2_manifest_db_defaultrestoreentries" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/dump-artifacts/main.go", - "source_location": "L39", - "weight": 1.0, - "source": "dump_artifacts_main_main", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L171", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", - "target": "usbmux_proxy_main_dumpchunk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", - "target": "usbmux_proxy_main_dumphex" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L114", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", - "target": "usbmux_proxy_main_handlesession" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", - "target": "usbmux_proxy_main_indent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", - "target": "usbmux_proxy_main_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L147", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", - "target": "usbmux_proxy_main_pipewithlog" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L212", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", - "target": "usbmux_proxy_main_tryparseplist" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L98", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go", - "target": "usbmux_proxy_mitm" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L55", - "weight": 1.0, - "source": "usbmux_proxy_main_main", - "target": "cert_identity_parse" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L94", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_main", - "target": "usbmux_proxy_main_handlesession" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_main", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L171", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "usbmux_proxy_main_dumpchunk", - "target": "usbmux_proxy_mitm" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L230", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "usbmux_proxy_main_dumphex", - "target": "usbmux_proxy_mitm" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L114", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "usbmux_proxy_main_handlesession", - "target": "usbmux_proxy_mitm" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L147", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "usbmux_proxy_main_pipewithlog", - "target": "usbmux_proxy_mitm" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L212", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "usbmux_proxy_main_tryparseplist", - "target": "usbmux_proxy_mitm" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L99", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "usbmux_proxy_mitm", - "target": "mutex" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L100", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "usbmux_proxy_mitm", - "target": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go_file" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L104", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_mitm", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L133", - "weight": 1.0, - "source": "dlmessage_conn_receive", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L94", - "weight": 1.0, - "source": "dlmessage_conn_send", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L186", - "weight": 1.0, - "source": "mobilebackup2_client_baseversionexchange", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L291", - "weight": 1.0, - "source": "mobilebackup2_client_sendhello", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L329", - "weight": 1.0, - "source": "mobilebackup2_client_start", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L223", - "weight": 1.0, - "source": "supervise_flow_makelogger", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L46", - "weight": 1.0, - "source": "supervise_flow_supervise", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L285", - "weight": 1.0, - "source": "supervise_flow_unsupervise", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L164", - "weight": 1.0, - "source": "supervise_main_runcertinfo", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L142", - "weight": 1.0, - "source": "supervise_main_runcheck", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L211", - "weight": 1.0, - "source": "supervise_main_runcloudconfig", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L180", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_dumpchunk", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_dumphex", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_handlesession", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_pipewithlog", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_tryparseplist", - "target": "usbmux_proxy_mitm_printf" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L114", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "usbmux_proxy_main_handlesession", - "target": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go_conn" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_handlesession", - "target": "usbmux_proxy_main_pipewithlog" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L147", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "usbmux_proxy_main_pipewithlog", - "target": "ops_mdm_supervise_magic_cmd_usbmux_proxy_main_go_conn" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_pipewithlog", - "target": "usbmux_proxy_main_dumpchunk" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L186", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_dumpchunk", - "target": "usbmux_proxy_main_dumphex" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L182", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_dumpchunk", - "target": "usbmux_proxy_main_tryparseplist" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_tryparseplist", - "target": "usbmux_proxy_main_dumphex" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/usbmux-proxy/main.go", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "usbmux_proxy_main_tryparseplist", - "target": "usbmux_proxy_main_indent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", - "target": "supervise_cliopts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", - "target": "supervise_flow_unsupervise" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L303", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", - "target": "supervise_main_confirm" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L265", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", - "target": "supervise_main_defaultbackuppath" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", - "target": "supervise_main_dlmsgdebugset" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L311", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", - "target": "supervise_main_exitonerr" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", - "target": "supervise_main_init" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", - "target": "supervise_main_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L162", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", - "target": "supervise_main_runcertinfo" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", - "target": "supervise_main_runcheck" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L176", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_cmd_supervise_main_go", - "target": "supervise_main_runcloudconfig" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L104", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_main_main", - "target": "supervise_main_dlmsgdebugset" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L274", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_flow_unsupervise", - "target": "supervise_cliopts" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L162", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_main_runcertinfo", - "target": "supervise_cliopts" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L129", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_main_runcheck", - "target": "supervise_cliopts" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L176", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_main_runcloudconfig", - "target": "supervise_cliopts" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L121", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_main_main", - "target": "supervise_flow_unsupervise" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_main_main", - "target": "supervise_main_exitonerr" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_main_main", - "target": "supervise_main_runcertinfo" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_main_main", - "target": "supervise_main_runcheck" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L117", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_main_main", - "target": "supervise_main_runcloudconfig" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L130", - "weight": 1.0, - "source": "supervise_main_runcheck", - "target": "device_lockdown_connect" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L163", - "weight": 1.0, - "source": "supervise_main_runcertinfo", - "target": "cert_cert_defaultdir" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L165", - "weight": 1.0, - "source": "supervise_main_runcertinfo", - "target": "cert_cert_loadorcreate" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L177", - "weight": 1.0, - "source": "supervise_main_runcloudconfig", - "target": "device_lockdown_connect" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_unsupervise", - "target": "supervise_main_defaultbackuppath" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L292", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_unsupervise", - "target": "supervise_main_confirm" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/tools/experiment-run.sh", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_tools_experiment_run_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_supervise_magic_tools_experiment_run_sh__entry" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/tools/ab-profile.sh", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_tools_ab_profile_sh", - "target": "tools_ab_profile_rebreak_mb2_serve_timeout_sec" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/tools/ab-profile.sh", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_tools_ab_profile_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_ops_mdm_supervise_magic_tools_ab_profile_sh__entry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L93", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", - "target": "mobilebackup2_embed_formatbackupdate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", - "target": "mobilebackup2_embed_renderinfoplist" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L71", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", - "target": "mobilebackup2_embed_rendermanifestplist" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", - "target": "mobilebackup2_embed_renderstatusplist" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", - "target": "mobilebackup2_embed_rendertemplate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", - "target": "mobilebackup2_embed_tlmanifestdb" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", - "target": "mobilebackup2_embed_tlmanifestplist" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", - "target": "mobilebackup2_embed_tlstatusplist" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_embed_go", - "target": "mobilebackup2_templatevars" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L104", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "mobilebackup2_embed_tlmanifestdb" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L94", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "mobilebackup2_embed_tlstatusplist" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L95", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "mobilebackup2_embed_tlmanifestplist" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L76", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mobilebackup2_embed_renderinfoplist", - "target": "mobilebackup2_templatevars" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L71", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mobilebackup2_embed_rendermanifestplist", - "target": "mobilebackup2_templatevars" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L66", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mobilebackup2_embed_renderstatusplist", - "target": "mobilebackup2_templatevars" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L80", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mobilebackup2_embed_rendertemplate", - "target": "mobilebackup2_templatevars" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_embed_renderstatusplist", - "target": "mobilebackup2_embed_rendertemplate" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L81", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "mobilebackup2_embed_renderstatusplist" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_embed_rendermanifestplist", - "target": "mobilebackup2_embed_rendertemplate" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L89", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "mobilebackup2_embed_rendermanifestplist" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_embed_renderinfoplist", - "target": "mobilebackup2_embed_rendertemplate" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L85", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "mobilebackup2_embed_renderinfoplist" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L81", - "weight": 1.0, - "source": "mobilebackup2_embed_rendertemplate", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/embed.go", - "source_location": "L93", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mobilebackup2_embed_formatbackupdate", - "target": "time" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L54", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "mobilebackup2_embed_formatbackupdate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go", - "target": "mobilebackup2_fileprovider" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go", - "target": "mobilebackup2_fileserver_parseerrorcode" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L241", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mobilebackup2_client_sendfiles", - "target": "mobilebackup2_fileprovider" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L56", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mobilebackup2_client_servefiles", - "target": "mobilebackup2_fileprovider" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L320", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go_mobilebackup2_client", - "target": "mobilebackup2_client_receivefiles" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L241", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go_mobilebackup2_client", - "target": "mobilebackup2_client_sendfiles" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L198", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go_mobilebackup2_client", - "target": "mobilebackup2_client_sendstatusok" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go_mobilebackup2_client", - "target": "mobilebackup2_client_servefiles" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L303", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_fileserver_go_mobilebackup2_client", - "target": "mobilebackup2_client_writerawu32" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L180", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_servefiles", - "target": "mobilebackup2_client_receivefiles" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L169", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_servefiles", - "target": "mobilebackup2_client_sendfiles" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_servefiles", - "target": "mobilebackup2_client_sendstatusok" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L99", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_servefiles", - "target": "mobilebackup2_fileserver_parseerrorcode" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L300", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_sendfiles", - "target": "mobilebackup2_client_sendstatusok" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/fileserver.go", - "source_location": "L247", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_sendfiles", - "target": "mobilebackup2_client_writerawu32" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L137", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go", - "target": "mobilebackup2_deviceconnreadwriter" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L337", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go", - "target": "mobilebackup2_mobilebackup2_envbool" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go", - "target": "mobilebackup2_mobilebackup2_open" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go", - "target": "mobilebackup2_mobilebackup2_plistunmarshal" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go", - "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L60", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "mobilebackup2_mobilebackup2_open", - "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", - "target": "mobilebackup2_client_baseversionexchange" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L158", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", - "target": "mobilebackup2_client_close" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", - "target": "mobilebackup2_client_hello" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", - "target": "mobilebackup2_client_protocolversion" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L242", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", - "target": "mobilebackup2_client_receive" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L281", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", - "target": "mobilebackup2_client_sendhello" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", - "target": "mobilebackup2_client_sendrequest" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", - "target": "mobilebackup2_client_sendstatusresponse" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L298", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", - "target": "mobilebackup2_client_start" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L49", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", - "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_conn" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L48", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_mobilebackup2_client", - "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_deviceconnectioninterface" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L138", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "mobilebackup2_deviceconnreadwriter", - "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_deviceconnectioninterface" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L131", - "weight": 1.0, - "source": "mobilebackup2_mobilebackup2_open", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_mobilebackup2_open", - "target": "mobilebackup2_client_close" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L99", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_mobilebackup2_open", - "target": "mobilebackup2_mobilebackup2_plistunmarshal" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L60", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mobilebackup2_mobilebackup2_open", - "target": "ops_mdm_supervise_magic_internal_mobilebackup2_mobilebackup2_go_deviceentry" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L148", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_deviceconnreadwriter", - "target": "mobilebackup2_deviceconnreadwriter_read" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L141", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_deviceconnreadwriter", - "target": "mobilebackup2_deviceconnreadwriter_write" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L179", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_baseversionexchange", - "target": "mobilebackup2_client_receive" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_hello", - "target": "mobilebackup2_client_sendrequest" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L282", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_sendhello", - "target": "mobilebackup2_client_sendrequest" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L330", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_start", - "target": "mobilebackup2_client_sendrequest" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_hello", - "target": "mobilebackup2_client_receive" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_sendhello", - "target": "mobilebackup2_client_receive" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/mobilebackup2.go", - "source_location": "L311", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_client_start", - "target": "mobilebackup2_mobilebackup2_envbool" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_manifest_db_go", - "target": "mobilebackup2_dbentry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", - "source_location": "L50", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_manifest_db_go", - "target": "mobilebackup2_manifest_db_buildmanifestdb" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", - "source_location": "L147", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_manifest_db_go", - "target": "mobilebackup2_manifest_db_computefileid" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_manifest_db_go", - "target": "mobilebackup2_manifest_db_defaultrestoreentries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mobilebackup2_manifest_db_go", - "target": "mobilebackup2_manifest_db_encodembfile" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", - "source_location": "L50", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mobilebackup2_manifest_db_buildmanifestdb", - "target": "mobilebackup2_dbentry" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", - "source_location": "L238", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "mobilebackup2_manifest_db_defaultrestoreentries", - "target": "mobilebackup2_dbentry" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_manifest_db_buildmanifestdb", - "target": "mobilebackup2_manifest_db_computefileid" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", - "source_location": "L118", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mobilebackup2_manifest_db_buildmanifestdb", - "target": "mobilebackup2_manifest_db_encodembfile" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L109", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "mobilebackup2_manifest_db_buildmanifestdb" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/mobilebackup2/manifest_db.go", - "source_location": "L148", - "weight": 1.0, - "source": "mobilebackup2_manifest_db_computefileid", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L120", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "mobilebackup2_manifest_db_computefileid" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L107", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "mobilebackup2_manifest_db_defaultrestoreentries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_dlmessage_dlmessage_go", - "target": "dlmessage_conn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_dlmessage_dlmessage_go", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "dlmessage_conn", - "target": "dlmessage_conn_receive" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L171", - "weight": 1.0, - "confidence_score": 1.0, - "source": "dlmessage_conn", - "target": "dlmessage_conn_receiveprocessmessage" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "dlmessage_conn", - "target": "dlmessage_conn_send" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L160", - "weight": 1.0, - "confidence_score": 1.0, - "source": "dlmessage_conn", - "target": "dlmessage_conn_sendprocessmessage" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L165", - "weight": 1.0, - "confidence_score": 1.0, - "source": "dlmessage_conn", - "target": "dlmessage_conn_sendstatusresponse" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L55", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "dlmessage_conn", - "target": "readwriter" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L59", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "dlmessage_dlmessage_new", - "target": "dlmessage_conn" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L59", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "dlmessage_dlmessage_new", - "target": "readwriter" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", - "source_location": "L28", - "weight": 1.0, - "source": "afclock_afclock_acquire", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L29", - "weight": 1.0, - "source": "device_lockdown_connect", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L120", - "weight": 1.0, - "confidence_score": 1.0, - "source": "dlmessage_conn_receive", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L180", - "weight": 1.0, - "confidence_score": 1.0, - "source": "dlmessage_conn_receiveprocessmessage", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L171", - "weight": 1.0, - "source": "mcinstall_mcinstall_escalateunsupervised", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L52", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L199", - "weight": 1.0, - "source": "supervise_flow_supervise", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L118", - "weight": 1.0, - "source": "supervise_flow_superviseescalated", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L193", - "weight": 1.0, - "source": "supervise_flow_unsupervise", - "target": "dlmessage_dlmessage_new" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "dlmessage_conn_sendprocessmessage", - "target": "dlmessage_conn_send" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "dlmessage_conn_sendstatusresponse", - "target": "dlmessage_conn_send" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/dlmessage/dlmessage.go", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "dlmessage_conn_receiveprocessmessage", - "target": "dlmessage_conn_receive" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_notification_proxy_np_go", - "target": "notification_proxy_client" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_notification_proxy_np_go", - "target": "notification_proxy_np_open" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L55", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_notification_proxy_np_go", - "target": "notification_proxy_np_postonce" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification_proxy_client", - "target": "notification_proxy_client_close" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification_proxy_client", - "target": "notification_proxy_client_postnotification" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L30", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "notification_proxy_client", - "target": "ops_mdm_supervise_magic_internal_notification_proxy_np_go_deviceconnectioninterface" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L31", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "notification_proxy_client", - "target": "ops_mdm_supervise_magic_internal_notification_proxy_np_go_plistcodec" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L35", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "notification_proxy_np_open", - "target": "notification_proxy_client" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L35", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "notification_proxy_np_open", - "target": "ops_mdm_supervise_magic_internal_notification_proxy_np_go_deviceentry" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification_proxy_np_postonce", - "target": "notification_proxy_np_open" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L55", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "notification_proxy_np_postonce", - "target": "ops_mdm_supervise_magic_internal_notification_proxy_np_go_deviceentry" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification_proxy_np_postonce", - "target": "notification_proxy_client_close" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/notification_proxy/np.go", - "source_location": "L61", - "weight": 1.0, - "confidence_score": 1.0, - "source": "notification_proxy_np_postonce", - "target": "notification_proxy_client_postnotification" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L151", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "notification_proxy_np_postonce" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_cert_cert_go", - "target": "cert_cert_defaultdir" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L81", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_cert_cert_go", - "target": "cert_cert_generate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_cert_cert_go", - "target": "cert_cert_load" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_cert_cert_go", - "target": "cert_cert_loadorcreate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_cert_cert_go", - "target": "cert_identity" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L81", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "cert_cert_generate", - "target": "cert_identity" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L60", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "cert_cert_load", - "target": "cert_identity" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L35", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "cert_cert_loadorcreate", - "target": "cert_identity" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L111", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cert_identity", - "target": "cert_identity_parse" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L92", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cert_identity", - "target": "cert_identity_save" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cert_cert_loadorcreate", - "target": "cert_cert_defaultdir" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cert_cert_loadorcreate", - "target": "cert_cert_generate" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cert_cert_loadorcreate", - "target": "cert_cert_load" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cert_cert_loadorcreate", - "target": "cert_identity_save" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L43", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "cert_cert_loadorcreate" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L80", - "weight": 1.0, - "source": "supervise_flow_superviseescalated", - "target": "cert_cert_loadorcreate" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L142", - "weight": 1.0, - "source": "supervise_flow_supervisefresh", - "target": "cert_cert_loadorcreate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L111", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "cert_identity_parse", - "target": "ops_mdm_supervise_magic_internal_cert_cert_go_certificate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cert/cert.go", - "source_location": "L111", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "cert_identity_parse", - "target": "privatekey" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_device_lockdown_go", - "target": "device_conn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_device_lockdown_go", - "target": "device_lockdown_connect" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L137", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_device_lockdown_go", - "target": "device_lockdown_waitforreconnect" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn", - "target": "device_conn_activationstate" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn", - "target": "device_conn_close" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn", - "target": "device_conn_device" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn", - "target": "device_conn_findmyenabled" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L121", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn", - "target": "device_conn_getvaluefordomain" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L51", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn", - "target": "device_conn_info" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn", - "target": "device_conn_issupervised" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn", - "target": "device_conn_reboot" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn", - "target": "device_conn_udid" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L17", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "device_conn", - "target": "ops_mdm_supervise_magic_internal_device_lockdown_go_deviceentry" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L23", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "device_lockdown_connect", - "target": "device_conn" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L137", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "device_lockdown_waitforreconnect", - "target": "device_conn" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L48", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "device_conn_device", - "target": "ops_mdm_supervise_magic_internal_device_lockdown_go_deviceentry" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L140", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_lockdown_waitforreconnect", - "target": "device_lockdown_connect" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L283", - "weight": 1.0, - "source": "supervise_flow_backup_commitviamcinstall", - "target": "device_lockdown_connect" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L32", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "device_lockdown_connect" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L49", - "weight": 1.0, - "source": "supervise_flow_supervise", - "target": "device_lockdown_connect" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L73", - "weight": 1.0, - "source": "supervise_flow_superviseescalated", - "target": "device_lockdown_connect" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L135", - "weight": 1.0, - "source": "supervise_flow_supervisefresh", - "target": "device_lockdown_connect" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/cmd/supervise/main.go", - "source_location": "L275", - "weight": 1.0, - "source": "supervise_flow_unsupervise", - "target": "device_lockdown_connect" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L109", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn_activationstate", - "target": "device_conn_info" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn_findmyenabled", - "target": "device_conn_info" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L126", - "weight": 1.0, - "confidence_score": 1.0, - "source": "device_conn_getvaluefordomain", - "target": "device_conn_close" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/device/lockdown.go", - "source_location": "L137", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "device_lockdown_waitforreconnect", - "target": "ops_mdm_supervise_magic_internal_device_lockdown_go_duration" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L224", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "device_lockdown_waitforreconnect" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L177", - "weight": 1.0, - "source": "supervise_flow_supervisefresh", - "target": "device_lockdown_waitforreconnect" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", - "target": "cloudconfig_buildoptions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", - "target": "cloudconfig_writer_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", - "target": "cloudconfig_writer_envbool" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", - "source_location": "L183", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", - "target": "cloudconfig_writer_envint64" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", - "target": "cloudconfig_writer_mergeskipsetup" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", - "source_location": "L195", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_cloudconfig_writer_go", - "target": "cloudconfig_writer_tointerfaceslice" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", - "source_location": "L47", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "cloudconfig_writer_build", - "target": "cloudconfig_buildoptions" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cloudconfig_writer_build", - "target": "cloudconfig_writer_envbool" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", - "source_location": "L94", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cloudconfig_writer_build", - "target": "cloudconfig_writer_envint64" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", - "source_location": "L61", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cloudconfig_writer_build", - "target": "cloudconfig_writer_mergeskipsetup" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/cloudconfig/writer.go", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "cloudconfig_writer_build", - "target": "cloudconfig_writer_tointerfaceslice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go", - "target": "mcinstall_client" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L170", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go", - "target": "mcinstall_mcinstall_escalateunsupervised" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go", - "target": "mcinstall_mcinstall_open" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L185", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go", - "target": "supervise_flow_supervise" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L44", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_client", - "target": "mcinstall_client_close" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L128", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_client", - "target": "mcinstall_client_escalate" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L79", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_client", - "target": "mcinstall_client_flush" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_client", - "target": "mcinstall_client_getcloudconfiguration" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_client", - "target": "mcinstall_client_hellohostidentifier" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_client", - "target": "mcinstall_client_sendandreceive" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L28", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "mcinstall_client", - "target": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go_deviceconnectioninterface" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L29", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "mcinstall_client", - "target": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go_plistcodec" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_client", - "target": "supervise_flow_supervise" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_client", - "target": "supervise_flow_unsupervise" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L33", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "mcinstall_mcinstall_open", - "target": "mcinstall_client" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L33", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mcinstall_mcinstall_open", - "target": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go_deviceentry" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L170", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mcinstall_mcinstall_escalateunsupervised", - "target": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go_deviceentry" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_mcinstall_escalateunsupervised", - "target": "mcinstall_client_close" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L130", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_client_escalate", - "target": "mcinstall_client_sendandreceive" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_client_flush", - "target": "mcinstall_client_sendandreceive" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L117", - "weight": 1.0, - "confidence_score": 1.0, - "source": "mcinstall_client_getcloudconfiguration", - "target": "mcinstall_client_sendandreceive" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L87", "weight": 1.0, "confidence_score": 1.0, - "source": "mcinstall_client_hellohostidentifier", - "target": "mcinstall_client_sendandreceive" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_supervise", - "target": "mcinstall_client_flush" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L237", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_unsupervise", - "target": "mcinstall_client_flush" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_supervise", - "target": "mcinstall_client_hellohostidentifier" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L240", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_unsupervise", - "target": "mcinstall_client_hellohostidentifier" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_supervise", - "target": "mcinstall_client_getcloudconfiguration" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_unsupervise", - "target": "mcinstall_client_getcloudconfiguration" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/mcinstall/mcinstall.go", - "source_location": "L128", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "mcinstall_client_escalate", - "target": "ops_mdm_supervise_magic_internal_mcinstall_mcinstall_go_certificate" + "source": "locales_ar_landing", + "target": "locales_ar_home_tagline" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_afclock_afclock_go", - "target": "afclock_afclock_acquire" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_afclock_afclock_go", - "target": "afclock_synclock" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", - "source_location": "L27", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "afclock_afclock_acquire", - "target": "afclock_synclock" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", - "source_location": "L55", - "weight": 1.0, - "confidence_score": 1.0, - "source": "afclock_synclock", - "target": "afclock_synclock_release" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", - "source_location": "L21", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "afclock_synclock", - "target": "ops_mdm_supervise_magic_internal_afclock_afclock_go_client" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", - "source_location": "L22", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "afclock_synclock", - "target": "ops_mdm_supervise_magic_internal_afclock_afclock_go_file" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/afclock/afclock.go", - "source_location": "L27", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "afclock_afclock_acquire", - "target": "ops_mdm_supervise_magic_internal_afclock_afclock_go_deviceentry" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L156", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "afclock_afclock_acquire" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L353", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go", - "target": "supervise_flow_backup_asstring" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go", - "target": "supervise_flow_backup_commitviamcinstall" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go", - "target": "supervise_flow_backup_servefileswithtimeout" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go", - "target": "supervise_flow_backup_superviseviabackup" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_duration" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L28", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "options" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L55", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "supervise_flow_backup_asstring" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "supervise_flow_backup_commitviamcinstall" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "supervise_flow_backup_servefileswithtimeout" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L29", - "weight": 1.0, - "source": "supervise_flow_backup_superviseviabackup", - "target": "supervise_flow_makelogger" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L63", - "weight": 1.0, - "source": "supervise_flow_supervise", - "target": "supervise_flow_backup_superviseviabackup" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L266", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_flow_backup_commitviamcinstall", - "target": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_conn" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L276", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_backup_commitviamcinstall", - "target": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_duration" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L363", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_flow_backup_servefileswithtimeout", - "target": "fileprovider" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L363", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_flow_backup_servefileswithtimeout", - "target": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_client" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow_backup.go", - "source_location": "L363", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_flow_backup_servefileswithtimeout", - "target": "ops_mdm_supervise_magic_internal_supervise_flow_backup_go_duration" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", - "target": "supervise_flow_backupcurrentconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", - "target": "supervise_flow_makelogger" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", - "target": "supervise_flow_supervise" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L69", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", - "target": "supervise_flow_superviseescalated" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", - "target": "supervise_flow_supervisefresh" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", - "target": "supervise_flow_unsupervise" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_supervise_flow_go", - "target": "supervise_options" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L40", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_flow_supervise", - "target": "supervise_options" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L69", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_flow_superviseescalated", - "target": "supervise_options" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L131", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_flow_supervisefresh", - "target": "supervise_options" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L189", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_flow_unsupervise", - "target": "supervise_options" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_supervise", - "target": "supervise_flow_superviseescalated" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_supervise", - "target": "supervise_flow_supervisefresh" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_superviseescalated", - "target": "supervise_flow_makelogger" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L132", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_supervisefresh", - "target": "supervise_flow_makelogger" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L190", - "weight": 1.0, - "confidence_score": 1.0, - "source": "supervise_flow_unsupervise", - "target": "supervise_flow_makelogger" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/supervise/flow.go", - "source_location": "L196", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "supervise_flow_backupcurrentconfig", - "target": "ops_mdm_supervise_magic_internal_supervise_flow_go_conn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_preflight_checks_go", - "target": "deviceinfo" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_preflight_checks_go", - "target": "preflight_checks_asstring" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", - "source_location": "L92", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_preflight_checks_go", - "target": "preflight_checks_checkiosversionatleast" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_preflight_checks_go", - "target": "preflight_checks_run" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_supervise_magic_internal_preflight_checks_go", - "target": "preflight_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", - "source_location": "L34", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "preflight_checks_run", - "target": "preflight_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", - "source_location": "L21", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "preflight_result", - "target": "deviceinfo" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", - "source_location": "L34", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "preflight_checks_run", - "target": "ops_mdm_supervise_magic_internal_preflight_checks_go_conn" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "preflight_checks_run", - "target": "preflight_checks_asstring" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/supervise-magic/internal/preflight/checks.go", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "preflight_checks_run", - "target": "preflight_checks_checkiosversionatleast" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L79", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_profiles_generate_unsupervised_profile_py", - "target": "profiles_generate_unsupervised_profile_batch_from_csv" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_profiles_generate_unsupervised_profile_py", - "target": "profiles_generate_unsupervised_profile_generate_profile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L89", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_profiles_generate_unsupervised_profile_py", - "target": "profiles_generate_unsupervised_profile_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_profiles_generate_unsupervised_profile_py", - "target": "profiles_generate_unsupervised_profile_validate_plist" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "ops_mdm_profiles_generate_unsupervised_profile_py", - "target": "profiles_generate_unsupervised_profile_write_profile" - }, - { - "relation": "references", - "context": "return_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_generate_profile", - "target": "bytes" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_generate_profile", - "target": "ops_mdm_profiles_generate_unsupervised_profile_py_str" - }, - { - "relation": "rationale_for", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_rationale_38", - "target": "profiles_generate_unsupervised_profile_generate_profile" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_write_profile", - "target": "profiles_generate_unsupervised_profile_generate_profile" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L79", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_batch_from_csv", - "target": "ops_mdm_profiles_generate_unsupervised_profile_py_str" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_write_profile", - "target": "ops_mdm_profiles_generate_unsupervised_profile_py_str" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_validate_plist", - "target": "bytes" - }, - { - "relation": "rationale_for", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_rationale_58", - "target": "profiles_generate_unsupervised_profile_validate_plist" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_validate_plist", - "target": "path" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_write_profile", - "target": "profiles_generate_unsupervised_profile_validate_plist" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/metro.config.js", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_metro_config_js", - "target": "path" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_allow_nonmodular_includes_js", - "target": "path" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-fmt-consteval-fix.js", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_fmt_consteval_fix_js", - "target": "path" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-ios.js", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_rebreak_protection_ios_js", - "target": "path" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-resource-bundle-signing-fix.js", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_resource_bundle_signing_fix_js", - "target": "path" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", - "target": "path" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/scripts/fix-embed-extension.js", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_scripts_fix_embed_extension_js", - "target": "path" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/scripts/play-submit.mjs", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_scripts_play_submit_mjs", - "target": "path" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magic-lock.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magic_lock_ts", - "target": "path" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "path" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "path" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-rive-asset-android.js", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "plugins_with_rive_asset_android_withriveassetandroid", - "target": "path" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L79", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_batch_from_csv", - "target": "path" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L101", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_main", - "target": "path" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_write_profile", - "target": "path" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_batch_from_csv", - "target": "profiles_generate_unsupervised_profile_write_profile" + "source": "locales_ar_landing", + "target": "locales_ar_landing_appname" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L107", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L88", "weight": 1.0, "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_main", - "target": "profiles_generate_unsupervised_profile_write_profile" + "source": "locales_ar_landing", + "target": "locales_ar_landing_start" }, { - "relation": "calls", - "context": "call", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_landing", + "target": "locales_ar_landing_tagline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_appheader", + "target": "locales_ar_landing_appname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_splash", + "target": "locales_ar_games_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_splash", + "target": "locales_ar_home_tagline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_splash", + "target": "locales_ar_splash_madeingermany" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_splash", + "target": "locales_ar_splash_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_splash", + "target": "locales_ar_splash_tagline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_applock", + "target": "locales_ar_applock_prompt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", "source_location": "L101", "weight": 1.0, "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_main", - "target": "profiles_generate_unsupervised_profile_batch_from_csv" + "source": "locales_ar_applock", + "target": "locales_ar_applock_signout_body" }, { - "relation": "references", - "context": "return_type", + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_applock", + "target": "locales_ar_applock_signout_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_applock", + "target": "locales_ar_applock_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_applock", + "target": "locales_ar_applock_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_applock", + "target": "locales_ar_applock_unlock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_applock", + "target": "locales_ar_games_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_applock", + "target": "locales_ar_games_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_appheader", + "target": "locales_ar_appheader_appname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_appheader", + "target": "locales_ar_appheader_editprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_appheader", + "target": "locales_ar_appheader_settings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_appheader", + "target": "locales_ar_appheader_signout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_appheader", + "target": "locales_ar_appheader_soslabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_appheader", + "target": "locales_ar_appheader_sossubtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_appheader", + "target": "locales_ar_appheader_sostagline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_headermenu", + "target": "locales_ar_appheader_settings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_headermenu", + "target": "locales_ar_games" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_headermenu", + "target": "locales_ar_headermenu_debug" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_headermenu", + "target": "locales_ar_headermenu_games" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_headermenu", + "target": "locales_ar_headermenu_logout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_headermenu", + "target": "locales_ar_headermenu_profile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_headermenu", + "target": "locales_ar_headermenu_settings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_headermenu", + "target": "locales_ar_tabs_profile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_tabs", + "target": "locales_ar_blocker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_tabs", + "target": "locales_ar_coach" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_tabs", + "target": "locales_ar_home" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_tabs", + "target": "locales_ar_tabs_blocker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_tabs", + "target": "locales_ar_tabs_chat" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_tabs", + "target": "locales_ar_tabs_coach" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_tabs", + "target": "locales_ar_tabs_home" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_tabs", + "target": "locales_ar_tabs_mail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_tabs", + "target": "locales_ar_tabs_profile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_games", + "target": "locales_ar_games_back_to_picker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_games", + "target": "locales_ar_games_last_score" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_games", + "target": "locales_ar_games_skeleton_footer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_games", + "target": "locales_ar_games_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_games", + "target": "locales_ar_games_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_games_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L271", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_games_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L262", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_permission_denied", + "target": "locales_ar_games_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_games_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_games_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_games_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_greeting_day" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_greeting_evening" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_greeting_morning" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_quick_access" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_quote_of_day" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_start" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_stats_chats" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_stats_mails" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_stats_urges" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_streak_days_one" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_streak_days_other" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_streak_start" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L135", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_home", + "target": "locales_ar_home_tagline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_error" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_feedback_saved" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_input_placeholder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_lyra" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_modebadge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_new_chat" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_online" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_placeholder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_recording" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_speaking" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_thinking" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_transcribing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_welcome" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_coach_welcome_back" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach", + "target": "locales_ar_lyra_welcome" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L442", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_audio_disable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L440", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_audio_loading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L439", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_audio_play" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L441", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_audio_stop" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L409", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_diga_choice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L412", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_diga_code" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L436", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_done" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L418", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_payment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L415", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L403", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_privacy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L421", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L427", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_protection_lock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L433", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_protection_lock_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L424", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_protection_url" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L430", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_protection_url_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L400", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_lyra", + "target": "locales_ar_lyra_welcome" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L399", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_coach_lyra" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_modebadge", + "target": "locales_ar_modebadge_coach" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_coach_modebadge", + "target": "locales_ar_modebadge_sos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L284", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_activate_app_lock_failed_msg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L283", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_activate_app_lock_failed_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_activate_settings_btn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_activate_url_failed_msg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_activate_url_failed_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_activation_failed_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_domain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L376", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_mail_help" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L377", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_mail_invalid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L374", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_mail_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L375", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_mail_placeholder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_sheet_add_failed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L200", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_sheet_already_global" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_sheet_confirm_permanent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L378", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_sheet_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L190", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_sheet_help" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_sheet_invalid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L187", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_sheet_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_sheet_placeholder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_sheet_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_sheet_warning_free" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_sheet_warning_pro" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L373", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_web_help" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L371", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_web_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L372", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_add_web_placeholder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L367", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_app_lock_coming_soon_badge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L368", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_app_lock_coming_soon_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_cooldown_banner_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L364", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_cooldown_elapsed_message" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L365", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_cooldown_elapsed_message_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L366", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_cooldown_elapsed_open_settings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_cooldown_elapsed_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L381", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_count_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_custom_domains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_custom_filter_overview_count" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_custom_filter_overview_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_actionsheet_message" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_actionsheet_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_breathe_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L210", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_bullet1_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_bullet1_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_bullet2_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L211", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_bullet2_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_bullet3_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L213", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_bullet3_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_cancel_failed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_failed_msg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_heading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_intro" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L216", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_start_anyway" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L204", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_start_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_starting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L207", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_deactivation_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_delta_month" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L330", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_delta_week" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L290", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_active_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L305", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_deactivate_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L291", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_domains_blocked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L288", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_done" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L300", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_layer_a11y_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L299", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_layer_a11y_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L296", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_layer_applock_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L295", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_layer_applock_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L302", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_layer_tamper_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L301", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_layer_tamper_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L294", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_layer_url_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_layer_url_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L298", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_layer_vpn_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L297", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_layer_vpn_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L292", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_layers_heading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L304", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_lyra_cta_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L303", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_lyra_cta_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L289", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_details_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_add_a11y" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_badge_active" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_badge_pruefung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_badge_rejected" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_badge_voting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_btn_erneut" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_btn_freigeben" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_btn_in_abstimmung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_btn_rebreak_prueft" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_confirm_community_first" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L237", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_confirm_community_message" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L234", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_confirm_community_resubmit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_confirm_legend_first" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_confirm_legend_message" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_confirm_legend_resubmit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_empty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_limit_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_limit_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L219", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_section_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_success_community_message" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L239", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_success_community_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L240", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_success_legend_message" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_domain_success_legend_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L390", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_empty_mail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L389", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_empty_web" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L387", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_error_duplicate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L385", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_error_invalid_input" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L384", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_error_invalid_mail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L383", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_error_mail_limit_reached" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L386", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_error_public_domain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L382", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_error_web_limit_reached" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L270", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_family_controls_error" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L345", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq1_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L344", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq1_q" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L347", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq2_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L346", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq2_q" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L349", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq3_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L348", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq3_q" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L351", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq4_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L350", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq4_q" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L353", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq5_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L352", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq5_q" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L355", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq6_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L354", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq6_q" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L357", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq7_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L356", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq7_q" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L359", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq8_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L358", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq8_q" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L361", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq9_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L360", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq9_q" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L343", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_faq_heading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_filter_active_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_filter_inactive_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_filter_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_help_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L388", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kind_override_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L340", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_avg_per_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L341", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_avg_wait" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L342", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_days_suffix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L328", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_global_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L329", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_global_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L339", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_in_review" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L338", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_in_vote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L334", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_my_submissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L335", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_status_active" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L337", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_status_review" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L336", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_status_vote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L333", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_submissions_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L332", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_kpi_submissions_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L326", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_layers_a11y_subtitle_active" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L327", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_layers_a11y_subtitle_inactive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_layers_app_lock_locked_hint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L310", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_layers_app_lock_subtitle_active" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L311", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_layers_app_lock_subtitle_inactive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L309", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_layers_app_lock_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L312", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_layers_app_lock_warning" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L307", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_layers_url_filter_subtitle_active" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L308", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_layers_url_filter_subtitle_inactive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L306", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_layers_url_filter_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L396", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_mdm_deactivate_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L395", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_mdm_deactivate_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L394", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_mdm_info_hint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L362", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_more_info_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_permission_denied" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_preview_invalid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L192", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_preview_mail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_preview_web" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L245", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_card_locked_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_card_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L282", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_off_later" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L280", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_off_message" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L279", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_off_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_settings_a11y" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_stat_domains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_stat_method" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_stat_method_dns" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L393", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_stat_method_mdm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L255", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_stat_method_native" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L392", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_stat_method_nefilter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_stat_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L257", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_stat_status_live" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L247", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_subtitle_cooldown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L248", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_subtitle_free" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_subtitle_inactive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_subtitle_legend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L391", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_subtitle_mdm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_protection_subtitle_pro" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L281", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_reactivate_btn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L317", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_code_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L323", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_confirm_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L325", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_confirmed_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L324", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_confirmed_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L315", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L316", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_generate_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L322", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_open_settings_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L318", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_step1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L319", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_step2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L320", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_step3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L321", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_step_note" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L314", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_screentime_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L379", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_section_domains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_section_mails" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_status_active" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_status_approved" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_status_inactive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_status_pending" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_status_rejected" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_subtitle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L286", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_sync_list_failed_msg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L285", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_sync_list_failed_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_tamper_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_tamper_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L370", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_type_mail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L369", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_type_web" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_upgrade_alert_desc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L242", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker", + "target": "locales_ar_blocker_upgrade_alert_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_permission_denied", + "target": "locales_ar_permission_denied_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_permission_denied", + "target": "locales_ar_permission_denied_fallback_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_permission_denied", + "target": "locales_ar_permission_denied_fallback_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_permission_denied", + "target": "locales_ar_permission_denied_retry_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L265", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_permission_denied", + "target": "locales_ar_permission_denied_retry_loading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_permission_denied", + "target": "locales_ar_permission_denied_settings_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L262", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_permission_denied", + "target": "locales_ar_permission_denied_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_permission_denied", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L273", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_permission_denied_retry_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_permission_denied_retry_loading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L275", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_permission_denied_settings_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L276", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_permission_denied_fallback_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L277", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_permission_denied_fallback_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_family_controls_error_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L277", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_family_controls_error_fallback_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L276", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_family_controls_error_fallback_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L273", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_family_controls_error_retry_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_family_controls_error_retry_loading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L275", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_family_controls_error_settings_cta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L271", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_family_controls_error_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_blocker_family_controls_error", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L480", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_code", + "target": "locales_ar_blocker_error_invalid_input" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L467", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_lyra_diga_choice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L472", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_lyra_diga_code" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L510", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_lyra_done" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L511", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_lyra_payment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L482", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_lyra_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L450", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_lyra_privacy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L516", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_lyra_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L444", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_lyra_welcome" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L467", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_onboarding_diga_choice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L472", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_onboarding_diga_code" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L399", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_onboarding_lyra" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L457", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_onboarding_nickname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L511", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_onboarding_payment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L482", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_onboarding_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L450", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_onboarding_privacy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L516", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_onboarding_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L444", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding", + "target": "locales_ar_onboarding_welcome" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L442", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_audio_disable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L440", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_audio_loading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L439", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_audio_play" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L441", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_audio_stop" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L409", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_diga_choice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L412", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_diga_code" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L436", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_done" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L406", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_nickname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L418", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_payment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L415", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L403", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_privacy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L421", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L427", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_protection_lock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L433", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_protection_lock_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L424", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_protection_url" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L430", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_protection_url_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L400", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_lyra", + "target": "locales_ar_lyra_welcome" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L401", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_welcome", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L401", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_welcome", + "target": "locales_ar_welcome_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L446", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_welcome", + "target": "locales_ar_welcome_bullet_anon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L448", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_welcome", + "target": "locales_ar_welcome_bullet_community" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L447", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_welcome", + "target": "locales_ar_welcome_bullet_protect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_privacy", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_privacy", + "target": "locales_ar_privacy_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L452", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_privacy", + "target": "locales_ar_privacy_promise_alias" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L455", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_privacy", + "target": "locales_ar_privacy_promise_germany" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L453", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_privacy", + "target": "locales_ar_privacy_promise_minimal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L454", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_privacy", + "target": "locales_ar_privacy_promise_no_ads" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L407", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_nickname", + "target": "locales_ar_nickname_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L410", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_choice", + "target": "locales_ar_diga_choice_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L469", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_choice", + "target": "locales_ar_diga_choice_cta_no" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L468", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_choice", + "target": "locales_ar_diga_choice_cta_yes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L470", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_choice", + "target": "locales_ar_nickname_hint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L410", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_choice", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L413", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_code", + "target": "locales_ar_diga_code_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L474", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_code", + "target": "locales_ar_diga_code_cta_secondary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L478", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_code", + "target": "locales_ar_diga_code_error_already_used" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L479", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_code", + "target": "locales_ar_diga_code_error_expired" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L477", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_code", + "target": "locales_ar_diga_code_error_not_found" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L476", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_code", + "target": "locales_ar_nickname_hint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L475", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_code", + "target": "locales_ar_nickname_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L413", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_diga_code", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L485", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_billing_monthly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L487", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_billing_savings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L486", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_billing_yearly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L416", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L484", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_cta_legend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L483", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_cta_trial" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L508", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_disclaimer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L501", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_feat_blocklist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L504", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_feat_community" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L505", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_feat_legend_all_pro" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L506", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_feat_legend_multi_device" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L507", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_feat_legend_voice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L502", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_feat_lyra" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L503", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_feat_mail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L509", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_hardship_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L497", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_legend_anchor_yearly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L495", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_legend_price_monthly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L496", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_legend_price_yearly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L499", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_legend_subline_monthly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L500", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_legend_subline_yearly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L498", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_legend_total_yearly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L491", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_pro_anchor_yearly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L488", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_pro_badge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L489", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_pro_price_monthly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L490", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_pro_price_yearly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L493", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_pro_subline_monthly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L494", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_pro_subline_yearly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L492", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_plan", + "target": "locales_ar_plan_tier_pro_total_yearly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L437", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_done", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L419", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_payment", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L422", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L428", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection_lock", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L434", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection_lock_android", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L425", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection_url", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L431", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection_url_android", + "target": "locales_ar_plan_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L419", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_payment", + "target": "locales_ar_payment_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L512", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_payment", + "target": "locales_ar_payment_cta_dev_skip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L514", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_payment", + "target": "locales_ar_payment_dev_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L513", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_payment", + "target": "locales_ar_payment_dev_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L528", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_android_a11y_pending_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L527", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_android_a11y_pending_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L534", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_android_restart_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L536", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_android_restart_later" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L535", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_android_restart_now" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L533", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_android_restart_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L537", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_applock_failed_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L422", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L519", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_cta_check_a11y" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L518", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_cta_open_a11y" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L532", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_dialog_button_a11y_toggle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L529", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_dialog_button_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L530", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_dialog_button_continue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L531", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_dialog_button_vpn_ok" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L521", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_lock_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L523", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_lock_title_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L524", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_tap_marker_hint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L526", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_tap_marker_hint_android_a11y" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L525", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_tap_marker_hint_android_vpn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L520", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_url_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L522", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection", + "target": "locales_ar_protection_url_title_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L425", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection_url", + "target": "locales_ar_protection_url_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L428", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection_lock", + "target": "locales_ar_protection_lock_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L431", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection_url_android", + "target": "locales_ar_protection_url_android_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L434", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_protection_lock_android", + "target": "locales_ar_protection_lock_android_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L437", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_lyra_done", + "target": "locales_ar_done_body" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L446", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_welcome", + "target": "locales_ar_welcome_bullet_anon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L448", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_welcome", + "target": "locales_ar_welcome_bullet_community" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L447", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_welcome", + "target": "locales_ar_welcome_bullet_protect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L445", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_ar_onboarding_welcome", + "target": "locales_ar_welcome_cta_primary" + }, + { + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/mdm/profiles/generate-unsupervised-profile.py", - "source_location": "L89", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L451", "weight": 1.0, "confidence_score": 1.0, - "source": "profiles_generate_unsupervised_profile_main", - "target": "ops_mdm_profiles_generate_unsupervised_profile_py_int" + "source": "locales_ar_onboarding_privacy", + "target": "locales_ar_privacy_cta_primary" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/service-config.template.json", - "source_location": "L2", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L452", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_service_config_template_json", - "target": "pir_server_service_config_template_comment" + "source": "locales_ar_onboarding_privacy", + "target": "locales_ar_privacy_promise_alias" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/service-config.template.json", - "source_location": "L3", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L455", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_service_config_template_json", - "target": "pir_server_service_config_template_issuerrequesturi" + "source": "locales_ar_onboarding_privacy", + "target": "locales_ar_privacy_promise_germany" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/service-config.template.json", - "source_location": "L10", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L453", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_service_config_template_json", - "target": "pir_server_service_config_template_usecases" + "source": "locales_ar_onboarding_privacy", + "target": "locales_ar_privacy_promise_minimal" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/service-config.template.json", - "source_location": "L4", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L454", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_service_config_template_json", - "target": "pir_server_service_config_template_users" + "source": "locales_ar_onboarding_privacy", + "target": "locales_ar_privacy_promise_no_ads" }, { - "relation": "defines", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/build-and-deploy.sh", - "source_location": "L38", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L458", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_build_and_deploy_sh", - "target": "pir_server_build_and_deploy_log" + "source": "locales_ar_onboarding_nickname", + "target": "locales_ar_nickname_cta_primary" }, { - "relation": "defines", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/build-and-deploy.sh", - "source_location": "L39", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L464", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_build_and_deploy_sh", - "target": "pir_server_build_and_deploy_log_err" + "source": "locales_ar_onboarding_nickname", + "target": "locales_ar_nickname_error_profanity" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/build-and-deploy.sh", - "source_location": "L1", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L465", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_build_and_deploy_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_ops_pir_server_build_and_deploy_sh__entry" + "source": "locales_ar_onboarding_nickname", + "target": "locales_ar_nickname_error_taken" }, { - "relation": "calls", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/build-and-deploy.sh", - "source_location": "L41", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L463", "weight": 1.0, - "context": "call", "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_pir_server_build_and_deploy_sh__entry", - "target": "pir_server_build_and_deploy_log" + "source": "locales_ar_onboarding_nickname", + "target": "locales_ar_nickname_error_too_long" }, { - "relation": "calls", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/build-and-deploy.sh", - "source_location": "L57", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L462", "weight": 1.0, - "context": "call", "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_ops_pir_server_build_and_deploy_sh__entry", - "target": "pir_server_build_and_deploy_log_err" + "source": "locales_ar_onboarding_nickname", + "target": "locales_ar_nickname_error_too_short" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/gen-test-input.sh", - "source_location": "L1", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L461", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_gen_test_input_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_ops_pir_server_gen_test_input_sh__entry" + "source": "locales_ar_onboarding_nickname", + "target": "locales_ar_nickname_hint" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/process-config.json", - "source_location": "L10", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L459", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_process_config_json", - "target": "pir_server_process_config_databasetype" + "source": "locales_ar_onboarding_nickname", + "target": "locales_ar_nickname_label" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/process-config.json", - "source_location": "L2", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L460", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_process_config_json", - "target": "pir_server_process_config_inputdatabase" + "source": "locales_ar_onboarding_nickname", + "target": "locales_ar_nickname_placeholder" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/process-config.json", - "source_location": "L3", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L469", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_process_config_json", - "target": "pir_server_process_config_outputdatabase" + "source": "locales_ar_onboarding_diga_choice", + "target": "locales_ar_diga_choice_cta_no" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/process-config.json", - "source_location": "L4", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L468", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_process_config_json", - "target": "pir_server_process_config_outputpirparameters" + "source": "locales_ar_onboarding_diga_choice", + "target": "locales_ar_diga_choice_cta_yes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/process-config.json", - "source_location": "L5", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L470", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_process_config_json", - "target": "pir_server_process_config_rlweparameters" + "source": "locales_ar_onboarding_diga_choice", + "target": "locales_ar_diga_choice_hint" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/process-config.json", - "source_location": "L6", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L473", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_process_config_json", - "target": "pir_server_process_config_sharding" + "source": "locales_ar_onboarding_diga_code", + "target": "locales_ar_diga_code_cta_primary" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/process-config.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L474", "weight": 1.0, "confidence_score": 1.0, - "source": "ops_pir_server_process_config_json", - "target": "pir_server_process_config_trialspershard" + "source": "locales_ar_onboarding_diga_code", + "target": "locales_ar_diga_code_cta_secondary" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "ops/pir-server/process-config.json", - "source_location": "L7", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L478", "weight": 1.0, "confidence_score": 1.0, - "source": "pir_server_process_config_sharding", - "target": "pir_server_process_config_sharding_entrycountpershard" + "source": "locales_ar_onboarding_diga_code", + "target": "locales_ar_diga_code_error_already_used" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas-release.sh", - "source_location": "L1", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L479", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_eas_release_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_eas_release_sh__entry" + "source": "locales_ar_onboarding_diga_code", + "target": "locales_ar_diga_code_error_expired" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/install-ios.sh", - "source_location": "L1", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L480", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_install_ios_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_install_ios_sh__entry" + "source": "locales_ar_onboarding_diga_code", + "target": "locales_ar_diga_code_error_invalid_input" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L6", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L477", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_eas_json", - "target": "rebreak_native_eas_build" + "source": "locales_ar_onboarding_diga_code", + "target": "locales_ar_diga_code_error_not_found" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L2", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L476", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_eas_json", - "target": "rebreak_native_eas_cli" + "source": "locales_ar_onboarding_diga_code", + "target": "locales_ar_diga_code_hint" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L52", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L475", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_eas_json", - "target": "rebreak_native_eas_submit" + "source": "locales_ar_onboarding_diga_code", + "target": "locales_ar_diga_code_label" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L4", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L485", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_cli", - "target": "rebreak_native_eas_cli_appversionsource" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_billing_monthly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L3", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L487", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_cli", - "target": "rebreak_native_eas_cli_version" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_billing_savings" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L7", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L486", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build", - "target": "rebreak_native_eas_build_development" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_billing_yearly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L21", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L484", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build", - "target": "rebreak_native_eas_build_preview" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_cta_legend" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L36", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L483", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build", - "target": "rebreak_native_eas_build_production" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_cta_trial" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L8", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L508", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_development", - "target": "rebreak_native_eas_development_developmentclient" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_disclaimer" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L17", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L501", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_development", - "target": "rebreak_native_eas_preview_android" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_feat_blocklist" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L504", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_development", - "target": "rebreak_native_eas_preview_distribution" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_feat_community" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L10", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L505", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_development", - "target": "rebreak_native_eas_preview_env" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_feat_legend_all_pro" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L14", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L506", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_development", - "target": "rebreak_native_eas_preview_ios" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_feat_legend_multi_device" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L38", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L507", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_env", - "target": "rebreak_native_eas_env_expo_public_api_url" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_feat_legend_voice" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L40", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L502", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_env", - "target": "rebreak_native_eas_env_rebreak_enable_family_controls" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_feat_lyra" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L15", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L503", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_ios", - "target": "rebreak_native_eas_ios_simulator" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_feat_mail" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L47", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L509", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_android", - "target": "rebreak_native_eas_android_buildtype" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_hardship_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L31", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L497", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_preview", - "target": "rebreak_native_eas_preview_android" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_legend_anchor_yearly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L22", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L495", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_preview", - "target": "rebreak_native_eas_preview_distribution" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_legend_price_monthly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L23", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L496", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_preview", - "target": "rebreak_native_eas_preview_env" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_legend_price_yearly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L27", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L499", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_preview", - "target": "rebreak_native_eas_preview_ios" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_legend_subline_monthly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L37", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L500", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_production", - "target": "rebreak_native_eas_preview_env" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_legend_subline_yearly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L39", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L498", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_env", - "target": "rebreak_native_eas_env_expo_public_enable_debug" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_legend_total_yearly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L54", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L491", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_production", - "target": "rebreak_native_eas_preview_ios" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_pro_anchor_yearly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L55", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L488", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_ios", - "target": "rebreak_native_eas_ios_appleid" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_pro_badge" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L57", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L489", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_ios", - "target": "rebreak_native_eas_ios_appleteamid" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_pro_price_monthly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L56", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L490", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_ios", - "target": "rebreak_native_eas_ios_ascappid" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_pro_price_yearly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L44", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L493", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_ios", - "target": "rebreak_native_eas_ios_autoincrement" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_pro_subline_monthly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L43", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L494", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_ios", - "target": "rebreak_native_eas_ios_resourceclass" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_pro_subline_yearly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L48", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L492", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_android", - "target": "rebreak_native_eas_ios_autoincrement" + "source": "locales_ar_onboarding_plan", + "target": "locales_ar_plan_tier_pro_total_yearly" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L59", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L512", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_build_production", - "target": "rebreak_native_eas_preview_android" + "source": "locales_ar_onboarding_payment", + "target": "locales_ar_payment_cta_dev_skip" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L60", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L514", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_android", - "target": "rebreak_native_eas_android_serviceaccountkeypath" + "source": "locales_ar_onboarding_payment", + "target": "locales_ar_payment_dev_body" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L61", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L513", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_preview_android", - "target": "rebreak_native_eas_android_track" + "source": "locales_ar_onboarding_payment", + "target": "locales_ar_payment_dev_label" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/eas.json", - "source_location": "L53", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L528", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_eas_submit", - "target": "rebreak_native_eas_build_production" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_android_a11y_pending_body" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/metro.config.js", - "source_location": "L11", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L527", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_metro_config_js", - "target": "rebreak_native_metro_config_config" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_android_a11y_pending_title" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/metro.config.js", - "source_location": "L4", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L534", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_metro_config_js", - "target": "rebreak_native_metro_config_getdefaultconfig" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_android_restart_body" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/metro.config.js", - "source_location": "L9", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L536", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_metro_config_js", - "target": "rebreak_native_metro_config_monoreporoot" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_android_restart_later" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/metro.config.js", - "source_location": "L6", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L535", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_metro_config_js", - "target": "rebreak_native_metro_config_path" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_android_restart_now" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/metro.config.js", - "source_location": "L5", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L533", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_metro_config_js", - "target": "rebreak_native_metro_config_withnativewind" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_android_restart_title" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L3", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L537", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_tsconfig_json", - "target": "rebreak_native_tsconfig_compileroptions" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_applock_failed_title" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L36", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L519", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_tsconfig_json", - "target": "rebreak_native_tsconfig_exclude" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_cta_check_a11y" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L2", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L518", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_tsconfig_json", - "target": "rebreak_native_tsconfig_extends" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_cta_open_a11y" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L29", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L517", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_tsconfig_json", - "target": "rebreak_native_tsconfig_include" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_cta_primary" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L5", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L532", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_tsconfig_compileroptions", - "target": "rebreak_native_tsconfig_compileroptions_paths" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_dialog_button_a11y_toggle" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L4", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L529", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_tsconfig_compileroptions", - "target": "rebreak_native_tsconfig_compileroptions_strict" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_dialog_button_allow" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L25", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L530", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_tsconfig_compileroptions", - "target": "rebreak_native_tsconfig_compileroptions_types" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_dialog_button_continue" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L6", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L531", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_tsconfig_compileroptions_paths", - "target": "rebreak_native_tsconfig_paths" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_dialog_button_vpn_ok" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L521", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_tsconfig_compileroptions_paths", - "target": "rebreak_native_tsconfig_paths_components" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_lock_title" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L12", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L523", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_tsconfig_compileroptions_paths", - "target": "rebreak_native_tsconfig_paths_hooks" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_lock_title_android" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L18", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L524", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_tsconfig_compileroptions_paths", - "target": "rebreak_native_tsconfig_paths_lib" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_tap_marker_hint" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L21", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L526", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_tsconfig_compileroptions_paths", - "target": "rebreak_native_tsconfig_paths_locales" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_tap_marker_hint_android_a11y" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tsconfig.json", - "source_location": "L15", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L525", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_native_tsconfig_compileroptions_paths", - "target": "rebreak_native_tsconfig_paths_stores" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_tap_marker_hint_android_vpn" }, { - "relation": "defines", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/clean-ios.sh", - "source_location": "L45", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L520", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_clean_ios_sh", - "target": "rebreak_native_clean_ios_rebreak_enable_family_controls" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_url_title" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/clean-ios.sh", - "source_location": "L1", + "source_file": "apps/rebreak-native/locales/ar.json", + "source_location": "L522", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_clean_ios_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_clean_ios_sh__entry" + "source": "locales_ar_onboarding_protection", + "target": "locales_ar_protection_url_title_android" }, { "relation": "contains", @@ -201369,6 +233252,17 @@ "source": "apps_rebreak_native_app_settings_tsx", "target": "app_settings_subscriptionsheetprops" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/settings.tsx", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_settings_tsx", + "target": "apps_rebreak_native_components_appheader_tsx" + }, { "relation": "imports_from", "context": "import", @@ -201380,6 +233274,28 @@ "source": "apps_rebreak_native_app_settings_tsx", "target": "apps_rebreak_native_components_button_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/settings.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_settings_tsx", + "target": "apps_rebreak_native_components_devices_magicsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/settings.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_settings_tsx", + "target": "apps_rebreak_native_components_icons_languageicon_tsx" + }, { "relation": "imports_from", "context": "import", @@ -201391,6 +233307,17 @@ "source": "apps_rebreak_native_app_settings_tsx", "target": "apps_rebreak_native_hooks_useme_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/settings.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_settings_tsx", + "target": "apps_rebreak_native_hooks_useuserplan_ts" + }, { "relation": "imports_from", "context": "import", @@ -201413,6 +233340,17 @@ "source": "apps_rebreak_native_app_settings_tsx", "target": "apps_rebreak_native_lib_theme_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/settings.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_settings_tsx", + "target": "apps_rebreak_native_stores_applock_ts" + }, { "relation": "imports_from", "context": "import", @@ -201457,6 +233395,17 @@ "source": "apps_rebreak_native_app_settings_tsx", "target": "apps_rebreak_native_stores_theme_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/settings.tsx", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_settings_tsx", + "target": "components_appheader_appheader" + }, { "relation": "imports", "context": "import", @@ -201545,6 +233494,17 @@ "source": "apps_rebreak_native_app_settings_tsx", "target": "lib_theme_usecolors" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/settings.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_settings_tsx", + "target": "stores_applock_useapplockstore" + }, { "relation": "imports", "context": "import", @@ -201644,6 +233604,17 @@ "source": "app_settings_settingsscreen", "target": "lib_theme_usecolors" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/settings.tsx", + "source_location": "L163", + "weight": 1.0, + "source": "app_settings_settingsscreen", + "target": "stores_applock_useapplockstore" + }, { "relation": "calls", "context": "call", @@ -201688,6 +233659,81 @@ "source": "app_settings_settingsscreen", "target": "stores_theme_usethemestore" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/index.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_index_tsx", + "target": "app_index_ease_out" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/index.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_index_tsx", + "target": "app_index_landingscreen" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/index.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_index_tsx", + "target": "apps_rebreak_native_components_brandsplash_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/index.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_index_tsx", + "target": "apps_rebreak_native_stores_auth_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/index.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_index_tsx", + "target": "components_brandsplash_brandsplash" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/index.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_index_tsx", + "target": "stores_auth_useauthstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/index.tsx", + "source_location": "L23", + "weight": 1.0, + "source": "app_index_landingscreen", + "target": "stores_auth_useauthstore" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -201758,6 +233804,39 @@ "source": "apps_rebreak_native_app_dm_tsx", "target": "app_dm_mergemessages" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/dm.tsx", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_dm_tsx", + "target": "apps_rebreak_native_components_chat_chatbubble_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/dm.tsx", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_dm_tsx", + "target": "apps_rebreak_native_components_chat_chatheaderstatus_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/dm.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_dm_tsx", + "target": "apps_rebreak_native_components_chat_medialightbox_tsx" + }, { "relation": "imports_from", "context": "import", @@ -201780,6 +233859,17 @@ "source": "apps_rebreak_native_app_dm_tsx", "target": "apps_rebreak_native_components_chat_voicerecordingbar_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/dm.tsx", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_dm_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, { "relation": "imports_from", "context": "import", @@ -201802,6 +233892,17 @@ "source": "apps_rebreak_native_app_dm_tsx", "target": "apps_rebreak_native_hooks_usechatrealtime_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/dm.tsx", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_dm_tsx", + "target": "apps_rebreak_native_hooks_usedmtyping_ts" + }, { "relation": "imports_from", "context": "import", @@ -202187,6 +234288,656 @@ "source": "app_dm_dmscreen", "target": "stores_theme_usethemestore" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_androida11yresettoggle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1285", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_cooldowntestmodetoggle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_debugscreen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1354", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_debugstub" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L845", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_logline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_lyraemotionpreviewcard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1058", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_onboarding_steps" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1061", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_onboardingresettoggle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1059", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_onboardingstepvalue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L898", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_pad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L923", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_plan_color" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L929", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_planoverridetoggle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L921", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_plans" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_preview_emotions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L723", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_protectionlogcard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L627", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_realtimelogcard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_realtimestatuscard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L294", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_redirecttestcard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L902", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_relativeseconds" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L910", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_stateaccent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L581", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "app_debug_statusrow" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "apps_rebreak_native_components_plan_planchangesheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "apps_rebreak_native_lib_protection_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "apps_rebreak_native_stores_realtimedebug_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "components_riveavatar_emotion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "components_riveavatar_emotion_animations" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "components_riveavatar_existing_timelines" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "hooks_useme_invalidateme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "hooks_useme_onboardingstep" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "hooks_useme_plan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "hooks_useme_useme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "lib_protection_getcooldowntestmode" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "lib_protection_protection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "lib_protection_setcooldowntestmode" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "lib_supabase_supabase" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "plan_planchangesheet_planchangesheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "stores_realtimedebug_logentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_debug_tsx", + "target": "stores_realtimedebug_userealtimedebugstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L28", + "weight": 1.0, + "source": "app_debug_debugscreen", + "target": "hooks_useme_useme" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L27", + "weight": 1.0, + "source": "app_debug_debugscreen", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L189", + "weight": 1.0, + "source": "app_debug_lyraemotionpreviewcard", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L295", + "weight": 1.0, + "source": "app_debug_redirecttestcard", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L444", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_debug_realtimestatuscard", + "target": "app_debug_relativeseconds" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L438", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_debug_realtimestatuscard", + "target": "app_debug_stateaccent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L405", + "weight": 1.0, + "source": "app_debug_realtimestatuscard", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L406", + "weight": 1.0, + "source": "app_debug_realtimestatuscard", + "target": "stores_realtimedebug_userealtimedebugstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L628", + "weight": 1.0, + "source": "app_debug_realtimelogcard", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L629", + "weight": 1.0, + "source": "app_debug_realtimelogcard", + "target": "stores_realtimedebug_userealtimedebugstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L724", + "weight": 1.0, + "source": "app_debug_protectionlogcard", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L853", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_debug_logline", + "target": "app_debug_pad" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L35", + "weight": 1.0, + "source": "views_hubview_usecountdown", + "target": "app_debug_pad" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1286", + "weight": 1.0, + "source": "app_debug_cooldowntestmodetoggle", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/debug.tsx", + "source_location": "L1363", + "weight": 1.0, + "source": "app_debug_debugstub", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -202237,6 +234988,17 @@ "source": "apps_rebreak_native_app_games_tsx", "target": "app_games_lastscore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/games.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_games_tsx", + "target": "apps_rebreak_native_components_games_gamecard_tsx" + }, { "relation": "imports_from", "context": "import", @@ -202491,6 +235253,17 @@ "source": "apps_rebreak_native_app_devices_tsx", "target": "app_devices_statusbadge" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_devices_tsx", + "target": "apps_rebreak_native_components_appheader_tsx" + }, { "relation": "imports_from", "context": "import", @@ -202507,11 +235280,22 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L32", + "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, "source": "apps_rebreak_native_app_devices_tsx", - "target": "apps_rebreak_native_components_devices_addmacsheet_tsx" + "target": "apps_rebreak_native_components_devices_devicedetailsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_devices_tsx", + "target": "apps_rebreak_native_components_devices_devicedistributionbar_tsx" }, { "relation": "imports_from", @@ -202535,6 +235319,39 @@ "source": "apps_rebreak_native_app_devices_tsx", "target": "apps_rebreak_native_components_devices_deviceprogressbar_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_devices_tsx", + "target": "apps_rebreak_native_components_devices_deviceslotdonut_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_devices_tsx", + "target": "apps_rebreak_native_components_devices_devicestatuspill_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_devices_tsx", + "target": "apps_rebreak_native_components_devices_magicsheet_tsx" + }, { "relation": "imports_from", "context": "import", @@ -202557,6 +235374,17 @@ "source": "apps_rebreak_native_app_devices_tsx", "target": "apps_rebreak_native_hooks_useuserdevicesrealtime_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_devices_tsx", + "target": "apps_rebreak_native_hooks_useuserplan_ts" + }, { "relation": "imports_from", "context": "import", @@ -202595,22 +235423,22 @@ "context": "import", "confidence": "EXTRACTED", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L11", + "source_location": "L33", "weight": 1.0, "confidence_score": 1.0, "source": "apps_rebreak_native_app_devices_tsx", - "target": "components_button_button" + "target": "components_appheader_appheader" }, { "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L32", + "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, "source": "apps_rebreak_native_app_devices_tsx", - "target": "devices_addmacsheet_addmacsheet" + "target": "components_button_button" }, { "relation": "imports_from", @@ -202634,6 +235462,17 @@ "source": "apps_rebreak_native_app_devices_tsx", "target": "devices_devicedetailsheet_devicedetail" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_devices_tsx", + "target": "devices_devicedetailsheet_devicedetailsheet" + }, { "relation": "imports_from", "context": "import", @@ -202700,6 +235539,28 @@ "source": "apps_rebreak_native_app_devices_tsx", "target": "devices_magicsheet_magicsheet" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_devices_tsx", + "target": "hooks_useprotecteddevicesrealtime_useprotecteddevicesrealtime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_devices_tsx", + "target": "hooks_useuserdevicesrealtime_useuserdevicesrealtime" + }, { "relation": "imports_from", "context": "import", @@ -202744,6 +235605,17 @@ "source": "apps_rebreak_native_app_devices_tsx", "target": "stores_devices_userdevice" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_devices_tsx", + "target": "stores_protecteddevices_protecteddevice" + }, { "relation": "imports", "context": "import", @@ -202766,28 +235638,6 @@ "source": "app_devices_mobiledevicerow", "target": "app_devices_formatcountdown" }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L210", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_mobiledevicerow", - "target": "app_devices_mobileicon" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/devices.tsx", - "source_location": "L373", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_devices_protecteddevicerow", - "target": "app_devices_protecteddeviceicon" - }, { "relation": "calls", "context": "call", @@ -202832,6 +235682,17 @@ "source": "app_devices_statusbadge", "target": "lib_theme_usecolors" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L210", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_mobiledevicerow", + "target": "app_devices_mobileicon" + }, { "relation": "calls", "context": "call", @@ -202854,6 +235715,17 @@ "source": "app_devices_mobiledevicerow", "target": "lib_theme_usecolors" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L373", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_devices_protecteddevicerow", + "target": "app_devices_protecteddeviceicon" + }, { "relation": "calls", "context": "call", @@ -202886,28 +235758,6 @@ "source": "apps_rebreak_native_stores_protecteddevices_ts", "target": "app_devices_protecteddevicerow" }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/devices.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_devices_get_ts", - "target": "app_devices_protecteddevicerow" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "app_devices_protecteddevicerow" - }, { "relation": "calls", "context": "call", @@ -202952,6 +235802,28 @@ "source": "app_devices_devicesscreen", "target": "apps_rebreak_native_hooks_useuserdevicesrealtime_ts" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L497", + "weight": 1.0, + "source": "app_devices_devicesscreen", + "target": "hooks_useprotecteddevicesrealtime_useprotecteddevicesrealtime" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/devices.tsx", + "source_location": "L498", + "weight": 1.0, + "source": "app_devices_devicesscreen", + "target": "hooks_useuserdevicesrealtime_useuserdevicesrealtime" + }, { "relation": "calls", "context": "call", @@ -203056,6 +235928,17 @@ "source": "apps_rebreak_native_app_room_tsx", "target": "app_room_roomsettingsmodal" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/room.tsx", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_room_tsx", + "target": "apps_rebreak_native_components_chat_chatbubble_tsx" + }, { "relation": "imports_from", "context": "import", @@ -203089,6 +235972,17 @@ "source": "apps_rebreak_native_app_room_tsx", "target": "apps_rebreak_native_hooks_usechatrealtime_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/room.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_room_tsx", + "target": "apps_rebreak_native_hooks_useonlineusers_ts" + }, { "relation": "imports_from", "context": "import", @@ -203298,6 +236192,102 @@ "source": "app_room_roomsettingsmodal", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_call_tsx", + "target": "app_call_callscreen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_call_tsx", + "target": "app_call_circlebtn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_call_tsx", + "target": "app_call_fmtduration" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_call_tsx", + "target": "apps_rebreak_native_components_useravatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_call_tsx", + "target": "apps_rebreak_native_stores_call_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_call_tsx", + "target": "components_useravatar_useravatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_call_tsx", + "target": "stores_call_usecallstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_call_callscreen", + "target": "app_call_fmtduration" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/call.tsx", + "source_location": "L21", + "weight": 1.0, + "source": "app_call_callscreen", + "target": "stores_call_usecallstore" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -203372,6 +236362,50 @@ "source": "apps_rebreak_native_app_layout_tsx", "target": "apps_rebreak_native_components_devicelimitreachedsheet_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "apps_rebreak_native_components_onlinepresenceprovider_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "apps_rebreak_native_hooks_usecallkeepevents_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "apps_rebreak_native_hooks_useincomingcalls_ts" + }, { "relation": "imports_from", "context": "import", @@ -203416,6 +236450,17 @@ "source": "apps_rebreak_native_app_layout_tsx", "target": "apps_rebreak_native_lib_theme_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "apps_rebreak_native_stores_applock_ts" + }, { "relation": "imports_from", "context": "import", @@ -203504,6 +236549,39 @@ "source": "apps_rebreak_native_app_layout_tsx", "target": "components_applockgate_applockgate" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "components_deviceapprovalincomingsheet_deviceapprovalincomingsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "components_deviceapprovalpendingsheet_deviceapprovalpendingsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "components_devicelimitreachedsheet_devicelimitreachedsheet" + }, { "relation": "imports_from", "context": "import", @@ -203526,6 +236604,39 @@ "source": "apps_rebreak_native_app_layout_tsx", "target": "hooks_usecallkeepevents_usecallkeepevents" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "hooks_usedeviceapprovalrealtime_usedeviceapprovalrealtime" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "hooks_useincomingcalls_useincomingcalls" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "hooks_usepushtokenregistration_usepushtokenregistration" + }, { "relation": "imports", "context": "import", @@ -203548,6 +236659,17 @@ "source": "apps_rebreak_native_app_layout_tsx", "target": "lib_theme_usecolors" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_layout_tsx", + "target": "stores_applock_useapplockstore" + }, { "relation": "imports", "context": "import", @@ -203625,6 +236747,17 @@ "source": "apps_rebreak_native_app_layout_tsx", "target": "stores_theme_usethemestore" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_layout_rootlayoutinner", + "target": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts" + }, { "relation": "calls", "context": "call", @@ -203647,6 +236780,39 @@ "source": "app_layout_rootlayoutinner", "target": "hooks_usecallkeepevents_usecallkeepevents" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_layout_rootlayoutinner", + "target": "hooks_usedeviceapprovalrealtime_usedeviceapprovalrealtime" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_layout_rootlayoutinner", + "target": "hooks_useincomingcalls_useincomingcalls" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_layout_rootlayoutinner", + "target": "hooks_usepushtokenregistration_usepushtokenregistration" + }, { "relation": "calls", "context": "call", @@ -203658,6 +236824,17 @@ "source": "app_layout_rootlayoutinner", "target": "lib_theme_usecolors" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/_layout.tsx", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_layout_rootlayoutinner", + "target": "stores_applock_useapplockstore" + }, { "relation": "calls", "context": "call", @@ -203713,6 +236890,1265 @@ "source": "app_layout_rootlayoutinner", "target": "stores_theme_usethemestore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "app_lyra_messagerow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L1351", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "app_urge_makestyles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "app_urge_sosscreen" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_components_urge_breathing_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_components_urge_gamepickerdrawer_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_components_urge_inlineindicators_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_components_urge_inlineratingdrawer_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_components_urge_messagerow_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_components_urge_sharesuccessdrawer_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_components_urge_sosfeedbackmodal_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_components_urge_urgegames_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_lib_llmprovider_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_lib_lyraresponse_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_lib_sosconstants_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_lib_sosprompts_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_lib_sosstream_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_lib_sosttsbenchmark_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_lib_sosttsqueue_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "apps_rebreak_native_lib_ttsprovider_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_llmprovider_currentllmprovider" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_llmprovider_llmprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_lyraresponse_chipspec" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_lyraresponse_detectemotion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_lyraresponse_lyraemotion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_lyraresponse_parselyraresponse" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_sosconstants_breath_phases" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_sosconstants_breathphase" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_sosconstants_chip_sets" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_sosconstants_chipset" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_sosprompts_sos_boot" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_sosstream_crisislevel" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_sosstream_streamsoslyra" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_sosttsbenchmark_benchsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_sosttsqueue_sosttsqueue" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_supabase_supabase" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_ttsprovider_currentprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_ttsprovider_endpointforprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_ttsprovider_setttsprovider" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_ttsprovider_ttsprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "lib_ttsprovider_usettsprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_breathing_breathingdrawer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_inlineindicators_voicebars" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_inlineratingdrawer_inlineratingdrawer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_messagerow_gameheader" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_messagerow_sosmsg" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_sharesuccessdrawer_sharesuccessdrawer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_sosfeedbackmodal_sosfeedback" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_sosfeedbackmodal_sosfeedbackmodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_urgegames_game_meta" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_urgegames_gametype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_urgegames_memorygame" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_urgegames_snakegame" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_urgegames_tetrisgame" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_urge_tsx", + "target": "urge_urgegames_tictactoegame" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_urge_sosscreen", + "target": "app_urge_makestyles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L44", + "weight": 1.0, + "source": "app_urge_sosscreen", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L108", + "weight": 1.0, + "source": "app_urge_sosscreen", + "target": "lib_ttsprovider_setttsprovider" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/urge.tsx", + "source_location": "L108", + "weight": 1.0, + "source": "app_urge_sosscreen", + "target": "lib_ttsprovider_usettsprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "app_lyra_coachscreen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "app_lyra_formattimestamp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "app_lyra_loadingpulse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "app_lyra_messagerow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "app_lyra_messagewithmeta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L680", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "app_lyra_styles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "app_lyra_thinkingdots" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "apps_rebreak_native_components_chat_voicerecordingbar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "apps_rebreak_native_lib_lyraresponse_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "apps_rebreak_native_stores_coach_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "apps_rebreak_native_stores_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "chat_voicerecordingbar_formatvoiceduration" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "chat_voicerecordingbar_voicebars" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "chat_voicerecordingbar_voicerecordingbar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "components_riveavatar_emotion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "lib_lyraresponse_detectemotion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "lib_supabase_supabase" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "stores_coach_message" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "stores_coach_usecoachstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_lyra_tsx", + "target": "stores_theme_usethemestore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "app_lyra_formattimestamp" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L46", + "weight": 1.0, + "source": "app_lyra_loadingpulse", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L57", + "weight": 1.0, + "source": "app_lyra_thinkingdots", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "apps_rebreak_native_components_urge_urgegames_tsx" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "components_riveavatar_emotion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "games_gamecard_gamecard" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L100", + "weight": 1.0, + "source": "app_lyra_messagerow", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "urge_messagerow_cardtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "urge_messagerow_gameheader" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "urge_messagerow_messagerow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "urge_messagerow_messagerowprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "urge_messagerow_overcomecard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "urge_messagerow_sosmsg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "urge_messagerow_st" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "urge_urgegames_game_meta" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "urge_urgegames_gamepickergrid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_lyra_messagerow", + "target": "urge_urgegames_gametype" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.85, + "weight": 0.85, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "Lyra coach UI", + "source": "app_lyra_coachscreen", + "target": "diga_03_req_lyra" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L133", + "weight": 1.0, + "source": "app_lyra_coachscreen", + "target": "lib_theme_usecolors" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.8, + "weight": 0.8, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "persona realized in coach UI", + "source": "app_lyra_coachscreen", + "target": "ops_lyra_persona" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L137", + "weight": 1.0, + "source": "app_lyra_coachscreen", + "target": "stores_coach_usecoachstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/lyra.tsx", + "source_location": "L134", + "weight": 1.0, + "source": "app_lyra_coachscreen", + "target": "stores_theme_usethemestore" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -203753,6 +238189,94 @@ "source": "apps_rebreak_native_app_app_mail_tsx", "target": "app_mail_plan_label" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_components_appheader_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_components_mail_connectmailsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_components_mail_editmailtitlesheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_components_mail_mailaccountcard_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_components_mail_mailactivitylog_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_components_mail_mailblockedbydaychart_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_components_mail_maildistributionchart_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_components_mail_mailemptystate_tsx" + }, { "relation": "imports_from", "context": "import", @@ -203764,6 +238288,50 @@ "source": "apps_rebreak_native_app_app_mail_tsx", "target": "apps_rebreak_native_components_successalert_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_hooks_usemaildisconnect_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_hooks_usemailstats_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_hooks_usemailstatus_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "apps_rebreak_native_hooks_useuserplan_ts" + }, { "relation": "imports_from", "context": "import", @@ -203786,6 +238354,17 @@ "source": "apps_rebreak_native_app_app_mail_tsx", "target": "apps_rebreak_native_stores_mailconnectdraft_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "components_appheader_appheader" + }, { "relation": "imports", "context": "import", @@ -203885,6 +238464,17 @@ "source": "apps_rebreak_native_app_app_mail_tsx", "target": "mail_editmailtitlesheet_editmailtitlesheet" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "mail_mailaccountcard_mailaccountcard" + }, { "relation": "imports_from", "context": "import", @@ -203896,6 +238486,17 @@ "source": "apps_rebreak_native_app_app_mail_tsx", "target": "mail_mailactivitylog_mailactivitylog" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/mail.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_mail_tsx", + "target": "mail_mailactivitylog_mailactivitylogbody" + }, { "relation": "imports_from", "context": "import", @@ -204026,6 +238627,72 @@ "source": "apps_rebreak_native_app_app_index_tsx", "target": "app_index_homescreen" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/index.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_index_tsx", + "target": "apps_rebreak_native_components_appheader_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/index.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_index_tsx", + "target": "apps_rebreak_native_components_composecard_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/index.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_index_tsx", + "target": "apps_rebreak_native_components_postcard_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/index.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_index_tsx", + "target": "apps_rebreak_native_components_postcardskeleton_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/index.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_index_tsx", + "target": "apps_rebreak_native_components_postcommentssheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/index.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_index_tsx", + "target": "apps_rebreak_native_hooks_usecommunityrealtime_ts" + }, { "relation": "imports_from", "context": "import", @@ -204059,6 +238726,17 @@ "source": "apps_rebreak_native_app_app_index_tsx", "target": "apps_rebreak_native_stores_community_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/index.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_index_tsx", + "target": "components_appheader_appheader" + }, { "relation": "imports_from", "context": "import", @@ -204202,6 +238880,135 @@ "source": "app_index_homescreen", "target": "stores_community_usecommunitystore" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "app_notifications_iconfortype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "app_notifications_notificationrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "app_notifications_notificationsscreen" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "apps_rebreak_native_components_emptystate_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "apps_rebreak_native_components_heroshieldcheck_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "apps_rebreak_native_stores_notifications_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "components_emptystate_emptystate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "components_heroshieldcheck_heroshieldcheck" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "stores_notifications_appnotification" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_notifications_tsx", + "target": "stores_notifications_usenotificationstore" + }, { "relation": "calls", "context": "call", @@ -204213,6 +239020,598 @@ "source": "app_notifications_notificationsscreen", "target": "lib_theme_usecolors" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L16", + "weight": 1.0, + "source": "app_notifications_notificationsscreen", + "target": "stores_notifications_usenotificationstore" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "app_notifications_notificationsscreen" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_notifications_notificationrow", + "target": "app_notifications_iconfortype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L92", + "weight": 1.0, + "source": "app_notifications_notificationrow", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "app_notifications_iconfortype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "app_blocker_blockerscreen" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_appheader_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_blocker_adddomainsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_blocker_cooldownbanner_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_blocker_deactivationexplainersheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_blocker_layerswitchcard_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_blocker_protectionlockedcard_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_blocker_setupflows_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_blocker_vipdomainlist_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_blocker_vipswapsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_permissiondeniedsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_components_protectionoffsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_hooks_useblocklistsync_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_hooks_usecustomdomains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_hooks_useprotectionstate_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_lib_protection_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "apps_rebreak_native_stores_blockerstats_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "blocker_adddomainsheet_adddomainsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "blocker_cooldownbanner_cooldownbanner" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "blocker_deactivationexplainersheet_deactivationexplainersheet" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "blocker_layerswitchcard_layerswitchcard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "blocker_protectiondetailssheet_protectiondetailssheet" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "blocker_protectionlockedcard_protectionlockedcard" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "blocker_setupflows_androidsetupflow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "blocker_setupflows_iosunsupervisedsetupflow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "blocker_vipdomainlist_myfilterslist" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "blocker_vipdomainlist_vipdomainlist" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "blocker_vipswapsheet_vipswapsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "components_appheader_appheader" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "components_permissiondeniedsheet_permissiondeniedsheet" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "components_protectionoffsheet_protectionoffsheet" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "hooks_useblocklistsync_useblocklistsync" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "hooks_usecustomdomains_usecustomdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "hooks_usedomainsubmissionrealtime_usedomainsubmissionrealtime" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "hooks_useprotectionstate_useprotectionstate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "lib_protection_protection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "stores_blockerstats_blockerstats" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_blocker_tsx", + "target": "stores_blockerstats_useblockerstatsstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L71", + "weight": 1.0, + "source": "app_blocker_blockerscreen", + "target": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L59", + "weight": 1.0, + "source": "app_blocker_blockerscreen", + "target": "hooks_useblocklistsync_useblocklistsync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L58", + "weight": 1.0, + "source": "app_blocker_blockerscreen", + "target": "hooks_usecustomdomains_usecustomdomains" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L71", + "weight": 1.0, + "source": "app_blocker_blockerscreen", + "target": "hooks_usedomainsubmissionrealtime_usedomainsubmissionrealtime" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L44", + "weight": 1.0, + "source": "app_blocker_blockerscreen", + "target": "hooks_useprotectionstate_useprotectionstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L29", + "weight": 1.0, + "source": "app_blocker_blockerscreen", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/(app)/blocker.tsx", + "source_location": "L45", + "weight": 1.0, + "source": "app_blocker_blockerscreen", + "target": "stores_blockerstats_useblockerstatsstore" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -204233,6 +239632,28 @@ "source": "apps_rebreak_native_app_app_layout_tsx", "target": "app_layout_dmconvunreadslice" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_layout_tsx", + "target": "apps_rebreak_native_components_digamilestonemodal_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_layout_tsx", + "target": "apps_rebreak_native_components_mail_mailconsentremindersheet_tsx" + }, { "relation": "imports_from", "context": "import", @@ -204277,6 +239698,17 @@ "source": "apps_rebreak_native_app_app_layout_tsx", "target": "apps_rebreak_native_lib_api_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_layout_tsx", + "target": "apps_rebreak_native_lib_protection_ts" + }, { "relation": "imports_from", "context": "import", @@ -204343,6 +239775,17 @@ "source": "apps_rebreak_native_app_app_layout_tsx", "target": "apps_rebreak_native_stores_mailconsent_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_layout_tsx", + "target": "apps_rebreak_native_stores_notifications_ts" + }, { "relation": "imports_from", "context": "import", @@ -204365,6 +239808,17 @@ "source": "apps_rebreak_native_app_app_layout_tsx", "target": "components_nativetabs_nativetabs" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_layout_tsx", + "target": "components_protectiononboardingsheet_protectiononboardingsheet" + }, { "relation": "imports", "context": "import", @@ -204387,6 +239841,17 @@ "source": "apps_rebreak_native_app_app_layout_tsx", "target": "lib_api_apifetch" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_layout_tsx", + "target": "lib_protection_protection" + }, { "relation": "imports", "context": "import", @@ -204464,6 +239929,17 @@ "source": "apps_rebreak_native_app_app_layout_tsx", "target": "stores_mailconsent_usemailconsentstore" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_layout_tsx", + "target": "stores_notifications_usenotificationstore" + }, { "relation": "calls", "context": "call", @@ -204519,6 +239995,17 @@ "source": "app_layout_applayout", "target": "stores_mailconsent_usemailconsentstore" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/(app)/_layout.tsx", + "source_location": "L33", + "weight": 1.0, + "source": "app_layout_applayout", + "target": "stores_notifications_usenotificationstore" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -204569,6 +240056,17 @@ "source": "apps_rebreak_native_app_app_chat_tsx", "target": "app_chat_makestyles" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/chat.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_chat_tsx", + "target": "apps_rebreak_native_components_appheader_tsx" + }, { "relation": "imports_from", "context": "import", @@ -204624,6 +240122,17 @@ "source": "apps_rebreak_native_app_app_chat_tsx", "target": "apps_rebreak_native_stores_auth_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/chat.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_app_chat_tsx", + "target": "components_appheader_appheader" + }, { "relation": "imports", "context": "import", @@ -204820,6 +240329,38 @@ "source": "app_coach_coachtabredirect", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/auth/mail-oauth-callback.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_auth_mail_oauth_callback_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/auth/mail-oauth-callback.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_auth_mail_oauth_callback_tsx", + "target": "auth_mail_oauth_callback_mailoauthcallback" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/auth/mail-oauth-callback.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_auth_mail_oauth_callback_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "imports_from", "context": "import", @@ -204907,6 +240448,61 @@ "source": "auth_callback_authcallback", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "apps_rebreak_native_components_appheader_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "apps_rebreak_native_components_profile_approveddomainslist_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "apps_rebreak_native_components_profile_demographicsaccordion_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "apps_rebreak_native_components_profile_digamissionbanner_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "apps_rebreak_native_components_profile_profileheader_tsx" + }, { "relation": "imports_from", "context": "import", @@ -204918,6 +240514,28 @@ "source": "apps_rebreak_native_app_profile_index_tsx", "target": "apps_rebreak_native_components_profile_statsbar_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "apps_rebreak_native_components_profile_streaksection_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "apps_rebreak_native_components_profile_urgestatscard_tsx" + }, { "relation": "imports_from", "context": "import", @@ -204929,6 +240547,17 @@ "source": "apps_rebreak_native_app_profile_index_tsx", "target": "apps_rebreak_native_hooks_useme_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "apps_rebreak_native_hooks_useonlineusers_ts" + }, { "relation": "imports_from", "context": "import", @@ -204940,6 +240569,17 @@ "source": "apps_rebreak_native_app_profile_index_tsx", "target": "apps_rebreak_native_hooks_useprofiledata_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "apps_rebreak_native_hooks_useuserplan_ts" + }, { "relation": "imports_from", "context": "import", @@ -204984,6 +240624,17 @@ "source": "apps_rebreak_native_app_profile_index_tsx", "target": "auth_signup_oauthprovider" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "components_appheader_appheader" + }, { "relation": "imports", "context": "import", @@ -205061,6 +240712,17 @@ "source": "apps_rebreak_native_app_profile_index_tsx", "target": "hooks_useprofiledata_usecooldownhistory" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "hooks_useprofiledata_usecooldownhistoryfull" + }, { "relation": "imports", "context": "import", @@ -205149,6 +240811,39 @@ "source": "apps_rebreak_native_app_profile_index_tsx", "target": "profile_approveddomainslist_approveddomainslist" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "profile_demographicsaccordion_demographics" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "profile_demographicsaccordion_demographicsaccordion" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "profile_digamissionbanner_digamissionbanner" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -205219,6 +240914,17 @@ "source": "apps_rebreak_native_app_profile_index_tsx", "target": "profile_index_profilescreen" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_index_tsx", + "target": "profile_profileheader_authprovider" + }, { "relation": "imports_from", "context": "import", @@ -205318,17 +241024,6 @@ "source": "profile_index_profilescreen", "target": "profile_index_formatmembersince" }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/profile/index.tsx", - "source_location": "L160", - "weight": 1.0, - "confidence_score": 1.0, - "source": "profile_index_profilescreen", - "target": "profile_index_formatstreakstartdate" - }, { "relation": "calls", "context": "call", @@ -205373,6 +241068,17 @@ "source": "profile_index_profilescreen", "target": "hooks_useprofiledata_usecooldownhistory" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L152", + "weight": 1.0, + "source": "profile_index_profilescreen", + "target": "hooks_useprofiledata_usecooldownhistoryfull" + }, { "relation": "calls", "context": "call", @@ -205428,6 +241134,17 @@ "source": "profile_index_profilescreen", "target": "lib_theme_usecolors" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/index.tsx", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_index_profilescreen", + "target": "profile_index_formatstreakstartdate" + }, { "relation": "calls", "context": "call", @@ -205439,6 +241156,39 @@ "source": "profile_index_profilescreen", "target": "stores_auth_useauthstore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/[userId].tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_userid_tsx", + "target": "apps_rebreak_native_components_postcard_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/[userId].tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_userid_tsx", + "target": "apps_rebreak_native_components_postcardskeleton_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/[userId].tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_userid_tsx", + "target": "apps_rebreak_native_components_postcommentssheet_tsx" + }, { "relation": "imports_from", "context": "import", @@ -205643,6 +241393,17 @@ "source": "profile_userid_foreignprofilescreen", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/edit.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_edit_tsx", + "target": "apps_rebreak_native_components_keyboardawarescreen_tsx" + }, { "relation": "imports_from", "context": "import", @@ -205676,6 +241437,17 @@ "source": "apps_rebreak_native_app_profile_edit_tsx", "target": "apps_rebreak_native_lib_avatars_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/edit.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_edit_tsx", + "target": "apps_rebreak_native_lib_resolveavatar_ts" + }, { "relation": "imports_from", "context": "import", @@ -205731,6 +241503,17 @@ "source": "apps_rebreak_native_app_profile_edit_tsx", "target": "lib_avatars_getavatarurl" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/profile/edit.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_profile_edit_tsx", + "target": "lib_avatars_hero_avatars" + }, { "relation": "imports", "context": "import", @@ -205807,6 +241590,16 @@ "source": "profile_edit_profileeditscreen", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(auth)/device-limit.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_auth_device_limit_tsx", + "target": "auth_device_limit_devicelimitscreen" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -205817,6 +241610,17 @@ "source": "apps_rebreak_native_stores_devicelimit_ts", "target": "auth_device_limit_devicelimitscreen" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(auth)/reset-otp.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_auth_reset_otp_tsx", + "target": "apps_rebreak_native_components_keyboardawarescreen_tsx" + }, { "relation": "imports_from", "context": "import", @@ -205881,6 +241685,17 @@ "source": "auth_reset_otp_resetotpscreen", "target": "stores_auth_useauthstore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(auth)/signup.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_auth_signup_tsx", + "target": "apps_rebreak_native_components_keyboardawarescreen_tsx" + }, { "relation": "imports_from", "context": "import", @@ -205975,6 +241790,17 @@ "source": "apps_rebreak_native_app_auth_signup_tsx", "target": "lib_avatars_getavatarurl" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(auth)/signup.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_auth_signup_tsx", + "target": "lib_avatars_hero_avatars" + }, { "relation": "imports", "context": "import", @@ -206093,6 +241919,17 @@ "source": "apps_rebreak_native_app_auth_confirm_tsx", "target": "stores_auth_useauthstore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(auth)/confirm-otp.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_auth_confirm_otp_tsx", + "target": "apps_rebreak_native_components_keyboardawarescreen_tsx" + }, { "relation": "imports_from", "context": "import", @@ -206157,6 +241994,17 @@ "source": "auth_confirm_otp_confirmotpscreen", "target": "stores_auth_useauthstore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(auth)/signin.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_auth_signin_tsx", + "target": "apps_rebreak_native_components_keyboardawarescreen_tsx" + }, { "relation": "imports_from", "context": "import", @@ -206304,6 +242152,28 @@ "source": "apps_rebreak_native_app_onboarding_index_tsx", "target": "apps_rebreak_native_components_onboarding_onboardingnavcontext_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/onboarding/index.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_onboarding_index_tsx", + "target": "apps_rebreak_native_components_onboarding_slides_digachoiceslide_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/onboarding/index.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_onboarding_index_tsx", + "target": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx" + }, { "relation": "imports_from", "context": "import", @@ -206315,6 +242185,28 @@ "source": "apps_rebreak_native_app_onboarding_index_tsx", "target": "apps_rebreak_native_components_onboarding_slides_doneslide_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/onboarding/index.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_onboarding_index_tsx", + "target": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/onboarding/index.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_onboarding_index_tsx", + "target": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx" + }, { "relation": "imports_from", "context": "import", @@ -206326,6 +242218,39 @@ "source": "apps_rebreak_native_app_onboarding_index_tsx", "target": "apps_rebreak_native_components_onboarding_slides_planslide_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/onboarding/index.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_onboarding_index_tsx", + "target": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/onboarding/index.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_onboarding_index_tsx", + "target": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/onboarding/index.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_onboarding_index_tsx", + "target": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx" + }, { "relation": "imports_from", "context": "import", @@ -206531,6 +242456,17 @@ "source": "apps_rebreak_native_app_onboarding_index_tsx", "target": "slides_privacyslide_privacyslide" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/onboarding/index.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_onboarding_index_tsx", + "target": "slides_protectionslide_protectionslide" + }, { "relation": "imports_from", "context": "import", @@ -206575,6 +242511,17 @@ "source": "onboarding_index_onboardingscreen", "target": "stores_lyravoice_uselyravoicestore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/help/crisis.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_help_crisis_tsx", + "target": "apps_rebreak_native_components_appheader_tsx" + }, { "relation": "imports_from", "context": "import", @@ -206586,6 +242533,17 @@ "source": "apps_rebreak_native_app_help_crisis_tsx", "target": "apps_rebreak_native_lib_theme_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/help/crisis.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_help_crisis_tsx", + "target": "components_appheader_appheader" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -206638,6 +242596,17 @@ "source": "help_crisis_crisisscreen", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/help/contact.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_help_contact_tsx", + "target": "apps_rebreak_native_components_appheader_tsx" + }, { "relation": "imports_from", "context": "import", @@ -206660,6 +242629,17 @@ "source": "apps_rebreak_native_app_help_contact_tsx", "target": "apps_rebreak_native_lib_theme_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/help/contact.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_help_contact_tsx", + "target": "components_appheader_appheader" + }, { "relation": "imports", "context": "import", @@ -206746,6 +242726,28 @@ "source": "help_layout_helplayout", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/help/faq.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_help_faq_tsx", + "target": "apps_rebreak_native_components_appheader_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/help/faq.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_help_faq_tsx", + "target": "apps_rebreak_native_components_faqaccordion_tsx" + }, { "relation": "imports_from", "context": "import", @@ -206757,6 +242759,17 @@ "source": "apps_rebreak_native_app_help_faq_tsx", "target": "apps_rebreak_native_lib_theme_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/help/faq.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_help_faq_tsx", + "target": "components_appheader_appheader" + }, { "relation": "imports_from", "context": "import", @@ -206811,6 +242824,17 @@ "source": "help_faq_faqscreen", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/help/about.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_help_about_tsx", + "target": "apps_rebreak_native_components_appheader_tsx" + }, { "relation": "imports_from", "context": "import", @@ -206822,6 +242846,17 @@ "source": "apps_rebreak_native_app_help_about_tsx", "target": "apps_rebreak_native_lib_theme_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/help/about.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_app_help_about_tsx", + "target": "components_appheader_appheader" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -206854,6 +242889,182 @@ "source": "help_about_aboutscreen", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_ensureaccessibilityservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_ensurebootpermission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_ensurereceivers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_ensuretoolsnamespace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_ensurevpnservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_fs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_module_a11y_xml" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L286", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_module_device_admin_xml" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L266", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_witha11yconfigxml" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L233", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_witha11ystringresource" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_withandroidmanifest_withstringsxml_withdangerousmod_androidconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L291", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_withdeviceadminxml" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L311", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rebreak_protection_android_js", + "target": "plugins_with_rebreak_protection_android_withrebreakprotectionandroid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L320", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plugins_with_rebreak_protection_android_withrebreakprotectionandroid", + "target": "plugins_with_rebreak_protection_android_witha11ystringresource" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L321", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plugins_with_rebreak_protection_android_withrebreakprotectionandroid", + "target": "plugins_with_rebreak_protection_android_witha11yconfigxml" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rebreak-protection-android.js", + "source_location": "L322", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plugins_with_rebreak_protection_android_withrebreakprotectionandroid", + "target": "plugins_with_rebreak_protection_android_withdeviceadminxml" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -206884,6 +243095,106 @@ "source": "apps_rebreak_native_plugins_with_resource_bundle_signing_fix_js", "target": "plugins_with_resource_bundle_signing_fix_withdangerousmod" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", + "target": "plugins_with_voip_pushkit_ios_fs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", + "target": "plugins_with_voip_pushkit_ios_patchappdelegate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", + "target": "plugins_with_voip_pushkit_ios_patchbridgingheader" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", + "target": "plugins_with_voip_pushkit_ios_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", + "target": "plugins_with_voip_pushkit_ios_withdangerousmod" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rive-asset-android.js", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rive_asset_android_js", + "target": "plugins_with_rive_asset_android_fs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rive-asset-android.js", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rive_asset_android_js", + "target": "plugins_with_rive_asset_android_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rive-asset-android.js", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rive_asset_android_js", + "target": "plugins_with_rive_asset_android_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rive-asset-android.js", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rive_asset_android_js", + "target": "plugins_with_rive_asset_android_withdangerousmod" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-rive-asset-android.js", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_rive_asset_android_js", + "target": "plugins_with_rive_asset_android_withriveassetandroid" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -206924,6 +243235,36 @@ "source": "plugins_with_rive_asset_android_withriveassetandroid", "target": "plugins_with_rive_asset_android_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_allow_nonmodular_includes_js", + "target": "plugins_with_allow_nonmodular_includes_fs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_allow_nonmodular_includes_js", + "target": "plugins_with_allow_nonmodular_includes_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_allow_nonmodular_includes_js", + "target": "plugins_with_allow_nonmodular_includes_withdangerousmod" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -206974,6 +243315,16 @@ "source": "apps_rebreak_native_plugins_with_material_theme_android_js", "target": "plugins_with_material_theme_android_withandroidstyles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-material-theme-android.js", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_material_theme_android_js", + "target": "plugins_with_material_theme_android_withmaterialthemeandroid" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -206984,6 +243335,16 @@ "source": "apps_rebreak_native_plugins_with_release_signing_android_js", "target": "plugins_with_release_signing_android_withappbuildgradle" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/plugins/with-release-signing-android.js", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_plugins_with_release_signing_android_js", + "target": "plugins_with_release_signing_android_withreleasesigningandroid" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -207402,6 +243763,812 @@ "source": "apps_rebreak_native_stores_auth_ts", "target": "stores_devices_usedevicesstore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecallkeepevents_ts", + "target": "apps_rebreak_native_stores_call_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useincomingcalls_ts", + "target": "apps_rebreak_native_stores_call_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "apps_rebreak_native_lib_callkit_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "apps_rebreak_native_lib_ringback_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "lib_ringback_startringback" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "lib_ringback_stopringback" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "lib_supabase_supabase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_callendreason" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_callpeer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_callstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_callstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_clog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_fireringcancel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_incall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_iswebrtcavailable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_logcalltochat" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_pendingremoteice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_rtc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_teardown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_call_ts", + "target": "stores_call_usecallstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usecallkeepevents_usecallkeepevents", + "target": "apps_rebreak_native_stores_call_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useincomingcalls_useincomingcalls", + "target": "apps_rebreak_native_stores_call_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useincomingcalls_ts", + "target": "stores_call_callpeer" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useincomingcalls_useincomingcalls", + "target": "stores_call_callpeer" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_call_teardown", + "target": "stores_call_incall" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_call_logcalltochat", + "target": "stores_call_clog" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_call_teardown", + "target": "lib_ringback_stopringback" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/call.ts", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_call_logcalltochat", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecallkeepevents_ts", + "target": "stores_call_usecallstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useincomingcalls_ts", + "target": "stores_call_usecallstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usecallkeepevents_usecallkeepevents", + "target": "stores_call_usecallstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useincomingcalls_useincomingcalls", + "target": "stores_call_usecallstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", + "target": "apps_rebreak_native_stores_deviceapproval_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalpendingsheet_tsx", + "target": "apps_rebreak_native_stores_deviceapproval_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devicelimitreachedsheet_tsx", + "target": "apps_rebreak_native_stores_deviceapproval_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", + "target": "apps_rebreak_native_stores_deviceapproval_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/deviceApproval.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_deviceapproval_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/deviceApproval.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_deviceapproval_ts", + "target": "lib_api_apifetch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/deviceApproval.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_deviceapproval_ts", + "target": "stores_deviceapproval_deviceapprovalrecord" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/deviceApproval.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_deviceapproval_ts", + "target": "stores_deviceapproval_state" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/deviceApproval.ts", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_deviceapproval_ts", + "target": "stores_deviceapproval_usedeviceapprovalstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", + "target": "stores_deviceapproval_deviceapprovalrecord" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", + "target": "stores_deviceapproval_usedeviceapprovalstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalpendingsheet_tsx", + "target": "stores_deviceapproval_usedeviceapprovalstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devicelimitreachedsheet_tsx", + "target": "stores_deviceapproval_usedeviceapprovalstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", + "target": "stores_deviceapproval_usedeviceapprovalstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L47", + "weight": 1.0, + "source": "components_deviceapprovalincomingsheet_deviceapprovalincomingsheet", + "target": "stores_deviceapproval_usedeviceapprovalstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", + "source_location": "L30", + "weight": 1.0, + "source": "components_deviceapprovalpendingsheet_deviceapprovalpendingsheet", + "target": "stores_deviceapproval_usedeviceapprovalstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", + "source_location": "L160", + "weight": 1.0, + "source": "components_devicelimitreachedsheet_devicelimitreachedsheet", + "target": "stores_deviceapproval_usedeviceapprovalstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", + "source_location": "L18", + "weight": 1.0, + "source": "hooks_usedeviceapprovalrealtime_usedeviceapprovalrealtime", + "target": "stores_deviceapproval_usedeviceapprovalstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "apps_rebreak_native_stores_notifications_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "apps_rebreak_native_stores_notifications_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/auth.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_auth_ts", + "target": "apps_rebreak_native_stores_notifications_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_notifications_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_notifications_ts", + "target": "apps_rebreak_native_lib_realtimestatus_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_notifications_ts", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_notifications_ts", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_notifications_ts", + "target": "lib_realtimestatus_isrealtimeerrorreal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_notifications_ts", + "target": "lib_supabase_supabase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_notifications_ts", + "target": "stores_notifications_appnotification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_notifications_ts", + "target": "stores_notifications_notificationstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/notifications.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_notifications_ts", + "target": "stores_notifications_usenotificationstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_notificationsdropdown_notificationsdropdown", + "target": "apps_rebreak_native_stores_notifications_ts" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "context": "import", + "source": "notification", + "target": "apps_rebreak_native_stores_notifications_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "stores_notifications_appnotification" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "stores_notifications_usenotificationstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "stores_notifications_usenotificationstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/auth.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_auth_ts", + "target": "stores_notifications_usenotificationstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L29", + "weight": 1.0, + "source": "components_appheader_appheader", + "target": "stores_notifications_usenotificationstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L7", + "weight": 1.0, + "source": "components_notificationsdropdown_notificationsdropdown", + "target": "stores_notifications_usenotificationstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "stores_notifications_usenotificationstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "apps_rebreak_native_stores_language_ts" + }, { "relation": "imports_from", "context": "import", @@ -207493,18 +244660,19 @@ "source_location": "L5", "weight": 1.0, "confidence_score": 1.0, - "source": "slides_welcomeslide_welcomeslide", + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", "target": "stores_language_applanguage" }, { - "relation": "contains", + "relation": "imports", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L225", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L5", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_link", - "target": "stores_language_languagestate" + "source": "slides_welcomeslide_welcomeslide", + "target": "stores_language_applanguage" }, { "relation": "contains", @@ -207548,6 +244716,28 @@ "source": "stores_language_synclanguagefromusermetadata", "target": "stores_language_applyrtl" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "stores_language_uselanguagestore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L23", + "weight": 1.0, + "source": "slides_welcomeslide_languagepills", + "target": "stores_language_uselanguagestore" + }, { "relation": "imports", "context": "import", @@ -207574,11 +244764,11 @@ "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L18", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L17", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", "target": "apps_rebreak_native_stores_protecteddevices_ts" }, { @@ -207635,6 +244825,16 @@ "source": "apps_rebreak_native_stores_protecteddevices_ts", "target": "stores_protecteddevices_enrollresult" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/protectedDevices.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_protecteddevices_ts", + "target": "stores_protecteddevices_protecteddevice" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -207680,11 +244880,11 @@ "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L18", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L17", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", "target": "stores_protecteddevices_useprotecteddevicesstore" }, { @@ -207709,17 +244909,6 @@ "source": "apps_rebreak_native_stores_auth_ts", "target": "stores_protecteddevices_useprotecteddevicesstore" }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L49", - "weight": 1.0, - "source": "devices_addmacsheet_addmacsheet", - "target": "stores_protecteddevices_useprotecteddevicesstore" - }, { "relation": "imports", "context": "import", @@ -207783,6 +244972,50 @@ "source": "apps_rebreak_native_stores_auth_ts", "target": "stores_mailconsent_usemailconsentstore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "apps_rebreak_native_stores_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "apps_rebreak_native_stores_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "apps_rebreak_native_stores_community_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCommunityRealtime.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecommunityrealtime_ts", + "target": "apps_rebreak_native_stores_community_ts" + }, { "relation": "imports_from", "context": "import", @@ -207824,6 +245057,16 @@ "source": "apps_rebreak_native_stores_community_ts", "target": "stores_community_communitypost" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/community.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_community_ts", + "target": "stores_community_communitypostauthor" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -207888,6 +245131,28 @@ "source": "hooks_usecommunityrealtime_usecommunityrealtime", "target": "apps_rebreak_native_stores_community_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "stores_community_communitypost" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCommunityRealtime.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecommunityrealtime_ts", + "target": "stores_community_communitypost" + }, { "relation": "imports", "context": "import", @@ -207910,6 +245175,17 @@ "source": "hooks_usecommunityrealtime_usecommunityrealtime", "target": "stores_community_communitypost" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "stores_community_communitycomment" + }, { "relation": "imports", "context": "import", @@ -207921,6 +245197,28 @@ "source": "components_postcommentssheet_postcommentssheet", "target": "stores_community_communitycomment" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "stores_community_usecommunitystore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "stores_community_usecommunitystore" + }, { "relation": "imports", "context": "import", @@ -207965,6 +245263,259 @@ "source": "components_postcard_postcardimpl", "target": "stores_community_usecommunitystore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "apps_rebreak_native_stores_blockerstats_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "apps_rebreak_native_stores_blockerstats_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_blockerstats_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_blockerstats_ts", + "target": "lib_api_apifetch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_blockerstats_ts", + "target": "stores_blockerstats_asnumber" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_blockerstats_ts", + "target": "stores_blockerstats_blockerstats" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_blockerstats_ts", + "target": "stores_blockerstats_blockerstatsstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_blockerstats_ts", + "target": "stores_blockerstats_normalizestats" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_blockerstats_ts", + "target": "stores_blockerstats_rawstatsresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_blockerstats_ts", + "target": "stores_blockerstats_useblockerstatsstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "blocker_protectiondetailssheet_protectiondetailssheet", + "target": "stores_blockerstats_blockerstats" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usecustomdomains_usecustomdomains", + "target": "stores_blockerstats_blockerstats" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_blockerstats_blockerstats", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_blockerstats_blockerstats", + "target": "lib_api_apifetch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_blockerstats_blockerstats", + "target": "stores_blockerstats_asnumber" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_blockerstats_blockerstats", + "target": "stores_blockerstats_blockerstatsstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_blockerstats_blockerstats", + "target": "stores_blockerstats_normalizestats" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_blockerstats_blockerstats", + "target": "stores_blockerstats_rawstatsresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_blockerstats_blockerstats", + "target": "stores_blockerstats_useblockerstatsstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/blockerStats.ts", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "stores_blockerstats_normalizestats", + "target": "stores_blockerstats_asnumber" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "stores_blockerstats_useblockerstatsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "stores_blockerstats_useblockerstatsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L18", + "weight": 1.0, + "source": "blocker_protectiondetailssheet_protectiondetailssheet", + "target": "stores_blockerstats_useblockerstatsstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usecustomdomains_usecustomdomains", + "target": "stores_blockerstats_useblockerstatsstore" + }, { "relation": "imports_from", "context": "import", @@ -207998,6 +245549,16 @@ "source": "apps_rebreak_native_stores_auth_ts", "target": "apps_rebreak_native_stores_devicelimit_ts" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/deviceLimit.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_devicelimit_ts", + "target": "stores_devicelimit_devicelimitdevice" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -208022,10 +245583,21 @@ "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "confidence_score": 1.0, "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devicelimitreachedsheet_tsx", + "target": "stores_devicelimit_devicelimitdevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, "source": "apps_rebreak_native_components_devicelimitreachedsheet_tsx", "target": "stores_devicelimit_usedevicelimitstore" }, @@ -208051,6 +245623,124 @@ "source": "apps_rebreak_native_stores_auth_ts", "target": "stores_devicelimit_usedevicelimitstore" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", + "source_location": "L159", + "weight": 1.0, + "source": "components_devicelimitreachedsheet_devicelimitreachedsheet", + "target": "stores_devicelimit_usedevicelimitstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppLockGate.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_applockgate_tsx", + "target": "apps_rebreak_native_stores_applock_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/LockScreen.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_lockscreen_tsx", + "target": "apps_rebreak_native_stores_applock_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/appLock.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_applock_ts", + "target": "stores_applock_applockstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/appLock.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_applock_ts", + "target": "stores_applock_localauthmodule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/appLock.ts", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_applock_ts", + "target": "stores_applock_useapplockstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppLockGate.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_applockgate_tsx", + "target": "stores_applock_useapplockstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/LockScreen.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_lockscreen_tsx", + "target": "stores_applock_useapplockstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/AppLockGate.tsx", + "source_location": "L18", + "weight": 1.0, + "source": "components_applockgate_applockgate", + "target": "stores_applock_useapplockstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/LockScreen.tsx", + "source_location": "L26", + "weight": 1.0, + "source": "components_lockscreen_lockscreen", + "target": "stores_applock_useapplockstore" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "apps_rebreak_native_stores_lyravoice_ts" + }, { "relation": "imports_from", "context": "import", @@ -208093,6 +245783,17 @@ "source": "onboarding_lyrabubble_lyrabubble", "target": "apps_rebreak_native_stores_lyravoice_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "stores_lyravoice_uselyravoicestore" + }, { "relation": "imports", "context": "import", @@ -208115,6 +245816,17 @@ "source": "onboarding_lyrabubble_lyrabubble", "target": "stores_lyravoice_uselyravoicestore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "apps_rebreak_native_stores_theme_ts" + }, { "relation": "imports_from", "context": "import", @@ -208188,6 +245900,17 @@ "source": "chat_chatbubble_chatbubble", "target": "apps_rebreak_native_stores_theme_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "stores_theme_usethemestore" + }, { "relation": "imports", "context": "import", @@ -208225,10 +245948,21 @@ "relation": "calls", "context": "call", "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L333", + "weight": 1.0, + "source": "chat_chatbubble_chatbubbleinner", + "target": "stores_theme_usethemestore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", "source_location": "L218", "weight": 1.0, - "confidence_score": 1.0, "source": "chat_chatbubble_usebubblecolors", "target": "stores_theme_usethemestore" }, @@ -208254,6 +245988,17 @@ "source": "lib_theme_usecolors", "target": "stores_theme_usethemestore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "apps_rebreak_native_stores_mailconnectdraft_ts" + }, { "relation": "imports_from", "context": "import", @@ -208265,6 +246010,28 @@ "source": "apps_rebreak_native_stores_auth_ts", "target": "apps_rebreak_native_stores_mailconnectdraft_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/mailConnectDraft.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_mailconnectdraft_ts", + "target": "apps_rebreak_native_hooks_usemailconnect_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/stores/mailConnectDraft.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_stores_mailconnectdraft_ts", + "target": "hooks_usemailconnect_mailprovider" + }, { "relation": "imports_from", "context": "import", @@ -208338,6 +246105,17 @@ "source": "mail_connectmailsheet_connectmailsheet", "target": "apps_rebreak_native_stores_mailconnectdraft_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "stores_mailconnectdraft_usemailconnectdraft" + }, { "relation": "imports", "context": "import", @@ -208486,6 +246264,17 @@ "source": "apps_rebreak_native_stores_realtimedebug_ts", "target": "stores_realtimedebug_userealtimedebugstore" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "apps_rebreak_native_stores_auth_ts" + }, { "relation": "imports_from", "context": "import", @@ -208497,6 +246286,39 @@ "source": "apps_rebreak_native_components_applockgate_tsx", "target": "apps_rebreak_native_stores_auth_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_header_headerdropdownmenu_tsx", + "target": "apps_rebreak_native_stores_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/LockScreen.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_lockscreen_tsx", + "target": "apps_rebreak_native_stores_auth_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "apps_rebreak_native_stores_auth_ts" + }, { "relation": "imports_from", "context": "import", @@ -208666,6 +246488,17 @@ "source": "header_headerdropdownmenu_headerdropdownmenu", "target": "apps_rebreak_native_stores_auth_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "stores_auth_useauthstore" + }, { "relation": "imports", "context": "import", @@ -208677,6 +246510,50 @@ "source": "apps_rebreak_native_components_applockgate_tsx", "target": "stores_auth_useauthstore" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_header_headerdropdownmenu_tsx", + "target": "stores_auth_useauthstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/LockScreen.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_lockscreen_tsx", + "target": "stores_auth_useauthstore" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "stores_auth_useauthstore" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L26", + "weight": 1.0, + "source": "components_appheader_appheader", + "target": "stores_auth_useauthstore" + }, { "relation": "calls", "context": "call", @@ -208688,6 +246565,17 @@ "source": "components_applockgate_applockgate", "target": "stores_auth_useauthstore" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/LockScreen.tsx", + "source_location": "L27", + "weight": 1.0, + "source": "components_lockscreen_lockscreen", + "target": "stores_auth_useauthstore" + }, { "relation": "imports", "context": "import", @@ -208710,6 +246598,46 @@ "source": "header_headerdropdownmenu_headerdropdownmenu", "target": "stores_auth_useauthstore" }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing.sh", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_maestro_screens_capture_marketing_sh", + "target": "screens_capture_marketing_mapping" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_maestro_screens_capture_marketing_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_maestro_screens_capture_marketing_sh__entry" + }, + { + "relation": "defines", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing-loggedin.sh", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_maestro_screens_capture_marketing_loggedin_sh", + "target": "screens_capture_marketing_loggedin_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/screens/capture-marketing-loggedin.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_maestro_screens_capture_marketing_loggedin_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_maestro_screens_capture_marketing_loggedin_sh__entry" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -209153,6 +247081,16 @@ "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_hashlist_swift_rebreakpackettunnelextension_hashlist_hashlist_unmapcurrent", "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_hashlist_swift_rebreakpackettunnelextension_hashlist_hashlist_unmapcurrentlocked" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -209163,6 +247101,48 @@ "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift", "target": "filter_domainhasher_domainhasher" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher_hash" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher_normalize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher_hash", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher_normalize" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher_normalize", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_string" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -209174,17 +247154,6 @@ "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher_hash", "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_string" }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", - "source_location": "L26", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "utils_crisis_filter_normalize", - "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_string" - }, { "relation": "references", "context": "return_type", @@ -209196,17 +247165,6 @@ "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher_hash", "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_uint64" }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_domainhasher_swift_rebreakpackettunnelextension_domainhasher_domainhasher_hash", - "target": "utils_crisis_filter_normalize" - }, { "relation": "method", "confidence": "EXTRACTED", @@ -209238,6 +247196,16 @@ "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift", "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_extlog" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -209477,6 +247445,157 @@ "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_starttunnel", "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_string" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L86", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_hashlist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_buildtunnelsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_forwardpacket" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L273", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_handlepacket" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_readpackets" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L496", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_reapplytunnelsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L445", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_registerblocklistobserver" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L486", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_reloadblocklist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L425", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_replyservfail" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L521", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_scheduleblocklistretryifempty" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_starttunnel" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_stoptunnel" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L462", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_unregisterblocklistobserver" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L434", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_writetotun" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider", + "target": "nepackettunnelprovider" + }, { "relation": "inherits", "confidence": "EXTRACTED", @@ -209630,6 +247749,17 @@ "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_stoptunnel", "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_registerblocklistobserver" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_stoptunnel", + "target": "apps_rebreak_native_ios_rebreakpackettunnelextension_packettunnelprovider_swift_rebreakpackettunnelextension_packettunnelprovider_packettunnelprovider_unregisterblocklistobserver" + }, { "relation": "calls", "context": "call", @@ -210286,6 +248416,28 @@ "source": "apps_rebreak_native_ios_rebreak_appdelegate_swift", "target": "rebreak_appdelegate_reactnativedelegate" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate", + "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_uiwindow" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate_application", + "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_uiwindow" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -210297,6 +248449,16 @@ "source": "rebreak_appdelegate_appdelegate", "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_exporeactnativefactorydelegate" }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_appdelegate_reactnativedelegate", + "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_exporeactnativefactorydelegate" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -210312,12 +248474,56 @@ "relation": "references", "confidence": "EXTRACTED", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L10", + "source_location": "L119", "weight": 1.0, - "context": "field", + "context": "parameter_type", "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate", - "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_uiwindow" + "source": "pkpushregistry", + "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_void" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L98", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "pkpushregistry", + "target": "pkpushcredentials" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L119", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "pkpushregistry", + "target": "pkpushpayload" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L119", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "pkpushregistry", + "target": "pkpushtype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pkpushregistry", + "target": "rebreak_appdelegate_appdelegate_callidtouuid" }, { "relation": "references", @@ -210331,14 +248537,26 @@ "target": "pkpushregistry" }, { - "relation": "implements", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L95", + "source_location": "L45", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate", - "target": "pkpushregistrydelegate" + "source": "rebreak_appdelegate_appdelegate_application", + "target": "pkpushregistry" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L119", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate_pushregistry", + "target": "pkpushregistry" }, { "relation": "method", @@ -210350,37 +248568,6 @@ "source": "rebreak_appdelegate_appdelegate", "target": "rebreak_appdelegate_appdelegate_application" }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L162", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate", - "target": "rebreak_appdelegate_appdelegate_callidtouuid" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate_application", - "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_uiwindow" - }, - { - "relation": "inherits", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_appdelegate_reactnativedelegate", - "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_exporeactnativefactorydelegate" - }, { "relation": "references", "confidence": "EXTRACTED", @@ -210458,17 +248645,6 @@ "source": "rebreak_appdelegate_appdelegate_application", "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_void" }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate_application", - "target": "pkpushregistry" - }, { "relation": "calls", "context": "call", @@ -210510,7 +248686,7 @@ "weight": 1.0, "context": "parameter_type", "confidence_score": 1.0, - "source": "pkpushregistry", + "source": "rebreak_appdelegate_appdelegate_pushregistry", "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_void" }, { @@ -210555,6 +248731,81 @@ "source": "rebreak_appdelegate_reactnativedelegate_sourceurl", "target": "rebreak_appdelegate_reactnativedelegate_bundleurl" }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate", + "target": "pkpushregistrydelegate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L98", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate_pushregistry", + "target": "pkpushcredentials" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L119", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate_pushregistry", + "target": "pkpushpayload" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L119", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate_pushregistry", + "target": "pkpushtype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate_pushregistry", + "target": "rebreak_appdelegate_appdelegate_callidtouuid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate", + "target": "rebreak_appdelegate_appdelegate_callidtouuid" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", + "source_location": "L162", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreak_appdelegate_appdelegate_callidtouuid", + "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_string" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -210705,6 +248956,46 @@ "source": "apps_rebreak_native_ios_rebreak_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info", "target": "apps_rebreak_native_ios_rebreak_images_xcassets_splashscreenlegacy_imageset_contents_json_splashscreenlegacy_imageset_contents_info_version" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakContentFilter/FilterDataProvider.swift", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift", + "target": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_domainhasher" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakContentFilter/FilterDataProvider.swift", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift", + "target": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_filterdataprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakContentFilter/FilterDataProvider.swift", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift", + "target": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_hashlistmmap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakContentFilter/FilterDataProvider.swift", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift", + "target": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_sharedlogstore" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -211122,6 +249413,46 @@ "source": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_hashlistmmap_contains", "target": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_bool" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakContentFilter/FilterDataProvider.swift", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_filterdataprovider", + "target": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_filterdataprovider_handlenewflow" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakContentFilter/FilterDataProvider.swift", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_filterdataprovider", + "target": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_filterdataprovider_startfilter" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakContentFilter/FilterDataProvider.swift", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_filterdataprovider", + "target": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_filterdataprovider_stopfilter" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/ios/RebreakContentFilter/FilterDataProvider.swift", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_filterdataprovider", + "target": "nefilterdataprovider" + }, { "relation": "inherits", "confidence": "EXTRACTED", @@ -211228,6 +249559,143 @@ "source": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_filterdataprovider_handlenewflow", "target": "apps_rebreak_native_ios_rebreakcontentfilter_filterdataprovider_swift_nefilternewflowverdict" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "apps_rebreak_native_components_notificationsdropdown_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "apps_rebreak_native_components_heroshieldcheck_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "apps_rebreak_native_lib_resolveavatar_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "components_heroshieldcheck_heroshieldcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "components_notificationsdropdown_notificationrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "components_notificationsdropdown_notificationsdropdown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "components_notificationsdropdown_notificon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "components_notificationsdropdown_notiflabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "components_notificationsdropdown_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "components_notificationsdropdown_timeago" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "lib_resolveavatar_resolveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_notificationsdropdown_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -211238,6 +249706,17 @@ "source": "components_notificationsdropdown_notificationsdropdown", "target": "components_notificationsdropdown_props" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "components_notificationsdropdown_notificationsdropdown" + }, { "relation": "imports_from", "context": "import", @@ -211322,6 +249801,17 @@ "source": "components_notificationsdropdown_notificationsdropdown", "target": "lib_theme_usecolors" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NotificationsDropdown.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_notificationsdropdown_notificationsdropdown", + "target": "notification" + }, { "relation": "calls", "context": "call", @@ -211377,6 +249867,89 @@ "source": "components_notificationsdropdown_notificationrow", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_faqaccordion_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_faqaccordion_tsx", + "target": "components_faqaccordion_cardrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_faqaccordion_tsx", + "target": "components_faqaccordion_faqaccordion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_faqaccordion_tsx", + "target": "components_faqaccordion_faqitem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_faqaccordion_tsx", + "target": "components_faqaccordion_pillrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_faqaccordion_tsx", + "target": "components_faqaccordion_variant" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/FaqAccordion.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_faqaccordion_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DoneSlide.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_doneslide_tsx", + "target": "apps_rebreak_native_components_faqaccordion_tsx" + }, { "relation": "imports", "context": "import", @@ -211483,6 +250056,38 @@ "source": "components_faqaccordion_pillrow", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCardSkeleton.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcardskeleton_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCardSkeleton.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcardskeleton_tsx", + "target": "components_postcardskeleton_postcardskeleton" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCardSkeleton.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcardskeleton_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "imports_from", "context": "import", @@ -211505,6 +250110,259 @@ "source": "components_postcardskeleton_postcardskeleton", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "apps_rebreak_native_components_heroshieldcheck_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "apps_rebreak_native_components_useravatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "apps_rebreak_native_lib_formattime_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "apps_rebreak_native_lib_i18n_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_heroshieldcheck_heroshieldcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L440", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_postcard_domainfavicon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L438", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_postcard_domainfaviconprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L484", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_postcard_domainvotecard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L471", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_postcard_domainvotecardprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L630", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_postcard_formatapproveddate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L388", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_postcard_postcard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_postcard_postcardimpl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_postcard_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_postcard_renderwithmentions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_postcard_resolvelocalizedjsoncontent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L469", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_postcard_submission" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "components_useravatar_useravatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "lib_formattime_formatrelativetime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcard_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -211526,6 +250384,27 @@ "source": "components_postcard_postcardimpl", "target": "components_postcard_resolvelocalizedjsoncontent" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_postcard_postcard", + "target": "components_postcard_renderwithmentions" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L291", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_postcard_postcardimpl", + "target": "components_postcard_renderwithmentions" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -211546,17 +250425,6 @@ "source": "components_postcard_postcard", "target": "components_postcard_postcardimpl" }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L291", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_postcard_postcardimpl", - "target": "components_postcard_renderwithmentions" - }, { "relation": "calls", "context": "call", @@ -211579,6 +250447,17 @@ "source": "components_postcard_postcardimpl", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_postcard_postcard", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, { "relation": "imports_from", "context": "import", @@ -211684,16 +250563,6 @@ "source": "components_postcard_postcard", "target": "components_postcard_formatapproveddate" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/PostCard.tsx", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_postcard_postcard", - "target": "components_postcard_renderwithmentions" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -211704,6 +250573,17 @@ "source": "components_postcard_postcard", "target": "components_postcard_submission" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCard.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_postcard_postcard", + "target": "components_riveavatar_riveavatar" + }, { "relation": "imports", "context": "import", @@ -211748,6 +250628,26 @@ "source": "components_postcard_postcard", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/HeroShieldCheck.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_heroshieldcheck_tsx", + "target": "components_heroshieldcheck_heroshieldcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/HeroShieldCheck.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_heroshieldcheck_tsx", + "target": "components_heroshieldcheck_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -211758,6 +250658,177 @@ "source": "components_heroshieldcheck_heroshieldcheck", "target": "components_heroshieldcheck_props" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "notification", + "target": "components_heroshieldcheck_heroshieldcheck" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "apps_rebreak_native_components_useravatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "apps_rebreak_native_lib_formattime_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L506", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "components_postcommentssheet_commentrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L499", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "components_postcommentssheet_commentrowprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "components_postcommentssheet_emojis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "components_postcommentssheet_postcommentssheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "components_postcommentssheet_props" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "components_useravatar_useravatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "lib_formattime_formatrelativetime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "lib_supabase_supabase" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PostCommentsSheet.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_postcommentssheet_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -211909,6 +250980,141 @@ "source": "components_postcommentssheet_commentrow", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/BrandSplash.tsx", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_brandsplash_tsx", + "target": "components_brandsplash_brandsplash" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/BrandSplash.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_brandsplash_tsx", + "target": "components_brandsplash_ease_in" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/BrandSplash.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_brandsplash_tsx", + "target": "components_brandsplash_ease_out" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/BrandSplash.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_brandsplash_tsx", + "target": "components_brandsplash_height_sh" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/BrandSplash.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_brandsplash_tsx", + "target": "components_brandsplash_props" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_createroomsheet_tsx", + "target": "apps_rebreak_native_components_sheetfieldstack_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "apps_rebreak_native_components_sheetfieldstack_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailTitleSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailtitlesheet_tsx", + "target": "apps_rebreak_native_components_sheetfieldstack_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/SheetFieldStack.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_sheetfieldstack_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/SheetFieldStack.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_sheetfieldstack_tsx", + "target": "components_sheetfieldstack_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/SheetFieldStack.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_sheetfieldstack_tsx", + "target": "components_sheetfieldstack_sheetfield" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/SheetFieldStack.tsx", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_sheetfieldstack_tsx", + "target": "components_sheetfieldstack_sheetfieldstack" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/SheetFieldStack.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_sheetfieldstack_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "imports_from", "context": "import", @@ -211974,6 +251180,50 @@ "source": "mail_editmailtitlesheet_editmailtitlesheet", "target": "components_sheetfieldstack_sheetfield" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_createroomsheet_tsx", + "target": "components_sheetfieldstack_sheetfieldstack" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "components_sheetfieldstack_sheetfieldstack" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailTitleSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailtitlesheet_tsx", + "target": "components_sheetfieldstack_sheetfieldstack" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/SheetFieldStack.tsx", + "source_location": "L52", + "weight": 1.0, + "source": "components_sheetfieldstack_sheetfieldstack", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -211994,6 +251244,116 @@ "source": "apps_rebreak_native_components_card_tsx", "target": "components_card_props" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/KeyboardAwareScreen.tsx", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_keyboardawarescreen_tsx", + "target": "components_keyboardawarescreen_keyboardawarescreen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/KeyboardAwareScreen.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_keyboardawarescreen_tsx", + "target": "components_keyboardawarescreen_keyboardawarescreenprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppAlert.tsx", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appalert_tsx", + "target": "components_appalert_appalert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppAlert.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appalert_tsx", + "target": "components_appalert_appalertmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppAlert.tsx", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appalert_tsx", + "target": "components_appalert_appalertprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppAlert.tsx", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appalert_tsx", + "target": "components_appalert_baseprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppAlert.tsx", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appalert_tsx", + "target": "components_appalert_confirmprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppAlert.tsx", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appalert_tsx", + "target": "components_appalert_errorprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppAlert.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appalert_tsx", + "target": "components_appalert_friendlymessage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppAlert.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appalert_tsx", + "target": "components_appalert_sanitizemessage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppAlert.tsx", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appalert_tsx", + "target": "components_appalert_successprops" + }, { "relation": "contains", "context": "call", @@ -212076,6 +251436,92 @@ "source": "components_appalert_appalert", "target": "components_appalert_appalertprops" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppLockGate.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_applockgate_tsx", + "target": "apps_rebreak_native_components_lockscreen_tsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/LockScreen.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_lockscreen_tsx", + "target": "components_lockscreen_lockscreen" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppLockGate.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_applockgate_tsx", + "target": "components_lockscreen_lockscreen" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ProtectionOffSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_protectionoffsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ProtectionOffSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_protectionoffsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ProtectionOffSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_protectionoffsheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ProtectionOffSheet.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_protectionoffsheet_tsx", + "target": "components_protectionoffsheet_protectionoffsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ProtectionOffSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_protectionoffsheet_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "imports_from", "context": "import", @@ -212109,6 +251555,235 @@ "source": "components_protectionoffsheet_protectionoffsheet", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/DeactivationExplainerSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_deactivationexplainersheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipswapsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_createroomsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/FormSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_formsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/FormSheet.tsx", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_formsheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/FormSheet.tsx", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_formsheet_tsx", + "target": "components_formsheet_formsheetprops" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/FormSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_formsheet_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailTitleSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailtitlesheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_permissionconfirmsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PermissionDeniedSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_permissiondeniedsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ProtectionOnboardingSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_protectiononboardingsheet_tsx", + "target": "apps_rebreak_native_components_formsheet_tsx" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212120,14 +251795,179 @@ "target": "components_formsheet_formsheetprops" }, { - "relation": "imports_from", + "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/DeactivationExplainerSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_deactivationexplainersheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", "source_location": "L15", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipswapsheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_createroomsheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailTitleSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailtitlesheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_permissionconfirmsheet_tsx", + "target": "components_formsheet_formsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PermissionDeniedSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_permissiondeniedsheet_tsx", "target": "components_formsheet_formsheet" }, { @@ -212328,6 +252168,69 @@ "source": "onboarding_permissionconfirmsheet_permissionconfirmsheet", "target": "components_formsheet_formsheet" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "apps_rebreak_native_components_wheelpickermodal_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/WheelPickerModal.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_wheelpickermodal_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/WheelPickerModal.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_wheelpickermodal_tsx", + "target": "components_wheelpickermodal_option" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/WheelPickerModal.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_wheelpickermodal_tsx", + "target": "components_wheelpickermodal_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/WheelPickerModal.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_wheelpickermodal_tsx", + "target": "components_wheelpickermodal_wheelpickermodal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/WheelPickerModal.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_wheelpickermodal_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212348,6 +252251,17 @@ "source": "components_wheelpickermodal_wheelpickermodal", "target": "components_wheelpickermodal_props" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "components_wheelpickermodal_wheelpickermodal" + }, { "relation": "imports_from", "context": "import", @@ -212370,6 +252284,17 @@ "source": "components_wheelpickermodal_wheelpickermodal", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "components_wheelpickermodal_wheelpickermodal" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212380,6 +252305,114 @@ "source": "apps_rebreak_native_components_applockgate_tsx", "target": "components_applockgate_applockgate" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "apps_rebreak_native_lib_resolveavatar_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "components_composecard_composecard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "components_composecard_props" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "hooks_useme_useme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "lib_resolveavatar_resolveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ComposeCard.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_composecard_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212467,6 +252500,549 @@ "source": "components_composecard_composecard", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_digamissionbanner_tsx", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_emotion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_emotion_animations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_emotion_labels" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_existing_timelines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_preloadriveasset" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_rive_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_safeanim" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_size_px" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_supportedemotion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_sustained" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "components_riveavatar_two_phase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_riveavatar_tsx", + "target": "urge_urgestats_emotionlabel" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_lyraresponse_ts", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_addwindowssheet_addwindowssheet", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "games_gameoverscreen_gameoverscreen", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "onboarding_lyrabubble_lyrabubble", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_digamissionbanner_digamissionbanner", + "target": "apps_rebreak_native_components_riveavatar_tsx" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "components_riveavatar_emotion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "components_riveavatar_emotion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_lyraresponse_ts", + "target": "components_riveavatar_emotion" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "onboarding_lyrabubble_lyrabubble", + "target": "components_riveavatar_emotion" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/RiveAvatar.tsx", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_riveavatar_riveavatar", + "target": "components_riveavatar_safeanim" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_digamissionbanner_tsx", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_addwindowssheet_addwindowssheet", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "games_gameoverscreen_gameoverscreen", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "onboarding_lyrabubble_lyrabubble", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_digamissionbanner_digamissionbanner", + "target": "components_riveavatar_riveavatar" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", + "target": "components_deviceapprovalincomingsheet_deviceapprovalincomingsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L25", + "weight": 1.0, + "context": "call", + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", + "target": "components_deviceapprovalincomingsheet_platformicon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", + "target": "components_deviceapprovalincomingsheet_userdevice" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L135", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_deviceapprovalincomingsheet_deviceapprovalincomingsheet", + "target": "components_deviceapprovalincomingsheet_platformicon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", + "source_location": "L45", + "weight": 1.0, + "source": "components_deviceapprovalincomingsheet_deviceapprovalincomingsheet", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/KeyboardAdjustedView.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_keyboardadjustedview_tsx", + "target": "apps_rebreak_native_hooks_usekeyboardheight_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/KeyboardAdjustedView.tsx", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_keyboardadjustedview_tsx", + "target": "components_keyboardadjustedview_keyboardadjustedview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/KeyboardAdjustedView.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_keyboardadjustedview_tsx", + "target": "components_keyboardadjustedview_keyboardadjustedviewprops" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/KeyboardAdjustedView.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_keyboardadjustedview_tsx", + "target": "hooks_usekeyboardheight_usekeyboardheight" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212499,6 +253075,17 @@ "source": "apps_rebreak_native_components_blocker_domaingrid_tsx", "target": "apps_rebreak_native_components_successalert_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "apps_rebreak_native_components_successalert_tsx" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212541,6 +253128,17 @@ "source": "apps_rebreak_native_components_blocker_domaingrid_tsx", "target": "components_successalert_successalert" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "components_successalert_successalert" + }, { "relation": "imports", "context": "import", @@ -212552,6 +253150,58 @@ "source": "blocker_vipdomainlist_vipdomainlist", "target": "components_successalert_successalert" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/SearchBarFloating.tsx", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_searchbarfloating_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/SearchBarFloating.tsx", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_searchbarfloating_tsx", + "target": "components_searchbarfloating_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/SearchBarFloating.tsx", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_searchbarfloating_tsx", + "target": "components_searchbarfloating_searchbarfloating" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/SearchBarFloating.tsx", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_searchbarfloating_tsx", + "target": "components_searchbarfloating_styles" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/SearchBarFloating.tsx", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_searchbarfloating_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212594,6 +253244,58 @@ "source": "components_searchbarfloating_searchbarfloating", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OptionsBottomSheet.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_optionsbottomsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OptionsBottomSheet.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_optionsbottomsheet_tsx", + "target": "components_optionsbottomsheet_option" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OptionsBottomSheet.tsx", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_optionsbottomsheet_tsx", + "target": "components_optionsbottomsheet_optionsbottomsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OptionsBottomSheet.tsx", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_optionsbottomsheet_tsx", + "target": "components_optionsbottomsheet_props" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OptionsBottomSheet.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_optionsbottomsheet_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212636,6 +253338,274 @@ "source": "components_optionsbottomsheet_optionsbottomsheet", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "apps_rebreak_native_components_header_headerdropdownmenu_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "apps_rebreak_native_lib_resolveavatar_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "components_appheader_appheader" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "components_appheader_props" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "header_headerdropdownmenu_headerdropdownmenu" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "hooks_useme_useme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "lib_resolveavatar_resolveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_appheader_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L28", + "weight": 1.0, + "source": "components_appheader_appheader", + "target": "hooks_useme_useme" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L45", + "weight": 1.0, + "source": "components_appheader_appheader", + "target": "lib_resolveavatar_resolveavatar" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/AppHeader.tsx", + "source_location": "L27", + "weight": 1.0, + "source": "components_appheader_appheader", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "apps_rebreak_native_hooks_usefollowing_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "apps_rebreak_native_hooks_uselastseenheartbeat_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "apps_rebreak_native_hooks_useonlineusers_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "components_onlinepresenceprovider_onlinepresenceprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "components_onlinepresenceprovider_presencecontextextended" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "components_onlinepresenceprovider_presencevisibilitycontext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "components_onlinepresenceprovider_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "components_onlinepresenceprovider_usepresencevisibility" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "hooks_usefollowing_usefollowing" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "hooks_uselastseenheartbeat_uselastseenheartbeat" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "hooks_useonlineusers_onlinepresencecontext" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/OnlinePresenceProvider.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onlinepresenceprovider_tsx", + "target": "hooks_useonlineusers_useonlinepresencenode" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212751,6 +253721,16 @@ "source": "apps_rebreak_native_components_nativetabs_tsx", "target": "components_nativetabs_nativeonlyoptions" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/NativeTabs.tsx", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_nativetabs_tsx", + "target": "components_nativetabs_nativetabnav" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212801,6 +253781,49 @@ "source": "apps_rebreak_native_components_nativetabs_tsx", "target": "components_nativetabs_props" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalpendingsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalpendingsheet_tsx", + "target": "components_deviceapprovalpendingsheet_deviceapprovalpendingsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_deviceapprovalpendingsheet_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", + "source_location": "L28", + "weight": 1.0, + "source": "components_deviceapprovalpendingsheet_deviceapprovalpendingsheet", + "target": "lib_theme_usecolors" + }, { "relation": "imports_from", "context": "import", @@ -212835,15 +253858,14 @@ "target": "apps_rebreak_native_lib_theme_ts" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", - "source_location": "L9", + "source_location": "L155", "weight": 1.0, "confidence_score": 1.0, "source": "apps_rebreak_native_components_devicelimitreachedsheet_tsx", - "target": "apps_rebreak_native_stores_deviceapproval_ts" + "target": "components_devicelimitreachedsheet_devicelimitreachedsheet" }, { "relation": "contains", @@ -212901,24 +253923,13 @@ "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "confidence_score": 1.0, "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "apps_rebreak_native_components_devicelimitreachedsheet_tsx", "target": "lib_theme_usecolors" }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", - "source_location": "L9", - "weight": 1.0, - "source": "apps_rebreak_native_components_devicelimitreachedsheet_tsx", - "target": "stores_deviceapproval_usedeviceapprovalstore" - }, { "relation": "calls", "context": "call", @@ -212952,6 +253963,273 @@ "source": "components_devicelimitreachedsheet_devicelimitrow", "target": "lib_theme_usecolors" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/DeviceLimitReachedSheet.tsx", + "source_location": "L157", + "weight": 1.0, + "source": "components_devicelimitreachedsheet_devicelimitreachedsheet", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "apps_rebreak_native_hooks_useprofiledata_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "components_digamilestonemodal_demographicsresp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "components_digamilestonemodal_digamilestonemodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "components_digamilestonemodal_milestones" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "components_digamilestonemodal_storagekey" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "hooks_useme_useme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "hooks_useprofiledata_useprotectioncoverage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_digamilestonemodal_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_digamilestonemodal_digamilestonemodal", + "target": "components_digamilestonemodal_milestones" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_digamilestonemodal_digamilestonemodal", + "target": "components_digamilestonemodal_storagekey" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_digamilestonemodal_digamilestonemodal", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_digamilestonemodal_digamilestonemodal", + "target": "apps_rebreak_native_hooks_useprofiledata_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_digamilestonemodal_digamilestonemodal", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_digamilestonemodal_digamilestonemodal", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L8", + "weight": 1.0, + "source": "components_digamilestonemodal_digamilestonemodal", + "target": "hooks_useme_useme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L9", + "weight": 1.0, + "source": "components_digamilestonemodal_digamilestonemodal", + "target": "hooks_useprofiledata_useprotectioncoverage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "components_digamilestonemodal_digamilestonemodal", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", + "source_location": "L12", + "weight": 1.0, + "source": "components_digamilestonemodal_digamilestonemodal", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/IconButton.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_iconbutton_tsx", + "target": "components_iconbutton_iconbutton" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/IconButton.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_iconbutton_tsx", + "target": "components_iconbutton_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212962,6 +254240,134 @@ "source": "components_iconbutton_iconbutton", "target": "components_iconbutton_props" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_components_permissiondeniedsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PermissionDeniedSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_permissiondeniedsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PermissionDeniedSheet.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_permissiondeniedsheet_tsx", + "target": "components_permissiondeniedsheet_permissiondeniedsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PermissionDeniedSheet.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_permissiondeniedsheet_tsx", + "target": "components_permissiondeniedsheet_permissiondeniedvariant" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/PermissionDeniedSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_permissiondeniedsheet_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "components_permissiondeniedsheet_permissiondeniedsheet" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/PermissionDeniedSheet.tsx", + "source_location": "L37", + "weight": 1.0, + "source": "components_permissiondeniedsheet_permissiondeniedsheet", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/DomainGrid.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_domaingrid_tsx", + "target": "apps_rebreak_native_components_confirmalert_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "apps_rebreak_native_components_confirmalert_tsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ConfirmAlert.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_confirmalert_tsx", + "target": "components_confirmalert_confirmalert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ConfirmAlert.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_confirmalert_tsx", + "target": "components_confirmalert_props" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "apps_rebreak_native_components_confirmalert_tsx" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -212983,6 +254389,28 @@ "source": "apps_rebreak_native_components_blocker_domaingrid_tsx", "target": "components_confirmalert_confirmalert" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "components_confirmalert_confirmalert" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "components_confirmalert_confirmalert" + }, { "relation": "imports_from", "context": "import", @@ -213091,11 +254519,33 @@ "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L17", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L16", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "apps_rebreak_native_components_button_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "apps_rebreak_native_components_button_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", "target": "apps_rebreak_native_components_button_tsx" }, { @@ -213135,11 +254585,33 @@ "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L17", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L16", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "components_button_button" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "components_button_button" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", "target": "components_button_button" }, { @@ -213186,6 +254658,58 @@ "source": "plan_planchangesheet_planchangesheet", "target": "components_button_button" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/StreakBadge.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_streakbadge_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/StreakBadge.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_streakbadge_tsx", + "target": "components_streakbadge_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/StreakBadge.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_streakbadge_tsx", + "target": "components_streakbadge_sizemap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/StreakBadge.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_streakbadge_tsx", + "target": "components_streakbadge_streakbadge" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/StreakBadge.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_streakbadge_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -213206,6 +254730,37 @@ "source": "locales_de_landing_streak_badge", "target": "components_streakbadge_sizemap" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/StreakBadge.tsx", + "source_location": "L19", + "weight": 1.0, + "source": "components_streakbadge_streakbadge", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/EmptyState.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_emptystate_tsx", + "target": "components_emptystate_emptystate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/EmptyState.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_emptystate_tsx", + "target": "components_emptystate_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -213220,11 +254775,22 @@ "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L9", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_call_tsx", + "source": "notification", + "target": "components_emptystate_emptystate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", "target": "apps_rebreak_native_components_useravatar_tsx" }, { @@ -213238,6 +254804,28 @@ "source": "apps_rebreak_native_components_chat_typingbubble_tsx", "target": "apps_rebreak_native_components_useravatar_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/UserAvatar.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_useravatar_tsx", + "target": "apps_rebreak_native_hooks_useonlineusers_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/UserAvatar.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_useravatar_tsx", + "target": "apps_rebreak_native_lib_resolveavatar_ts" + }, { "relation": "imports_from", "context": "import", @@ -213347,11 +254935,11 @@ "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L9", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L16", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_app_call_tsx", + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", "target": "components_useravatar_useravatar" }, { @@ -213409,6 +254997,17 @@ "source": "components_useravatar_useravatar", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ProtectionOnboardingSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_protectiononboardingsheet_tsx", + "target": "apps_rebreak_native_lib_protection_ts" + }, { "relation": "imports_from", "context": "import", @@ -213431,6 +255030,16 @@ "source": "apps_rebreak_native_components_protectiononboardingsheet_tsx", "target": "apps_rebreak_native_modules_rebreak_protection_index_ts" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ProtectionOnboardingSheet.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_protectiononboardingsheet_tsx", + "target": "components_protectiononboardingsheet_protectiononboardingsheet" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -213451,6 +255060,17 @@ "source": "apps_rebreak_native_components_protectiononboardingsheet_tsx", "target": "components_protectiononboardingsheet_stepstate" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/ProtectionOnboardingSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_protectiononboardingsheet_tsx", + "target": "lib_protection_protection" + }, { "relation": "imports", "context": "import", @@ -213466,13 +255086,201 @@ "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "confidence_score": 1.0, "source_file": "apps/rebreak-native/components/ProtectionOnboardingSheet.tsx", "source_location": "L6", "weight": 1.0, + "confidence_score": 1.0, "source": "apps_rebreak_native_components_protectiononboardingsheet_tsx", "target": "lib_theme_usecolors" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/ProtectionOnboardingSheet.tsx", + "source_location": "L22", + "weight": 1.0, + "source": "components_protectiononboardingsheet_protectiononboardingsheet", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", + "target": "chat_voicerecordingbar_formatvoiceduration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", + "target": "chat_voicerecordingbar_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", + "target": "chat_voicerecordingbar_styles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", + "target": "chat_voicerecordingbar_voicebars" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", + "target": "chat_voicerecordingbar_voicerecordingbar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "chat_voicerecordingbar_voicerecordingbar", + "target": "chat_voicerecordingbar_formatvoiceduration" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", + "source_location": "L60", + "weight": 1.0, + "source": "chat_voicerecordingbar_voicerecordingbar", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "apps_rebreak_native_components_chat_messageactionmenu_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/MessageActionMenu.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_messageactionmenu_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/MessageActionMenu.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_messageactionmenu_tsx", + "target": "chat_messageactionmenu_anchorrect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/MessageActionMenu.tsx", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_messageactionmenu_tsx", + "target": "chat_messageactionmenu_messageactionmenu" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/MessageActionMenu.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_messageactionmenu_tsx", + "target": "chat_messageactionmenu_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/MessageActionMenu.tsx", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_messageactionmenu_tsx", + "target": "chat_messageactionmenu_reaction_emojis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/MessageActionMenu.tsx", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_messageactionmenu_tsx", + "target": "chat_messageactionmenu_styles" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/MessageActionMenu.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_messageactionmenu_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -213483,6 +255291,17 @@ "source": "chat_messageactionmenu_messageactionmenu", "target": "chat_messageactionmenu_reaction_emojis" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_messageactionmenu_anchorrect" + }, { "relation": "imports", "context": "import", @@ -213514,6 +255333,17 @@ "source": "chat_messageactionmenu_messageactionmenu", "target": "chat_messageactionmenu_props" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_messageactionmenu_messageactionmenu" + }, { "relation": "imports_from", "context": "import", @@ -213557,6 +255387,68 @@ "source": "chat_messageactionmenu_messageactionmenu", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/DmChatBackground.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_dmchatbackground_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/DmChatBackground.tsx", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_dmchatbackground_tsx", + "target": "chat_dmchatbackground_dmchatbackground" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/DmChatBackground.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_dmchatbackground_tsx", + "target": "chat_dmchatbackground_sequence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/DmChatBackground.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_dmchatbackground_tsx", + "target": "chat_dmchatbackground_symbol" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/DmChatBackground.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_dmchatbackground_tsx", + "target": "chat_dmchatbackground_symbolshape" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/DmChatBackground.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_dmchatbackground_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -213609,6 +255501,80 @@ "source": "chat_dmchatbackground_dmchatbackground", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatHeaderStatus.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatheaderstatus_tsx", + "target": "apps_rebreak_native_hooks_uselastseenbatch_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatHeaderStatus.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatheaderstatus_tsx", + "target": "apps_rebreak_native_hooks_useonlineusers_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatHeaderStatus.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatheaderstatus_tsx", + "target": "chat_chatheaderstatus_chatheaderstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatHeaderStatus.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatheaderstatus_tsx", + "target": "chat_chatheaderstatus_formatlastseen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatHeaderStatus.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatheaderstatus_tsx", + "target": "chat_chatheaderstatus_props" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatHeaderStatus.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatheaderstatus_tsx", + "target": "hooks_uselastseenbatch_uselastseenbatch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatHeaderStatus.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatheaderstatus_tsx", + "target": "hooks_useonlineusers_useonlineusers" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -213652,6 +255618,80 @@ "source": "chat_chatheaderstatus_chatheaderstatus", "target": "hooks_useonlineusers_useonlineusers" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_createroomsheet_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_createroomsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_createroomsheet_tsx", + "target": "chat_createroomsheet_createroomsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_createroomsheet_tsx", + "target": "chat_createroomsheet_makestyles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_createroomsheet_tsx", + "target": "chat_createroomsheet_props" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_createroomsheet_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/CreateRoomSheet.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_createroomsheet_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -213717,6 +255757,78 @@ "source": "chat_createroomsheet_createroomsheet", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_roomcard_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_roomcard_tsx", + "target": "chat_roomcard_formattime" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_roomcard_tsx", + "target": "chat_roomcard_makestyles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_roomcard_tsx", + "target": "chat_roomcard_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_roomcard_tsx", + "target": "chat_roomcard_room" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_roomcard_tsx", + "target": "chat_roomcard_roomcard" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/RoomCard.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_roomcard_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -213781,6 +255893,254 @@ "source": "chat_roomcard_roomcard", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_typingbubble_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_typingbubble_tsx", + "target": "chat_typingbubble_styles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_typingbubble_tsx", + "target": "chat_typingbubble_typingbubble" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_typingbubble_tsx", + "target": "chat_typingbubble_wavedots" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_typingbubble_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", + "source_location": "L61", + "weight": 1.0, + "source": "chat_typingbubble_typingbubble", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_chatbubble_callnoterow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_chatbubble_chatbubble" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L277", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_chatbubble_chatbubbleinner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_chatbubble_chatmsg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_chatbubble_fmtsec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L213", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_chatbubble_formattime" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L647", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_chatbubble_makestyles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_chatbubble_messagereaction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_chatbubble_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_chatbubble_usebubblecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "chat_chatbubble_voicenotebubble" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_chatbubble_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "chat_chatbubble_chatbubble", + "target": "chat_chatbubble_fmtsec" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "chat_chatbubble_voicenotebubble", + "target": "chat_chatbubble_fmtsec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "chat_chatbubble_chatbubble", + "target": "chat_chatbubble_voicenotebubble" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "chat_chatbubble_voicenotebubble", + "target": "chat_chatbubble_usebubblecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L28", + "weight": 1.0, + "source": "chat_chatbubble_voicenotebubble", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -213822,6 +256182,17 @@ "source": "chat_chatbubble_chatbubble", "target": "chat_chatbubble_formattime" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L481", + "weight": 1.0, + "confidence_score": 1.0, + "source": "chat_chatbubble_chatbubbleinner", + "target": "chat_chatbubble_formattime" + }, { "relation": "contains", "context": "call", @@ -213838,12 +256209,33 @@ "context": "call", "confidence": "EXTRACTED", "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L29", + "source_location": "L294", "weight": 1.0, "confidence_score": 1.0, - "source": "chat_chatbubble_voicenotebubble", + "source": "chat_chatbubble_chatbubbleinner", "target": "chat_chatbubble_usebubblecolors" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L235", + "weight": 1.0, + "source": "chat_chatbubble_callnoterow", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "chat_chatbubble_chatbubble", + "target": "chat_chatbubble_callnoterow" + }, { "relation": "imports_from", "context": "import", @@ -213855,26 +256247,6 @@ "source": "chat_chatbubble_chatbubble", "target": "apps_rebreak_native_lib_theme_ts" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "chat_chatbubble_chatbubble", - "target": "chat_chatbubble_callnoterow" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "chat_chatbubble_chatbubble", - "target": "chat_chatbubble_fmtsec" - }, { "relation": "contains", "context": "call", @@ -213886,16 +256258,6 @@ "source": "chat_chatbubble_chatbubble", "target": "chat_chatbubble_makestyles" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "chat_chatbubble_chatbubble", - "target": "chat_chatbubble_voicenotebubble" - }, { "relation": "imports", "context": "import", @@ -213907,6 +256269,28 @@ "source": "chat_chatbubble_chatbubble", "target": "lib_theme_usecolors" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "chat_chatbubble_chatbubbleinner", + "target": "chat_chatbubble_makestyles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", + "source_location": "L292", + "weight": 1.0, + "source": "chat_chatbubble_chatbubbleinner", + "target": "lib_theme_usecolors" + }, { "relation": "imports_from", "context": "import", @@ -214033,6 +256417,141 @@ "source": "chat_chatinput_chatinput", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/chat/MediaLightbox.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_chat_medialightbox_tsx", + "target": "chat_medialightbox_medialightbox" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "apps_rebreak_native_hooks_usemailresults_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "hooks_usemailresults_mailblockeditem" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "hooks_usemailresults_usemailresults" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L239", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "mail_mailactivitylog_activityitem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "mail_mailactivitylog_domainfromemail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "mail_mailactivitylog_formatdate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "mail_mailactivitylog_mailactivitylog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "mail_mailactivitylog_mailactivitylogbody" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "mail_mailactivitylog_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailactivitylog_tsx", + "target": "mail_mailactivitylog_providerdisplayname" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -214149,6 +256668,153 @@ "source": "mail_mailactivitylog_mailactivitylog", "target": "mail_mailactivitylog_activityitem" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/mail/MailActivityLog.tsx", + "source_location": "L144", + "weight": 1.0, + "source": "mail_mailactivitylog_mailactivitylogbody", + "target": "hooks_usemailresults_usemailresults" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "apps_rebreak_native_components_common_halfdonut_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "apps_rebreak_native_hooks_usemailstats_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "common_halfdonut_halfdonut" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "hooks_usemailstats_blockedbyconnectionentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "mail_maildistributionchart_displaylabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "mail_maildistributionchart_domainfromemail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "mail_maildistributionchart_formatcompact" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "mail_maildistributionchart_legendrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "mail_maildistributionchart_maildistributionchart" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "mail_maildistributionchart_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailDistributionChart.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_maildistributionchart_tsx", + "target": "mail_maildistributionchart_slice_colors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -214287,6 +256953,197 @@ "source": "mail_maildistributionchart_maildistributionchart", "target": "mail_maildistributionchart_legendrow" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "apps_rebreak_native_hooks_usemailconnect_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "apps_rebreak_native_hooks_usemailinterval_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "apps_rebreak_native_hooks_usemailstatus_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "apps_rebreak_native_hooks_usemailtitleedit_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "hooks_usemailconnect_usemailconnect" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "hooks_usemailinterval_usemailinterval" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "hooks_usemailstatus_mailaccount" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "hooks_usemailtitleedit_usemailtitleedit" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "mail_mailaccountsettingssheet_domainfromemail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "mail_mailaccountsettingssheet_editmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "mail_mailaccountsettingssheet_editview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "mail_mailaccountsettingssheet_interval_options_by_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "mail_mailaccountsettingssheet_mailaccountsettingssheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "mail_mailaccountsettingssheet_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountSettingsSheet.tsx", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountsettingssheet_tsx", + "target": "mail_mailaccountsettingssheet_settingsrow" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -214359,6 +257216,17 @@ "source": "mail_mailaccountsettingssheet_mailaccountsettingssheet", "target": "mail_mailaccountsettingssheet_editview" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountsettingssheet_mailaccountsettingssheet" + }, { "relation": "imports_from", "context": "import", @@ -214436,6 +257304,70 @@ "source": "mail_mailaccountsettingssheet_mailaccountsettingssheet", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailWeeklyChart.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailweeklychart_tsx", + "target": "apps_rebreak_native_hooks_usemailstatus_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailWeeklyChart.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailweeklychart_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailWeeklyChart.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailweeklychart_tsx", + "target": "hooks_usemailstatus_dailystat" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailWeeklyChart.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailweeklychart_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailWeeklyChart.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailweeklychart_tsx", + "target": "mail_mailweeklychart_mailweeklychart" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailWeeklyChart.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailweeklychart_tsx", + "target": "mail_mailweeklychart_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -214490,6 +257422,80 @@ "source": "mail_mailweeklychart_mailweeklychart", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailConsentReminderSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailconsentremindersheet_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailConsentReminderSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailconsentremindersheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailConsentReminderSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailconsentremindersheet_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailConsentReminderSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailconsentremindersheet_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailConsentReminderSheet.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailconsentremindersheet_tsx", + "target": "mail_mailconsentremindersheet_mailconsentremindersheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailConsentReminderSheet.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailconsentremindersheet_tsx", + "target": "mail_mailconsentremindersheet_pendingconnection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailConsentReminderSheet.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailconsentremindersheet_tsx", + "target": "mail_mailconsentremindersheet_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -214554,6 +257560,26 @@ "source": "mail_mailconsentremindersheet_mailconsentremindersheet", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailStatsRow.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailstatsrow_tsx", + "target": "mail_mailstatsrow_mailstatsrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailStatsRow.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailstatsrow_tsx", + "target": "mail_mailstatsrow_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -214564,6 +257590,92 @@ "source": "mail_mailstatsrow_mailstatsrow", "target": "mail_mailstatsrow_props" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "apps_rebreak_native_hooks_usemailconnect_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "apps_rebreak_native_lib_mailerrors_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "hooks_usemailconnect_usemailconnect" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "lib_mailerrors_humanizemailerror" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "mail_editmailaccountsheet_editmailaccountsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailAccountSheet.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailaccountsheet_tsx", + "target": "mail_editmailaccountsheet_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -214629,6 +257741,101 @@ "source": "mail_editmailaccountsheet_editmailaccountsheet", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "apps_rebreak_native_components_mail_mailblockedbydaychart_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailBlockedByDayChart.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailblockedbydaychart_tsx", + "target": "apps_rebreak_native_hooks_usemailstats_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailBlockedByDayChart.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailblockedbydaychart_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailBlockedByDayChart.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailblockedbydaychart_tsx", + "target": "hooks_usemailstats_blockedbydayentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailBlockedByDayChart.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailblockedbydaychart_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailBlockedByDayChart.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailblockedbydaychart_tsx", + "target": "mail_mailblockedbydaychart_formataxislabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailBlockedByDayChart.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailblockedbydaychart_tsx", + "target": "mail_mailblockedbydaychart_headingkey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailBlockedByDayChart.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailblockedbydaychart_tsx", + "target": "mail_mailblockedbydaychart_mailblockedbydaychart" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailBlockedByDayChart.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailblockedbydaychart_tsx", + "target": "mail_mailblockedbydaychart_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -214660,6 +257867,17 @@ "source": "mail_mailblockedbydaychart_mailblockedbydaychart", "target": "mail_mailblockedbydaychart_headingkey" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailblockedbydaychart_mailblockedbydaychart" + }, { "relation": "imports_from", "context": "import", @@ -214715,6 +257933,195 @@ "source": "mail_mailblockedbydaychart_mailblockedbydaychart", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "apps_rebreak_native_hooks_usemailconnect_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "apps_rebreak_native_lib_mailerrors_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "hooks_usemailconnect_mailprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "hooks_usemailconnect_usemailconnect" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "lib_mailerrors_humanizemailerror" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "mail_connectmailsheet_connectmailsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L618", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "mail_connectmailsheet_consentstep" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L355", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "mail_connectmailsheet_formview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L874", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "mail_connectmailsheet_oauthpendingstep" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L757", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "mail_connectmailsheet_oauthwarningstep" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "mail_connectmailsheet_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "mail_connectmailsheet_providerconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L919", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "mail_connectmailsheet_providergrid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/ConnectMailSheet.tsx", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_connectmailsheet_tsx", + "target": "mail_connectmailsheet_providers" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -214895,6 +258302,182 @@ "source": "mail_connectmailsheet_providergrid", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "apps_rebreak_native_hooks_usemailstats_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "apps_rebreak_native_hooks_usemailstatus_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "hooks_usemailstats_usemailconnectionstats" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "hooks_usemailstatus_mailaccount" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountcard_domainfromemail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountcard_idleheartbeatalive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountcard_isoauthprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountcard_mailaccountcard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountcard_oauthdisconnecthintmodal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountcard_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountcard_resolveprovidericon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountcard_resolvestatusdot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountcard_scanresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L187", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountcard_statusdot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailaccountcard_tsx", + "target": "mail_mailaccountcard_statusdotrow" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -214936,6 +258519,28 @@ "source": "hooks_usemailstatus_mailaccount", "target": "mail_mailaccountcard_resolveprovidericon" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L273", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mail_mailaccountcard_mailaccountcard", + "target": "mail_mailaccountcard_resolveprovidericon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L280", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mail_mailaccountcard_mailaccountcard", + "target": "mail_mailaccountcard_isoauthprovider" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -214968,6 +258573,17 @@ "source": "hooks_usemailstatus_mailaccount", "target": "mail_mailaccountcard_domainfromemail" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L285", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mail_mailaccountcard_mailaccountcard", + "target": "mail_mailaccountcard_domainfromemail" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -215009,6 +258625,59 @@ "source": "hooks_usemailstatus_mailaccount", "target": "mail_mailaccountcard_statusdotrow" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/mail/MailAccountCard.tsx", + "source_location": "L274", + "weight": 1.0, + "source": "mail_mailaccountcard_mailaccountcard", + "target": "hooks_usemailstats_usemailconnectionstats" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailEmptyState.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailemptystate_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailEmptyState.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailemptystate_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailEmptyState.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailemptystate_tsx", + "target": "mail_mailemptystate_mailemptystate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/MailEmptyState.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_mailemptystate_tsx", + "target": "mail_mailemptystate_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -215041,6 +258710,48 @@ "source": "mail_mailemptystate_mailemptystate", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailTitleSheet.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailtitlesheet_tsx", + "target": "apps_rebreak_native_hooks_usemailtitleedit_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailTitleSheet.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailtitlesheet_tsx", + "target": "hooks_usemailtitleedit_usemailtitleedit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailTitleSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailtitlesheet_tsx", + "target": "mail_editmailtitlesheet_editmailtitlesheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/mail/EditMailTitleSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_mail_editmailtitlesheet_tsx", + "target": "mail_editmailtitlesheet_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -215062,6 +258773,152 @@ "source": "mail_editmailtitlesheet_editmailtitlesheet", "target": "hooks_usemailtitleedit_usemailtitleedit" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "hooks_useme_plan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "plan_planchangesheet_actionchip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "plan_planchangesheet_changepreview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "plan_planchangesheet_changepreviewitem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "plan_planchangesheet_contentprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "plan_planchangesheet_plan_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "plan_planchangesheet_planchangesheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "plan_planchangesheet_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/plan/PlanChangeSheet.tsx", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_plan_planchangesheet_tsx", + "target": "plan_planchangesheet_sheetcontent" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -215198,6 +259055,90 @@ "source": "plan_planchangesheet_planchangesheet", "target": "plan_planchangesheet_sheetcontent" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipswapsheet_tsx", + "target": "apps_rebreak_native_hooks_usecustomdomains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipswapsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipswapsheet_tsx", + "target": "blocker_vipswapsheet_isvipeligible" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipswapsheet_tsx", + "target": "blocker_vipswapsheet_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipswapsheet_tsx", + "target": "blocker_vipswapsheet_swapcandidatetile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipswapsheet_tsx", + "target": "blocker_vipswapsheet_vipswapsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipswapsheet_tsx", + "target": "hooks_usecustomdomains_customdomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipSwapSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipswapsheet_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -215261,6 +259202,37 @@ "source": "blocker_vipswapsheet_vipswapsheet", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/LayerSwitchCard.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_layerswitchcard_tsx", + "target": "blocker_layerswitchcard_layerswitchcard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/LayerSwitchCard.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_layerswitchcard_tsx", + "target": "blocker_layerswitchcard_props" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_components_blocker_layerswitchcard_tsx" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -215271,6 +259243,259 @@ "source": "blocker_layerswitchcard_layerswitchcard", "target": "blocker_layerswitchcard_props" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "blocker_layerswitchcard_layerswitchcard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "blocker_layerswitchcard_layerswitchcard" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "apps_rebreak_native_hooks_usecustomdomains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "apps_rebreak_native_hooks_usewebcontentdomains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_suggestcuratedsheet_suggestcuratedsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L213", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_vipdomainlist_filtertile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_vipdomainlist_filtertilesgrid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_vipdomainlist_myfiltersemptystate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_vipdomainlist_myfilterslist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_vipdomainlist_myfiltersprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L783", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_vipdomainlist_vipcuratedtile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_vipdomainlist_vipcustommeta" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L653", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_vipdomainlist_vipcustomtile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L448", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_vipdomainlist_vipdomainlist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L441", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_vipdomainlist_viplistprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L609", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "blocker_vipdomainlist_vipsubsection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "hooks_usecustomdomains_customdomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "hooks_usecustomdomains_domainstatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "hooks_usecustomdomains_tier" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "hooks_usewebcontentdomains_usewebcontentdomains" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "lib_theme_colorscheme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/VipDomainList.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_vipdomainlist_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -215459,6 +259684,142 @@ "source": "blocker_vipdomainlist_vipdomainlist", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "apps_rebreak_native_components_common_halfdonut_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "apps_rebreak_native_lib_protection_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "blocker_protectiondetailssheet_animatedcounter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L307", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "blocker_protectiondetailssheet_deltabadge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L429", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "blocker_protectiondetailssheet_faqitem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L357", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "blocker_protectiondetailssheet_kpicard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L407", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "blocker_protectiondetailssheet_legenditem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "blocker_protectiondetailssheet_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "blocker_protectiondetailssheet_protectiondetailssheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "common_halfdonut_halfdonut" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "lib_protection_protectionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectiondetailssheet_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -215469,16 +259830,6 @@ "source": "blocker_protectiondetailssheet_protectiondetailssheet", "target": "blocker_protectiondetailssheet_props" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "blocker_protectiondetailssheet_protectiondetailssheet", - "target": "blocker_protectiondetailssheet_statsresponse" - }, { "relation": "imports_from", "context": "import", @@ -215562,6 +259913,16 @@ "source": "blocker_protectiondetailssheet_protectiondetailssheet", "target": "blocker_protectiondetailssheet_legenditem" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "blocker_protectiondetailssheet_protectiondetailssheet", + "target": "blocker_protectiondetailssheet_statsresponse" + }, { "relation": "imports", "context": "import", @@ -215584,6 +259945,17 @@ "source": "blocker_protectiondetailssheet_protectiondetailssheet", "target": "lib_api_apifetch" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "blocker_protectiondetailssheet_protectiondetailssheet", + "target": "lib_protection_protection" + }, { "relation": "imports", "context": "import", @@ -215606,28 +259978,6 @@ "source": "blocker_protectiondetailssheet_protectiondetailssheet", "target": "src_lib_protectionstate" }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "blocker_protectiondetailssheet_protectiondetailssheet", - "target": "stores_blockerstats_blockerstats" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/blocker/ProtectionDetailsSheet.tsx", - "source_location": "L18", - "weight": 1.0, - "source": "blocker_protectiondetailssheet_protectiondetailssheet", - "target": "stores_blockerstats_useblockerstatsstore" - }, { "relation": "calls", "context": "call", @@ -215661,6 +260011,342 @@ "source": "blocker_protectiondetailssheet_faqitem", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L283", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_androidsetupflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_androidsetupflowprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L527", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_androidstep1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L395", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_androidstep2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L527", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_androidstep3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L466", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_androidstepbattery" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_iosunsupervisedsetupflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_setupflowprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_setupstep1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_setupstep2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L207", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_setupstep3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SetupFlows.tsx", + "source_location": "L582", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "blocker_setupflows_setupstepcard" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.8, + "weight": 0.8, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "Schutz-Aktivierungs-Flow", + "source": "apps_rebreak_native_components_blocker_setupflows_tsx", + "target": "diga_03_req_prot" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_components_blocker_setupflows_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "apps_rebreak_native_components_blocker_setupflows_tsx" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "blocker_setupflows_iosunsupervisedsetupflow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "blocker_setupflows_iosunsupervisedsetupflow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "blocker_setupflows_androidsetupflow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "blocker_setupflows_androidsetupflow" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "apps_rebreak_native_hooks_usecustomdomains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "blocker_adddomainsheet_adddomainsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "blocker_adddomainsheet_detectkind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "blocker_adddomainsheet_maildomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L434", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "blocker_adddomainsheet_previewcard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "blocker_adddomainsheet_props" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "hooks_usecustomdomains_adddomainresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "hooks_usecustomdomains_isvaliddomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "hooks_usecustomdomains_normalizedomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "hooks_usecustomdomains_tier" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "lib_theme_colorscheme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/AddDomainSheet.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_adddomainsheet_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -215791,6 +260477,90 @@ "source": "blocker_adddomainsheet_adddomainsheet", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectioncard_tsx", + "target": "apps_rebreak_native_lib_protection_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectioncard_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectioncard_tsx", + "target": "blocker_protectioncard_formatcount" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectioncard_tsx", + "target": "blocker_protectioncard_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectioncard_tsx", + "target": "blocker_protectioncard_protectioncard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectioncard_tsx", + "target": "blocker_protectioncard_stat" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectioncard_tsx", + "target": "lib_protection_protectionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectioncard_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -215833,6 +260603,17 @@ "source": "blocker_protectioncard_protectioncard", "target": "blocker_protectioncard_stat" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionCard.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "blocker_protectioncard_protectioncard", + "target": "lib_protection_protection" + }, { "relation": "imports", "context": "import", @@ -215919,6 +260700,58 @@ "source": "blocker_cooldownbanner_cooldownbanner", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/DeactivationExplainerSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_deactivationexplainersheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/DeactivationExplainerSheet.tsx", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_deactivationexplainersheet_tsx", + "target": "blocker_deactivationexplainersheet_bulletrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/DeactivationExplainerSheet.tsx", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_deactivationexplainersheet_tsx", + "target": "blocker_deactivationexplainersheet_deactivationexplainersheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/DeactivationExplainerSheet.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_deactivationexplainersheet_tsx", + "target": "blocker_deactivationexplainersheet_props" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/DeactivationExplainerSheet.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_deactivationexplainersheet_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -215972,6 +260805,90 @@ "source": "blocker_deactivationexplainersheet_bulletrow", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectionlockedcard_tsx", + "target": "apps_rebreak_native_lib_protection_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectionlockedcard_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectionlockedcard_tsx", + "target": "blocker_protectionlockedcard_formatcount" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectionlockedcard_tsx", + "target": "blocker_protectionlockedcard_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectionlockedcard_tsx", + "target": "blocker_protectionlockedcard_protectionlockedcard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectionlockedcard_tsx", + "target": "blocker_protectionlockedcard_stat" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectionlockedcard_tsx", + "target": "lib_protection_protectionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_protectionlockedcard_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -216014,6 +260931,17 @@ "source": "blocker_protectionlockedcard_protectionlockedcard", "target": "blocker_protectionlockedcard_stat" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/ProtectionLockedCard.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "blocker_protectionlockedcard_protectionlockedcard", + "target": "lib_protection_protection" + }, { "relation": "imports", "context": "import", @@ -216047,6 +260975,17 @@ "source": "blocker_protectionlockedcard_stat", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/DomainGrid.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_domaingrid_tsx", + "target": "apps_rebreak_native_hooks_usecustomdomains_ts" + }, { "relation": "imports_from", "context": "import", @@ -216078,6 +261017,16 @@ "source": "apps_rebreak_native_components_blocker_domaingrid_tsx", "target": "blocker_domaingrid_domaintile" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/DomainGrid.tsx", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_domaingrid_tsx", + "target": "blocker_domaingrid_domaintilesgrid" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -216108,6 +261057,17 @@ "source": "apps_rebreak_native_components_blocker_domaingrid_tsx", "target": "blocker_domaingrid_timeago" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/DomainGrid.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_domaingrid_tsx", + "target": "hooks_usecustomdomains_customdomain" + }, { "relation": "imports", "context": "import", @@ -216174,6 +261134,125 @@ "source": "blocker_domaingrid_domaintile", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "apps_rebreak_native_hooks_usecuratedsuggest_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "apps_rebreak_native_hooks_usecustomdomains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "apps_rebreak_native_hooks_usewebcontentdomains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "blocker_suggestcuratedsheet_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "blocker_suggestcuratedsheet_suggestcuratedsheet" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "hooks_usecuratedsuggest_usecuratedsuggest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "hooks_usecustomdomains_isvaliddomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "hooks_usecustomdomains_normalizedomain" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "hooks_usewebcontentdomains_resolvevipcountry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/blocker/SuggestCuratedSheet.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_blocker_suggestcuratedsheet_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -216344,6 +261423,28 @@ "source": "apps_rebreak_native_components_common_halfdonut_tsx", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "apps_rebreak_native_components_common_halfdonut_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "apps_rebreak_native_components_common_halfdonut_tsx" + }, { "relation": "imports_from", "context": "import", @@ -216388,6 +261489,28 @@ "source": "common_halfdonut_halfdonut", "target": "common_halfdonut_arcpath" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "common_halfdonut_halfdonut" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "common_halfdonut_halfdonut" + }, { "relation": "calls", "context": "call", @@ -216421,6 +261544,153 @@ "source": "profile_streaksection_streaksection", "target": "common_halfdonut_halfdonut" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "apps_rebreak_native_hooks_useprofiledata_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "hooks_useprofiledata_backendcooldownentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "hooks_useprofiledata_protectioncoveragedata" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "profile_cooldownpatternanalysis_cooldownpatternanalysis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "profile_streaksection_buildweekbuckets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "profile_streaksection_cooldownentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "profile_streaksection_formatavg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "profile_streaksection_formatlastdate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "profile_streaksection_getmondayofweek" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "profile_streaksection_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/StreakSection.tsx", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_streaksection_tsx", + "target": "profile_streaksection_streaksection" + }, { "relation": "imports", "context": "import", @@ -216572,6 +261842,58 @@ "source": "profile_streaksection_streaksection", "target": "profile_cooldownpatternanalysis_cooldownpatternanalysis" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/UrgeStatsCard.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_urgestatscard_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/UrgeStatsCard.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_urgestatscard_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/UrgeStatsCard.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_urgestatscard_tsx", + "target": "profile_urgestatscard_helpedbyentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/UrgeStatsCard.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_urgestatscard_tsx", + "target": "profile_urgestatscard_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/UrgeStatsCard.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_urgestatscard_tsx", + "target": "profile_urgestatscard_urgestatscard" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -216687,6 +262009,190 @@ "source": "profile_statsbar_statpill", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "apps_rebreak_native_hooks_useprofiledata_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "hooks_useprofiledata_backendcooldownentry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_barchart" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_barchartprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_buildhourbuckets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_buildweekdaybuckets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_cancelrate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_cooldownpatternanalysis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_de_stop_words" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_en_stop_words" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_extracttopwords" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_sectionheading" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_sectionheadingprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_topword" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/CooldownPatternAnalysis.tsx", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_cooldownpatternanalysis_tsx", + "target": "profile_cooldownpatternanalysis_weekday_keys" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -216855,6 +262361,142 @@ "source": "profile_cooldownpatternanalysis_cooldownpatternanalysis", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "apps_rebreak_native_hooks_useuserplan_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "apps_rebreak_native_lib_resolveavatar_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "hooks_useme_plan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "lib_resolveavatar_resolveavatar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "profile_profileheader_appleicon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "profile_profileheader_authprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "profile_profileheader_googleicon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "profile_profileheader_plancolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "profile_profileheader_planlabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "profile_profileheader_profileheader" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ProfileHeader.tsx", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_profileheader_tsx", + "target": "profile_profileheader_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -216960,6 +262602,649 @@ "source": "profile_profileheader_profileheader", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "apps_rebreak_native_hooks_useuserplan_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "apps_rebreak_native_lib_germancities_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "hooks_useme_plan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "lib_germancities_getcitiesforbundesland" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_birth_year_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_bundesland_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_demographics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_demographicsaccordion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_employment_status_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L682", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_fieldrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_gender_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_industry_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_job_tenure_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_lookuplabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_marital_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_mockpersist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_relevantfieldcount" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L753", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_selectbutton" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_status_with_industry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_status_with_shift" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_demographicsaccordion_tsx", + "target": "profile_demographicsaccordion_status_with_tenure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_birth_year_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_gender_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_marital_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_employment_status_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_industry_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_job_tenure_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_bundesland_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_status_with_shift" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_status_with_industry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_status_with_tenure" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_relevantfieldcount" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_lookuplabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_mockpersist" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "apps_rebreak_native_lib_germancities_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "hooks_useme_plan" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "hooks_useuserplan_useuserplan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "lib_germancities_getcitiesforbundesland" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L15", + "weight": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L682", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_fieldrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L753", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_demographicsaccordion_demographicsaccordion", + "target": "profile_demographicsaccordion_selectbutton" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L699", + "weight": 1.0, + "source": "profile_demographicsaccordion_fieldrow", + "target": "lib_theme_usecolors" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/profile/DemographicsAccordion.tsx", + "source_location": "L754", + "weight": 1.0, + "source": "profile_demographicsaccordion_selectbutton", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_digamissionbanner_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_digamissionbanner_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_digamissionbanner_tsx", + "target": "profile_digamissionbanner_digamissionbanner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_digamissionbanner_tsx", + "target": "profile_digamissionbanner_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_digamissionbanner_digamissionbanner", + "target": "profile_digamissionbanner_props" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profile_digamissionbanner_digamissionbanner", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/profile/DigaMissionBanner.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "profile_digamissionbanner_digamissionbanner", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ApprovedDomainsList.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_approveddomainslist_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ApprovedDomainsList.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_approveddomainslist_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ApprovedDomainsList.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_approveddomainslist_tsx", + "target": "profile_approveddomainslist_approveddomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ApprovedDomainsList.tsx", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_approveddomainslist_tsx", + "target": "profile_approveddomainslist_approveddomainslist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ApprovedDomainsList.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_approveddomainslist_tsx", + "target": "profile_approveddomainslist_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/profile/ApprovedDomainsList.tsx", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_profile_approveddomainslist_tsx", + "target": "profile_approveddomainslist_skeletonrow" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProfileData.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprofiledata_ts", + "target": "apps_rebreak_native_components_profile_approveddomainslist_tsx" + }, { "relation": "imports", "context": "import", @@ -217045,6 +263330,26 @@ "source": "profile_approveddomainslist_skeletonrow", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/icons/LanguageIcon.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_icons_languageicon_tsx", + "target": "icons_languageicon_languageicon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/icons/LanguageIcon.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_icons_languageicon_tsx", + "target": "icons_languageicon_props" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -217055,6 +263360,17 @@ "source": "icons_languageicon_languageicon", "target": "icons_languageicon_props" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameCard.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gamecard_tsx", + "target": "apps_rebreak_native_components_urge_urgegames_tsx" + }, { "relation": "imports_from", "context": "import", @@ -217066,6 +263382,39 @@ "source": "apps_rebreak_native_components_urge_gamepickerdrawer_tsx", "target": "apps_rebreak_native_components_urge_urgegames_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "apps_rebreak_native_components_urge_urgegames_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_urgegames_tsx", + "target": "apps_rebreak_native_components_games_gameoverscreen_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_urgegames_tsx", + "target": "apps_rebreak_native_components_games_scoreprogressbar_tsx" + }, { "relation": "imports_from", "context": "import", @@ -217077,6 +263426,17 @@ "source": "apps_rebreak_native_components_urge_urgegames_tsx", "target": "apps_rebreak_native_components_urge_gamesvgs_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_urgegames_tsx", + "target": "apps_rebreak_native_hooks_usesnakesounds_ts" + }, { "relation": "imports_from", "context": "import", @@ -217325,6 +263685,16 @@ "source": "apps_rebreak_native_components_urge_urgegames_tsx", "target": "urge_urgegames_taphaptic" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", + "source_location": "L843", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_urgegames_tsx", + "target": "urge_urgegames_tetris_pieces" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -217425,6 +263795,16 @@ "source": "apps_rebreak_native_components_urge_urgegames_tsx", "target": "urge_urgegames_ttcell" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", + "source_location": "L668", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_urgegames_tsx", + "target": "urge_urgegames_ttcheckwinner" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -217476,6 +263856,17 @@ "source": "games_gamecard_gamecard", "target": "apps_rebreak_native_components_urge_urgegames_tsx" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameCard.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gamecard_tsx", + "target": "urge_urgegames_gametype" + }, { "relation": "imports", "context": "import", @@ -217487,6 +263878,17 @@ "source": "apps_rebreak_native_components_urge_gamepickerdrawer_tsx", "target": "urge_urgegames_gametype" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "urge_urgegames_gametype" + }, { "relation": "imports", "context": "import", @@ -217520,6 +263922,17 @@ "source": "games_gamecard_gamecardprops", "target": "urge_urgegames_gametype" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "urge_urgegames_game_meta" + }, { "relation": "imports", "context": "import", @@ -217531,6 +263944,17 @@ "source": "apps_rebreak_native_components_urge_gamepickerdrawer_tsx", "target": "urge_urgegames_gamepickergrid" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "urge_urgegames_gamepickergrid" + }, { "relation": "calls", "context": "call", @@ -217542,6 +263966,17 @@ "source": "urge_urgegames_snakegame", "target": "hooks_usesnakesounds_usesnakesounds" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/UrgeGames.tsx", + "source_location": "L678", + "weight": 1.0, + "confidence_score": 1.0, + "source": "urge_urgegames_ttwouldwin", + "target": "urge_urgegames_ttcheckwinner" + }, { "relation": "calls", "context": "call", @@ -217597,6 +264032,70 @@ "source": "urge_urgegames_stat", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/InlineRatingDrawer.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_inlineratingdrawer_tsx", + "target": "apps_rebreak_native_components_urge_sosfeedbackmodal_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/InlineRatingDrawer.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_inlineratingdrawer_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/InlineRatingDrawer.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_inlineratingdrawer_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/InlineRatingDrawer.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_inlineratingdrawer_tsx", + "target": "urge_inlineratingdrawer_inlineratingdrawer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/InlineRatingDrawer.tsx", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_inlineratingdrawer_tsx", + "target": "urge_inlineratingdrawer_s" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/InlineRatingDrawer.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_inlineratingdrawer_tsx", + "target": "urge_sosfeedbackmodal_sosfeedback" + }, { "relation": "imports_from", "context": "import", @@ -217651,6 +264150,70 @@ "source": "urge_inlineratingdrawer_inlineratingdrawer", "target": "urge_sosfeedbackmodal_sosfeedbackmodal" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/LlmProviderToggle.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_llmprovidertoggle_tsx", + "target": "apps_rebreak_native_lib_llmprovider_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/LlmProviderToggle.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_llmprovidertoggle_tsx", + "target": "lib_llmprovider_llm_provider_label" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/LlmProviderToggle.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_llmprovidertoggle_tsx", + "target": "lib_llmprovider_llmprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/LlmProviderToggle.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_llmprovidertoggle_tsx", + "target": "lib_llmprovider_usellmprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/LlmProviderToggle.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_llmprovidertoggle_tsx", + "target": "urge_llmprovidertoggle_llmprovidertoggle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/LlmProviderToggle.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_llmprovidertoggle_tsx", + "target": "urge_llmprovidertoggle_providers" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -217724,6 +264287,58 @@ "source": "apps_rebreak_native_components_urge_gamepickerdrawer_tsx", "target": "urge_gamepickerdrawer_st" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/ShareSuccessDrawer.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_sharesuccessdrawer_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/ShareSuccessDrawer.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_sharesuccessdrawer_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/ShareSuccessDrawer.tsx", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_sharesuccessdrawer_tsx", + "target": "urge_sharesuccessdrawer_s" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/ShareSuccessDrawer.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_sharesuccessdrawer_tsx", + "target": "urge_sharesuccessdrawer_sharesuccessdrawer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/ShareSuccessDrawer.tsx", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_sharesuccessdrawer_tsx", + "target": "urge_sharesuccessdrawer_sharesuccesspayload" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -217766,6 +264381,58 @@ "source": "urge_sharesuccessdrawer_sharesuccessdrawer", "target": "urge_sharesuccessdrawer_s" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/SosFeedbackModal.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_sosfeedbackmodal_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/SosFeedbackModal.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_sosfeedbackmodal_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/SosFeedbackModal.tsx", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_sosfeedbackmodal_tsx", + "target": "urge_sosfeedbackmodal_s" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/SosFeedbackModal.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_sosfeedbackmodal_tsx", + "target": "urge_sosfeedbackmodal_sosfeedback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/SosFeedbackModal.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_sosfeedbackmodal_tsx", + "target": "urge_sosfeedbackmodal_sosfeedbackmodal" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -217934,6 +264601,150 @@ "source": "urge_urgestats_urgestats", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "urge_messagerow_cardtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "urge_messagerow_gamecard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "urge_messagerow_gameheader" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "urge_messagerow_messagerow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "urge_messagerow_messagerowprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "urge_messagerow_overcomecard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "urge_messagerow_sosmsg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/MessageRow.tsx", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_messagerow_tsx", + "target": "urge_messagerow_st" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/TtsProviderToggle.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_ttsprovidertoggle_tsx", + "target": "apps_rebreak_native_lib_ttsprovider_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/TtsProviderToggle.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_ttsprovidertoggle_tsx", + "target": "lib_ttsprovider_tts_provider_label" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/TtsProviderToggle.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_ttsprovidertoggle_tsx", + "target": "lib_ttsprovider_ttsprovider" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/TtsProviderToggle.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_ttsprovidertoggle_tsx", + "target": "lib_ttsprovider_usettsprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/TtsProviderToggle.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_ttsprovidertoggle_tsx", + "target": "urge_ttsprovidertoggle_providers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/TtsProviderToggle.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_ttsprovidertoggle_tsx", + "target": "urge_ttsprovidertoggle_ttsprovidertoggle" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -217944,6 +264755,17 @@ "source": "lib_ttsprovider_ttsprovider", "target": "urge_ttsprovidertoggle_providers" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/urge/TtsProviderToggle.tsx", + "source_location": "L7", + "weight": 1.0, + "source": "urge_ttsprovidertoggle_ttsprovidertoggle", + "target": "lib_ttsprovider_usettsprovider" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -217974,6 +264796,17 @@ "source": "apps_rebreak_native_components_urge_inlineindicators_tsx", "target": "urge_inlineindicators_voicebars" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_breathing_tsx", + "target": "apps_rebreak_native_lib_sosconstants_ts" + }, { "relation": "imports_from", "context": "import", @@ -217985,6 +264818,39 @@ "source": "apps_rebreak_native_components_urge_breathing_tsx", "target": "apps_rebreak_native_lib_theme_ts" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_breathing_tsx", + "target": "lib_sosconstants_breath_phases" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_breathing_tsx", + "target": "lib_sosconstants_breathphase" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/urge/Breathing.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_urge_breathing_tsx", + "target": "lib_sosconstants_breathstate" + }, { "relation": "imports", "context": "import", @@ -218058,6 +264924,26 @@ "source": "urge_breathing_breathingdrawer", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/ScoreProgressBar.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_scoreprogressbar_tsx", + "target": "games_scoreprogressbar_scoreprogressbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/ScoreProgressBar.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_scoreprogressbar_tsx", + "target": "games_scoreprogressbar_scoreprogressbarprops" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -218068,6 +264954,102 @@ "source": "games_scoreprogressbar_scoreprogressbar", "target": "games_scoreprogressbar_scoreprogressbarprops" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "apps_rebreak_native_components_games_starrating_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "games_gameoverscreen_gameoverscreen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "games_gameoverscreen_gameoverscreenprops" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "games_gameoverscreen_lyramsg" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "games_starrating_starrating" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameOverScreen.tsx", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameoverscreen_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -218155,6 +265137,48 @@ "source": "games_gameoverscreen_gameoverscreen", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameCard.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gamecard_tsx", + "target": "apps_rebreak_native_components_games_gameratingstars_tsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameCard.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gamecard_tsx", + "target": "games_gamecard_gamecard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameCard.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gamecard_tsx", + "target": "games_gamecard_gamecardprops" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameCard.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gamecard_tsx", + "target": "games_gameratingstars_gameratingstars" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -218176,6 +265200,17 @@ "source": "games_gamecard_gamecard", "target": "games_gameratingstars_gameratingstars" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameRatingStars.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameratingstars_tsx", + "target": "apps_rebreak_native_components_games_starrating_tsx" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -218227,6 +265262,17 @@ "source": "games_gameratingstars_gameratingstars", "target": "apps_rebreak_native_components_games_starrating_tsx" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameRatingStars.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameratingstars_tsx", + "target": "games_starrating_starrating" + }, { "relation": "imports", "context": "import", @@ -218238,6 +265284,98 @@ "source": "games_gameratingstars_gameratingstars", "target": "games_starrating_starrating" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameRatingStars.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameratingstars_tsx", + "target": "games_gameratingstars_gameratingstars" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/games/GameRatingStars.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_games_gameratingstars_tsx", + "target": "games_gameratingstars_gameratingstarsprops" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_header_headerdropdownmenu_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_header_headerdropdownmenu_tsx", + "target": "header_headerdropdownmenu_headerdropdownmenu" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_header_headerdropdownmenu_tsx", + "target": "header_headerdropdownmenu_item" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_header_headerdropdownmenu_tsx", + "target": "header_headerdropdownmenu_itemkey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_header_headerdropdownmenu_tsx", + "target": "header_headerdropdownmenu_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_header_headerdropdownmenu_tsx", + "target": "header_headerdropdownmenu_styles" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/header/HeaderDropdownMenu.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_header_headerdropdownmenu_tsx", + "target": "lib_theme_usecolors" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -218300,6 +265438,157 @@ "source": "header_headerdropdownmenu_headerdropdownmenu", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_permissionconfirmsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_permissionconfirmsheet_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_permissionconfirmsheet_tsx", + "target": "onboarding_permissionconfirmsheet_permissionconfirmsheet" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_components_onboarding_permissionconfirmsheet_tsx" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "onboarding_permissionconfirmsheet_permissionconfirmsheet" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "onboarding_permissionconfirmsheet_permissionconfirmsheet", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "source": "onboarding_permissionconfirmsheet_permissionconfirmsheet", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "onboarding_permissionconfirmsheet_permissionconfirmsheet" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/OnboardingShell.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_onboardingshell_tsx", + "target": "apps_rebreak_native_components_onboarding_slideprogress_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/SlideProgress.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slideprogress_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/SlideProgress.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slideprogress_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/SlideProgress.tsx", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slideprogress_tsx", + "target": "onboarding_slideprogress_clamp01" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/SlideProgress.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slideprogress_tsx", + "target": "onboarding_slideprogress_slideprogress" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/OnboardingShell.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_onboardingshell_tsx", + "target": "onboarding_slideprogress_slideprogress" + }, { "relation": "imports_from", "context": "import", @@ -218344,6 +265633,38 @@ "source": "onboarding_slideprogress_slideprogress", "target": "onboarding_slideprogress_clamp01" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/ScreenshotPointer.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_screenshotpointer_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/ScreenshotPointer.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_screenshotpointer_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/ScreenshotPointer.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_screenshotpointer_tsx", + "target": "onboarding_screenshotpointer_screenshotpointer" + }, { "relation": "imports_from", "context": "import", @@ -218366,6 +265687,93 @@ "source": "onboarding_screenshotpointer_screenshotpointer", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "onboarding_screenshotpointer_screenshotpointer" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/OnboardingShell.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_onboardingshell_tsx", + "target": "apps_rebreak_native_components_onboarding_onboardingnavcontext_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/OnboardingShell.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_onboardingshell_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/OnboardingShell.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_onboardingshell_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/OnboardingShell.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_onboardingshell_tsx", + "target": "onboarding_onboardingnavcontext_useonboardingback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/OnboardingShell.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_onboardingshell_tsx", + "target": "onboarding_onboardingshell_onboardingshell" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaChoiceSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digachoiceslide_tsx", + "target": "apps_rebreak_native_components_onboarding_onboardingshell_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "apps_rebreak_native_components_onboarding_onboardingshell_tsx" + }, { "relation": "imports_from", "context": "import", @@ -218375,6 +265783,127 @@ "weight": 1.0, "confidence_score": 1.0, "source": "apps_rebreak_native_components_onboarding_slides_doneslide_tsx", + "target": "apps_rebreak_native_components_onboarding_onboardingshell_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "apps_rebreak_native_components_onboarding_onboardingshell_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "apps_rebreak_native_components_onboarding_onboardingshell_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PlanSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_planslide_tsx", + "target": "apps_rebreak_native_components_onboarding_onboardingshell_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PrivacySlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx", + "target": "apps_rebreak_native_components_onboarding_onboardingshell_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_components_onboarding_onboardingshell_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "apps_rebreak_native_components_onboarding_onboardingshell_tsx" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaChoiceSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digachoiceslide_tsx", + "target": "onboarding_onboardingshell_onboardingshell" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "onboarding_onboardingshell_onboardingshell" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DoneSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_doneslide_tsx", + "target": "onboarding_onboardingshell_onboardingshell" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "onboarding_onboardingshell_onboardingshell" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", "target": "onboarding_onboardingshell_onboardingshell" }, { @@ -218388,6 +265917,39 @@ "source": "apps_rebreak_native_components_onboarding_slides_planslide_tsx", "target": "onboarding_onboardingshell_onboardingshell" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PrivacySlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx", + "target": "onboarding_onboardingshell_onboardingshell" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "onboarding_onboardingshell_onboardingshell" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "onboarding_onboardingshell_onboardingshell" + }, { "relation": "imports_from", "context": "import", @@ -218487,6 +266049,17 @@ "source": "slides_privacyslide_privacyslide", "target": "onboarding_onboardingshell_onboardingshell" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "onboarding_onboardingshell_onboardingshell" + }, { "relation": "imports_from", "context": "import", @@ -218560,6 +266133,17 @@ "source": "apps_rebreak_native_components_onboarding_ctabar_tsx", "target": "onboarding_ctabar_ctabar" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" + }, { "relation": "imports_from", "context": "import", @@ -218571,6 +266155,28 @@ "source": "apps_rebreak_native_components_onboarding_slides_doneslide_tsx", "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" + }, { "relation": "imports_from", "context": "import", @@ -218582,6 +266188,39 @@ "source": "apps_rebreak_native_components_onboarding_slides_planslide_tsx", "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PrivacySlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx", + "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" + }, { "relation": "imports_from", "context": "import", @@ -218626,6 +266265,17 @@ "source": "slides_privacyslide_privacyslide", "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" + }, { "relation": "imports_from", "context": "import", @@ -218637,6 +266287,17 @@ "source": "slides_welcomeslide_welcomeslide", "target": "apps_rebreak_native_components_onboarding_ctabar_tsx" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "onboarding_ctabar_ctabar" + }, { "relation": "imports", "context": "import", @@ -218648,6 +266309,28 @@ "source": "apps_rebreak_native_components_onboarding_slides_doneslide_tsx", "target": "onboarding_ctabar_ctabar" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "onboarding_ctabar_ctabar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "onboarding_ctabar_ctabar" + }, { "relation": "imports", "context": "import", @@ -218659,6 +266342,39 @@ "source": "apps_rebreak_native_components_onboarding_slides_planslide_tsx", "target": "onboarding_ctabar_ctabar" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PrivacySlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx", + "target": "onboarding_ctabar_ctabar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "onboarding_ctabar_ctabar" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "onboarding_ctabar_ctabar" + }, { "relation": "calls", "context": "call", @@ -218714,6 +266430,17 @@ "source": "slides_privacyslide_privacyslide", "target": "onboarding_ctabar_ctabar" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "onboarding_ctabar_ctabar" + }, { "relation": "imports", "context": "import", @@ -218725,6 +266452,214 @@ "source": "slides_welcomeslide_welcomeslide", "target": "onboarding_ctabar_ctabar" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "apps_rebreak_native_lib_i18n_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "apps_rebreak_native_lib_lyraspeech_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "lib_lyraspeech_lyraspeechstatus" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "lib_lyraspeech_playlyraspeech" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "lib_lyraspeech_stoplyraspeech" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/LyraBubble.tsx", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_lyrabubble_tsx", + "target": "onboarding_lyrabubble_lyrabubble" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaChoiceSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digachoiceslide_tsx", + "target": "apps_rebreak_native_components_onboarding_lyrabubble_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "apps_rebreak_native_components_onboarding_lyrabubble_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DoneSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_doneslide_tsx", + "target": "apps_rebreak_native_components_onboarding_lyrabubble_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "apps_rebreak_native_components_onboarding_lyrabubble_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "apps_rebreak_native_components_onboarding_lyrabubble_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PlanSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_planslide_tsx", + "target": "apps_rebreak_native_components_onboarding_lyrabubble_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PrivacySlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx", + "target": "apps_rebreak_native_components_onboarding_lyrabubble_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_components_onboarding_lyrabubble_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "apps_rebreak_native_components_onboarding_lyrabubble_tsx" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaChoiceSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digachoiceslide_tsx", + "target": "onboarding_lyrabubble_lyrabubble" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "onboarding_lyrabubble_lyrabubble" + }, { "relation": "imports_from", "context": "import", @@ -218736,6 +266671,28 @@ "source": "apps_rebreak_native_components_onboarding_slides_doneslide_tsx", "target": "onboarding_lyrabubble_lyrabubble" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "onboarding_lyrabubble_lyrabubble" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "onboarding_lyrabubble_lyrabubble" + }, { "relation": "imports_from", "context": "import", @@ -218747,6 +266704,39 @@ "source": "apps_rebreak_native_components_onboarding_slides_planslide_tsx", "target": "onboarding_lyrabubble_lyrabubble" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PrivacySlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx", + "target": "onboarding_lyrabubble_lyrabubble" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "onboarding_lyrabubble_lyrabubble" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "onboarding_lyrabubble_lyrabubble" + }, { "relation": "imports_from", "context": "import", @@ -218879,6 +266869,17 @@ "source": "slides_privacyslide_privacyslide", "target": "onboarding_lyrabubble_lyrabubble" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "onboarding_lyrabubble_lyrabubble" + }, { "relation": "imports_from", "context": "import", @@ -218890,6 +266891,103 @@ "source": "slides_welcomeslide_welcomeslide", "target": "onboarding_lyrabubble_lyrabubble" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "hooks_useme_invalidateme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "hooks_useme_useme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "slides_nicknameslide_checkresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/NicknameSlide.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_nicknameslide_tsx", + "target": "slides_nicknameslide_nicknameslide" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -219050,6 +267148,68 @@ "source": "slides_doneslide_doneslide", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "slides_welcomeslide_bulletrow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "slides_welcomeslide_langs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "slides_welcomeslide_languagepills" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/WelcomeSlide.tsx", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_welcomeslide_tsx", + "target": "slides_welcomeslide_welcomeslide" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -219092,6 +267252,440 @@ "source": "slides_welcomeslide_welcomeslide", "target": "slides_welcomeslide_bulletrow" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_hooks_useblocklistsync_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_hooks_useprotectionstate_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_lib_i18n_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_lib_onboardingassets_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_lib_protection_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "hooks_useblocklistsync_useblocklistsync" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "hooks_useme_invalidateme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "hooks_useprotectionstate_useprotectionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "lib_onboardingassets_getpermissionscreenshot" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "lib_protection_protection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "slides_protectionslide_confirmstep" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_protectionslide_tsx", + "target": "slides_protectionslide_protectionslide" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "slides_protectionslide_confirmstep" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "apps_rebreak_native_lib_i18n_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "apps_rebreak_native_lib_onboardingassets_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "apps_rebreak_native_modules_rebreak_protection_index_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L9", + "weight": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "hooks_useblocklistsync_useblocklistsync" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "hooks_useme_invalidateme" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "hooks_useprotectionstate_useprotectionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L10", + "weight": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "lib_onboardingassets_getpermissionscreenshot" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "lib_protection_protection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/onboarding/slides/ProtectionSlide.tsx", + "source_location": "L4", + "weight": 1.0, + "source": "slides_protectionslide_protectionslide", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "hooks_useme_invalidateme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "slides_digacodeslide_digacodeslide" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "slides_digacodeslide_formatdigacode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaCodeSlide.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digacodeslide_tsx", + "target": "slides_digacodeslide_redeemerror" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -219178,6 +267772,48 @@ "source": "slides_digacodeslide_digacodeslide", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaChoiceSlide.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digachoiceslide_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaChoiceSlide.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digachoiceslide_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaChoiceSlide.tsx", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digachoiceslide_tsx", + "target": "slides_digachoiceslide_choicebar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/DigaChoiceSlide.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_digachoiceslide_tsx", + "target": "slides_digachoiceslide_digachoiceslide" + }, { "relation": "imports_from", "context": "import", @@ -219303,6 +267939,48 @@ "source": "slides_planslide_planslide", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PrivacySlide.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PrivacySlide.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PrivacySlide.tsx", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx", + "target": "slides_privacyslide_privacyslide" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PrivacySlide.tsx", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_privacyslide_tsx", + "target": "slides_privacyslide_promiserow" + }, { "relation": "imports_from", "context": "import", @@ -219335,6 +268013,82 @@ "source": "slides_privacyslide_privacyslide", "target": "slides_privacyslide_promiserow" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "hooks_useme_invalidateme" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/onboarding/slides/PaymentSlide.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_onboarding_slides_paymentslide_tsx", + "target": "slides_paymentslide_paymentslide" + }, { "relation": "imports_from", "context": "import", @@ -219401,129 +268155,994 @@ "source": "slides_paymentslide_paymentslide", "target": "lib_theme_usecolors" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/deviceIcon.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_deviceicon_ts", + "target": "devices_deviceicon_deviceimage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/deviceIcon.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_deviceicon_ts", + "target": "devices_deviceicon_icons" + }, { "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", "source_location": "L19", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", - "target": "apps_rebreak_native_hooks_useprotecteddevicesrealtime_ts" + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "apps_rebreak_native_components_devices_deviceicon_ts" }, { "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L14", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L19", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", - "target": "devices_addmacsheet_addmacsheet" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", - "target": "devices_addmacsheet_step" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L155", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", - "target": "devices_addmacsheet_step1labelcontent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L210", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", - "target": "devices_addmacsheet_step2onboardingcontent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L346", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", - "target": "devices_addmacsheet_step3successcontent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", - "target": "devices_addmacsheet_stepitem" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", - "target": "devices_addmacsheet_steps" + "source": "devices_magicsheet_magicsheet", + "target": "apps_rebreak_native_components_devices_deviceicon_ts" }, { "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "devices_deviceicon_deviceimage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "devices_deviceicon_deviceimage" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "apps_rebreak_native_hooks_useuserplan_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L392", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "devices_magicsheet_cardstyle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "devices_magicsheet_desktopplatform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L500", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "devices_magicsheet_formatremaining" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "devices_magicsheet_magicdevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "devices_magicsheet_magicinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "devices_magicsheet_magicsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "devices_magicsheet_pairresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L456", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "devices_magicsheet_platformoption" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L419", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "devices_magicsheet_primarybutton" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L401", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "devices_magicsheet_sectiontitle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "hooks_useuserplan_useuserplan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_magicsheet_tsx", + "target": "lib_theme_colorscheme" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "devices_magicsheet_pairresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "devices_magicsheet_magicdevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "devices_magicsheet_magicinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "devices_magicsheet_desktopplatform" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L392", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "devices_magicsheet_cardstyle" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L500", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "devices_magicsheet_formatremaining" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L456", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "devices_magicsheet_platformoption" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L419", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "devices_magicsheet_primarybutton" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L401", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "devices_magicsheet_sectiontitle" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L17", + "weight": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "hooks_useuserplan_useuserplan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_magicsheet_magicsheet", + "target": "lib_theme_colorscheme" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedistributionbar_tsx", + "target": "apps_rebreak_native_components_devices_deviceslotdonut_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_deviceslotdonut_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_deviceslotdonut_tsx", + "target": "devices_deviceslotdonut_arcpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_deviceslotdonut_tsx", + "target": "devices_deviceslotdonut_deviceslotdonut" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_deviceslotdonut_tsx", + "target": "devices_deviceslotdonut_polar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", "source_location": "L14", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_addmacsheet_tsx", + "source": "apps_rebreak_native_components_devices_deviceslotdonut_tsx", + "target": "devices_deviceslotdonut_slotsegment" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_deviceslotdonut_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_deviceslotdonut_deviceslotdonut", + "target": "devices_deviceslotdonut_slotsegment" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_deviceslotdonut_arcpath", + "target": "devices_deviceslotdonut_polar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_deviceslotdonut_deviceslotdonut", + "target": "devices_deviceslotdonut_polar" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_deviceslotdonut_deviceslotdonut", + "target": "devices_deviceslotdonut_arcpath" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicedistributionbar_devicedistributionbar", + "target": "devices_deviceslotdonut_deviceslotdonut" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_deviceslotdonut_deviceslotdonut", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", + "source_location": "L4", + "weight": 1.0, + "source": "devices_deviceslotdonut_deviceslotdonut", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicestatuspill_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicestatuspill_tsx", + "target": "devices_devicestatuspill_devicestatuskind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicestatuspill_tsx", + "target": "devices_devicestatuspill_devicestatuspill" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicestatuspill_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicestatuspill_devicestatuspill", + "target": "devices_devicestatuspill_devicestatuskind" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicestatuspill_devicestatuspill", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", + "source_location": "L3", + "weight": 1.0, + "source": "devices_devicestatuspill_devicestatuspill", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedistributionbar_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedistributionbar_tsx", + "target": "devices_devicedistributionbar_devicedistributionbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedistributionbar_tsx", + "target": "devices_devicedistributionbar_legend" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedistributionbar_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicedistributionbar_devicedistributionbar", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicedistributionbar_devicedistributionbar", + "target": "devices_devicedistributionbar_legend" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", + "source_location": "L4", + "weight": 1.0, + "source": "devices_devicedistributionbar_devicedistributionbar", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "apps_rebreak_native_hooks_useprofiledata_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "devices_devicedetailsheet_devicedetail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "devices_devicedetailsheet_devicedetailsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "devices_devicedetailsheet_fmtdate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "devices_devicedetailsheet_fmtlastseen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "devices_devicedetailsheet_inforow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "hooks_useprofiledata_useprotectioncoverage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_devicedetailsheet_tsx", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicedetailsheet_devicedetail", + "target": "apps_rebreak_native_hooks_useprofiledata_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicedetailsheet_devicedetail", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicedetailsheet_devicedetail", + "target": "devices_devicedetailsheet_fmtdate" + }, + { + "relation": "contains", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicedetailsheet_devicedetail", + "target": "devices_devicedetailsheet_fmtlastseen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicedetailsheet_devicedetail", + "target": "devices_devicedetailsheet_inforow" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L8", + "weight": 1.0, + "source": "devices_devicedetailsheet_devicedetail", + "target": "hooks_useprofiledata_useprotectioncoverage" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L5", + "weight": 1.0, + "source": "devices_devicedetailsheet_devicedetail", "target": "lib_theme_usecolors" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L61", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L205", "weight": 1.0, - "source": "devices_addmacsheet_addmacsheet", - "target": "apps_rebreak_native_hooks_useprotecteddevicesrealtime_ts" + "confidence_score": 1.0, + "source": "devices_devicedetailsheet_devicedetailsheet", + "target": "devices_devicedetailsheet_fmtdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicedetailsheet_fmtlastseen", + "target": "devices_devicedetailsheet_fmtdate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "devices_devicedetailsheet_devicedetailsheet", + "target": "devices_devicedetailsheet_fmtlastseen" }, { "relation": "calls", "context": "call", "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/devices/AddMacSheet.tsx", - "source_location": "L47", + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L66", "weight": 1.0, - "source": "devices_addmacsheet_addmacsheet", + "source": "devices_devicedetailsheet_devicedetailsheet", + "target": "hooks_useprofiledata_useprotectioncoverage" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", + "source_location": "L65", + "weight": 1.0, + "source": "devices_devicedetailsheet_devicedetailsheet", + "target": "lib_theme_usecolors" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "apps_rebreak_native_lib_theme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "devices_addwindowssheet_addwindowssheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "devices_addwindowssheet_step" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "devices_addwindowssheet_stepitem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "devices_addwindowssheet_steps" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "devices_addwindowssheet_windowsstep1labelcontent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "devices_addwindowssheet_windowsstep2onboardingcontent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L335", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", + "target": "devices_addwindowssheet_windowsstep3successcontent" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/components/devices/AddWindowsSheet.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_components_devices_addwindowssheet_tsx", "target": "lib_theme_usecolors" }, { @@ -219661,6 +269280,114 @@ "source": "devices_deviceprogressbar_deviceprogressbar", "target": "lib_theme_usecolors" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useincomingcalls_ts", + "target": "apps_rebreak_native_lib_realtimestatus_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useincomingcalls_ts", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useincomingcalls_ts", + "target": "hooks_useincomingcalls_useincomingcalls" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useincomingcalls_ts", + "target": "lib_realtimestatus_isrealtimeerrorreal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useincomingcalls_ts", + "target": "lib_supabase_supabase" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useincomingcalls_useincomingcalls", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useIncomingCalls.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useincomingcalls_useincomingcalls", + "target": "lib_supabase_supabase" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailTitleEdit.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailtitleedit_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailTitleEdit.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailtitleedit_ts", + "target": "hooks_usemailtitleedit_usemailtitleedit" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailTitleEdit.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailtitleedit_ts", + "target": "lib_api_apifetch" + }, { "relation": "imports_from", "context": "import", @@ -219683,6 +269410,98 @@ "source": "hooks_usemailtitleedit_usemailtitleedit", "target": "lib_api_apifetch" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStatus.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstatus_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStatus.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstatus_ts", + "target": "hooks_usemailstatus_dailystat" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStatus.ts", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstatus_ts", + "target": "hooks_usemailstatus_derivemaxaccounts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStatus.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstatus_ts", + "target": "hooks_usemailstatus_mailaccount" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStatus.ts", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstatus_ts", + "target": "hooks_usemailstatus_mailstatusresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStatus.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstatus_ts", + "target": "hooks_usemailstatus_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStatus.ts", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstatus_ts", + "target": "hooks_usemailstatus_usemailstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStatus.ts", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstatus_ts", + "target": "hooks_usemailstatus_usemailstatusreturn" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStatus.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstatus_ts", + "target": "lib_api_apifetch" + }, { "relation": "imports_from", "context": "import", @@ -219801,6 +269620,48 @@ "source": "hooks_usemailstatus_usemailstatus", "target": "lib_api_apifetch" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useLastSeenBatch.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_uselastseenbatch_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useLastSeenBatch.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_uselastseenbatch_ts", + "target": "hooks_uselastseenbatch_lastseenmap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useLastSeenBatch.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_uselastseenbatch_ts", + "target": "hooks_uselastseenbatch_uselastseenbatch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useLastSeenBatch.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_uselastseenbatch_ts", + "target": "lib_api_apifetch" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -219834,14 +269695,46 @@ "target": "lib_api_apifetch" }, { - "relation": "imports_from", + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useUserPlan.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useuserplan_ts", + "target": "apps_rebreak_native_hooks_useme_ts" + }, + { + "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L17", + "source_file": "apps/rebreak-native/hooks/useUserPlan.ts", + "source_location": "L2", "weight": 1.0, - "source": "devices_magicsheet_magicsheet", + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useuserplan_ts", + "target": "hooks_useme_plan" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useUserPlan.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useuserplan_ts", + "target": "hooks_useme_useme" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useUserPlan.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useuserplan_ts", "target": "hooks_useuserplan_useuserplan" }, { @@ -219877,6 +269770,152 @@ "source": "hooks_useuserplan_useuserplan", "target": "hooks_useme_useme" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts", + "target": "apps_rebreak_native_lib_realtimestatus_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts", + "target": "hooks_usedomainsubmissionrealtime_usedomainsubmissionrealtime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts", + "target": "lib_realtimestatus_isrealtimeerrorreal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDomainSubmissionRealtime.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedomainsubmissionrealtime_ts", + "target": "lib_supabase_supabase" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailconnect_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailconnect_ts", + "target": "hooks_usemailconnect_connectbody" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailconnect_ts", + "target": "hooks_usemailconnect_connectresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailconnect_ts", + "target": "hooks_usemailconnect_detectprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailconnect_ts", + "target": "hooks_usemailconnect_mailprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailconnect_ts", + "target": "hooks_usemailconnect_provider_domain_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailconnect_ts", + "target": "hooks_usemailconnect_usemailconnect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailconnect_ts", + "target": "hooks_usemailconnect_usemailconnectreturn" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailConnect.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailconnect_ts", + "target": "lib_api_apifetch" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -220000,6 +270039,16 @@ "source": "apps_rebreak_native_hooks_useprofiledata_ts", "target": "hooks_useprofiledata_cooldownhistorydata" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProfileData.ts", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprofiledata_ts", + "target": "hooks_useprofiledata_demographics" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -220090,6 +270139,16 @@ "source": "apps_rebreak_native_hooks_useprofiledata_ts", "target": "hooks_useprofiledata_usecooldownhistory" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProfileData.ts", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprofiledata_ts", + "target": "hooks_useprofiledata_usecooldownhistoryfull" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -220151,28 +270210,6 @@ "source": "apps_rebreak_native_hooks_useprofiledata_ts", "target": "lib_api_apifetch" }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_digamilestonemodal_digamilestonemodal", - "target": "apps_rebreak_native_hooks_useprofiledata_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_devicedetailsheet_devicedetail", - "target": "apps_rebreak_native_hooks_useprofiledata_ts" - }, { "relation": "calls", "context": "call", @@ -220217,6 +270254,17 @@ "source": "hooks_useprofiledata_usecooldownhistory", "target": "hooks_useprofiledata_usefetchonce" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProfileData.ts", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useprofiledata_usecooldownhistoryfull", + "target": "hooks_useprofiledata_usefetchonce" + }, { "relation": "calls", "context": "call", @@ -220272,6 +270320,58 @@ "source": "hooks_useprofiledata_usesosinsights", "target": "hooks_useprofiledata_usefetchonce" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailResults.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailresults_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailResults.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailresults_ts", + "target": "hooks_usemailresults_mailblockeditem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailResults.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailresults_ts", + "target": "hooks_usemailresults_mailresultsresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailResults.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailresults_ts", + "target": "hooks_usemailresults_usemailresults" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailResults.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailresults_ts", + "target": "lib_api_apifetch" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -220314,6 +270414,70 @@ "source": "hooks_usemailresults_usemailresults", "target": "lib_api_apifetch" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useBlocklistSync.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useblocklistsync_ts", + "target": "apps_rebreak_native_lib_protection_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useBlocklistSync.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useblocklistsync_ts", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useBlocklistSync.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useblocklistsync_ts", + "target": "hooks_useblocklistsync_syncresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useBlocklistSync.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useblocklistsync_ts", + "target": "hooks_useblocklistsync_useblocklistsync" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useBlocklistSync.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useblocklistsync_ts", + "target": "lib_protection_protection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useBlocklistSync.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useblocklistsync_ts", + "target": "lib_supabase_supabase" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -220335,6 +270499,17 @@ "source": "hooks_useblocklistsync_useblocklistsync", "target": "apps_rebreak_native_lib_supabase_ts" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useBlocklistSync.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useblocklistsync_useblocklistsync", + "target": "lib_protection_protection" + }, { "relation": "imports", "context": "import", @@ -220346,6 +270521,158 @@ "source": "hooks_useblocklistsync_useblocklistsync", "target": "lib_supabase_supabase" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_applyrawpresence" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_clearpendingremovals" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_ensurechannel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_listeners" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_notify" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_onlinepresencecontext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_onlineuserids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_pendingremoval" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_retrackself" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_teardownchannel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_untrackself" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_useonlinepresencenode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "hooks_useonlineusers_useonlineusers" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useonlineusers_ts", + "target": "lib_supabase_supabase" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -220488,6 +270815,17 @@ "source": "hooks_useonlineusers_useonlineusers", "target": "lib_supabase_supabase" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useonlineusers_teardownchannel", + "target": "hooks_useonlineusers_clearpendingremovals" + }, { "relation": "calls", "context": "call", @@ -220511,15 +270849,46 @@ "target": "hooks_useonlineusers_notify" }, { - "relation": "calls", - "context": "call", + "relation": "imports_from", + "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useOnlineUsers.ts", - "source_location": "L96", + "source_file": "apps/rebreak-native/hooks/useMailDisconnect.ts", + "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "hooks_useonlineusers_teardownchannel", - "target": "hooks_useonlineusers_clearpendingremovals" + "source": "apps_rebreak_native_hooks_usemaildisconnect_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailDisconnect.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemaildisconnect_ts", + "target": "hooks_usemaildisconnect_usemaildisconnect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailDisconnect.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemaildisconnect_ts", + "target": "hooks_usemaildisconnect_usemaildisconnectreturn" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailDisconnect.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemaildisconnect_ts", + "target": "lib_api_apifetch" }, { "relation": "imports_from", @@ -220543,6 +270912,180 @@ "source": "hooks_usemaildisconnect_usemaildisconnect", "target": "lib_api_apifetch" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "apps_rebreak_native_hooks_usewebcontentdomains_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_adddomainresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_customdomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_derivetier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_domainstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_entrykind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_ispublicemaildomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_isvaliddomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_normalizedomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_public_email_domains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_tier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_usecustomdomains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usecustomdomains_usecustomdomainsreturn" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "hooks_usewebcontentdomains_resolvevipcountry" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecustomdomains_ts", + "target": "lib_api_apifetch" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -220689,27 +271232,87 @@ "source": "hooks_usecustomdomains_usecustomdomains", "target": "lib_api_apifetch" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useSnakeSounds.ts", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usesnakesounds_ts", + "target": "hooks_usesnakesounds_usesnakesounds" + }, { "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L4", + "source_file": "apps/rebreak-native/hooks/useWebContentDomains.ts", + "source_location": "L3", "weight": 1.0, "confidence_score": 1.0, - "source": "hooks_usecustomdomains_usecustomdomains", - "target": "stores_blockerstats_blockerstats" + "source": "apps_rebreak_native_hooks_usewebcontentdomains_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useWebContentDomains.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usewebcontentdomains_ts", + "target": "hooks_usewebcontentdomains_resolvevipcountry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useWebContentDomains.ts", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usewebcontentdomains_ts", + "target": "hooks_usewebcontentdomains_usewebcontentdomains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useWebContentDomains.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usewebcontentdomains_ts", + "target": "hooks_usewebcontentdomains_vip_countries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useWebContentDomains.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usewebcontentdomains_ts", + "target": "hooks_usewebcontentdomains_vipcountry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useWebContentDomains.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usewebcontentdomains_ts", + "target": "hooks_usewebcontentdomains_webcontentresponse" }, { "relation": "imports", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useCustomDomains.ts", - "source_location": "L4", + "source_file": "apps/rebreak-native/hooks/useWebContentDomains.ts", + "source_location": "L3", "weight": 1.0, "confidence_score": 1.0, - "source": "hooks_usecustomdomains_usecustomdomains", - "target": "stores_blockerstats_useblockerstatsstore" + "source": "apps_rebreak_native_hooks_usewebcontentdomains_ts", + "target": "lib_api_apifetch" }, { "relation": "contains", @@ -220855,28 +271458,6 @@ "source": "apps_rebreak_native_hooks_useme_ts", "target": "lib_api_apifetch" }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_digamilestonemodal_digamilestonemodal", - "target": "apps_rebreak_native_hooks_useme_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L8", - "weight": 1.0, - "source": "components_digamilestonemodal_digamilestonemodal", - "target": "hooks_useme_useme" - }, { "relation": "imports_from", "context": "import", @@ -220898,6 +271479,16 @@ "source": "apps_rebreak_native_hooks_useprotecteddevicesrealtime_ts", "target": "hooks_useprotecteddevicesrealtime_onactivated" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectedDevicesRealtime.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotecteddevicesrealtime_ts", + "target": "hooks_useprotecteddevicesrealtime_useprotecteddevicesrealtime" + }, { "relation": "imports", "context": "import", @@ -220909,6 +271500,60 @@ "source": "apps_rebreak_native_hooks_useprotecteddevicesrealtime_ts", "target": "lib_supabase_supabase" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDmTyping.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedmtyping_ts", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDmTyping.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedmtyping_ts", + "target": "hooks_usedmtyping_usedmtyping" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDmTyping.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedmtyping_ts", + "target": "lib_supabase_supabase" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDmTyping.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usedmtyping_usedmtyping", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDmTyping.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usedmtyping_usedmtyping", + "target": "lib_supabase_supabase" + }, { "relation": "imports_from", "context": "import", @@ -220981,6 +271626,16 @@ "source": "apps_rebreak_native_hooks_usepushtokenregistration_ts", "target": "hooks_usepushtokenregistration_unregisterpushtokenfrombackend" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/usePushTokenRegistration.ts", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usepushtokenregistration_ts", + "target": "hooks_usepushtokenregistration_usepushtokenregistration" + }, { "relation": "imports", "context": "import", @@ -221089,6 +271744,48 @@ "source": "apps_rebreak_native_hooks_usechatrealtime_ts", "target": "lib_supabase_supabase" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useLastSeenHeartbeat.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_uselastseenheartbeat_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useLastSeenHeartbeat.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_uselastseenheartbeat_ts", + "target": "hooks_uselastseenheartbeat_ping" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useLastSeenHeartbeat.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_uselastseenheartbeat_ts", + "target": "hooks_uselastseenheartbeat_uselastseenheartbeat" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useLastSeenHeartbeat.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_uselastseenheartbeat_ts", + "target": "lib_api_apifetch" + }, { "relation": "calls", "context": "call", @@ -221132,6 +271829,48 @@ "source": "hooks_uselastseenheartbeat_uselastseenheartbeat", "target": "lib_api_apifetch" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCommunityRealtime.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecommunityrealtime_ts", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCommunityRealtime.ts", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecommunityrealtime_ts", + "target": "hooks_usecommunityrealtime_patchpostinallqueries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCommunityRealtime.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecommunityrealtime_ts", + "target": "hooks_usecommunityrealtime_usecommunityrealtime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCommunityRealtime.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecommunityrealtime_ts", + "target": "lib_supabase_supabase" + }, { "relation": "imports_from", "context": "import", @@ -221164,6 +271903,219 @@ "source": "hooks_usecommunityrealtime_usecommunityrealtime", "target": "lib_supabase_supabase" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecallkeepevents_ts", + "target": "apps_rebreak_native_lib_callkit_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecallkeepevents_ts", + "target": "hooks_usecallkeepevents_usecallkeepevents" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecallkeepevents_ts", + "target": "lib_callkit_setupcallkeep" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usecallkeepevents_usecallkeepevents", + "target": "apps_rebreak_native_lib_callkit_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_usecallkeepevents_usecallkeepevents", + "target": "lib_callkit_setupcallkeep" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L295", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "apps_rebreak_native_lib_protection_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "apps_rebreak_native_modules_rebreak_protection_index_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "hooks_useprotectionstate_isprotectionactive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "hooks_useprotectionstate_resolveeventsource" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "hooks_useprotectionstate_useprotectionstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "hooks_useprotectionstate_useprotectionstatereturn" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "lib_api_apifetch" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "lib_protection_formatcooldownremaining" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "lib_protection_protection" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "lib_protection_protectionphase" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "lib_protection_protectionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useprotectionstate_ts", + "target": "src_rebreakprotection_types_webcontentfilterresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useprotectionstate_useprotectionstate", + "target": "hooks_useprotectionstate_isprotectionactive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useprotectionstate_useprotectionstate", + "target": "hooks_useprotectionstate_resolveeventsource" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -221196,26 +272148,6 @@ "source": "hooks_useprotectionstate_useprotectionstate", "target": "apps_rebreak_native_modules_rebreak_protection_index_ts" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_useprotectionstate_useprotectionstate", - "target": "hooks_useprotectionstate_isprotectionactive" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_useprotectionstate_useprotectionstate", - "target": "hooks_useprotectionstate_resolveeventsource" - }, { "relation": "imports", "context": "import", @@ -221227,6 +272159,28 @@ "source": "hooks_useprotectionstate_useprotectionstate", "target": "lib_api_apifetch" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L4", + "weight": 1.0, + "source": "hooks_useprotectionstate_useprotectionstate", + "target": "lib_protection_formatcooldownremaining" + }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L295", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useprotectionstate_useprotectionstate", + "target": "lib_protection_protection" + }, { "relation": "imports", "context": "import", @@ -221238,6 +272192,149 @@ "source": "hooks_useprotectionstate_useprotectionstate", "target": "src_lib_protectionstate" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useProtectionState.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "hooks_useprotectionstate_useprotectionstate", + "target": "src_rebreakprotection_types_webcontentfilterresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useKeyboardHeight.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usekeyboardheight_ts", + "target": "hooks_usekeyboardheight_usekeyboardheight" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "hooks_usemailstats_aggregatetomonths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "hooks_usemailstats_aggregatetoweeks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "hooks_usemailstats_blockedbyconnectionentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "hooks_usemailstats_blockedbydayentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "hooks_usemailstats_connectionagegranularity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "hooks_usemailstats_connectionstatsstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "hooks_usemailstats_mailstatsstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "hooks_usemailstats_resolvegranularity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "hooks_usemailstats_usemailconnectionstats" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "hooks_usemailstats_usemailstats" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailStats.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailstats_ts", + "target": "lib_api_apifetch" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -221361,6 +272458,38 @@ "source": "hooks_usemailstats_usemailstats", "target": "lib_api_apifetch" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useFollowing.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usefollowing_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useFollowing.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usefollowing_ts", + "target": "hooks_usefollowing_usefollowing" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useFollowing.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usefollowing_ts", + "target": "lib_api_apifetch" + }, { "relation": "imports_from", "context": "import", @@ -221383,6 +272512,38 @@ "source": "hooks_usefollowing_usefollowing", "target": "lib_api_apifetch" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailInterval.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailinterval_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailInterval.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailinterval_ts", + "target": "hooks_usemailinterval_usemailinterval" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useMailInterval.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usemailinterval_ts", + "target": "lib_api_apifetch" + }, { "relation": "imports_from", "context": "import", @@ -221405,6 +272566,58 @@ "source": "hooks_usemailinterval_usemailinterval", "target": "lib_api_apifetch" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCuratedSuggest.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecuratedsuggest_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCuratedSuggest.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecuratedsuggest_ts", + "target": "hooks_usecuratedsuggest_suggestresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCuratedSuggest.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecuratedsuggest_ts", + "target": "hooks_usecuratedsuggest_suggeststate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCuratedSuggest.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecuratedsuggest_ts", + "target": "hooks_usecuratedsuggest_usecuratedsuggest" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useCuratedSuggest.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usecuratedsuggest_ts", + "target": "lib_api_apifetch" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -221447,6 +272660,192 @@ "source": "hooks_usecuratedsuggest_usecuratedsuggest", "target": "lib_api_apifetch" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useUserDevicesRealtime.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useuserdevicesrealtime_ts", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useUserDevicesRealtime.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useuserdevicesrealtime_ts", + "target": "hooks_useuserdevicesrealtime_useuserdevicesrealtime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useUserDevicesRealtime.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_useuserdevicesrealtime_ts", + "target": "lib_supabase_supabase" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", + "target": "apps_rebreak_native_lib_realtimestatus_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", + "target": "apps_rebreak_native_lib_supabase_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", + "target": "hooks_usedeviceapprovalrealtime_usedeviceapprovalrealtime" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", + "target": "lib_realtimestatus_isrealtimeerrorreal" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/hooks/useDeviceApprovalRealtime.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_hooks_usedeviceapprovalrealtime_ts", + "target": "lib_supabase_supabase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_google_services_json", + "target": "app_google_services_client" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_google_services_json", + "target": "app_google_services_configuration_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_google_services_json", + "target": "app_google_services_project_info" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_google_services_project_info", + "target": "app_google_services_project_info_project_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_google_services_project_info", + "target": "app_google_services_project_info_project_number" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/google-services.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "app_google_services_project_info", + "target": "app_google_services_project_info_storage_bucket" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_buildfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_buildtargetscommandcomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_cleancommandscomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -221707,6 +273106,46 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -221737,6 +273176,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -221777,6 +273246,46 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -221807,6 +273316,76 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -221887,6 +273466,46 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -221927,6 +273546,46 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -221957,6 +273616,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -221987,6 +273676,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -222017,6 +273736,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -222307,6 +274056,256 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -222337,6 +274336,76 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_prefab_config_json", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_prefab_config_json_armeabi_v7a_prefab_config_prefabpath" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_buildfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_buildtargetscommandcomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_cfileextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_cleancommandscomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_cppfileextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -222557,6 +274626,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -222567,6 +274666,16 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -222717,6 +274826,16 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223127,6 +275246,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223137,6 +275306,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223147,6 +275366,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223157,6 +275406,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223167,6 +275466,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223177,6 +275506,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223187,6 +275546,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223197,6 +275606,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223207,6 +275646,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223217,6 +275686,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223227,6 +275726,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223237,6 +275786,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223247,6 +275826,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223257,6 +275886,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223267,6 +275946,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223277,6 +275986,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223307,6 +276066,26 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchain_ccompilerexecutable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchain_cppcompilerexecutable" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223377,6 +276156,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-RelWithDebInfo-9692891af1777e76efd8.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-RelWithDebInfo-9692891af1777e76efd8.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-RelWithDebInfo-9692891af1777e76efd8.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_relwithdebinfo_9692891af1777e76efd8_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -223460,352 +276269,82 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_a8c19e26be3272af68dc_json", + "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_inputs" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L8", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L334", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_a8c19e26be3272af68dc_json", + "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_kind" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L335", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_a8c19e26be3272af68dc_json", + "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L68", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L340", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_a8c19e26be3272af68dc_json", + "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L196", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L337", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_id" + "source": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths", + "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L197", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L338", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_link" + "source": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths", + "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L231", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L342", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_name" + "source": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version", + "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version_major" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L232", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", + "source_location": "L343", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_link_sysroot", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-7e027e08701573a20062.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_7e027e08701573a20062_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_paths", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-c15a0ac068e14c62c028.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_paths", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_c15a0ac068e14c62c028_paths_source" + "source": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version", + "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version_minor" }, { "relation": "contains", @@ -223890,212 +276429,32 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-RelWithDebInfo-c55782449035392fe125.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-RelWithDebInfo-c55782449035392fe125.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_installers" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-RelWithDebInfo-c55782449035392fe125.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_link_sysroot", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-d0a04fdffb4d7f64e092.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_d0a04fdffb4d7f64e092_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_paths" }, { "relation": "contains", @@ -224177,6 +276536,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-RelWithDebInfo-0a577c6ddcdff9b1cd2d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-RelWithDebInfo-0a577c6ddcdff9b1cd2d.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-RelWithDebInfo-0a577c6ddcdff9b1cd2d.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_relwithdebinfo_0a577c6ddcdff9b1cd2d_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -224260,302 +276649,152 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtracegraph_commands" + "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtracegraph_files" + "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_backtracegraph_nodes" + "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_paths", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_paths_build" + "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-2f8d7087022a99b1e968.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_paths", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_2f8d7087022a99b1e968_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_paths", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-7a9bf42f1d7c37828470.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_paths", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_7a9bf42f1d7c37828470_paths_source" + "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths", + "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths_source" }, { "relation": "contains", @@ -224730,152 +276969,32 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-RelWithDebInfo-3c4f354f8e9d2bc9c5a6.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-RelWithDebInfo-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_installers" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L27", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-RelWithDebInfo-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_paths", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-b58bb68ba540fb44209f.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_paths", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_b58bb68ba540fb44209f_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_paths" }, { "relation": "contains", @@ -224957,86 +277076,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_7585cfe8cf7d670ad3e4_json", - "target": "model_configuration_configuration" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_7585cfe8cf7d670ad3e4_json", - "target": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_7585cfe8cf7d670ad3e4_json", - "target": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_7585cfe8cf7d670ad3e4_json", - "target": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_paths", - "target": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_paths", - "target": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_version", - "target": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-7585cfe8cf7d670ad3e4.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_version", - "target": "reply_codemodel_v2_7585cfe8cf7d670ad3e4_version_minor" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -225117,6 +277156,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-RelWithDebInfo-aa9f04d4f6540efeba1f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-RelWithDebInfo-aa9f04d4f6540efeba1f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-RelWithDebInfo-aa9f04d4f6540efeba1f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_relwithdebinfo_aa9f04d4f6540efeba1f_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -225200,492 +277269,1042 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-a84fed33aa44f65df44e.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_a84fed33aa44f65df44e_json", - "target": "reply_cache_v2_a84fed33aa44f65df44e_entries" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-a84fed33aa44f65df44e.json", - "source_location": "L1669", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_a84fed33aa44f65df44e_json", - "target": "reply_cache_v2_a84fed33aa44f65df44e_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-a84fed33aa44f65df44e.json", - "source_location": "L1670", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_a84fed33aa44f65df44e_json", - "target": "reply_cache_v2_a84fed33aa44f65df44e_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-a84fed33aa44f65df44e.json", - "source_location": "L1672", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_a84fed33aa44f65df44e_version", - "target": "reply_cache_v2_a84fed33aa44f65df44e_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-a84fed33aa44f65df44e.json", - "source_location": "L1673", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_a84fed33aa44f65df44e_version", - "target": "reply_cache_v2_a84fed33aa44f65df44e_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_0d453c0b33b41a8968e1_json", - "target": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_inputs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L989", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_0d453c0b33b41a8968e1_json", - "target": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L990", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_0d453c0b33b41a8968e1_json", - "target": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L995", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_0d453c0b33b41a8968e1_json", - "target": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L992", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_paths", - "target": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L993", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_paths", - "target": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L997", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_version", - "target": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-0d453c0b33b41a8968e1.json", - "source_location": "L998", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_version", - "target": "reply_cmakefiles_v1_0d453c0b33b41a8968e1_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_paths", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-3f0296715882856d0bfd.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_paths", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_3f0296715882856d0bfd_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L75", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L224", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L221", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L225", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L222", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L256", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_sysroot_path" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L257", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", "source_location": "L263", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-81030293a49e551a6697.json", - "source_location": "L264", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L287", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_81030293a49e551a6697_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_sysroot", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_index_2026_06_15t11_04_29_0228_json", + "target": "reply_index_2026_06_15t11_04_29_0228_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_index_2026_06_15t11_04_29_0228_json", + "target": "reply_index_2026_06_15t11_04_29_0228_objects" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_index_2026_06_15t11_04_29_0228_json", + "target": "reply_index_2026_06_15t11_04_29_0228_reply" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake", + "target": "reply_index_2026_06_15t11_04_29_0228_cmake_generator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake", + "target": "reply_index_2026_06_15t11_04_29_0228_cmake_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake", + "target": "reply_index_2026_06_15t11_04_29_0228_cmake_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_generator", + "target": "reply_index_2026_06_15t11_04_29_0228_generator_multiconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_generator", + "target": "reply_index_2026_06_15t11_04_29_0228_generator_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_paths", + "target": "reply_index_2026_06_15t11_04_29_0228_paths_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_paths", + "target": "reply_index_2026_06_15t11_04_29_0228_paths_cpack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_paths", + "target": "reply_index_2026_06_15t11_04_29_0228_paths_ctest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_paths", + "target": "reply_index_2026_06_15t11_04_29_0228_paths_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_isdirty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_patch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_string" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmake_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_suffix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cache_v2_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmakefiles_v1_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_codemodel_v2_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cache_v2_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_cmakefiles_v1_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_codemodel_v2_version", + "target": "reply_index_2026_06_15t11_04_29_0228_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_reply", + "target": "reply_index_2026_06_15t11_04_29_0228_reply_client_agp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_reply_client_agp", + "target": "reply_index_2026_06_15t11_04_29_0228_client_agp_cache_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_reply_client_agp", + "target": "reply_index_2026_06_15t11_04_29_0228_client_agp_cmakefiles_v1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_reply_client_agp", + "target": "reply_index_2026_06_15t11_04_29_0228_client_agp_codemodel_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_04_29_0228_cache_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_04_29_0228_cache_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_04_29_0228_cache_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_04_29_0228_cmakefiles_v1_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_04_29_0228_cmakefiles_v1_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_04_29_0228_cmakefiles_v1_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_04_29_0228_codemodel_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_04_29_0228_codemodel_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_04_29_0228_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_04_29_0228_codemodel_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L255", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L318", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_sysroot", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths", + "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_sysroot", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-RelWithDebInfo-f4aeae2d37b82d815393.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-RelWithDebInfo-f4aeae2d37b82d815393.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-RelWithDebInfo-f4aeae2d37b82d815393.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_paths" }, { "relation": "contains", @@ -225767,856 +278386,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-b2b1d831d0fb03d9ca0e.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_b2b1d831d0fb03d9ca0e_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_json", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_link_sysroot", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_paths", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-1164b1b125d10f1f8a35.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_paths", - "target": "reply_target_appmodules_relwithdebinfo_1164b1b125d10f1f8a35_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L267", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L268", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-62ff8343128d3ca621be.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_62ff8343128d3ca621be_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-f71f594d3426bde4898b.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_f71f594d3426bde4898b_type" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -226697,6 +278466,816 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths", + "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L333", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_sysroot", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_sysroot", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_sysroot", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-RelWithDebInfo-c1f265f99af0b94266ef.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-RelWithDebInfo-c1f265f99af0b94266ef.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-RelWithDebInfo-c1f265f99af0b94266ef.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -226777,6 +279356,206 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_relwithdebinfo_c1f265f99af0b94266ef_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_8648f163dc6cddd234fb_json", + "target": "reply_cache_v2_8648f163dc6cddd234fb_entries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", + "source_location": "L1637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_8648f163dc6cddd234fb_json", + "target": "reply_cache_v2_8648f163dc6cddd234fb_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", + "source_location": "L1638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_8648f163dc6cddd234fb_json", + "target": "reply_cache_v2_8648f163dc6cddd234fb_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", + "source_location": "L1640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cache_v2_8648f163dc6cddd234fb_version", + "target": "reply_cache_v2_8648f163dc6cddd234fb_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", + "source_location": "L1641", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cache_v2_8648f163dc6cddd234fb_version", + "target": "reply_cache_v2_8648f163dc6cddd234fb_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths", + "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -226937,6 +279716,336 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths", + "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths", + "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-RelWithDebInfo-6f8e1947845121968926.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-RelWithDebInfo-6f8e1947845121968926.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-RelWithDebInfo-6f8e1947845121968926.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -227017,6 +280126,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-RelWithDebInfo-db93909da8ac45d348e4.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-RelWithDebInfo-db93909da8ac45d348e4.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-RelWithDebInfo-db93909da8ac45d348e4.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -227097,306 +280236,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_paths", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-761b4c9035c9fa703dad.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_paths", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_761b4c9035c9fa703dad_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_paths", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-c40d979839e6f9538be5.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_paths", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_c40d979839e6f9538be5_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -227477,6 +280316,476 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_relwithdebinfo_b03690d896f7026a177d_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L294", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L262", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_sysroot", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L271", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths", + "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_35ffecf8081b17d4bb74_json", + "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_configurations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L508", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_35ffecf8081b17d4bb74_json", + "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L509", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_35ffecf8081b17d4bb74_json", + "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L514", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_35ffecf8081b17d4bb74_json", + "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L511", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths", + "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L512", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths", + "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L516", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_35ffecf8081b17d4bb74_version", + "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", + "source_location": "L517", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_35ffecf8081b17d4bb74_version", + "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-RelWithDebInfo-ec755c3cd9003338013f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-RelWithDebInfo-ec755c3cd9003338013f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-RelWithDebInfo-ec755c3cd9003338013f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -227560,152 +280869,392 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtracegraph_commands" + "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtracegraph_files" + "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_backtracegraph_nodes" + "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_paths", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_paths_build" + "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-7c91a223c7b982fc7cb5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_paths", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_7c91a223c7b982fc7cb5_paths_source" + "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths", + "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_sysroot", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-RelWithDebInfo-a9f6f6c634eac5fe0705.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-RelWithDebInfo-a9f6f6c634eac5fe0705.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-RelWithDebInfo-a9f6f6c634eac5fe0705.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_paths" }, { "relation": "contains", @@ -227790,732 +281339,402 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L74", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L156", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L214", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L481", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_dependencies" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L215", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L552", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L249", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L553", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L250", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L643", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L251", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L644", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L256", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L645", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L274", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L650", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L331", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L723", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L1074", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtracegraph_commands" + "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L20", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L21", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtracegraph_files" + "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L25", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L34", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_backtracegraph_nodes" + "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L217", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L555", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link_commandfragments" + "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_commandfragments" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L243", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L637", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link_language" + "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_language" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L244", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L638", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link_sysroot" + "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_sysroot" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L246", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L640", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_sysroot_path" + "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_sysroot", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sysroot_path" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L253", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L647", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_paths_build" + "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-aeb4ff894972fe27a37f.json", - "source_location": "L254", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", + "source_location": "L648", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_aeb4ff894972fe27a37f_paths_source" + "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths", + "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_index_2026_05_31t05_24_36_0391_json", - "target": "reply_index_2026_05_31t05_24_36_0391_cmake" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_index_2026_05_31t05_24_36_0391_json", - "target": "reply_index_2026_05_31t05_24_36_0391_objects" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L56", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_index_2026_05_31t05_24_36_0391_json", - "target": "reply_index_2026_05_31t05_24_36_0391_reply" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake", - "target": "reply_index_2026_05_31t05_24_36_0391_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake", - "target": "reply_index_2026_05_31t05_24_36_0391_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake", - "target": "reply_index_2026_05_31t05_24_36_0391_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake_generator", - "target": "reply_index_2026_05_31t05_24_36_0391_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake_generator", - "target": "reply_index_2026_05_31t05_24_36_0391_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake_paths", - "target": "reply_index_2026_05_31t05_24_36_0391_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake_paths", - "target": "reply_index_2026_05_31t05_24_36_0391_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake_paths", - "target": "reply_index_2026_05_31t05_24_36_0391_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_24_36_0391_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_24_36_0391_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_24_36_0391_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake_version", - "target": "reply_index_2026_05_31t05_24_36_0391_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake_version", - "target": "reply_index_2026_05_31t05_24_36_0391_version_major" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L87", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake_version", - "target": "reply_index_2026_05_31t05_24_36_0391_version_minor" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L21", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake_version", - "target": "reply_index_2026_05_31t05_24_36_0391_version_patch" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L22", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake_version", - "target": "reply_index_2026_05_31t05_24_36_0391_version_string" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L23", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_cmake_version", - "target": "reply_index_2026_05_31t05_24_36_0391_version_suffix" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_reply", - "target": "reply_index_2026_05_31t05_24_36_0391_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_reply_client_agp", - "target": "reply_index_2026_05_31t05_24_36_0391_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_reply_client_agp", - "target": "reply_index_2026_05_31t05_24_36_0391_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_reply_client_agp", - "target": "reply_index_2026_05_31t05_24_36_0391_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_24_36_0391_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_24_36_0391_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_24_36_0391_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_24_36_0391_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_24_36_0391_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-24-36-0391.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_24_36_0391_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_24_36_0391_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L225", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L230", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_sourcegroups" + "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L255", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_sources" + "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L318", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_type" + "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L11", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtracegraph_commands" + "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L17", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", + "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtracegraph_files" + "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths", + "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L21", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-RelWithDebInfo-b7a7f29ab6b37dd5df56.json", + "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L175", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-RelWithDebInfo-b7a7f29ab6b37dd5df56.json", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link_commandfragments" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_installers" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L217", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-RelWithDebInfo-b7a7f29ab6b37dd5df56.json", + "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_link_sysroot", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-8bab04952cc5f7514030.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_8bab04952cc5f7514030_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_paths" }, { "relation": "contains", @@ -228597,6 +281816,46 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildtargetscommandcomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_cleancommandscomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -228644,8 +281903,8 @@ "source_location": "L67", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" }, { "relation": "contains", @@ -228654,8 +281913,8 @@ "source_location": "L120", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" }, { "relation": "contains", @@ -228664,8 +281923,8 @@ "source_location": "L151", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, { "relation": "contains", @@ -228674,8 +281933,8 @@ "source_location": "L110", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, { "relation": "contains", @@ -228684,8 +281943,8 @@ "source_location": "L37", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, { "relation": "contains", @@ -228694,8 +281953,8 @@ "source_location": "L47", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, { "relation": "contains", @@ -228704,8 +281963,8 @@ "source_location": "L62", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, { "relation": "contains", @@ -228714,8 +281973,8 @@ "source_location": "L156", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, { "relation": "contains", @@ -228724,8 +281983,8 @@ "source_location": "L136", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, { "relation": "contains", @@ -228734,8 +281993,8 @@ "source_location": "L166", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, { "relation": "contains", @@ -228744,8 +282003,8 @@ "source_location": "L171", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, { "relation": "contains", @@ -228754,8 +282013,8 @@ "source_location": "L115", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, { "relation": "contains", @@ -228764,8 +282023,8 @@ "source_location": "L141", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, { "relation": "contains", @@ -228774,8 +282033,8 @@ "source_location": "L95", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, { "relation": "contains", @@ -228784,8 +282043,8 @@ "source_location": "L105", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, { "relation": "contains", @@ -228794,8 +282053,8 @@ "source_location": "L52", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, { "relation": "contains", @@ -228804,8 +282063,8 @@ "source_location": "L85", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, { "relation": "contains", @@ -228814,8 +282073,8 @@ "source_location": "L126", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries", - "target": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, { "relation": "contains", @@ -228824,8 +282083,8 @@ "source_location": "L39", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" }, { "relation": "contains", @@ -228834,8 +282093,8 @@ "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" }, { "relation": "contains", @@ -228844,8 +282103,8 @@ "source_location": "L40", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" }, { "relation": "contains", @@ -228854,8 +282113,8 @@ "source_location": "L41", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" }, { "relation": "contains", @@ -228864,8 +282123,8 @@ "source_location": "L49", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" }, { "relation": "contains", @@ -228874,8 +282133,8 @@ "source_location": "L48", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" }, { "relation": "contains", @@ -228884,8 +282143,8 @@ "source_location": "L50", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" }, { "relation": "contains", @@ -228894,8 +282153,8 @@ "source_location": "L54", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" }, { "relation": "contains", @@ -228904,8 +282163,8 @@ "source_location": "L53", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" }, { "relation": "contains", @@ -228914,8 +282173,8 @@ "source_location": "L55", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" }, { "relation": "contains", @@ -228924,8 +282183,8 @@ "source_location": "L56", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" }, { "relation": "contains", @@ -228934,8 +282193,8 @@ "source_location": "L64", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" }, { "relation": "contains", @@ -228944,8 +282203,8 @@ "source_location": "L63", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" }, { "relation": "contains", @@ -228954,8 +282213,8 @@ "source_location": "L65", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" }, { "relation": "contains", @@ -228964,8 +282223,8 @@ "source_location": "L69", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" }, { "relation": "contains", @@ -228974,8 +282233,8 @@ "source_location": "L68", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" }, { "relation": "contains", @@ -228984,8 +282243,8 @@ "source_location": "L70", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" }, { "relation": "contains", @@ -228994,8 +282253,8 @@ "source_location": "L71", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, { "relation": "contains", @@ -229004,8 +282263,8 @@ "source_location": "L87", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" }, { "relation": "contains", @@ -229014,8 +282273,8 @@ "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" }, { "relation": "contains", @@ -229024,8 +282283,8 @@ "source_location": "L88", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" }, { "relation": "contains", @@ -229034,8 +282293,8 @@ "source_location": "L89", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" }, { "relation": "contains", @@ -229044,8 +282303,8 @@ "source_location": "L97", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" }, { "relation": "contains", @@ -229054,8 +282313,8 @@ "source_location": "L96", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" }, { "relation": "contains", @@ -229064,8 +282323,8 @@ "source_location": "L98", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" }, { "relation": "contains", @@ -229074,8 +282333,8 @@ "source_location": "L99", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" }, { "relation": "contains", @@ -229084,8 +282343,8 @@ "source_location": "L107", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" }, { "relation": "contains", @@ -229094,8 +282353,8 @@ "source_location": "L106", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" }, { "relation": "contains", @@ -229104,8 +282363,8 @@ "source_location": "L108", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" }, { "relation": "contains", @@ -229114,8 +282373,8 @@ "source_location": "L112", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" }, { "relation": "contains", @@ -229124,8 +282383,8 @@ "source_location": "L111", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" }, { "relation": "contains", @@ -229134,8 +282393,8 @@ "source_location": "L113", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" }, { "relation": "contains", @@ -229144,8 +282403,8 @@ "source_location": "L117", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" }, { "relation": "contains", @@ -229154,8 +282413,8 @@ "source_location": "L116", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" }, { "relation": "contains", @@ -229164,8 +282423,8 @@ "source_location": "L118", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" }, { "relation": "contains", @@ -229174,8 +282433,8 @@ "source_location": "L122", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" }, { "relation": "contains", @@ -229184,8 +282443,8 @@ "source_location": "L121", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" }, { "relation": "contains", @@ -229194,8 +282453,8 @@ "source_location": "L123", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" }, { "relation": "contains", @@ -229204,138 +282463,8 @@ "source_location": "L124", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L152", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L157", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L137", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L142", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L127", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L158", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L143", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, { "relation": "contains", @@ -229344,38 +282473,18 @@ "source_location": "L128", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L159", + "source_location": "L127", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L174", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L144", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" }, { "relation": "contains", @@ -229384,68 +282493,8 @@ "source_location": "L129", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L160", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L169", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", - "source_location": "L145", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" }, { "relation": "contains", @@ -229454,8 +282503,248 @@ "source_location": "L130", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/prefab_config.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_prefab_config_json_x86_prefab_config_enabled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/prefab_config.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_prefab_config_json_x86_prefab_config_packages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/prefab_config.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_prefab_config_json_x86_prefab_config_prefabpath" }, { "relation": "contains", @@ -229487,6 +282776,76 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_prefab_config_json", "target": "x86_prefab_config_prefabpath" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_buildfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_buildtargetscommandcomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_cfileextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_cleancommandscomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_cppfileextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_toolchains" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -229564,8 +282923,8 @@ "source_location": "L37", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" }, { "relation": "contains", @@ -229574,8 +282933,8 @@ "source_location": "L56", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" }, { "relation": "contains", @@ -229584,8 +282943,8 @@ "source_location": "L121", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, { "relation": "contains", @@ -229594,8 +282953,8 @@ "source_location": "L126", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, { "relation": "contains", @@ -229604,8 +282963,8 @@ "source_location": "L73", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, { "relation": "contains", @@ -229614,8 +282973,8 @@ "source_location": "L84", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, { "relation": "contains", @@ -229624,8 +282983,8 @@ "source_location": "L131", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, { "relation": "contains", @@ -229634,8 +282993,8 @@ "source_location": "L89", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, { "relation": "contains", @@ -229644,8 +283003,8 @@ "source_location": "L100", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, { "relation": "contains", @@ -229654,8 +283013,8 @@ "source_location": "L105", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, { "relation": "contains", @@ -229664,8 +283023,8 @@ "source_location": "L136", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, { "relation": "contains", @@ -229674,8 +283033,8 @@ "source_location": "L147", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, { "relation": "contains", @@ -229684,8 +283043,8 @@ "source_location": "L152", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, { "relation": "contains", @@ -229694,8 +283053,8 @@ "source_location": "L163", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, { "relation": "contains", @@ -229704,8 +283063,8 @@ "source_location": "L174", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, { "relation": "contains", @@ -229714,8 +283073,8 @@ "source_location": "L179", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, { "relation": "contains", @@ -229724,8 +283083,8 @@ "source_location": "L110", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, { "relation": "contains", @@ -229734,18 +283093,8 @@ "source_location": "L62", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries", - "target": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, { "relation": "contains", @@ -229754,8 +283103,8 @@ "source_location": "L39", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" }, { "relation": "contains", @@ -229764,8 +283113,8 @@ "source_location": "L40", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" }, { "relation": "contains", @@ -229774,8 +283123,18 @@ "source_location": "L41", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, { "relation": "contains", @@ -229784,88 +283143,8 @@ "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L78", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L94", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L141", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L157", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L184", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" }, { "relation": "contains", @@ -229874,8 +283153,8 @@ "source_location": "L58", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" }, { "relation": "contains", @@ -229884,8 +283163,8 @@ "source_location": "L59", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" }, { "relation": "contains", @@ -229894,8 +283173,8 @@ "source_location": "L60", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, { "relation": "contains", @@ -229904,158 +283183,8 @@ "source_location": "L57", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L123", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L128", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L133", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L91", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L102", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L107", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L149", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L165", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L176", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L181", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" }, { "relation": "contains", @@ -230064,158 +283193,8 @@ "source_location": "L64", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L134", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L92", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L103", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L155", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L182", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" }, { "relation": "contains", @@ -230224,78 +283203,8 @@ "source_location": "L65", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L93", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L140", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L183", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", - "source_location": "L114", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" }, { "relation": "contains", @@ -230304,8 +283213,18 @@ "source_location": "L66", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" }, { "relation": "contains", @@ -230314,8 +283233,48 @@ "source_location": "L63", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" }, { "relation": "contains", @@ -230324,8 +283283,28 @@ "source_location": "L74", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" }, { "relation": "contains", @@ -230334,8 +283313,48 @@ "source_location": "L85", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" }, { "relation": "contains", @@ -230344,8 +283363,28 @@ "source_location": "L90", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" }, { "relation": "contains", @@ -230354,8 +283393,28 @@ "source_location": "L101", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" }, { "relation": "contains", @@ -230364,8 +283423,48 @@ "source_location": "L106", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" }, { "relation": "contains", @@ -230374,8 +283473,28 @@ "source_location": "L111", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" }, { "relation": "contains", @@ -230384,8 +283503,28 @@ "source_location": "L122", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" }, { "relation": "contains", @@ -230394,8 +283533,28 @@ "source_location": "L127", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" }, { "relation": "contains", @@ -230404,8 +283563,48 @@ "source_location": "L132", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" }, { "relation": "contains", @@ -230414,8 +283613,28 @@ "source_location": "L137", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" }, { "relation": "contains", @@ -230424,8 +283643,48 @@ "source_location": "L148", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" }, { "relation": "contains", @@ -230434,8 +283693,48 @@ "source_location": "L153", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" }, { "relation": "contains", @@ -230444,8 +283743,28 @@ "source_location": "L164", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" }, { "relation": "contains", @@ -230454,8 +283773,48 @@ "source_location": "L175", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" }, { "relation": "contains", @@ -230464,8 +283823,8 @@ "source_location": "L180", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" }, { "relation": "contains", @@ -230474,8 +283833,8 @@ "source_location": "L192", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_toolchains", - "target": "x86_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_toolchains", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" }, { "relation": "contains", @@ -230484,8 +283843,8 @@ "source_location": "L193", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_toolchains_toolchain", - "target": "x86_android_gradle_build_toolchain_ccompilerexecutable" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_ccompilerexecutable" }, { "relation": "contains", @@ -230494,8 +283853,8 @@ "source_location": "L194", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_android_gradle_build_toolchains_toolchain", - "target": "x86_android_gradle_build_toolchain_cppcompilerexecutable" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_cppcompilerexecutable" }, { "relation": "contains", @@ -230620,202 +283979,152 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-9b549d88107f9e144618.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_9b549d88107f9e144618_json", - "target": "reply_cache_v2_9b549d88107f9e144618_entries" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-9b549d88107f9e144618.json", - "source_location": "L1669", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_9b549d88107f9e144618_json", - "target": "reply_cache_v2_9b549d88107f9e144618_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-9b549d88107f9e144618.json", - "source_location": "L1670", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_9b549d88107f9e144618_json", - "target": "reply_cache_v2_9b549d88107f9e144618_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-9b549d88107f9e144618.json", - "source_location": "L1672", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_9b549d88107f9e144618_version", - "target": "reply_cache_v2_9b549d88107f9e144618_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-9b549d88107f9e144618.json", - "source_location": "L1673", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_9b549d88107f9e144618_version", - "target": "reply_cache_v2_9b549d88107f9e144618_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" }, { "relation": "contains", @@ -230977,216 +284286,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_link_sysroot", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-5593112053988a2b7335.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_5593112053988a2b7335_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -231270,212 +284369,572 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_3b89f69fafffe1536555_json", + "target": "reply_cache_v2_3b89f69fafffe1536555_entries" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L8", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", + "source_location": "L1637", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_3b89f69fafffe1536555_json", + "target": "reply_cache_v2_3b89f69fafffe1536555_kind" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", + "source_location": "L1638", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_3b89f69fafffe1536555_json", + "target": "reply_cache_v2_3b89f69fafffe1536555_version" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L75", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", + "source_location": "L1640", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_compilegroups" + "source": "reply_cache_v2_3b89f69fafffe1536555_version", + "target": "reply_cache_v2_3b89f69fafffe1536555_version_major" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L221", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", + "source_location": "L1641", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_id" + "source": "reply_cache_v2_3b89f69fafffe1536555_version", + "target": "reply_cache_v2_3b89f69fafffe1536555_version_minor" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L222", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link_commandfragments" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L250", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link_language" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L251", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link_sysroot" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L253", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_link_sysroot", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_sysroot_path" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L260", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-9f83f062c3fdea7cc04f.json", - "source_location": "L261", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_9f83f062c3fdea7cc04f_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L481", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L552", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L553", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L643", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L644", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L645", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L650", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L723", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L1074", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L555", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_sysroot", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L647", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", + "source_location": "L648", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths", + "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths_source" }, { "relation": "contains", @@ -231637,6 +285096,156 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -231720,1022 +285329,812 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_485a9b36f12a59f57849_json", + "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_inputs" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L334", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_485a9b36f12a59f57849_json", + "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L335", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_485a9b36f12a59f57849_json", + "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L340", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_485a9b36f12a59f57849_json", + "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L337", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths", + "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L338", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths", + "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L342", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_485a9b36f12a59f57849_version", + "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", + "source_location": "L343", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_485a9b36f12a59f57849_version", + "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_06_15t11_05_07_0332_json", + "target": "reply_index_2026_06_15t11_05_07_0332_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_06_15t11_05_07_0332_json", + "target": "reply_index_2026_06_15t11_05_07_0332_objects" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L27", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L56", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_06_15t11_05_07_0332_json", + "target": "reply_index_2026_06_15t11_05_07_0332_reply" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L86", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L4", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_compilegroups" + "source": "reply_index_2026_06_15t11_05_07_0332_cmake", + "target": "reply_index_2026_06_15t11_05_07_0332_cmake_generator" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtracegraph" + "source": "reply_index_2026_06_15t11_05_07_0332_cmake", + "target": "reply_index_2026_06_15t11_05_07_0332_cmake_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L60", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L16", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_compilegroups" + "source": "reply_index_2026_06_15t11_05_07_0332_cmake", + "target": "reply_index_2026_06_15t11_05_07_0332_cmake_version" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L188", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L6", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_id" + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_generator", + "target": "reply_index_2026_06_15t11_05_07_0332_generator_multiconfig" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L189", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L7", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link" + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_generator", + "target": "reply_index_2026_06_15t11_05_07_0332_generator_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtracegraph_commands" + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_paths", + "target": "reply_index_2026_06_15t11_05_07_0332_paths_cmake" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_paths", + "target": "reply_index_2026_06_15t11_05_07_0332_paths_cpack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_paths", + "target": "reply_index_2026_06_15t11_05_07_0332_paths_ctest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_paths", + "target": "reply_index_2026_06_15t11_05_07_0332_paths_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_isdirty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L19", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtracegraph_files" + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_major" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-ddb533ebf64436d98857.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_ddb533ebf64436d98857_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L20", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtracegraph_files" + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_minor" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L25", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L21", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_backtracegraph_nodes" + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_patch" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L217", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L22", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link_commandfragments" + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_string" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L243", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L23", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link_language" + "source": "reply_index_2026_06_15t11_05_07_0332_cmake_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_suffix" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L244", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L66", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link_sysroot" + "source": "reply_index_2026_06_15t11_05_07_0332_cache_v2_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_major" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L246", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L76", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_sysroot_path" + "source": "reply_index_2026_06_15t11_05_07_0332_cmakefiles_v1_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_major" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-875df741a9ae80886083.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_875df741a9ae80886083_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_compilegroups" + "source": "reply_index_2026_06_15t11_05_07_0332_codemodel_v2_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_major" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_cache_v2_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_cmakefiles_v1_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_codemodel_v2_version", + "target": "reply_index_2026_06_15t11_05_07_0332_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_reply", + "target": "reply_index_2026_06_15t11_05_07_0332_reply_client_agp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_reply_client_agp", + "target": "reply_index_2026_06_15t11_05_07_0332_client_agp_cache_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_reply_client_agp", + "target": "reply_index_2026_06_15t11_05_07_0332_client_agp_cmakefiles_v1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_reply_client_agp", + "target": "reply_index_2026_06_15t11_05_07_0332_client_agp_codemodel_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_05_07_0332_cache_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_05_07_0332_cache_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_05_07_0332_cache_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_05_07_0332_cmakefiles_v1_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_05_07_0332_cmakefiles_v1_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_05_07_0332_cmakefiles_v1_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_05_07_0332_codemodel_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_05_07_0332_codemodel_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_07_0332_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_05_07_0332_codemodel_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_sysroot", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" }, { "relation": "contains", @@ -232817,6 +286216,576 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_sysroot", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_sysroot", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -232897,236 +286866,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_91ae33d65a989137d5c2_json", - "target": "reply_codemodel_v2_91ae33d65a989137d5c2_configurations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_91ae33d65a989137d5c2_json", - "target": "reply_codemodel_v2_91ae33d65a989137d5c2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_91ae33d65a989137d5c2_json", - "target": "reply_codemodel_v2_91ae33d65a989137d5c2_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_91ae33d65a989137d5c2_json", - "target": "reply_codemodel_v2_91ae33d65a989137d5c2_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_91ae33d65a989137d5c2_paths", - "target": "reply_codemodel_v2_91ae33d65a989137d5c2_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_91ae33d65a989137d5c2_paths", - "target": "reply_codemodel_v2_91ae33d65a989137d5c2_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_91ae33d65a989137d5c2_version", - "target": "reply_codemodel_v2_91ae33d65a989137d5c2_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-91ae33d65a989137d5c2.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_91ae33d65a989137d5c2_version", - "target": "reply_codemodel_v2_91ae33d65a989137d5c2_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -233297,216 +287036,6 @@ "source": "reply_target_core_relwithdebinfo_44525bde40684b04103a_paths", "target": "reply_target_core_relwithdebinfo_44525bde40684b04103a_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-a3ac91bcf91c4f696c1d.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_a3ac91bcf91c4f696c1d_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -233750,212 +287279,152 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L8", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L232", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L233", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L267", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L268", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L274", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L294", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L363", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L11", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L20", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-4ccbfe22531435a1d6a0.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_4ccbfe22531435a1d6a0_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" }, { "relation": "contains", @@ -234037,376 +287506,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_link_sysroot", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-547916dc745557765960.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_547916dc745557765960_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -234570,152 +287669,82 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_643ed375e1d78f8a2f97_json", + "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_configurations" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L508", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_643ed375e1d78f8a2f97_json", + "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_kind" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L27", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L509", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_643ed375e1d78f8a2f97_json", + "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L86", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L514", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_643ed375e1d78f8a2f97_json", + "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_version" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L201", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L511", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_id" + "source": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths", + "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L202", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L512", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_name" + "source": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths", + "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L203", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L516", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths" + "source": "reply_codemodel_v2_643ed375e1d78f8a2f97_version", + "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_version_major" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L208", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", + "source_location": "L517", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_source" + "source": "reply_codemodel_v2_643ed375e1d78f8a2f97_version", + "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_version_minor" }, { "relation": "contains", @@ -234800,602 +287829,792 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_129c0c5aecc77bb73625_json", - "target": "reply_cmakefiles_v1_129c0c5aecc77bb73625_inputs" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L989", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_129c0c5aecc77bb73625_json", - "target": "reply_cmakefiles_v1_129c0c5aecc77bb73625_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L990", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_129c0c5aecc77bb73625_json", - "target": "reply_cmakefiles_v1_129c0c5aecc77bb73625_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L995", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_129c0c5aecc77bb73625_json", - "target": "reply_cmakefiles_v1_129c0c5aecc77bb73625_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L992", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_129c0c5aecc77bb73625_paths", - "target": "reply_cmakefiles_v1_129c0c5aecc77bb73625_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L993", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_129c0c5aecc77bb73625_paths", - "target": "reply_cmakefiles_v1_129c0c5aecc77bb73625_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L997", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_129c0c5aecc77bb73625_version", - "target": "reply_cmakefiles_v1_129c0c5aecc77bb73625_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-129c0c5aecc77bb73625.json", - "source_location": "L998", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_129c0c5aecc77bb73625_version", - "target": "reply_cmakefiles_v1_129c0c5aecc77bb73625_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_json", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_link_sysroot", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_paths", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-9b44cc3228f1b1438d13.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_paths", - "target": "reply_target_appmodules_relwithdebinfo_9b44cc3228f1b1438d13_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_05_31t05_25_45_0198_json", - "target": "reply_index_2026_05_31t05_25_45_0198_cmake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_05_31t05_25_45_0198_json", - "target": "reply_index_2026_05_31t05_25_45_0198_objects" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L56", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_05_31t05_25_45_0198_json", - "target": "reply_index_2026_05_31t05_25_45_0198_reply" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake", - "target": "reply_index_2026_05_31t05_25_45_0198_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake", - "target": "reply_index_2026_05_31t05_25_45_0198_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake", - "target": "reply_index_2026_05_31t05_25_45_0198_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake_generator", - "target": "reply_index_2026_05_31t05_25_45_0198_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake_generator", - "target": "reply_index_2026_05_31t05_25_45_0198_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake_paths", - "target": "reply_index_2026_05_31t05_25_45_0198_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake_paths", - "target": "reply_index_2026_05_31t05_25_45_0198_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake_paths", - "target": "reply_index_2026_05_31t05_25_45_0198_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_25_45_0198_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_25_45_0198_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_25_45_0198_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake_version", - "target": "reply_index_2026_05_31t05_25_45_0198_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake_version", - "target": "reply_index_2026_05_31t05_25_45_0198_version_major" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L87", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake_version", - "target": "reply_index_2026_05_31t05_25_45_0198_version_minor" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L255", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L318", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", "source_location": "L21", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake_version", - "target": "reply_index_2026_05_31t05_25_45_0198_version_patch" + "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L22", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L175", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake_version", - "target": "reply_index_2026_05_31t05_25_45_0198_version_string" + "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_commandfragments" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L23", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L217", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_cmake_version", - "target": "reply_index_2026_05_31t05_25_45_0198_version_suffix" + "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_language" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L58", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L218", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_reply", - "target": "reply_index_2026_05_31t05_25_45_0198_reply_client_agp" + "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_sysroot" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_sysroot", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths", + "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", "source_location": "L60", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_reply_client_agp", - "target": "reply_index_2026_05_31t05_25_45_0198_client_agp_cache_v2" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L70", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L188", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_reply_client_agp", - "target": "reply_index_2026_05_31t05_25_45_0198_client_agp_cmakefiles_v1" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L80", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L189", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_reply_client_agp", - "target": "reply_index_2026_05_31t05_25_45_0198_client_agp_codemodel_v2" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L62", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L223", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_25_45_0198_cache_v2_jsonfile" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L63", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_25_45_0198_cache_v2_kind" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L72", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L225", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_25_45_0198_cache_v2_jsonfile" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L82", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L230", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_25_45_0198_cache_v2_jsonfile" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L73", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L252", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_25_45_0198_cache_v2_kind" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-05-31T05-25-45-0198.json", - "source_location": "L83", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L333", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_25_45_0198_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_25_45_0198_cache_v2_kind" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_sysroot", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_sysroot", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths_source" }, { "relation": "contains", @@ -235477,6 +288696,216 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L294", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L262", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_sysroot", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L271", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -235560,212 +288989,212 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L74", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L75", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L214", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L221", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L215", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L222", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "source_location": "L256", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L274", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L257", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L331", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L258", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtracegraph_commands" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L20", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L21", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtracegraph_files" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L25", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_backtracegraph_nodes" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L217", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link_commandfragments" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_commandfragments" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L243", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L250", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link_language" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_language" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L244", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L251", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link_sysroot" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_sysroot" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", "source_location": "L253", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_paths_build" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_sysroot", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sysroot_path" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-4ed27e87d18d56a07c0f.json", - "source_location": "L254", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L260", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_4ed27e87d18d56a07c0f_paths_source" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths_source" }, { "relation": "contains", @@ -236027,6 +289456,46 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -236057,6 +289526,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -236097,6 +289596,46 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -236127,6 +289666,76 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -236207,6 +289816,46 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -236247,6 +289896,46 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -236277,6 +289966,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -236307,6 +290026,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -236337,6 +290086,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -236627,6 +290406,256 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -236907,6 +290936,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -236917,6 +290976,16 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237067,6 +291136,16 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237477,6 +291556,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237487,6 +291616,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237497,6 +291676,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237507,6 +291716,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237517,6 +291776,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237527,6 +291816,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237537,6 +291856,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237547,6 +291916,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237557,6 +291956,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237567,6 +291996,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237577,6 +292036,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237587,6 +292096,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237597,6 +292136,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237607,6 +292196,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237617,6 +292256,36 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237627,6 +292296,56 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -237790,582 +292509,362 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_json", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_link_sysroot", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_paths", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-3df17d2a4952aca1dbdc.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_paths", - "target": "reply_target_appmodules_relwithdebinfo_3df17d2a4952aca1dbdc_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-4bf3b2df000b6d559b68.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_4bf3b2df000b6d559b68_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_sysroot", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths_source" }, { "relation": "contains", @@ -238610,422 +293109,302 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_link_sysroot", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-702414eceed68e2cf916.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_702414eceed68e2cf916_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link_commandfragments" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L250", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link_language" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L251", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link_sysroot" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L253", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_link_sysroot", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_sysroot_path" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L260", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-56c2f06531043a91461b.json", - "source_location": "L261", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_56c2f06531043a91461b_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" }, { "relation": "contains", @@ -239107,6 +293486,666 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_relwithdebinfo_3c4f354f8e9d2bc9c5a6_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_06_15t11_03_51_0162_json", + "target": "reply_index_2026_06_15t11_03_51_0162_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_06_15t11_03_51_0162_json", + "target": "reply_index_2026_06_15t11_03_51_0162_objects" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_06_15t11_03_51_0162_json", + "target": "reply_index_2026_06_15t11_03_51_0162_reply" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake", + "target": "reply_index_2026_06_15t11_03_51_0162_cmake_generator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake", + "target": "reply_index_2026_06_15t11_03_51_0162_cmake_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake", + "target": "reply_index_2026_06_15t11_03_51_0162_cmake_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_generator", + "target": "reply_index_2026_06_15t11_03_51_0162_generator_multiconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_generator", + "target": "reply_index_2026_06_15t11_03_51_0162_generator_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_paths", + "target": "reply_index_2026_06_15t11_03_51_0162_paths_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_paths", + "target": "reply_index_2026_06_15t11_03_51_0162_paths_cpack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_paths", + "target": "reply_index_2026_06_15t11_03_51_0162_paths_ctest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_paths", + "target": "reply_index_2026_06_15t11_03_51_0162_paths_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_isdirty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_patch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_string" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmake_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_suffix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cache_v2_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmakefiles_v1_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_codemodel_v2_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cache_v2_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_cmakefiles_v1_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_codemodel_v2_version", + "target": "reply_index_2026_06_15t11_03_51_0162_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_reply", + "target": "reply_index_2026_06_15t11_03_51_0162_reply_client_agp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_reply_client_agp", + "target": "reply_index_2026_06_15t11_03_51_0162_client_agp_cache_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_reply_client_agp", + "target": "reply_index_2026_06_15t11_03_51_0162_client_agp_cmakefiles_v1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_reply_client_agp", + "target": "reply_index_2026_06_15t11_03_51_0162_client_agp_codemodel_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_03_51_0162_cache_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_03_51_0162_cache_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_03_51_0162_cache_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_03_51_0162_cmakefiles_v1_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_03_51_0162_cmakefiles_v1_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_03_51_0162_cmakefiles_v1_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_03_51_0162_codemodel_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_03_51_0162_codemodel_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_03_51_0162_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_03_51_0162_codemodel_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L333", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_sysroot", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_8e20c562927808c1169a_json", + "target": "reply_codemodel_v2_8e20c562927808c1169a_configurations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L508", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_8e20c562927808c1169a_json", + "target": "reply_codemodel_v2_8e20c562927808c1169a_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L509", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_8e20c562927808c1169a_json", + "target": "reply_codemodel_v2_8e20c562927808c1169a_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L514", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_8e20c562927808c1169a_json", + "target": "reply_codemodel_v2_8e20c562927808c1169a_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L511", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_8e20c562927808c1169a_paths", + "target": "reply_codemodel_v2_8e20c562927808c1169a_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L512", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_8e20c562927808c1169a_paths", + "target": "reply_codemodel_v2_8e20c562927808c1169a_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L516", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_8e20c562927808c1169a_version", + "target": "reply_codemodel_v2_8e20c562927808c1169a_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", + "source_location": "L517", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_8e20c562927808c1169a_version", + "target": "reply_codemodel_v2_8e20c562927808c1169a_version_minor" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -239187,6 +294226,156 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -239270,302 +294459,212 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L257", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtrace" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sources" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_commandfragments" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L269", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L250", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_type" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_language" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L29", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L251", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_commands" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_sysroot" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L38", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L253", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_files" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_sysroot", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sysroot_path" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L43", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L260", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_nodes" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L205", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", + "source_location": "L261", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_source" + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths_source" }, { "relation": "contains", @@ -239740,522 +294839,152 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_link_sysroot", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3b578fc4e47bae96599d.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3b578fc4e47bae96599d_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" }, { "relation": "contains", @@ -240337,6 +295066,156 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_relwithdebinfo_f4aeae2d37b82d815393_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -240420,362 +295299,432 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L74", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L214", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L232", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L215", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L233", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L249", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L267", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L250", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L268", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L251", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L274", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L331", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L294", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtracegraph_commands" + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L20", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtracegraph_files" + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", "source_location": "L25", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_backtracegraph_nodes" + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L217", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L235", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link_commandfragments" + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_commandfragments" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L243", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L261", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link_language" + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_language" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L244", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L262", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link_sysroot" + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_sysroot" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L246", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L264", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_sysroot_path" + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_sysroot", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sysroot_path" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L253", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L271", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_paths_build" + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-7cae36bd4e781c442a80.json", - "source_location": "L254", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", + "source_location": "L272", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_7cae36bd4e781c442a80_paths_source" + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L481", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L552", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L553", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L643", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L644", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L645", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L650", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L723", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L1074", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L555", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_sysroot", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L647", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", + "source_location": "L648", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths", + "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths_source" }, { "relation": "contains", @@ -240937,216 +295886,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_relwithdebinfo_f5ebdc15457944623624_json_reply_directory_relwithdebinfo_f5ebdc15457944623624_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_relwithdebinfo_f5ebdc15457944623624_json_reply_directory_relwithdebinfo_f5ebdc15457944623624_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-094978a583d2e46bfa16.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_094978a583d2e46bfa16_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -241227,6 +295966,366 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_sysroot", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -241307,156 +296406,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -241620,572 +296569,352 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_f812530a1b3e79fa59d4_json", + "target": "reply_cache_v2_f812530a1b3e79fa59d4_entries" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", + "source_location": "L1637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_f812530a1b3e79fa59d4_json", + "target": "reply_cache_v2_f812530a1b3e79fa59d4_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", + "source_location": "L1638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_f812530a1b3e79fa59d4_json", + "target": "reply_cache_v2_f812530a1b3e79fa59d4_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", + "source_location": "L1640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cache_v2_f812530a1b3e79fa59d4_version", + "target": "reply_cache_v2_f812530a1b3e79fa59d4_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", + "source_location": "L1641", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cache_v2_f812530a1b3e79fa59d4_version", + "target": "reply_cache_v2_f812530a1b3e79fa59d4_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L86", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L52", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L232", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L161", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_dependencies" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L233", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L172", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L267", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L173", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L268", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L223", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-6fbb9af1da0a75e2a5e9.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_6fbb9af1da0a75e2a5e9_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L225", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L259", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L230", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L260", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L255", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L261", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L318", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtracegraph_commands" + "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L21", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtracegraph_files" + "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L175", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_backtracegraph_nodes" + "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_commandfragments" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_sysroot", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", "source_location": "L227", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link_commandfragments" + "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L253", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", + "source_location": "L228", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link_language" + "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths", + "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L254", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link_sysroot" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_3da4b9b5e24eda56edf6_json", + "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_inputs" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L256", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L334", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_sysroot_path" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_3da4b9b5e24eda56edf6_json", + "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_kind" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L263", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L335", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_3da4b9b5e24eda56edf6_json", + "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d7ff03859e1641486266.json", - "source_location": "L264", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L340", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d7ff03859e1641486266_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_3da4b9b5e24eda56edf6_json", + "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L337", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths", + "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L338", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths", + "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L342", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version", + "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", + "source_location": "L343", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version", + "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version_minor" }, { "relation": "contains", @@ -242270,162 +296999,362 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_caf8ae24fdb8188a8261_json", - "target": "reply_codemodel_v2_caf8ae24fdb8188a8261_configurations" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L508", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_caf8ae24fdb8188a8261_json", - "target": "reply_codemodel_v2_caf8ae24fdb8188a8261_kind" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L509", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_caf8ae24fdb8188a8261_json", - "target": "reply_codemodel_v2_caf8ae24fdb8188a8261_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L514", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_caf8ae24fdb8188a8261_json", - "target": "reply_codemodel_v2_caf8ae24fdb8188a8261_version" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L511", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_codemodel_v2_caf8ae24fdb8188a8261_paths", - "target": "reply_codemodel_v2_caf8ae24fdb8188a8261_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L512", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_codemodel_v2_caf8ae24fdb8188a8261_paths", - "target": "reply_codemodel_v2_caf8ae24fdb8188a8261_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L516", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_codemodel_v2_caf8ae24fdb8188a8261_version", - "target": "reply_codemodel_v2_caf8ae24fdb8188a8261_version_major" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-caf8ae24fdb8188a8261.json", - "source_location": "L517", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_codemodel_v2_caf8ae24fdb8188a8261_version", - "target": "reply_codemodel_v2_caf8ae24fdb8188a8261_version_minor" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_a61943fe06b646ac85ba_json", - "target": "reply_cmakefiles_v1_a61943fe06b646ac85ba_inputs" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L989", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_a61943fe06b646ac85ba_json", - "target": "reply_cmakefiles_v1_a61943fe06b646ac85ba_kind" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L990", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_a61943fe06b646ac85ba_json", - "target": "reply_cmakefiles_v1_a61943fe06b646ac85ba_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L995", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L75", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_a61943fe06b646ac85ba_json", - "target": "reply_cmakefiles_v1_a61943fe06b646ac85ba_version" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L992", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a61943fe06b646ac85ba_paths", - "target": "reply_cmakefiles_v1_a61943fe06b646ac85ba_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L993", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L225", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a61943fe06b646ac85ba_paths", - "target": "reply_cmakefiles_v1_a61943fe06b646ac85ba_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L997", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L259", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a61943fe06b646ac85ba_version", - "target": "reply_cmakefiles_v1_a61943fe06b646ac85ba_version_major" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a61943fe06b646ac85ba.json", - "source_location": "L998", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L260", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a61943fe06b646ac85ba_version", - "target": "reply_cmakefiles_v1_a61943fe06b646ac85ba_version_minor" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_sysroot", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths_source" }, { "relation": "contains", @@ -242507,56 +297436,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_relwithdebinfo_a9f6f6c634eac5fe0705_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-197d05e41dcf254ddb4c.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_197d05e41dcf254ddb4c_json", - "target": "reply_cache_v2_197d05e41dcf254ddb4c_entries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-197d05e41dcf254ddb4c.json", - "source_location": "L1669", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_197d05e41dcf254ddb4c_json", - "target": "reply_cache_v2_197d05e41dcf254ddb4c_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-197d05e41dcf254ddb4c.json", - "source_location": "L1670", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_197d05e41dcf254ddb4c_json", - "target": "reply_cache_v2_197d05e41dcf254ddb4c_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-197d05e41dcf254ddb4c.json", - "source_location": "L1672", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_197d05e41dcf254ddb4c_version", - "target": "reply_cache_v2_197d05e41dcf254ddb4c_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-197d05e41dcf254ddb4c.json", - "source_location": "L1673", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_197d05e41dcf254ddb4c_version", - "target": "reply_cache_v2_197d05e41dcf254ddb4c_version_minor" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -242640,302 +297519,252 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_05_31t05_23_12_0961_json", - "target": "reply_index_2026_05_31t05_23_12_0961_cmake" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_05_31t05_23_12_0961_json", - "target": "reply_index_2026_05_31t05_23_12_0961_objects" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_05_31t05_23_12_0961_json", - "target": "reply_index_2026_05_31t05_23_12_0961_reply" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake", - "target": "reply_index_2026_05_31t05_23_12_0961_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake", - "target": "reply_index_2026_05_31t05_23_12_0961_cmake_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L16", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L68", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake", - "target": "reply_index_2026_05_31t05_23_12_0961_cmake_version" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L6", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L196", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake_generator", - "target": "reply_index_2026_05_31t05_23_12_0961_generator_multiconfig" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L7", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L197", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake_generator", - "target": "reply_index_2026_05_31t05_23_12_0961_generator_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L12", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L231", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake_paths", - "target": "reply_index_2026_05_31t05_23_12_0961_paths_cpack" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L13", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L232", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake_paths", - "target": "reply_index_2026_05_31t05_23_12_0961_paths_ctest" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L14", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L233", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake_paths", - "target": "reply_index_2026_05_31t05_23_12_0961_paths_root" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L64", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L238", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_23_12_0961_cmake_version" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L74", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L256", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_23_12_0961_cmake_version" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L84", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L313", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_23_12_0961_cmake_version" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L18", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake_version", - "target": "reply_index_2026_05_31t05_23_12_0961_version_isdirty" + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L86", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L20", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake_version", - "target": "reply_index_2026_05_31t05_23_12_0961_version_major" + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L87", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L25", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake_version", - "target": "reply_index_2026_05_31t05_23_12_0961_version_minor" + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L21", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L199", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake_version", - "target": "reply_index_2026_05_31t05_23_12_0961_version_patch" + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_commandfragments" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_sysroot", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildtargetscommandcomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", "source_location": "L22", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake_version", - "target": "reply_index_2026_05_31t05_23_12_0961_version_string" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_cleancommandscomponents" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L23", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L36", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_cmake_version", - "target": "reply_index_2026_05_31t05_23_12_0961_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_reply", - "target": "reply_index_2026_05_31t05_23_12_0961_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_reply_client_agp", - "target": "reply_index_2026_05_31t05_23_12_0961_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_reply_client_agp", - "target": "reply_index_2026_05_31t05_23_12_0961_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_reply_client_agp", - "target": "reply_index_2026_05_31t05_23_12_0961_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_23_12_0961_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_23_12_0961_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_23_12_0961_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_23_12_0961_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_23_12_0961_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-23-12-0961.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_23_12_0961_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_23_12_0961_cache_v2_kind" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries" }, { "relation": "contains", @@ -242984,8 +297813,8 @@ "source_location": "L67", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" }, { "relation": "contains", @@ -242994,8 +297823,8 @@ "source_location": "L120", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" }, { "relation": "contains", @@ -243004,8 +297833,8 @@ "source_location": "L151", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, { "relation": "contains", @@ -243014,8 +297843,8 @@ "source_location": "L110", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, { "relation": "contains", @@ -243024,8 +297853,8 @@ "source_location": "L37", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, { "relation": "contains", @@ -243034,8 +297863,8 @@ "source_location": "L47", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, { "relation": "contains", @@ -243044,8 +297873,8 @@ "source_location": "L62", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, { "relation": "contains", @@ -243054,8 +297883,8 @@ "source_location": "L156", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, { "relation": "contains", @@ -243064,8 +297893,8 @@ "source_location": "L136", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, { "relation": "contains", @@ -243074,8 +297903,8 @@ "source_location": "L166", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, { "relation": "contains", @@ -243084,8 +297913,8 @@ "source_location": "L171", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, { "relation": "contains", @@ -243094,8 +297923,8 @@ "source_location": "L115", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, { "relation": "contains", @@ -243104,8 +297933,8 @@ "source_location": "L141", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, { "relation": "contains", @@ -243114,8 +297943,8 @@ "source_location": "L95", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, { "relation": "contains", @@ -243124,8 +297953,8 @@ "source_location": "L105", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, { "relation": "contains", @@ -243134,8 +297963,8 @@ "source_location": "L52", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, { "relation": "contains", @@ -243144,8 +297973,8 @@ "source_location": "L85", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, { "relation": "contains", @@ -243154,8 +297983,8 @@ "source_location": "L126", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries", - "target": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, { "relation": "contains", @@ -243164,8 +297993,8 @@ "source_location": "L39", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" }, { "relation": "contains", @@ -243174,8 +298003,8 @@ "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" }, { "relation": "contains", @@ -243184,8 +298013,8 @@ "source_location": "L40", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" }, { "relation": "contains", @@ -243194,8 +298023,8 @@ "source_location": "L41", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" }, { "relation": "contains", @@ -243204,8 +298033,8 @@ "source_location": "L49", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" }, { "relation": "contains", @@ -243214,8 +298043,8 @@ "source_location": "L48", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" }, { "relation": "contains", @@ -243224,8 +298053,8 @@ "source_location": "L50", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" }, { "relation": "contains", @@ -243234,8 +298063,8 @@ "source_location": "L54", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" }, { "relation": "contains", @@ -243244,8 +298073,8 @@ "source_location": "L53", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" }, { "relation": "contains", @@ -243254,8 +298083,8 @@ "source_location": "L55", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" }, { "relation": "contains", @@ -243264,8 +298093,8 @@ "source_location": "L56", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" }, { "relation": "contains", @@ -243274,8 +298103,8 @@ "source_location": "L64", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" }, { "relation": "contains", @@ -243284,8 +298113,8 @@ "source_location": "L63", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" }, { "relation": "contains", @@ -243294,8 +298123,8 @@ "source_location": "L65", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" }, { "relation": "contains", @@ -243304,8 +298133,8 @@ "source_location": "L69", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" }, { "relation": "contains", @@ -243314,8 +298143,8 @@ "source_location": "L68", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" }, { "relation": "contains", @@ -243324,8 +298153,8 @@ "source_location": "L70", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" }, { "relation": "contains", @@ -243334,8 +298163,8 @@ "source_location": "L71", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, { "relation": "contains", @@ -243344,8 +298173,8 @@ "source_location": "L87", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" }, { "relation": "contains", @@ -243354,8 +298183,8 @@ "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" }, { "relation": "contains", @@ -243364,8 +298193,8 @@ "source_location": "L88", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" }, { "relation": "contains", @@ -243374,8 +298203,8 @@ "source_location": "L89", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" }, { "relation": "contains", @@ -243384,8 +298213,8 @@ "source_location": "L97", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" }, { "relation": "contains", @@ -243394,8 +298223,8 @@ "source_location": "L96", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" }, { "relation": "contains", @@ -243404,8 +298233,8 @@ "source_location": "L98", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" }, { "relation": "contains", @@ -243414,8 +298243,8 @@ "source_location": "L99", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" }, { "relation": "contains", @@ -243424,8 +298253,8 @@ "source_location": "L107", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" }, { "relation": "contains", @@ -243434,8 +298263,8 @@ "source_location": "L106", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" }, { "relation": "contains", @@ -243444,8 +298273,8 @@ "source_location": "L108", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" }, { "relation": "contains", @@ -243454,8 +298283,8 @@ "source_location": "L112", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" }, { "relation": "contains", @@ -243464,8 +298293,8 @@ "source_location": "L111", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" }, { "relation": "contains", @@ -243474,8 +298303,8 @@ "source_location": "L113", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" }, { "relation": "contains", @@ -243484,8 +298313,8 @@ "source_location": "L117", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" }, { "relation": "contains", @@ -243494,8 +298323,8 @@ "source_location": "L116", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" }, { "relation": "contains", @@ -243504,8 +298333,8 @@ "source_location": "L118", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" }, { "relation": "contains", @@ -243514,8 +298343,8 @@ "source_location": "L122", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" }, { "relation": "contains", @@ -243524,8 +298353,8 @@ "source_location": "L121", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" }, { "relation": "contains", @@ -243534,8 +298363,8 @@ "source_location": "L123", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" }, { "relation": "contains", @@ -243544,138 +298373,8 @@ "source_location": "L124", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L152", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L157", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L137", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L142", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L127", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L158", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L143", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, { "relation": "contains", @@ -243684,38 +298383,18 @@ "source_location": "L128", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L159", + "source_location": "L127", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L174", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L144", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" }, { "relation": "contains", @@ -243724,68 +298403,8 @@ "source_location": "L129", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L160", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L169", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", - "source_location": "L145", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" }, { "relation": "contains", @@ -243794,8 +298413,248 @@ "source_location": "L130", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/prefab_config.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_prefab_config_json_x86_64_prefab_config_enabled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/prefab_config.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_prefab_config_json_x86_64_prefab_config_packages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/prefab_config.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_prefab_config_json_x86_64_prefab_config_prefabpath" }, { "relation": "contains", @@ -243827,6 +298686,76 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_prefab_config_json", "target": "x86_64_prefab_config_prefabpath" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildtargetscommandcomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cfileextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cleancommandscomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cppfileextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -243904,8 +298833,8 @@ "source_location": "L37", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" }, { "relation": "contains", @@ -243914,8 +298843,8 @@ "source_location": "L56", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" }, { "relation": "contains", @@ -243924,8 +298853,8 @@ "source_location": "L121", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, { "relation": "contains", @@ -243934,8 +298863,8 @@ "source_location": "L126", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, { "relation": "contains", @@ -243944,8 +298873,8 @@ "source_location": "L73", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, { "relation": "contains", @@ -243954,8 +298883,8 @@ "source_location": "L84", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, { "relation": "contains", @@ -243964,8 +298893,8 @@ "source_location": "L131", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, { "relation": "contains", @@ -243974,8 +298903,8 @@ "source_location": "L89", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, { "relation": "contains", @@ -243984,8 +298913,8 @@ "source_location": "L100", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, { "relation": "contains", @@ -243994,8 +298923,8 @@ "source_location": "L105", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, { "relation": "contains", @@ -244004,8 +298933,8 @@ "source_location": "L136", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, { "relation": "contains", @@ -244014,8 +298943,8 @@ "source_location": "L147", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" }, { "relation": "contains", @@ -244024,8 +298953,8 @@ "source_location": "L152", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" }, { "relation": "contains", @@ -244034,8 +298963,8 @@ "source_location": "L163", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" }, { "relation": "contains", @@ -244044,8 +298973,8 @@ "source_location": "L174", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" }, { "relation": "contains", @@ -244054,8 +298983,8 @@ "source_location": "L179", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" }, { "relation": "contains", @@ -244064,8 +298993,8 @@ "source_location": "L110", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" }, { "relation": "contains", @@ -244074,18 +299003,8 @@ "source_location": "L62", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries", - "target": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, { "relation": "contains", @@ -244094,8 +299013,8 @@ "source_location": "L39", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" }, { "relation": "contains", @@ -244104,8 +299023,8 @@ "source_location": "L40", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" }, { "relation": "contains", @@ -244114,8 +299033,18 @@ "source_location": "L41", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, { "relation": "contains", @@ -244124,88 +299053,8 @@ "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L78", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L94", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L141", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L157", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L184", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" }, { "relation": "contains", @@ -244214,8 +299063,8 @@ "source_location": "L58", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" }, { "relation": "contains", @@ -244224,8 +299073,8 @@ "source_location": "L59", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" }, { "relation": "contains", @@ -244234,8 +299083,8 @@ "source_location": "L60", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, { "relation": "contains", @@ -244244,158 +299093,8 @@ "source_location": "L57", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L123", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L128", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L133", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L91", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L102", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L107", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L149", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L165", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L176", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L181", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" }, { "relation": "contains", @@ -244404,158 +299103,8 @@ "source_location": "L64", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L134", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L92", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L103", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L155", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L182", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" }, { "relation": "contains", @@ -244564,78 +299113,8 @@ "source_location": "L65", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L93", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L140", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L183", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", - "source_location": "L114", - "weight": 1.0, - "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" }, { "relation": "contains", @@ -244644,8 +299123,18 @@ "source_location": "L66", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" }, { "relation": "contains", @@ -244654,8 +299143,48 @@ "source_location": "L63", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" }, { "relation": "contains", @@ -244664,8 +299193,28 @@ "source_location": "L74", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" }, { "relation": "contains", @@ -244674,8 +299223,48 @@ "source_location": "L85", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" }, { "relation": "contains", @@ -244684,8 +299273,28 @@ "source_location": "L90", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" }, { "relation": "contains", @@ -244694,8 +299303,28 @@ "source_location": "L101", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" }, { "relation": "contains", @@ -244704,8 +299333,48 @@ "source_location": "L106", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" }, { "relation": "contains", @@ -244714,8 +299383,28 @@ "source_location": "L111", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" }, { "relation": "contains", @@ -244724,8 +299413,28 @@ "source_location": "L122", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" }, { "relation": "contains", @@ -244734,8 +299443,28 @@ "source_location": "L127", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" }, { "relation": "contains", @@ -244744,8 +299473,48 @@ "source_location": "L132", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" }, { "relation": "contains", @@ -244754,8 +299523,28 @@ "source_location": "L137", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" }, { "relation": "contains", @@ -244764,8 +299553,48 @@ "source_location": "L148", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" }, { "relation": "contains", @@ -244774,8 +299603,48 @@ "source_location": "L153", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" }, { "relation": "contains", @@ -244784,8 +299653,28 @@ "source_location": "L164", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" }, { "relation": "contains", @@ -244794,8 +299683,48 @@ "source_location": "L175", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" }, { "relation": "contains", @@ -244804,8 +299733,8 @@ "source_location": "L180", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" }, { "relation": "contains", @@ -244814,8 +299743,8 @@ "source_location": "L192", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_toolchains", - "target": "x86_64_android_gradle_build_toolchains_toolchain" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" }, { "relation": "contains", @@ -244824,8 +299753,8 @@ "source_location": "L193", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_toolchains_toolchain", - "target": "x86_64_android_gradle_build_toolchain_ccompilerexecutable" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_ccompilerexecutable" }, { "relation": "contains", @@ -244834,8 +299763,8 @@ "source_location": "L194", "weight": 1.0, "confidence_score": 1.0, - "source": "x86_64_android_gradle_build_toolchains_toolchain", - "target": "x86_64_android_gradle_build_toolchain_cppcompilerexecutable" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_cppcompilerexecutable" }, { "relation": "contains", @@ -244960,582 +299889,362 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-97c1d13dc56a2b5dd4a5.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_97c1d13dc56a2b5dd4a5_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_json", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_link_sysroot", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_paths", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-d98999562b10c56d2157.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_paths", - "target": "reply_target_appmodules_relwithdebinfo_d98999562b10c56d2157_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b55af302461fba65035b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b55af302461fba65035b_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_sysroot", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths", + "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths_source" }, { "relation": "contains", @@ -245617,226 +300326,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_relwithdebinfo_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_relwithdebinfo_251c63907f461abe26aa_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_relwithdebinfo_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_relwithdebinfo_251c63907f461abe26aa_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_link_sysroot", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-851185f527fbd80f6cbd.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_851185f527fbd80f6cbd_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -245917,6 +300406,226 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_relwithdebinfo_c55782449035392fe125_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L481", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L552", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L553", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L643", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L644", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L645", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L650", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L723", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L1074", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L555", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_sysroot", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L647", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", + "source_location": "L648", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths", + "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -246000,212 +300709,352 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_136ec41dc33c7a3203da_json", + "target": "reply_cache_v2_136ec41dc33c7a3203da_entries" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L8", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", + "source_location": "L1637", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_136ec41dc33c7a3203da_json", + "target": "reply_cache_v2_136ec41dc33c7a3203da_kind" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", + "source_location": "L1638", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_136ec41dc33c7a3203da_json", + "target": "reply_cache_v2_136ec41dc33c7a3203da_version" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L60", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", + "source_location": "L1640", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_compilegroups" + "source": "reply_cache_v2_136ec41dc33c7a3203da_version", + "target": "reply_cache_v2_136ec41dc33c7a3203da_version_major" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L188", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", + "source_location": "L1641", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_id" + "source": "reply_cache_v2_136ec41dc33c7a3203da_version", + "target": "reply_cache_v2_136ec41dc33c7a3203da_version_minor" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L189", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L223", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L225", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L230", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L252", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L333", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L11", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L19", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", + "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L23", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L191", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link_commandfragments" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L217", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link_language" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L218", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link_sysroot" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L220", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_sysroot_path" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L227", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-c6083b4d7791b0ac5f92.json", - "source_location": "L228", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_c6083b4d7791b0ac5f92_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" }, { "relation": "contains", @@ -246367,6 +301216,366 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_relwithdebinfo_02cc5c5531c5c58ac73d_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L257", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_sysroot", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths", + "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -246450,1192 +301659,452 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-783b787ef2803f4cb98f.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_783b787ef2803f4cb98f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-a88b0fde8aaa9b96e396.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_a88b0fde8aaa9b96e396_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_e1cfc1b5f83b8c2122de_json", - "target": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_configurations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_e1cfc1b5f83b8c2122de_json", - "target": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_e1cfc1b5f83b8c2122de_json", - "target": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_e1cfc1b5f83b8c2122de_json", - "target": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_paths", - "target": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_paths", - "target": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_version", - "target": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-e1cfc1b5f83b8c2122de.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_version", - "target": "reply_codemodel_v2_e1cfc1b5f83b8c2122de_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L75", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L52", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L221", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L161", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_dependencies" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L222", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L172", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L256", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L173", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L257", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L223", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L258", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L263", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L225", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L287", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L230", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L380", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L255", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L318", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtracegraph_commands" + "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", "source_location": "L21", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtracegraph_files" + "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L175", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_backtracegraph_nodes" + "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_commandfragments" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L224", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L217", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link_commandfragments" + "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_language" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L250", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L218", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link_language" + "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_sysroot" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L251", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L220", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link_sysroot" + "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_sysroot", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sysroot_path" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L253", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L227", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_link_sysroot", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_sysroot_path" + "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L260", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", + "source_location": "L228", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_paths_build" + "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths", + "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7f4d9cb43183a3cc17e2.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7f4d9cb43183a3cc17e2_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_build" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-c3bf487b1e08b4be60fb.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_c3bf487b1e08b4be60fb_paths_source" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_05_31t05_26_33_0141_json", - "target": "reply_index_2026_05_31t05_26_33_0141_cmake" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_db0aa9d3fd185d7a8472_json", + "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_inputs" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L334", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_05_31t05_26_33_0141_json", - "target": "reply_index_2026_05_31t05_26_33_0141_objects" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_db0aa9d3fd185d7a8472_json", + "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_kind" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L56", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L335", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_05_31t05_26_33_0141_json", - "target": "reply_index_2026_05_31t05_26_33_0141_reply" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_db0aa9d3fd185d7a8472_json", + "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L4", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L340", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake", - "target": "reply_index_2026_05_31t05_26_33_0141_cmake_generator" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_db0aa9d3fd185d7a8472_json", + "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L337", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake", - "target": "reply_index_2026_05_31t05_26_33_0141_cmake_paths" + "source": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths", + "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L16", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L338", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake", - "target": "reply_index_2026_05_31t05_26_33_0141_cmake_version" + "source": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths", + "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L6", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L342", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake_generator", - "target": "reply_index_2026_05_31t05_26_33_0141_generator_multiconfig" + "source": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version", + "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version_major" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L7", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", + "source_location": "L343", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake_generator", - "target": "reply_index_2026_05_31t05_26_33_0141_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake_paths", - "target": "reply_index_2026_05_31t05_26_33_0141_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake_paths", - "target": "reply_index_2026_05_31t05_26_33_0141_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake_paths", - "target": "reply_index_2026_05_31t05_26_33_0141_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_26_33_0141_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_26_33_0141_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_26_33_0141_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake_version", - "target": "reply_index_2026_05_31t05_26_33_0141_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake_version", - "target": "reply_index_2026_05_31t05_26_33_0141_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake_version", - "target": "reply_index_2026_05_31t05_26_33_0141_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake_version", - "target": "reply_index_2026_05_31t05_26_33_0141_version_patch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake_version", - "target": "reply_index_2026_05_31t05_26_33_0141_version_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_cmake_version", - "target": "reply_index_2026_05_31t05_26_33_0141_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_reply", - "target": "reply_index_2026_05_31t05_26_33_0141_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_reply_client_agp", - "target": "reply_index_2026_05_31t05_26_33_0141_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_reply_client_agp", - "target": "reply_index_2026_05_31t05_26_33_0141_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_reply_client_agp", - "target": "reply_index_2026_05_31t05_26_33_0141_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_26_33_0141_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_26_33_0141_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_26_33_0141_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_26_33_0141_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_26_33_0141_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-05-31T05-26-33-0141.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_26_33_0141_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_26_33_0141_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-c6dacbf2b66ab4212c3f.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_json_reply_target_react_codegen_rnworklets_relwithdebinfo_c6dacbf2b66ab4212c3f_paths_source" + "source": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version", + "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version_minor" }, { "relation": "contains", @@ -247720,52 +302189,572 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-1fec8b41d90463460acf.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_1fec8b41d90463460acf_json", - "target": "reply_cache_v2_1fec8b41d90463460acf_entries" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-1fec8b41d90463460acf.json", - "source_location": "L1669", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_1fec8b41d90463460acf_json", - "target": "reply_cache_v2_1fec8b41d90463460acf_kind" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-1fec8b41d90463460acf.json", - "source_location": "L1670", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_1fec8b41d90463460acf_json", - "target": "reply_cache_v2_1fec8b41d90463460acf_version" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-1fec8b41d90463460acf.json", - "source_location": "L1672", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L68", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_cache_v2_1fec8b41d90463460acf_version", - "target": "reply_cache_v2_1fec8b41d90463460acf_version_major" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-1fec8b41d90463460acf.json", - "source_location": "L1673", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L196", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_cache_v2_1fec8b41d90463460acf_version", - "target": "reply_cache_v2_1fec8b41d90463460acf_version_minor" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_sysroot", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths", + "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L294", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L262", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_sysroot", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L271", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths", + "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths_source" }, { "relation": "contains", @@ -247847,656 +302836,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_relwithdebinfo_762995bc626882b56722_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L267", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L268", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-d6f9499649ac342a31fd.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_d6f9499649ac342a31fd_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-8e872147887829662f7f.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_8e872147887829662f7f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_4da1ff542da032203569_json", - "target": "reply_cmakefiles_v1_4da1ff542da032203569_inputs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L989", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_4da1ff542da032203569_json", - "target": "reply_cmakefiles_v1_4da1ff542da032203569_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L990", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_4da1ff542da032203569_json", - "target": "reply_cmakefiles_v1_4da1ff542da032203569_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L995", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_4da1ff542da032203569_json", - "target": "reply_cmakefiles_v1_4da1ff542da032203569_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L992", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_4da1ff542da032203569_paths", - "target": "reply_cmakefiles_v1_4da1ff542da032203569_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L993", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_4da1ff542da032203569_paths", - "target": "reply_cmakefiles_v1_4da1ff542da032203569_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L997", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_4da1ff542da032203569_version", - "target": "reply_cmakefiles_v1_4da1ff542da032203569_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-4da1ff542da032203569.json", - "source_location": "L998", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_4da1ff542da032203569_version", - "target": "reply_cmakefiles_v1_4da1ff542da032203569_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-17769a498b63a0b8916a.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_json_reply_target_react_codegen_rnctabview_relwithdebinfo_17769a498b63a0b8916a_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -248827,216 +303166,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_relwithdebinfo_f5ebdc15457944623624_json_reply_directory_relwithdebinfo_f5ebdc15457944623624_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_relwithdebinfo_f5ebdc15457944623624_json_reply_directory_relwithdebinfo_f5ebdc15457944623624_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_link_sysroot", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-1d00597f775afff4b854.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_1d00597f775afff4b854_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -249117,6 +303246,156 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_relwithdebinfo_9b81a6f2831b76917207_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -249197,156 +303476,6 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_relwithdebinfo_6f8e1947845121968926_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-dcd60b6ebf62595102c9.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_dcd60b6ebf62595102c9_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -249427,6 +303556,86 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_relwithdebinfo_db93909da8ac45d348e4_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_7e70a705d613236caeec_json", + "target": "reply_codemodel_v2_7e70a705d613236caeec_configurations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L508", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_7e70a705d613236caeec_json", + "target": "reply_codemodel_v2_7e70a705d613236caeec_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L509", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_7e70a705d613236caeec_json", + "target": "reply_codemodel_v2_7e70a705d613236caeec_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L514", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_7e70a705d613236caeec_json", + "target": "reply_codemodel_v2_7e70a705d613236caeec_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L511", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_7e70a705d613236caeec_paths", + "target": "reply_codemodel_v2_7e70a705d613236caeec_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L512", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_7e70a705d613236caeec_paths", + "target": "reply_codemodel_v2_7e70a705d613236caeec_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L516", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_7e70a705d613236caeec_version", + "target": "reply_codemodel_v2_7e70a705d613236caeec_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", + "source_location": "L517", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_7e70a705d613236caeec_version", + "target": "reply_codemodel_v2_7e70a705d613236caeec_version_minor" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -249510,152 +303719,372 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_06_15t11_05_43_0458_json", + "target": "reply_index_2026_06_15t11_05_43_0458_cmake" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_06_15t11_05_43_0458_json", + "target": "reply_index_2026_06_15t11_05_43_0458_objects" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L27", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L56", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_06_15t11_05_43_0458_json", + "target": "reply_index_2026_06_15t11_05_43_0458_reply" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake", + "target": "reply_index_2026_06_15t11_05_43_0458_cmake_generator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake", + "target": "reply_index_2026_06_15t11_05_43_0458_cmake_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake", + "target": "reply_index_2026_06_15t11_05_43_0458_cmake_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_generator", + "target": "reply_index_2026_06_15t11_05_43_0458_generator_multiconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_generator", + "target": "reply_index_2026_06_15t11_05_43_0458_generator_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_paths", + "target": "reply_index_2026_06_15t11_05_43_0458_paths_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_paths", + "target": "reply_index_2026_06_15t11_05_43_0458_paths_cpack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_paths", + "target": "reply_index_2026_06_15t11_05_43_0458_paths_ctest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_paths", + "target": "reply_index_2026_06_15t11_05_43_0458_paths_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_isdirty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_patch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_string" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmake_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_suffix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cache_v2_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_cmakefiles_v1_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_compilegroups" + "source": "reply_index_2026_06_15t11_05_43_0458_codemodel_v2_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_major" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L201", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L67", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_id" + "source": "reply_index_2026_06_15t11_05_43_0458_cache_v2_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_minor" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L202", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L77", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_name" + "source": "reply_index_2026_06_15t11_05_43_0458_cmakefiles_v1_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_minor" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L203", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L87", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths" + "source": "reply_index_2026_06_15t11_05_43_0458_codemodel_v2_version", + "target": "reply_index_2026_06_15t11_05_43_0458_version_minor" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L208", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L58", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sourcegroups" + "source": "reply_index_2026_06_15t11_05_43_0458_reply", + "target": "reply_index_2026_06_15t11_05_43_0458_reply_client_agp" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L224", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L60", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_sources" + "source": "reply_index_2026_06_15t11_05_43_0458_reply_client_agp", + "target": "reply_index_2026_06_15t11_05_43_0458_client_agp_cache_v2" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L269", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L70", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_type" + "source": "reply_index_2026_06_15t11_05_43_0458_reply_client_agp", + "target": "reply_index_2026_06_15t11_05_43_0458_client_agp_cmakefiles_v1" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L29", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L80", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_commands" + "source": "reply_index_2026_06_15t11_05_43_0458_reply_client_agp", + "target": "reply_index_2026_06_15t11_05_43_0458_client_agp_codemodel_v2" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L38", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L62", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_files" + "source": "reply_index_2026_06_15t11_05_43_0458_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_05_43_0458_cache_v2_jsonfile" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L43", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L63", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_backtracegraph_nodes" + "source": "reply_index_2026_06_15t11_05_43_0458_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_05_43_0458_cache_v2_kind" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L205", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L64", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_build" + "source": "reply_index_2026_06_15t11_05_43_0458_client_agp_cache_v2", + "target": "reply_index_2026_06_15t11_05_43_0458_cache_v2_version" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-99f19b3aecb3d8407f1d.json", - "source_location": "L206", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L72", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_99f19b3aecb3d8407f1d_paths_source" + "source": "reply_index_2026_06_15t11_05_43_0458_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_05_43_0458_cmakefiles_v1_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_05_43_0458_cmakefiles_v1_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_15t11_05_43_0458_cmakefiles_v1_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_05_43_0458_codemodel_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_05_43_0458_codemodel_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_15t11_05_43_0458_client_agp_codemodel_v2", + "target": "reply_index_2026_06_15t11_05_43_0458_codemodel_v2_version" }, { "relation": "contains", @@ -249737,6 +304166,366 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_relwithdebinfo_ec755c3cd9003338013f_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", + "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_sysroot", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths", + "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -249820,212 +304609,212 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_artifacts" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtrace" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L74", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L214", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_id" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L215", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L249", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_name" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L250", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L251", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_paths" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L256", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L274", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_sources" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L331", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_type" + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtracegraph_commands" + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L20", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtracegraph_files" + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L25", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_backtracegraph_nodes" + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L217", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link_commandfragments" + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_commandfragments" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L243", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link_language" + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_language" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L244", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link_sysroot" + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_sysroot" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L246", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_sysroot_path" + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_sysroot", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sysroot_path" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L253", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_paths_build" + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-3bf954f99049ff22d109.json", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", "source_location": "L254", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_3bf954f99049ff22d109_paths_source" + "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths", + "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths_source" }, { "relation": "contains", @@ -250107,6 +304896,216 @@ "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_paths", "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_relwithdebinfo_b7a7f29ab6b37dd5df56_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L333", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_sysroot", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths", + "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -250367,6 +305366,46 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -250397,6 +305436,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -250437,6 +305506,46 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -250467,6 +305576,76 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -250547,6 +305726,46 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -250587,6 +305806,46 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -250617,6 +305876,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -250647,6 +305936,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -250677,6 +305996,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -250967,6 +306316,256 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_mini_json_armeabi_v7a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251247,6 +306846,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251257,6 +306886,16 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251407,6 +307046,16 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251817,6 +307466,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251827,6 +307526,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251837,6 +307586,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251847,6 +307626,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251857,6 +307686,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251867,6 +307726,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251877,6 +307766,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251887,6 +307826,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251897,6 +307866,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251907,6 +307906,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251917,6 +307946,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251927,6 +308006,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251937,6 +308046,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251947,6 +308106,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251957,6 +308166,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -251967,6 +308206,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/android_gradle_build.json", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_android_gradle_build_json_armeabi_v7a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -252047,6 +308336,326 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_3bc501df0f7b3202d590_json", + "target": "reply_cmakefiles_v1_3bc501df0f7b3202d590_inputs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L334", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_3bc501df0f7b3202d590_json", + "target": "reply_cmakefiles_v1_3bc501df0f7b3202d590_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L335", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_3bc501df0f7b3202d590_json", + "target": "reply_cmakefiles_v1_3bc501df0f7b3202d590_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L340", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_3bc501df0f7b3202d590_json", + "target": "reply_cmakefiles_v1_3bc501df0f7b3202d590_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L337", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_3bc501df0f7b3202d590_paths", + "target": "reply_cmakefiles_v1_3bc501df0f7b3202d590_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L338", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_3bc501df0f7b3202d590_paths", + "target": "reply_cmakefiles_v1_3bc501df0f7b3202d590_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L342", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_3bc501df0f7b3202d590_version", + "target": "reply_cmakefiles_v1_3bc501df0f7b3202d590_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-3bc501df0f7b3202d590.json", + "source_location": "L343", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_3bc501df0f7b3202d590_version", + "target": "reply_cmakefiles_v1_3bc501df0f7b3202d590_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_sysroot", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths", + "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -252127,6 +308736,186 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths", + "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -252290,152 +309079,222 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_json", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_json", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L27", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_json", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L86", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L156", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_json", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L201", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L481", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_json", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_dependencies" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L202", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L552", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_json", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L203", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L553", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_json", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L208", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L643", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_json", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L224", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L644", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_json", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L269", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L645", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_json", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L29", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L650", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L38", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L723", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L43", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L1074", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L205", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_paths", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_paths_build" + "source": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-21bb48212073c2556ee9.json", - "source_location": "L206", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L21", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_paths", - "target": "reply_target_react_codegen_rnctabview_debug_21bb48212073c2556ee9_paths_source" + "source": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L555", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_ac22e26f182615285111_link", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_ac22e26f182615285111_link", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_ac22e26f182615285111_link", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_ac22e26f182615285111_link_sysroot", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L647", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_ac22e26f182615285111_paths", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", + "source_location": "L648", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_ac22e26f182615285111_paths", + "target": "reply_target_appmodules_debug_ac22e26f182615285111_paths_source" }, { "relation": "contains", @@ -252600,152 +309459,392 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_json", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_json", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_json", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_json", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_json", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_json", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_json", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_json", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_json", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_json", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_json", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_json", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_json", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_json", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_json", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_json", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_json", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_json", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_json", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_json", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtracegraph_commands" + "source": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtracegraph_files" + "source": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_backtracegraph_nodes" + "source": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_paths", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_paths_build" + "source": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-5305bfb8a569aab0f2ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_paths", - "target": "reply_target_react_codegen_rnworklets_debug_5305bfb8a569aab0f2ba_paths_source" + "source": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths", + "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L257", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_sysroot", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths", + "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths" }, { "relation": "contains", @@ -252827,6 +309926,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -252910,1172 +310039,902 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtracegraph_commands" + "source": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtracegraph_files" + "source": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_backtracegraph_nodes" + "source": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_paths", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_paths_build" + "source": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-53f60d36640545bd8809.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_paths", - "target": "reply_target_react_codegen_lottiereactnative_debug_53f60d36640545bd8809_paths_source" + "source": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths", + "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_57c0ffda423c61a385f6_json", - "target": "reply_codemodel_v2_57c0ffda423c61a385f6_configurations" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_57c0ffda423c61a385f6_json", - "target": "reply_codemodel_v2_57c0ffda423c61a385f6_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_57c0ffda423c61a385f6_json", - "target": "reply_codemodel_v2_57c0ffda423c61a385f6_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_57c0ffda423c61a385f6_json", - "target": "reply_codemodel_v2_57c0ffda423c61a385f6_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_57c0ffda423c61a385f6_paths", - "target": "reply_codemodel_v2_57c0ffda423c61a385f6_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_57c0ffda423c61a385f6_paths", - "target": "reply_codemodel_v2_57c0ffda423c61a385f6_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_57c0ffda423c61a385f6_version", - "target": "reply_codemodel_v2_57c0ffda423c61a385f6_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-57c0ffda423c61a385f6.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_57c0ffda423c61a385f6_version", - "target": "reply_codemodel_v2_57c0ffda423c61a385f6_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L74", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L68", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L214", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L196", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L215", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L197", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L249", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L231", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_json", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-868d039563fd314f2fe7.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_868d039563fd314f2fe7_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_paths", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-2730a0cb09512602a95e.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_paths", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_2730a0cb09512602a95e_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_2689bf47ebc3433386c8_json", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtracegraph", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtracegraph", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtracegraph", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_2689bf47ebc3433386c8_link_sysroot", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_2689bf47ebc3433386c8_paths", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-2689bf47ebc3433386c8.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_2689bf47ebc3433386c8_paths", - "target": "reply_target_appmodules_debug_2689bf47ebc3433386c8_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_paths", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b609dbc23d6111353bfd.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_paths", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_b609dbc23d6111353bfd_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L232", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L233", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L267", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L238", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L268", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L256", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L269", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L313", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_json", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtracegraph_commands" + "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L20", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtracegraph_files" + "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L25", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_backtracegraph_nodes" + "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_sysroot", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", "source_location": "L235", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link_commandfragments" + "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths", + "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", "source_location": "L261", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link_language" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L262", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L266", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link_sysroot" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_sysroot", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", "source_location": "L264", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_sysroot_path" + "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths", + "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L271", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_paths", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_paths_build" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-04cf2c7b88f9447168c4.json", - "source_location": "L272", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_paths", - "target": "reply_target_react_codegen_rnsvg_debug_04cf2c7b88f9447168c4_paths_source" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths", + "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths", + "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths" }, { "relation": "contains", @@ -254157,306 +311016,6 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_index_2026_05_31t05_36_24_0273_json", - "target": "reply_index_2026_05_31t05_36_24_0273_cmake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_index_2026_05_31t05_36_24_0273_json", - "target": "reply_index_2026_05_31t05_36_24_0273_objects" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_index_2026_05_31t05_36_24_0273_json", - "target": "reply_index_2026_05_31t05_36_24_0273_reply" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake", - "target": "reply_index_2026_05_31t05_36_24_0273_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake", - "target": "reply_index_2026_05_31t05_36_24_0273_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake", - "target": "reply_index_2026_05_31t05_36_24_0273_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake_generator", - "target": "reply_index_2026_05_31t05_36_24_0273_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake_generator", - "target": "reply_index_2026_05_31t05_36_24_0273_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake_paths", - "target": "reply_index_2026_05_31t05_36_24_0273_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake_paths", - "target": "reply_index_2026_05_31t05_36_24_0273_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake_paths", - "target": "reply_index_2026_05_31t05_36_24_0273_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_36_24_0273_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_36_24_0273_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_36_24_0273_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake_version", - "target": "reply_index_2026_05_31t05_36_24_0273_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake_version", - "target": "reply_index_2026_05_31t05_36_24_0273_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake_version", - "target": "reply_index_2026_05_31t05_36_24_0273_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake_version", - "target": "reply_index_2026_05_31t05_36_24_0273_version_patch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake_version", - "target": "reply_index_2026_05_31t05_36_24_0273_version_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_cmake_version", - "target": "reply_index_2026_05_31t05_36_24_0273_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_reply", - "target": "reply_index_2026_05_31t05_36_24_0273_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_reply_client_agp", - "target": "reply_index_2026_05_31t05_36_24_0273_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_reply_client_agp", - "target": "reply_index_2026_05_31t05_36_24_0273_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_reply_client_agp", - "target": "reply_index_2026_05_31t05_36_24_0273_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_36_24_0273_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_36_24_0273_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_36_24_0273_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_36_24_0273_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_36_24_0273_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-05-31T05-36-24-0273.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_24_0273_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_36_24_0273_cache_v2_kind" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -254627,6 +311186,846 @@ "source": "reply_target_core_debug_f3f5c86f651f420142d8_paths", "target": "reply_target_core_debug_f3f5c86f651f420142d8_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_index_2026_06_10t07_37_32_0706_json", + "target": "reply_index_2026_06_10t07_37_32_0706_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_index_2026_06_10t07_37_32_0706_json", + "target": "reply_index_2026_06_10t07_37_32_0706_objects" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_index_2026_06_10t07_37_32_0706_json", + "target": "reply_index_2026_06_10t07_37_32_0706_reply" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake", + "target": "reply_index_2026_06_10t07_37_32_0706_cmake_generator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake", + "target": "reply_index_2026_06_10t07_37_32_0706_cmake_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake", + "target": "reply_index_2026_06_10t07_37_32_0706_cmake_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_generator", + "target": "reply_index_2026_06_10t07_37_32_0706_generator_multiconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_generator", + "target": "reply_index_2026_06_10t07_37_32_0706_generator_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_paths", + "target": "reply_index_2026_06_10t07_37_32_0706_paths_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_paths", + "target": "reply_index_2026_06_10t07_37_32_0706_paths_cpack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_paths", + "target": "reply_index_2026_06_10t07_37_32_0706_paths_ctest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_paths", + "target": "reply_index_2026_06_10t07_37_32_0706_paths_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_isdirty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_patch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_string" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmake_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_suffix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cache_v2_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmakefiles_v1_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_codemodel_v2_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cache_v2_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_cmakefiles_v1_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_codemodel_v2_version", + "target": "reply_index_2026_06_10t07_37_32_0706_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_reply", + "target": "reply_index_2026_06_10t07_37_32_0706_reply_client_agp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_32_0706_client_agp_cache_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_32_0706_client_agp_cmakefiles_v1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_32_0706_client_agp_codemodel_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_32_0706_cache_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_32_0706_cache_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_32_0706_cache_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_32_0706_cmakefiles_v1_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_32_0706_cmakefiles_v1_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_32_0706_cmakefiles_v1_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_32_0706_codemodel_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_32_0706_codemodel_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T07-37-32-0706.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_32_0706_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_32_0706_codemodel_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_78739d8f0218d174c329_json", + "target": "reply_codemodel_v2_78739d8f0218d174c329_configurations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L508", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_78739d8f0218d174c329_json", + "target": "reply_codemodel_v2_78739d8f0218d174c329_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L509", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_78739d8f0218d174c329_json", + "target": "reply_codemodel_v2_78739d8f0218d174c329_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L514", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_78739d8f0218d174c329_json", + "target": "reply_codemodel_v2_78739d8f0218d174c329_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L511", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_78739d8f0218d174c329_paths", + "target": "reply_codemodel_v2_78739d8f0218d174c329_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L512", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_78739d8f0218d174c329_paths", + "target": "reply_codemodel_v2_78739d8f0218d174c329_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L516", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_78739d8f0218d174c329_version", + "target": "reply_codemodel_v2_78739d8f0218d174c329_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", + "source_location": "L517", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_78739d8f0218d174c329_version", + "target": "reply_codemodel_v2_78739d8f0218d174c329_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths", + "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_sysroot", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths", + "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -254707,6 +312106,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -254870,222 +312299,32 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_installers" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_059a4490c54c336b1751_json", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_link_sysroot", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_paths", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-059a4490c54c336b1751.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_paths", - "target": "reply_target_react_native_mmkv_debug_059a4490c54c336b1751_paths_source" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths" }, { "relation": "contains", @@ -255167,6 +312406,186 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths", + "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -255250,772 +312669,462 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-19d5fbd3a1d69ce33a14.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cache_v2_19d5fbd3a1d69ce33a14_json", - "target": "reply_cache_v2_19d5fbd3a1d69ce33a14_entries" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-19d5fbd3a1d69ce33a14.json", - "source_location": "L1669", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cache_v2_19d5fbd3a1d69ce33a14_json", - "target": "reply_cache_v2_19d5fbd3a1d69ce33a14_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-19d5fbd3a1d69ce33a14.json", - "source_location": "L1670", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cache_v2_19d5fbd3a1d69ce33a14_json", - "target": "reply_cache_v2_19d5fbd3a1d69ce33a14_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-19d5fbd3a1d69ce33a14.json", - "source_location": "L1672", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_19d5fbd3a1d69ce33a14_version", - "target": "reply_cache_v2_19d5fbd3a1d69ce33a14_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-19d5fbd3a1d69ce33a14.json", - "source_location": "L1673", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_19d5fbd3a1d69ce33a14_version", - "target": "reply_cache_v2_19d5fbd3a1d69ce33a14_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_json", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_json", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_json", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_json", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_json", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_json", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_json", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_json", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_json", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_json", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_paths", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-001c89a38d21a9663cc2.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_paths", - "target": "reply_target_react_codegen_rnreanimated_debug_001c89a38d21a9663cc2_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L68", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L52", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L196", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L161", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_dependencies" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L197", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L172", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L231", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L173", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L232", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L223", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L233", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_json", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L225", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link_language" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L226", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L230", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link_sysroot" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L228", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L255", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_link_sysroot", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_sysroot_path" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L235", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L318", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_paths", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_paths_build" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-9e30f057c84c2ce6255d.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_paths", - "target": "reply_target_react_codegen_rncslider_debug_9e30f057c84c2ce6255d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_json", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtracegraph_commands" + "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L20", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L17", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtracegraph_files" + "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L25", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L21", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_backtracegraph_nodes" + "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", "source_location": "L217", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link_commandfragments" + "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_language" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L243", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L218", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link_language" + "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_sysroot" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L244", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L220", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link_sysroot" + "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_sysroot", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sysroot_path" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L246", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L227", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_sysroot_path" + "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L253", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", + "source_location": "L228", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_paths_build" + "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths", + "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-00afd857e88a19332184.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_00afd857e88a19332184_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L27", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L86", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L60", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L201", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L188", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L202", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L189", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L203", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L223", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L269", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L225", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L29", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L230", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L38", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L252", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L43", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L333", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L205", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_paths", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_paths_build" + "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-4451dc23b9829f9363b7.json", - "source_location": "L206", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L19", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_paths", - "target": "reply_target_react_codegen_rnmmkvspec_debug_4451dc23b9829f9363b7_paths_source" + "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_sysroot", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths", + "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths" }, { "relation": "contains", @@ -256180,362 +313289,32 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_paths", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-1e3b6b035132a391ac65.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_paths", - "target": "reply_target_react_codegen_rnasyncstorage_debug_1e3b6b035132a391ac65_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_installers" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_json", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_link_sysroot", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_paths", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-17ecc52c05ff12137d37.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_paths", - "target": "reply_target_react_codegen_rnkc_debug_17ecc52c05ff12137d37_paths_source" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths" }, { "relation": "contains", @@ -256617,6 +313396,236 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-413c978a0ddd8111285e.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cache_v2_413c978a0ddd8111285e_json", + "target": "reply_cache_v2_413c978a0ddd8111285e_entries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-413c978a0ddd8111285e.json", + "source_location": "L1637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cache_v2_413c978a0ddd8111285e_json", + "target": "reply_cache_v2_413c978a0ddd8111285e_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-413c978a0ddd8111285e.json", + "source_location": "L1638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cache_v2_413c978a0ddd8111285e_json", + "target": "reply_cache_v2_413c978a0ddd8111285e_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-413c978a0ddd8111285e.json", + "source_location": "L1640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cache_v2_413c978a0ddd8111285e_version", + "target": "reply_cache_v2_413c978a0ddd8111285e_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cache-v2-413c978a0ddd8111285e.json", + "source_location": "L1641", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cache_v2_413c978a0ddd8111285e_version", + "target": "reply_cache_v2_413c978a0ddd8111285e_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths", + "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -256700,292 +313709,332 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_json", - "target": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_inputs" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L989", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_json", - "target": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L990", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_json", - "target": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L995", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_json", - "target": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L992", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_paths", - "target": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L993", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_paths", - "target": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L997", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_version", - "target": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-d89d7e5c2fc4bf0ae3de.json", - "source_location": "L998", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_version", - "target": "reply_cmakefiles_v1_d89d7e5c2fc4bf0ae3de_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L75", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L224", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L232", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L225", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L233", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L259", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L267", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L260", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L268", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L261", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L266", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L274", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L293", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L294", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L404", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L363", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_json", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtracegraph_commands" + "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L21", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L20", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtracegraph_files" + "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L25", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_backtracegraph_nodes" + "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L227", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link_commandfragments" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L253", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L232", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link_language" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L254", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L233", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link_sysroot" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L256", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L235", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_sysroot_path" + "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_commandfragments" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", - "source_location": "L263", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L261", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_paths", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_paths_build" + "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_language" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-34ee2e4d4ed2bc10de0e.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L262", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", "source_location": "L264", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_paths", - "target": "reply_target_react_codegen_rnscreens_debug_34ee2e4d4ed2bc10de0e_paths_source" + "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_sysroot", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L271", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L294", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_type" }, { "relation": "contains", @@ -257070,212 +314119,8532 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildfiles" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L8", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L30", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildtargetscommandcomponents" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L22", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_cleancommandscomponents" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L60", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L36", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L188", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L67", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L189", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L120", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L223", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L151", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L224", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L110", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L225", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L37", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L230", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L47", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L252", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L62", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L333", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L156", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_json", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L11", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L136", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L19", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L166", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L23", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L171", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_enabled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_packages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_prefabpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_buildfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_buildtargetscommandcomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cfileextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cleancommandscomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cppfileextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", "source_location": "L191", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link_commandfragments" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L217", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L37", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link_language" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L218", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L56", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link_sysroot" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L220", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L121", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_sysroot_path" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", - "source_location": "L227", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L126", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_paths", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_paths_build" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-308cc6380a417a29bd8c.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L192", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_ccompilerexecutable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_cppcompilerexecutable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_foo_cpp", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_foo_cpp_src_foo_foo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_main_cpp", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_main_cpp_src_main_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", + "source_location": "L771", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c_compileridc_cmakeccompilerid_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", + "source_location": "L767", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_index_2026_06_10t07_37_34_0327_json", + "target": "reply_index_2026_06_10t07_37_34_0327_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_index_2026_06_10t07_37_34_0327_json", + "target": "reply_index_2026_06_10t07_37_34_0327_objects" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_index_2026_06_10t07_37_34_0327_json", + "target": "reply_index_2026_06_10t07_37_34_0327_reply" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake", + "target": "reply_index_2026_06_10t07_37_34_0327_cmake_generator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake", + "target": "reply_index_2026_06_10t07_37_34_0327_cmake_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake", + "target": "reply_index_2026_06_10t07_37_34_0327_cmake_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_generator", + "target": "reply_index_2026_06_10t07_37_34_0327_generator_multiconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_generator", + "target": "reply_index_2026_06_10t07_37_34_0327_generator_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_paths", + "target": "reply_index_2026_06_10t07_37_34_0327_paths_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_paths", + "target": "reply_index_2026_06_10t07_37_34_0327_paths_cpack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_paths", + "target": "reply_index_2026_06_10t07_37_34_0327_paths_ctest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_paths", + "target": "reply_index_2026_06_10t07_37_34_0327_paths_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_isdirty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_patch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_string" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmake_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_suffix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cache_v2_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmakefiles_v1_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_codemodel_v2_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cache_v2_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_cmakefiles_v1_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_codemodel_v2_version", + "target": "reply_index_2026_06_10t07_37_34_0327_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_reply", + "target": "reply_index_2026_06_10t07_37_34_0327_reply_client_agp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_34_0327_client_agp_cache_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_34_0327_client_agp_cmakefiles_v1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_34_0327_client_agp_codemodel_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_34_0327_cache_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_34_0327_cache_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_34_0327_cache_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_34_0327_cmakefiles_v1_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_34_0327_cmakefiles_v1_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_34_0327_cmakefiles_v1_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_34_0327_codemodel_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_34_0327_codemodel_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-10T07-37-34-0327.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_34_0327_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_34_0327_codemodel_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", "source_location": "L228", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_paths", - "target": "reply_target_react_codegen_rnpicker_debug_308cc6380a417a29bd8c_paths_source" + "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_sysroot", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths", + "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L333", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_sysroot", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths", + "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_sysroot", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths", + "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L294", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L262", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_sysroot", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L271", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths", + "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_codemodel_v2_5d522f9ba5866b363040_json", + "target": "reply_codemodel_v2_5d522f9ba5866b363040_configurations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L508", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_codemodel_v2_5d522f9ba5866b363040_json", + "target": "reply_codemodel_v2_5d522f9ba5866b363040_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L509", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_codemodel_v2_5d522f9ba5866b363040_json", + "target": "reply_codemodel_v2_5d522f9ba5866b363040_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L514", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_codemodel_v2_5d522f9ba5866b363040_json", + "target": "reply_codemodel_v2_5d522f9ba5866b363040_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L511", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_5d522f9ba5866b363040_paths", + "target": "reply_codemodel_v2_5d522f9ba5866b363040_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L512", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_5d522f9ba5866b363040_paths", + "target": "reply_codemodel_v2_5d522f9ba5866b363040_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L516", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_5d522f9ba5866b363040_version", + "target": "reply_codemodel_v2_5d522f9ba5866b363040_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", + "source_location": "L517", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_5d522f9ba5866b363040_version", + "target": "reply_codemodel_v2_5d522f9ba5866b363040_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_archive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L240", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L588", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", + "target": "reply_target_core_debug_0104d26b141981fee9b4_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph", + "target": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph", + "target": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph", + "target": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_core_debug_0104d26b141981fee9b4_paths", + "target": "reply_target_core_debug_0104d26b141981fee9b4_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_core_debug_0104d26b141981fee9b4_paths", + "target": "reply_target_core_debug_0104d26b141981fee9b4_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-426904c6bb457015ed95.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cache_v2_426904c6bb457015ed95_json", + "target": "reply_cache_v2_426904c6bb457015ed95_entries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-426904c6bb457015ed95.json", + "source_location": "L1637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cache_v2_426904c6bb457015ed95_json", + "target": "reply_cache_v2_426904c6bb457015ed95_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-426904c6bb457015ed95.json", + "source_location": "L1638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cache_v2_426904c6bb457015ed95_json", + "target": "reply_cache_v2_426904c6bb457015ed95_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-426904c6bb457015ed95.json", + "source_location": "L1640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cache_v2_426904c6bb457015ed95_version", + "target": "reply_cache_v2_426904c6bb457015ed95_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-426904c6bb457015ed95.json", + "source_location": "L1641", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cache_v2_426904c6bb457015ed95_version", + "target": "reply_cache_v2_426904c6bb457015ed95_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L255", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L318", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_sysroot", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths", + "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_sysroot", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths", + "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L481", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L552", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L553", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L643", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L644", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L645", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L650", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L723", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L1074", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L555", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_sysroot", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L647", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", + "source_location": "L648", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths", + "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_json", + "target": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_inputs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L334", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_json", + "target": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L335", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_json", + "target": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L340", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_json", + "target": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L337", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_paths", + "target": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L338", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_paths", + "target": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L342", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_version", + "target": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-9ffbf57ffc7efc839cd4.json", + "source_location": "L343", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_version", + "target": "reply_cmakefiles_v1_9ffbf57ffc7efc839cd4_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L257", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_sysroot", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths", + "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_sysroot", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths", + "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths_source" }, { "relation": "contains", @@ -257537,6 +322906,46 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -257567,6 +322976,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -257607,6 +323046,46 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -257637,6 +323116,76 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -257717,6 +323266,46 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -257757,6 +323346,46 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -257787,6 +323416,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -257817,6 +323476,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -257847,6 +323536,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -258137,6 +323856,256 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_mini_json_arm64_v8a_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -258417,6 +324386,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -258427,6 +324426,16 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -258577,6 +324586,16 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -258987,6 +325006,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_core_1b9a7d546b295b7d0867_output" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -258997,6 +325066,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259007,6 +325126,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259017,6 +325166,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259027,6 +325226,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259037,6 +325266,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259047,6 +325306,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259057,6 +325366,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259067,6 +325406,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259077,6 +325446,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259087,6 +325486,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259097,6 +325546,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259107,6 +325586,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259117,6 +325646,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259127,6 +325706,36 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259137,6 +325746,56 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_toolchains_toolchain" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/android_gradle_build.json", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_android_gradle_build_json_arm64_v8a_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -259220,422 +325879,232 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L8", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L74", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L214", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L215", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L249", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L250", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_json", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-d2f52685420fea1283a8.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_d2f52685420fea1283a8_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L225", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L230", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L252", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L333", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_json", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L11", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L19", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L23", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_bfd56f26dc1a4aadf184_json", + "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_configurations" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L191", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L508", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link_commandfragments" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_bfd56f26dc1a4aadf184_json", + "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_kind" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L217", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L509", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link_language" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_bfd56f26dc1a4aadf184_json", + "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L218", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L514", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link_sysroot" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_bfd56f26dc1a4aadf184_json", + "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L220", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L511", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_sysroot_path" + "source": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths", + "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L227", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L512", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_paths", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_paths_build" + "source": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths", + "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a6fbb849e7d39f4e03ba.json", - "source_location": "L228", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L516", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_paths", - "target": "reply_target_react_codegen_rnpicker_debug_a6fbb849e7d39f4e03ba_paths_source" + "source": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version", + "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", + "source_location": "L517", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version", + "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version_minor" }, { "relation": "contains", @@ -259797,516 +326266,6 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_paths", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-116ea84e4a1cfb6d2008.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_paths", - "target": "reply_target_react_codegen_rnmmkvspec_debug_116ea84e4a1cfb6d2008_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_json", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_link_sysroot", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_paths", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-38a44f54e7eff684f8b8.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_paths", - "target": "reply_target_react_codegen_rncslider_debug_38a44f54e7eff684f8b8_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_json", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_json", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_json", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_json", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_json", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_json", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_json", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_json", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_json", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_json", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_paths", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-2c57cf9c832a279d2078.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_paths", - "target": "reply_target_react_codegen_rnreanimated_debug_2c57cf9c832a279d2078_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -260550,292 +326509,52 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-8ea430bbee8fa9b96029.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cache_v2_8ea430bbee8fa9b96029_json", + "target": "reply_cache_v2_8ea430bbee8fa9b96029_entries" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L8", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-8ea430bbee8fa9b96029.json", + "source_location": "L1637", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cache_v2_8ea430bbee8fa9b96029_json", + "target": "reply_cache_v2_8ea430bbee8fa9b96029_kind" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-8ea430bbee8fa9b96029.json", + "source_location": "L1638", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cache_v2_8ea430bbee8fa9b96029_json", + "target": "reply_cache_v2_8ea430bbee8fa9b96029_version" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L74", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-8ea430bbee8fa9b96029.json", + "source_location": "L1640", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_compilegroups" + "source": "reply_cache_v2_8ea430bbee8fa9b96029_version", + "target": "reply_cache_v2_8ea430bbee8fa9b96029_version_major" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L214", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-8ea430bbee8fa9b96029.json", + "source_location": "L1641", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-d2217ab29eab739a547d.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_d2217ab29eab739a547d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_09c2a32b521185535fb7_json", - "target": "reply_codemodel_v2_09c2a32b521185535fb7_configurations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_09c2a32b521185535fb7_json", - "target": "reply_codemodel_v2_09c2a32b521185535fb7_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_09c2a32b521185535fb7_json", - "target": "reply_codemodel_v2_09c2a32b521185535fb7_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_09c2a32b521185535fb7_json", - "target": "reply_codemodel_v2_09c2a32b521185535fb7_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_09c2a32b521185535fb7_paths", - "target": "reply_codemodel_v2_09c2a32b521185535fb7_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_09c2a32b521185535fb7_paths", - "target": "reply_codemodel_v2_09c2a32b521185535fb7_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_09c2a32b521185535fb7_version", - "target": "reply_codemodel_v2_09c2a32b521185535fb7_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-09c2a32b521185535fb7.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_09c2a32b521185535fb7_version", - "target": "reply_codemodel_v2_09c2a32b521185535fb7_version_minor" + "source": "reply_cache_v2_8ea430bbee8fa9b96029_version", + "target": "reply_cache_v2_8ea430bbee8fa9b96029_version_minor" }, { "relation": "contains", @@ -260917,436 +326636,6 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_json", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_link_sysroot", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_paths", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-1c6dc8843dbb12c7bccb.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_paths", - "target": "reply_target_react_codegen_rnkc_debug_1c6dc8843dbb12c7bccb_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_1be87b345fa64bc6436d_json", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtracegraph", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtracegraph", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtracegraph", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_1be87b345fa64bc6436d_link_sysroot", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_1be87b345fa64bc6436d_paths", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-1be87b345fa64bc6436d.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_1be87b345fa64bc6436d_paths", - "target": "reply_target_appmodules_debug_1be87b345fa64bc6436d_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -261430,402 +326719,1062 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_json", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_json", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L27", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_json", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L86", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L74", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_json", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L201", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L214", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_json", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L202", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L215", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_json", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L203", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L249", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_json", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L208", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L250", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_json", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L224", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L251", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_json", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L269", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L256", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_json", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L29", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L274", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L38", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L331", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L43", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_backtracegraph_nodes" + "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L205", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L20", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_paths", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_paths_build" + "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-5ccf7ca49b417c79929f.json", - "source_location": "L206", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L25", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_paths", - "target": "reply_target_react_codegen_rnctabview_debug_5ccf7ca49b417c79929f_paths_source" + "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_sysroot", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths", + "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L27", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L86", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L52", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L201", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L161", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_dependencies" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L202", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L172", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L203", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L173", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L208", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L223", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L269", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L225", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L255", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L318", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_sysroot", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths", + "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L26", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L27", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L201", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L232", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L202", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L233", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L203", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L267", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L208", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L268", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_nameondisk" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_json", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L29", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L274", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L38", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L294", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L43", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L363", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L205", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L11", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_paths", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_paths_build" + "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-004ef912de3b65a312c6.json", - "source_location": "L206", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L20", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_paths", - "target": "reply_target_react_codegen_rnworklets_debug_004ef912de3b65a312c6_paths_source" + "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L262", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_sysroot", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L271", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths", + "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L333", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_sysroot", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths", + "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L257", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_sysroot", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths", + "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths_source" }, { "relation": "contains", @@ -261907,6 +327856,1176 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_sysroot", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths", + "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_f173c5cfff2e03c534a5_json", + "target": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_inputs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L334", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_f173c5cfff2e03c534a5_json", + "target": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L335", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_f173c5cfff2e03c534a5_json", + "target": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L340", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_f173c5cfff2e03c534a5_json", + "target": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L337", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_paths", + "target": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L338", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_paths", + "target": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L342", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_version", + "target": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-f173c5cfff2e03c534a5.json", + "source_location": "L343", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_version", + "target": "reply_cmakefiles_v1_f173c5cfff2e03c534a5_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_sysroot", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths", + "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L481", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L552", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L553", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L643", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L644", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L645", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L650", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L723", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L1074", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L555", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_sysroot", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L647", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", + "source_location": "L648", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths", + "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths_source" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -262230,262 +329349,362 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L8", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L232", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L233", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L267", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L268", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L274", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L294", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L363", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_json", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L11", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L20", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_paths", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-08450745f26be6e9a3ed.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_paths", - "target": "reply_target_react_codegen_rnsvg_debug_08450745f26be6e9a3ed_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-e83df82c266f96f6a05b.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cache_v2_e83df82c266f96f6a05b_json", - "target": "reply_cache_v2_e83df82c266f96f6a05b_entries" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-e83df82c266f96f6a05b.json", - "source_location": "L1669", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L8", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cache_v2_e83df82c266f96f6a05b_json", - "target": "reply_cache_v2_e83df82c266f96f6a05b_kind" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-e83df82c266f96f6a05b.json", - "source_location": "L1670", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L9", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cache_v2_e83df82c266f96f6a05b_json", - "target": "reply_cache_v2_e83df82c266f96f6a05b_version" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-e83df82c266f96f6a05b.json", - "source_location": "L1672", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L75", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_cache_v2_e83df82c266f96f6a05b_version", - "target": "reply_cache_v2_e83df82c266f96f6a05b_version_major" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cache-v2-e83df82c266f96f6a05b.json", - "source_location": "L1673", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_cache_v2_e83df82c266f96f6a05b_version", - "target": "reply_cache_v2_e83df82c266f96f6a05b_version_minor" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_sysroot", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths", + "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths_source" }, { "relation": "contains", @@ -262567,596 +329786,6 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_paths", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-fe156a35ed4ac3a707f3.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_paths", - "target": "reply_target_react_codegen_rnasyncstorage_debug_fe156a35ed4ac3a707f3_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_a988569daa1845a4526f_json", - "target": "reply_cmakefiles_v1_a988569daa1845a4526f_inputs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L989", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_a988569daa1845a4526f_json", - "target": "reply_cmakefiles_v1_a988569daa1845a4526f_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L990", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_a988569daa1845a4526f_json", - "target": "reply_cmakefiles_v1_a988569daa1845a4526f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L995", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_a988569daa1845a4526f_json", - "target": "reply_cmakefiles_v1_a988569daa1845a4526f_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L992", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a988569daa1845a4526f_paths", - "target": "reply_cmakefiles_v1_a988569daa1845a4526f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L993", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a988569daa1845a4526f_paths", - "target": "reply_cmakefiles_v1_a988569daa1845a4526f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L997", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a988569daa1845a4526f_version", - "target": "reply_cmakefiles_v1_a988569daa1845a4526f_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-a988569daa1845a4526f.json", - "source_location": "L998", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a988569daa1845a4526f_version", - "target": "reply_cmakefiles_v1_a988569daa1845a4526f_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_paths", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-c08d9618d63dc60443c8.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_paths", - "target": "reply_target_react_codegen_lottiereactnative_debug_c08d9618d63dc60443c8_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_json", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_paths", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-4b97b66adf1009fa7d9b.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_paths", - "target": "reply_target_react_codegen_rnscreens_debug_4b97b66adf1009fa7d9b_paths_source" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -263240,222 +329869,152 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L8", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L9", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L52", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L161", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_dependencies" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L172", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L173", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L223", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_nameondisk" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L225", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L230", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L255", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L318", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_9467ac44777442487be6_json", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L11", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L17", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_link_sysroot", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_paths", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-9467ac44777442487be6.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_paths", - "target": "reply_target_react_native_mmkv_debug_9467ac44777442487be6_paths_source" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" }, { "relation": "contains", @@ -263707,6 +330266,376 @@ "source": "reply_target_core_debug_81b64835aad05a4e7b1f_paths", "target": "reply_target_core_debug_81b64835aad05a4e7b1f_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_06_10t07_37_30_0091_json", + "target": "reply_index_2026_06_10t07_37_30_0091_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_06_10t07_37_30_0091_json", + "target": "reply_index_2026_06_10t07_37_30_0091_objects" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_06_10t07_37_30_0091_json", + "target": "reply_index_2026_06_10t07_37_30_0091_reply" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake", + "target": "reply_index_2026_06_10t07_37_30_0091_cmake_generator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake", + "target": "reply_index_2026_06_10t07_37_30_0091_cmake_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake", + "target": "reply_index_2026_06_10t07_37_30_0091_cmake_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_generator", + "target": "reply_index_2026_06_10t07_37_30_0091_generator_multiconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_generator", + "target": "reply_index_2026_06_10t07_37_30_0091_generator_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_paths", + "target": "reply_index_2026_06_10t07_37_30_0091_paths_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_paths", + "target": "reply_index_2026_06_10t07_37_30_0091_paths_cpack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_paths", + "target": "reply_index_2026_06_10t07_37_30_0091_paths_ctest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_paths", + "target": "reply_index_2026_06_10t07_37_30_0091_paths_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_isdirty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_patch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_string" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmake_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_suffix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cache_v2_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmakefiles_v1_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_codemodel_v2_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cache_v2_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_cmakefiles_v1_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_codemodel_v2_version", + "target": "reply_index_2026_06_10t07_37_30_0091_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_reply", + "target": "reply_index_2026_06_10t07_37_30_0091_reply_client_agp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_30_0091_client_agp_cache_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_30_0091_client_agp_cmakefiles_v1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_30_0091_client_agp_codemodel_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_30_0091_cache_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_30_0091_cache_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_30_0091_cache_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_30_0091_cmakefiles_v1_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_30_0091_cmakefiles_v1_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_30_0091_cmakefiles_v1_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_30_0091_codemodel_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_30_0091_codemodel_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T07-37-30-0091.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_30_0091_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_30_0091_codemodel_v2_version" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -263790,302 +330719,302 @@ { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_paths", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_paths_build" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-132745eca8afc4e14063.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_paths", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_132745eca8afc4e14063_paths_source" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_artifacts" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L26", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtrace" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L27", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtracegraph" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L86", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_compilegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L201", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_id" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L202", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_name" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L203", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_paths" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L208", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_sourcegroups" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L224", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_sources" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L269", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_type" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L29", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtracegraph_commands" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L38", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtracegraph_files" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L43", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_backtracegraph_nodes" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L205", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_paths", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_paths_build" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" }, { "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-3db8d7159c85fabdac96.json", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", "source_location": "L206", "weight": 1.0, "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_paths", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_3db8d7159c85fabdac96_paths_source" + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" }, { "relation": "contains", @@ -264167,306 +331096,6 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_source" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_05_31t05_36_21_0673_json", - "target": "reply_index_2026_05_31t05_36_21_0673_cmake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_05_31t05_36_21_0673_json", - "target": "reply_index_2026_05_31t05_36_21_0673_objects" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_05_31t05_36_21_0673_json", - "target": "reply_index_2026_05_31t05_36_21_0673_reply" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake", - "target": "reply_index_2026_05_31t05_36_21_0673_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake", - "target": "reply_index_2026_05_31t05_36_21_0673_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake", - "target": "reply_index_2026_05_31t05_36_21_0673_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake_generator", - "target": "reply_index_2026_05_31t05_36_21_0673_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake_generator", - "target": "reply_index_2026_05_31t05_36_21_0673_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake_paths", - "target": "reply_index_2026_05_31t05_36_21_0673_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake_paths", - "target": "reply_index_2026_05_31t05_36_21_0673_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake_paths", - "target": "reply_index_2026_05_31t05_36_21_0673_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_36_21_0673_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_36_21_0673_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_36_21_0673_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake_version", - "target": "reply_index_2026_05_31t05_36_21_0673_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake_version", - "target": "reply_index_2026_05_31t05_36_21_0673_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake_version", - "target": "reply_index_2026_05_31t05_36_21_0673_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake_version", - "target": "reply_index_2026_05_31t05_36_21_0673_version_patch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake_version", - "target": "reply_index_2026_05_31t05_36_21_0673_version_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_cmake_version", - "target": "reply_index_2026_05_31t05_36_21_0673_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_reply", - "target": "reply_index_2026_05_31t05_36_21_0673_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_reply_client_agp", - "target": "reply_index_2026_05_31t05_36_21_0673_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_reply_client_agp", - "target": "reply_index_2026_05_31t05_36_21_0673_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_reply_client_agp", - "target": "reply_index_2026_05_31t05_36_21_0673_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_36_21_0673_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_client_agp_cache_v2", - "target": "reply_index_2026_05_31t05_36_21_0673_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_36_21_0673_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_36_21_0673_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_client_agp_cmakefiles_v1", - "target": "reply_index_2026_05_31t05_36_21_0673_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-05-31T05-36-21-0673.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_05_31t05_36_21_0673_client_agp_codemodel_v2", - "target": "reply_index_2026_05_31t05_36_21_0673_cache_v2_kind" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -264547,6 +331176,8546 @@ "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths", "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_source" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildtargetscommandcomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_cleancommandscomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnctabview_54948b52a0aeebf4e5a8_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnworklets_68f58d84d4754f193387_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnmmkvspec_7541eabbae598da31a69_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_enabled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_packages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_prefabpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildtargetscommandcomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cfileextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cleancommandscomponents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cppfileextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_native_mmkv_4ae6a1e65d3e68ba0197_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rncslider_4898bc4726ecf1751b6a_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnctabview_54948b52a0aeebf4e5a8_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnkc_01e3c54a97c6e9d385b6_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnmmkvspec_7541eabbae598da31a69_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_truesheetspec_a0669760263672514cc3_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnpicker_e8bb2e9e833f47d0d516_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnreanimated_8afabad14bfffa3f8b9a_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnscreens_25bcbd507e98d3a854ad_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnsvg_4f40eb209d0c0b4a3b65_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_rnworklets_68f58d84d4754f193387_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_react_codegen_safeareacontext_7984cd80db47aa7b952a_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L192", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_ccompilerexecutable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_cppcompilerexecutable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_foo_cpp", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_foo_cpp_src_foo_foo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_main_cpp", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_main_cpp_src_main_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", + "source_location": "L771", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c_compileridc_cmakeccompilerid_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", + "source_location": "L767", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L294", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L262", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_sysroot", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L271", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths", + "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cmakefiles_v1_a1046cc2eaa0362a831d_json", + "target": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_inputs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L334", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cmakefiles_v1_a1046cc2eaa0362a831d_json", + "target": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L335", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cmakefiles_v1_a1046cc2eaa0362a831d_json", + "target": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L340", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cmakefiles_v1_a1046cc2eaa0362a831d_json", + "target": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L337", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_paths", + "target": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L338", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_paths", + "target": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L342", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_version", + "target": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-a1046cc2eaa0362a831d.json", + "source_location": "L343", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_version", + "target": "reply_cmakefiles_v1_a1046cc2eaa0362a831d_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-66204c86ebffb030aad7.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cache_v2_66204c86ebffb030aad7_json", + "target": "reply_cache_v2_66204c86ebffb030aad7_entries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-66204c86ebffb030aad7.json", + "source_location": "L1637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cache_v2_66204c86ebffb030aad7_json", + "target": "reply_cache_v2_66204c86ebffb030aad7_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-66204c86ebffb030aad7.json", + "source_location": "L1638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cache_v2_66204c86ebffb030aad7_json", + "target": "reply_cache_v2_66204c86ebffb030aad7_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-66204c86ebffb030aad7.json", + "source_location": "L1640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cache_v2_66204c86ebffb030aad7_version", + "target": "reply_cache_v2_66204c86ebffb030aad7_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-66204c86ebffb030aad7.json", + "source_location": "L1641", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_cache_v2_66204c86ebffb030aad7_version", + "target": "reply_cache_v2_66204c86ebffb030aad7_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_archive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L200", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L536", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths", + "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_sysroot", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths", + "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_sysroot", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths", + "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L257", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_sysroot", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths", + "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_index_2026_06_10t07_37_35_0701_json", + "target": "reply_index_2026_06_10t07_37_35_0701_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_index_2026_06_10t07_37_35_0701_json", + "target": "reply_index_2026_06_10t07_37_35_0701_objects" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_index_2026_06_10t07_37_35_0701_json", + "target": "reply_index_2026_06_10t07_37_35_0701_reply" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake", + "target": "reply_index_2026_06_10t07_37_35_0701_cmake_generator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake", + "target": "reply_index_2026_06_10t07_37_35_0701_cmake_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake", + "target": "reply_index_2026_06_10t07_37_35_0701_cmake_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_generator", + "target": "reply_index_2026_06_10t07_37_35_0701_generator_multiconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_generator", + "target": "reply_index_2026_06_10t07_37_35_0701_generator_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_paths", + "target": "reply_index_2026_06_10t07_37_35_0701_paths_cmake" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_paths", + "target": "reply_index_2026_06_10t07_37_35_0701_paths_cpack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_paths", + "target": "reply_index_2026_06_10t07_37_35_0701_paths_ctest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_paths", + "target": "reply_index_2026_06_10t07_37_35_0701_paths_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_isdirty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_patch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_string" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmake_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_suffix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cache_v2_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmakefiles_v1_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_codemodel_v2_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cache_v2_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_cmakefiles_v1_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_codemodel_v2_version", + "target": "reply_index_2026_06_10t07_37_35_0701_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_reply", + "target": "reply_index_2026_06_10t07_37_35_0701_reply_client_agp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_35_0701_client_agp_cache_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_35_0701_client_agp_cmakefiles_v1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_reply_client_agp", + "target": "reply_index_2026_06_10t07_37_35_0701_client_agp_codemodel_v2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_35_0701_cache_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_35_0701_cache_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_client_agp_cache_v2", + "target": "reply_index_2026_06_10t07_37_35_0701_cache_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_35_0701_cmakefiles_v1_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_35_0701_cmakefiles_v1_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_client_agp_cmakefiles_v1", + "target": "reply_index_2026_06_10t07_37_35_0701_cmakefiles_v1_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_35_0701_codemodel_v2_jsonfile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_35_0701_codemodel_v2_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-10T07-37-35-0701.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_index_2026_06_10t07_37_35_0701_client_agp_codemodel_v2", + "target": "reply_index_2026_06_10t07_37_35_0701_codemodel_v2_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L481", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L552", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L553", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L643", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L644", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L645", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L650", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L723", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L1074", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L555", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L637", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L638", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L640", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_sysroot", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L647", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", + "source_location": "L648", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths", + "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L255", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L318", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_sysroot", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths", + "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_sysroot", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths", + "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L333", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_sysroot", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths", + "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_nameondisk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_commandfragments" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_language" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_sysroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_sysroot", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sysroot_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths", + "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_codemodel_v2_289f1cdbaf7f8b3a77a1_json", + "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_configurations" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L508", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_codemodel_v2_289f1cdbaf7f8b3a77a1_json", + "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_kind" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L509", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_codemodel_v2_289f1cdbaf7f8b3a77a1_json", + "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L514", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_codemodel_v2_289f1cdbaf7f8b3a77a1_json", + "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L511", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths", + "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L512", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths", + "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L516", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version", + "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version_major" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", + "source_location": "L517", + "weight": 1.0, + "confidence_score": 1.0, + "source": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version", + "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version_minor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_installers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_nodes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths", + "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_source" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainActivity.kt", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_src_main_java_org_rebreak_app_mainactivity_kt", + "target": "app_mainactivity_mainactivity" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -264651,6 +339820,27 @@ "source": "app_mainactivity_mainactivity_getmaincomponentname", "target": "apps_rebreak_native_android_app_src_main_java_org_rebreak_app_mainactivity_kt_string" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainActivity.kt", + "source_location": "L36", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "app_mainactivity_mainactivity_createreactactivitydelegate", + "target": "reactactivitydelegate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainApplication.kt", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_android_app_src_main_java_org_rebreak_app_mainapplication_kt", + "target": "app_mainapplication_mainapplication" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -264713,6 +339903,17 @@ "source": "app_mainapplication_mainapplication", "target": "reactnativehost" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/src/main/java/org/rebreak/app/MainApplication.kt", + "source_location": "L52", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "app_mainapplication_mainapplication_onconfigurationchanged", + "target": "apps_rebreak_native_android_app_src_main_java_org_rebreak_app_mainapplication_kt_configuration" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -264724,6 +339925,16 @@ "source": "app_mainapplication_mainapplication_onconfigurationchanged", "target": "model_configuration_configuration" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/scripts/grab-onboarding-screenshot.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_scripts_grab_onboarding_screenshot_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_scripts_grab_onboarding_screenshot_sh__entry" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -264914,6 +340125,49 @@ "source": "apps_rebreak_native_scripts_build_ios_clean_sh", "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_scripts_build_ios_clean_sh__entry" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/resolveAvatar.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_resolveavatar_ts", + "target": "apps_rebreak_native_lib_avatars_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/resolveAvatar.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_resolveavatar_ts", + "target": "lib_avatars_getavatarbyid" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/resolveAvatar.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_resolveavatar_ts", + "target": "lib_avatars_getavatarurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/resolveAvatar.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_resolveavatar_ts", + "target": "lib_resolveavatar_resolveavatar" + }, { "relation": "imports_from", "context": "import", @@ -264947,6 +340201,549 @@ "source": "lib_resolveavatar_resolveavatar", "target": "lib_avatars_getavatarurl" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "apps_rebreak_native_modules_rebreak_protection_index_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_api_apifetch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_backendcooldownstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_backendprotectionstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_cooldownstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L717", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_formatcooldownremaining" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_getcooldowntestmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L700", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_isalllayerson" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_markprotectionactivatedhere" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_protectionphase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_protectionstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_setcooldowntestmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "lib_protection_wasprotectioneveractivehere" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "src_rebreakprotection_types_activateresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "src_rebreakprotection_types_devicelayers" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "src_rebreakprotection_types_healthprobeopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "src_rebreakprotection_types_healthproberesult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "src_rebreakprotection_types_syncblocklistopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "src_rebreakprotection_types_syncblocklistresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "src_rebreakprotection_types_syncwebcontentdomainsopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "src_rebreakprotection_types_syncwebcontentdomainsresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "src_rebreakprotection_types_systemsettingstarget" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_protection_ts", + "target": "src_rebreakprotection_types_webcontentfilterresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "lib_protection_cooldownstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "lib_protection_backendcooldownstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "lib_protection_backendprotectionstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "lib_protection_setcooldowntestmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "lib_protection_markprotectionactivatedhere" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "lib_protection_wasprotectioneveractivehere" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.85, + "weight": 0.85, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "Bypass-Detection-Flag (everActiveHere)", + "source": "lib_protection_wasprotectioneveractivehere", + "target": "diga_04_risk_false_01_falsche_sicherheit" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "apps_rebreak_native_lib_api_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "apps_rebreak_native_modules_rebreak_protection_index_ts" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.85, + "weight": 0.85, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "native Protection-State-Machine", + "source": "lib_protection_protection", + "target": "diga_03_req_prot" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "lib_api_apifetch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L717", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "lib_protection_formatcooldownremaining" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L700", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "lib_protection_isalllayerson" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "src_lib_protectionstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "src_rebreakprotection_types_activateresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "src_rebreakprotection_types_devicelayers" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "src_rebreakprotection_types_healthprobeopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "src_rebreakprotection_types_healthproberesult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "src_rebreakprotection_types_syncblocklistopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "src_rebreakprotection_types_syncblocklistresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "src_rebreakprotection_types_syncwebcontentdomainsopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "src_rebreakprotection_types_systemsettingstarget" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/protection.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_protection_protection", + "target": "src_rebreakprotection_types_webcontentfilterresult" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.85, + "weight": 0.85, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "prueft alle Schutz-Layer aktiv", + "source": "lib_protection_isalllayerson", + "target": "diga_03_req_prot" + }, + { + "relation": "references", + "confidence": "INFERRED", + "confidence_score": 0.9, + "weight": 0.9, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "strand": "protection", + "note": "erkennt teil-/inaktiven Schutz", + "source": "lib_protection_isalllayerson", + "target": "diga_04_risk_false_01_falsche_sicherheit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_onboardingassets_ts", + "target": "lib_onboardingassets_android_a11y_ar" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -264967,6 +340764,26 @@ "source": "apps_rebreak_native_lib_onboardingassets_ts", "target": "lib_onboardingassets_android_a11y_en" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_onboardingassets_ts", + "target": "lib_onboardingassets_android_a11y_fr" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_onboardingassets_ts", + "target": "lib_onboardingassets_android_a11y_overview_ar" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -264977,6 +340794,26 @@ "source": "apps_rebreak_native_lib_onboardingassets_ts", "target": "lib_onboardingassets_android_a11y_overview_de" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_onboardingassets_ts", + "target": "lib_onboardingassets_android_a11y_overview_en" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_onboardingassets_ts", + "target": "lib_onboardingassets_android_a11y_overview_fr" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -265047,6 +340884,26 @@ "source": "apps_rebreak_native_lib_onboardingassets_ts", "target": "lib_onboardingassets_lang" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_onboardingassets_ts", + "target": "lib_onboardingassets_screen_time_ar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_onboardingassets_ts", + "target": "lib_onboardingassets_screen_time_de" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -265077,6 +340934,16 @@ "source": "apps_rebreak_native_lib_onboardingassets_ts", "target": "lib_onboardingassets_screenshots" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_onboardingassets_ts", + "target": "lib_onboardingassets_url_filter_ar" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -265097,6 +340964,26 @@ "source": "apps_rebreak_native_lib_onboardingassets_ts", "target": "lib_onboardingassets_url_filter_en" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/onboardingAssets.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_onboardingassets_ts", + "target": "lib_onboardingassets_url_filter_fr" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/realtimeStatus.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_realtimestatus_ts", + "target": "lib_realtimestatus_isrealtimeerrorreal" + }, { "relation": "imports_from", "context": "import", @@ -265190,6 +341077,16 @@ "source": "apps_rebreak_native_lib_avatars_ts", "target": "lib_avatars_getavatarurl" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/avatars.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_avatars_ts", + "target": "lib_avatars_hero_avatars" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -265489,6 +341386,87 @@ "source": "lib_sosttsqueue_sosttsqueue_enqueue", "target": "lib_sosttsqueue_sosttsqueue_tick" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/llmProvider.ts", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_llmprovider_ts", + "target": "lib_llmprovider_currentllmprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/llmProvider.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_llmprovider_ts", + "target": "lib_llmprovider_listeners" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/llmProvider.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_llmprovider_ts", + "target": "lib_llmprovider_llm_provider_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/llmProvider.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_llmprovider_ts", + "target": "lib_llmprovider_llmprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/llmProvider.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_llmprovider_ts", + "target": "lib_llmprovider_loadllmprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/llmProvider.ts", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_llmprovider_ts", + "target": "lib_llmprovider_setllmprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/llmProvider.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_llmprovider_ts", + "target": "lib_llmprovider_usellmprovider" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/sosStream.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_sosstream_ts", + "target": "apps_rebreak_native_lib_llmprovider_ts" + }, { "relation": "imports_from", "context": "import", @@ -265560,6 +341538,16 @@ "source": "lib_llmprovider_llmprovider", "target": "lib_llmprovider_usellmprovider" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/formatTime.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_formattime_ts", + "target": "lib_formattime_formatrelativetime" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -265590,6 +341578,26 @@ "source": "apps_rebreak_native_lib_devicemodel_ts", "target": "lib_devicemodel_iphone_map" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/ringback.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_ringback_ts", + "target": "lib_ringback_startringback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/ringback.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_ringback_ts", + "target": "lib_ringback_stopringback" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -265604,12 +341612,198 @@ "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L7", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L2", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", - "target": "apps_rebreak_native_lib_api_ts" + "source": "apps_rebreak_native_lib_lyraresponse_ts", + "target": "apps_rebreak_native_lib_sosconstants_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_lyraresponse_ts", + "target": "lib_lyraresponse_chipspec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_lyraresponse_ts", + "target": "lib_lyraresponse_detectemotion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_lyraresponse_ts", + "target": "lib_lyraresponse_lyraemotion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/lyraResponse.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_lyraresponse_ts", + "target": "lib_lyraresponse_parselyraresponse" + }, + { + "relation": "implements", + "confidence": "INFERRED", + "confidence_score": 0.85, + "weight": 0.85, + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "traceability": true, + "note": "parses Lyra structured reply", + "source": "lib_lyraresponse_parselyraresponse", + "target": "diga_03_req_lyra" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_callkit_ts", + "target": "lib_callkit_callidtouuid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_callkit_ts", + "target": "lib_callkit_displayincomingcall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_callkit_ts", + "target": "lib_callkit_endcall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_callkit_ts", + "target": "lib_callkit_iscallkeepavailable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_callkit_ts", + "target": "lib_callkit_reportconnected" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_callkit_ts", + "target": "lib_callkit_reportended" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_callkit_ts", + "target": "lib_callkit_setupcallkeep" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_callkit_ts", + "target": "lib_callkit_startoutgoingcall" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_callkit_displayincomingcall", + "target": "lib_callkit_callidtouuid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_callkit_endcall", + "target": "lib_callkit_callidtouuid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_callkit_reportconnected", + "target": "lib_callkit_callidtouuid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_callkit_reportended", + "target": "lib_callkit_callidtouuid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/callkit.ts", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_callkit_startoutgoingcall", + "target": "lib_callkit_callidtouuid" }, { "relation": "imports_from", @@ -265695,61 +341889,6 @@ "source": "apps_rebreak_native_lib_api_ts", "target": "lib_supabase_supabase" }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "apps_rebreak_native_lib_api_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/deviceApproval.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_deviceapproval_ts", - "target": "apps_rebreak_native_lib_api_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_digamilestonemodal_digamilestonemodal", - "target": "apps_rebreak_native_lib_api_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "apps_rebreak_native_lib_api_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_blockerstats_blockerstats", - "target": "apps_rebreak_native_lib_api_ts" - }, { "relation": "calls", "context": "call", @@ -265772,83 +341911,6 @@ "source": "lib_api_getdeviceheaders", "target": "lib_deviceid_getdeviceinfo" }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", - "target": "lib_api_apifetch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "lib_api_apifetch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/deviceApproval.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_deviceapproval_ts", - "target": "lib_api_apifetch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_digamilestonemodal_digamilestonemodal", - "target": "lib_api_apifetch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "lib_api_apifetch" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_blockerstats_blockerstats", - "target": "lib_api_apifetch" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L160", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_call_logcalltochat", - "target": "lib_api_apifetch" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -265911,6 +341973,66 @@ "source": "lib_deviceid_getdeviceinfo", "target": "lib_deviceid_getplatformname" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_sosconstants_ts", + "target": "lib_sosconstants_breath_phases" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_sosconstants_ts", + "target": "lib_sosconstants_breathphase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_sosconstants_ts", + "target": "lib_sosconstants_breathstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_sosconstants_ts", + "target": "lib_sosconstants_chip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_sosconstants_ts", + "target": "lib_sosconstants_chip_sets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/sosConstants.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_sosconstants_ts", + "target": "lib_sosconstants_chipset" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -266014,6 +342136,96 @@ "source": "lib_gamescores_savebestscore", "target": "lib_gamescores_getbestscore" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/ttsProvider.ts", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_ttsprovider_ts", + "target": "lib_ttsprovider_currentprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/ttsProvider.ts", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_ttsprovider_ts", + "target": "lib_ttsprovider_endpointforprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/ttsProvider.ts", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_ttsprovider_ts", + "target": "lib_ttsprovider_listeners" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/ttsProvider.ts", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_ttsprovider_ts", + "target": "lib_ttsprovider_loadttsprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/ttsProvider.ts", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_ttsprovider_ts", + "target": "lib_ttsprovider_setttsprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/ttsProvider.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_ttsprovider_ts", + "target": "lib_ttsprovider_tts_provider_endpoint" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/ttsProvider.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_ttsprovider_ts", + "target": "lib_ttsprovider_tts_provider_label" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/ttsProvider.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_ttsprovider_ts", + "target": "lib_ttsprovider_ttsprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/ttsProvider.ts", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_ttsprovider_ts", + "target": "lib_ttsprovider_usettsprovider" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -266126,6 +342338,46 @@ "source": "apps_rebreak_native_lib_sosstream_ts", "target": "lib_sosstream_streamsoslyra" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/sosStream.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_sosstream_ts", + "target": "lib_sosstream_streamsoslyraopts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/useNativeActionSheet.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_usenativeactionsheet_ts", + "target": "lib_usenativeactionsheet_callback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/useNativeActionSheet.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_usenativeactionsheet_ts", + "target": "lib_usenativeactionsheet_options" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/lib/useNativeActionSheet.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_lib_usenativeactionsheet_ts", + "target": "lib_usenativeactionsheet_usenativeactionsheet" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -266208,48 +342460,14 @@ "target": "lib_mailerrors_classifymailerror" }, { - "relation": "imports_from", - "context": "import", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", - "source_location": "L4", + "source_file": "apps/rebreak-native/lib/theme.ts", + "source_location": "L70", "weight": 1.0, "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_typingbubble_tsx", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalpendingsheet_tsx", - "target": "apps_rebreak_native_lib_theme_ts" + "source": "apps_rebreak_native_lib_theme_ts", + "target": "lib_theme_colorscheme" }, { "relation": "contains", @@ -266259,7 +342477,7 @@ "weight": 1.0, "confidence_score": 1.0, "source": "apps_rebreak_native_lib_theme_ts", - "target": "lib_theme_colorscheme" + "target": "lib_theme_colorschemes" }, { "relation": "contains", @@ -266301,72 +342519,6 @@ "source": "apps_rebreak_native_lib_theme_ts", "target": "lib_theme_usecolors" }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_digamilestonemodal_digamilestonemodal", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_devicedetailsheet_devicedetail", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_devicedistributionbar_devicedistributionbar", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_deviceslotdonut_deviceslotdonut", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_devicestatuspill_devicestatuspill", - "target": "apps_rebreak_native_lib_theme_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "apps_rebreak_native_lib_theme_ts" - }, { "relation": "imports_from", "context": "import", @@ -266382,167 +342534,13 @@ "relation": "imports_from", "context": "import", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", - "source_location": "L5", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L10", "weight": 1.0, "confidence_score": 1.0, - "source": "onboarding_permissionconfirmsheet_permissionconfirmsheet", + "source": "notification", "target": "apps_rebreak_native_lib_theme_ts" }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "lib_theme_colorscheme" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_typingbubble_tsx", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L6", - "weight": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", - "source_location": "L6", - "weight": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalpendingsheet_tsx", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L235", - "weight": 1.0, - "source": "chat_chatbubble_callnoterow", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L28", - "weight": 1.0, - "source": "chat_chatbubble_voicenotebubble", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", - "source_location": "L61", - "weight": 1.0, - "source": "chat_typingbubble_typingbubble", - "target": "lib_theme_usecolors" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L60", - "weight": 1.0, - "source": "chat_voicerecordingbar_voicerecordingbar", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L12", - "weight": 1.0, - "source": "components_digamilestonemodal_digamilestonemodal", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L5", - "weight": 1.0, - "source": "devices_devicedetailsheet_devicedetail", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "devices_devicedistributionbar_devicedistributionbar", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", - "source_location": "L4", - "weight": 1.0, - "source": "devices_deviceslotdonut_deviceslotdonut", - "target": "lib_theme_usecolors" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", - "source_location": "L3", - "weight": 1.0, - "source": "devices_devicestatuspill_devicestatuspill", - "target": "lib_theme_usecolors" - }, { "relation": "imports", "context": "import", @@ -266559,23 +342557,12 @@ "context": "import", "confidence": "EXTRACTED", "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/onboarding/PermissionConfirmSheet.tsx", - "source_location": "L5", + "source_file": "apps/rebreak-native/app/(app)/notifications.tsx", + "source_location": "L10", "weight": 1.0, - "source": "onboarding_permissionconfirmsheet_permissionconfirmsheet", + "source": "notification", "target": "lib_theme_usecolors" }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useUserDevicesRealtime.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_hooks_useuserdevicesrealtime_ts", - "target": "apps_rebreak_native_lib_supabase_ts" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -266606,61 +342593,6 @@ "source": "apps_rebreak_native_lib_supabase_ts", "target": "lib_supabase_supabaseurl" }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "apps_rebreak_native_lib_supabase_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDmTyping.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usedmtyping_usedmtyping", - "target": "apps_rebreak_native_lib_supabase_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useUserDevicesRealtime.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_hooks_useuserdevicesrealtime_ts", - "target": "lib_supabase_supabase" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "lib_supabase_supabase" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useDmTyping.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usedmtyping_usedmtyping", - "target": "lib_supabase_supabase" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -266711,6 +342643,16 @@ "source": "rebreak_protection_expo_module_config_android", "target": "rebreak_protection_expo_module_config_apple_modules" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/expo-module.config.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_protection_expo_module_config_android", + "target": "rebreak_protection_expo_module_config_android_modules" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -266771,6 +342713,28 @@ "source": "apps_rebreak_native_modules_rebreak_protection_package_json", "target": "rebreak_protection_package_version" }, + { + "relation": "re_exports", + "context": "export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts" + }, { "relation": "imports_from", "context": "import", @@ -266782,6 +342746,170 @@ "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", "target": "ios_rebreakprotectionmodule_rebreakprotectionmodule" }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_activateresult" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_devicelayers" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_disableresult" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_healthprobeopts" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_healthprobeoutcome" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_healthproberesult" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_protectionlayerkey" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_rebreakprotectionevents" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_syncblocklistopts" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_syncblocklistresult" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_syncwebcontentdomainsopts" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_syncwebcontentdomainsresult" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_systemsettingstarget" + }, + { + "relation": "re_exports", + "context": "re-export", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_index_ts", + "target": "src_rebreakprotection_types_webcontentfilterresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/tools/GenerateBloomFilter.swift", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_tools_generatebloomfilter_swift", + "target": "tools_generatebloomfilter_generatebloomfilter" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -266792,6 +342920,46 @@ "source": "tools_generatebloomfilter_generatebloomfilter", "target": "tools_generatebloomfilter_generatebloomfilter_main" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1553", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift", + "target": "ios_rebreakprotectionmodule_healthprobedelegate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1554", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift", + "target": "ios_rebreakprotectionmodule_outcome" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift", + "target": "ios_rebreakprotectionmodule_rebreakprotectionmodule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift", + "target": "ios_rebreakprotectionmodule_sharedlogstore" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -267042,14 +343210,25 @@ "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule_definition", "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift_int" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts" + }, { "relation": "references", "confidence": "EXTRACTED", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", "source_location": "L86", "weight": 1.0, - "confidence_score": 1.0, "context": "field", + "confidence_score": 1.0, "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", "target": "healthprobedelegate" }, @@ -267183,6 +343362,157 @@ "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", "target": "ios_rebreakprotectionmodule_rebreakprotectionmodule_tunnelstatusname" }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotection_types_activateresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotection_types_devicelayers" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotection_types_disableresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotection_types_healthprobeopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotection_types_healthproberesult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotection_types_rebreakprotectionevents" + }, + { + "relation": "method", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotection_types_syncblocklistopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotection_types_syncblocklistresult" + }, + { + "relation": "method", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotection_types_syncwebcontentdomainsopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotection_types_systemsettingstarget" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotection_types_webcontentfilterresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotectionmodule_rebreakprotectionmodule" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -267444,6 +343774,16 @@ "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule", "target": "wkwebview" }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "module" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -267581,6 +343921,17 @@ "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule_definition", "target": "healthprobedelegate" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1219", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "ios_rebreakprotectionmodule_healthprobedelegate" + }, { "relation": "calls", "context": "call", @@ -267813,6 +344164,110 @@ "source": "ios_rebreakprotectionmodule_rebreakprotectionmodule_activatecontentfilter", "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift_any" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1562", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_healthprobedelegate", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift_date" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1561", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_healthprobedelegate", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakprotectionmodule_swift_void" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1564", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_healthprobedelegate", + "target": "dispatchworkitem" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1583", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_healthprobedelegate", + "target": "ios_rebreakprotectionmodule_healthprobedelegate_durationms" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1566", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_healthprobedelegate", + "target": "ios_rebreakprotectionmodule_healthprobedelegate_init" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1575", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_healthprobedelegate", + "target": "ios_rebreakprotectionmodule_healthprobedelegate_resolveonce" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1604", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_healthprobedelegate", + "target": "ios_rebreakprotectionmodule_healthprobedelegate_webview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1561", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_healthprobedelegate", + "target": "ios_rebreakprotectionmodule_outcome" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1553", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_healthprobedelegate", + "target": "nsobject" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakProtectionModule.swift", + "source_location": "L1553", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ios_rebreakprotectionmodule_healthprobedelegate", + "target": "wknavigationdelegate" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -268075,175 +344530,64 @@ "target": "ios_gambling_domains_meta_version" }, { - "relation": "implements", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", - "source_location": "L169", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L104", "weight": 1.0, "confidence_score": 1.0, - "source": "bloomfiltertool_bloomfiltertool_runtimeerror", - "target": "error" + "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift", + "target": "rebreakurlfilterextension_bloomfilter_bloomfilter" }, { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", - "source_location": "L172", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "bloomfiltertool_bloomfiltertool_runtimeerror_init", - "target": "error" - }, - { - "relation": "implements", + "relation": "contains", "confidence": "EXTRACTED", "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L14", "weight": 1.0, "confidence_score": 1.0, - "source": "bloomfiltertool_readme", - "target": "error" + "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift", + "target": "rebreakurlfilterextension_bloomfilter_bloomfiltererror" }, { - "relation": "implements", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/ConfigurationModel.swift", - "source_location": "L162", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L93", "weight": 1.0, "confidence_score": 1.0, - "source": "model_configurationmodel_configurationerror", - "target": "error" + "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift", + "target": "rebreakurlfilterextension_bloomfilter_codingkeys" }, { - "relation": "implements", + "relation": "contains", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/RebreakURLFilterControlProvider.swift", - "source_location": "L18", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L111", "weight": 1.0, "confidence_score": 1.0, - "source": "rebreakurlfilterextension_rebreakurlfiltercontrolprovider_providerfiltererror", - "target": "error" + "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift", + "target": "rebreakurlfilterextension_bloomfilter_data" }, { - "relation": "implements", + "relation": "case_of", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_autherror", - "target": "error" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/DeviceDetector.swift", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_devicedetector_detectorerror", - "target": "error" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macdevicedetector_macdevicedetectorerror", - "target": "error" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macprofileinstaller_installererror", - "target": "error" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicerror", - "target": "error" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMClient.swift", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", "source_location": "L16", "weight": 1.0, "confidence_score": 1.0, - "source": "services_mdmclient_mdmclienterror", - "target": "error" + "source": "rebreakurlfilterextension_bloomfilter_bloomfiltererror", + "target": "rebreakurlfilterextension_bloomfilter_bloomfiltererror_encodingissue" }, { - "relation": "implements", + "relation": "case_of", "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MDMStatus.swift", - "source_location": "L32", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L15", "weight": 1.0, "confidence_score": 1.0, - "source": "services_mdmstatus_mdmstatuserror", - "target": "error" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/ProcessRunner.swift", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_processrunner_processrunnererror", - "target": "error" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/SuperviseRunner.swift", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_superviserunner_runnererror", - "target": "error" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "simpleurlfilterextension_urlfiltercontrolprovider_providerfiltererror", - "target": "error" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "swiftbloomfilter_bloomfilter_bloomfiltererror", - "target": "error" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", - "source_location": "L241", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_configurationview_validationerror", - "target": "error" + "source": "rebreakurlfilterextension_bloomfilter_bloomfiltererror", + "target": "rebreakurlfilterextension_bloomfilter_bloomfiltererror_invalidparameters" }, { "relation": "case_of", @@ -268287,6 +344631,141 @@ "source": "rebreakurlfilterextension_bloomfilter_bloomfilter_insert", "target": "rebreakurlfilterextension_bloomfilter_bloomfiltererror_encodingissue" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L30", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_data" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_double" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L25", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L106", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L26", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_uint32" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "codable" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "customstringconvertible" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "hashable" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatebitcount" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatebytecount" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatehashcount" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "rebreakurlfilterextension_bloomfilter_bloomfilter_init" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter", + "target": "rebreakurlfilterextension_bloomfilter_bloomfilter_insert" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -268298,6 +344777,28 @@ "source": "bloomfiltertool_readme", "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_int" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L62", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatebitcount", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_int" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatebytecount", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_int" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -268364,6 +344865,17 @@ "source": "bloomfiltertool_readme", "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_double" }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatebitcount", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_double" + }, { "relation": "calls", "context": "call", @@ -268408,6 +344920,28 @@ "source": "bloomfiltertool_readme", "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_uint32" }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatebitcount", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_uint32" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L73", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatebytecount", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_uint32" + }, { "relation": "references", "context": "parameter_type", @@ -268462,6 +344996,28 @@ "source": "rebreakurlfilterextension_bloomfilter_bloomfilter_init", "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_bloomfilter_swift_string" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter_init", + "target": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatebitcount" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_bloomfilter_init", + "target": "rebreakurlfilterextension_bloomfilter_bloomfilter_calculatebytecount" + }, { "relation": "calls", "context": "call", @@ -268619,6 +345175,16 @@ "source": "services_authservice_config", "target": "codable" }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_pairredeemresponsedata", + "target": "codable" + }, { "relation": "implements", "confidence": "EXTRACTED", @@ -268699,6 +345265,16 @@ "source": "services_mdmclient_mdmconfig", "target": "codable" }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "codable" + }, { "relation": "implements", "confidence": "EXTRACTED", @@ -268719,6 +345295,16 @@ "source": "model_configuration_configuration", "target": "hashable" }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "hashable" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -268759,6 +345345,16 @@ "source": "rebreakurlfilterextension_bloomfilter_codingkeys", "target": "rebreakurlfilterextension_bloomfilter_codingkeys_bits" }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/BloomFilter.swift", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_bloomfilter_codingkeys", + "target": "rebreakurlfilterextension_bloomfilter_codingkeys_bytecount" + }, { "relation": "case_of", "confidence": "EXTRACTED", @@ -268839,6 +345435,16 @@ "source": "bloomfiltertool_readme", "target": "customstringconvertible" }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "customstringconvertible" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -268923,6 +345529,36 @@ "source": "rebreakurlfilterextension_fnv1ahash_data_fnvhash", "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_fnv1ahash_swift_uint32" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/RebreakURLFilterControlProvider.swift", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_rebreakurlfiltercontrolprovider_swift", + "target": "rebreakurlfilterextension_rebreakurlfiltercontrolprovider_extlog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/RebreakURLFilterControlProvider.swift", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_rebreakurlfiltercontrolprovider_swift", + "target": "rebreakurlfilterextension_rebreakurlfiltercontrolprovider_providerfiltererror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/RebreakURLFilterControlProvider.swift", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_rebreakurlfiltercontrolprovider_swift", + "target": "rebreakurlfilterextension_rebreakurlfiltercontrolprovider_rebreakurlfiltercontrolprovider" + }, { "relation": "case_of", "confidence": "EXTRACTED", @@ -269216,6 +345852,16 @@ "source": "rebreakurlfilterextension_murmur3hash_data", "target": "rebreakurlfilterextension_murmur3hash_data_block" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/Murmur3Hash.swift", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_murmur3hash_data", + "target": "rebreakurlfilterextension_murmur3hash_data_murmurhash3" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -269226,6 +345872,61 @@ "source": "rebreakurlfilterextension_murmur3hash_data", "target": "swiftbloomfilter_murmur3hash_data_murmurhash3" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/Murmur3Hash.swift", + "source_location": "L17", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_murmur3hash_data_murmurhash3", + "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakurlfilterextension_murmur3hash_swift_uint32" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/Murmur3Hash.swift", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_murmur3hash_data_murmurhash3", + "target": "rebreakurlfilterextension_murmur3hash_data_block" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/Murmur3Hash.swift", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_murmur3hash_data_murmurhash3", + "target": "rebreakurlfilterextension_murmur3hash_uint32" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/Murmur3Hash.swift", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_murmur3hash_data_murmurhash3", + "target": "rebreakurlfilterextension_murmur3hash_uint32_fmix" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/ios/RebreakURLFilterExtension/Murmur3Hash.swift", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakurlfilterextension_murmur3hash_data_murmurhash3", + "target": "rebreakurlfilterextension_murmur3hash_uint32_rotateleft" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -271322,6 +348023,126 @@ "source": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakcontentfilter_filterdataprovider_swift_rebreakcontentfilter_filterdataprovider_filterdataprovider_handlenewflow", "target": "apps_rebreak_native_modules_rebreak_protection_ios_rebreakcontentfilter_filterdataprovider_swift_nefilternewflowverdict" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_android_src_test_java_expo_modules_rebreakprotection_filter_domainhashertest_kt", + "target": "filter_domainhashertest_domainhashertest" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhashertest_domainhashertest", + "target": "filter_domainhashertest_domainhashertest_casino_com_matches_server_fixture" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhashertest_domainhashertest", + "target": "filter_domainhashertest_domainhashertest_evil_subdomain_has_different_hash_than_parent" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhashertest_domainhashertest", + "target": "filter_domainhashertest_domainhashertest_hash_bet365_com_matches_server_fixture" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhashertest_domainhashertest", + "target": "filter_domainhashertest_domainhashertest_hash_is_case_insensitive" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhashertest_domainhashertest", + "target": "filter_domainhashertest_domainhashertest_hash_strips_https_protocol" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhashertest_domainhashertest", + "target": "filter_domainhashertest_domainhashertest_hash_strips_path_and_www_prefix" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhashertest_domainhashertest", + "target": "filter_domainhashertest_domainhashertest_non_blocked_domain_has_its_own_hash" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhashertest_domainhashertest", + "target": "filter_domainhashertest_domainhashertest_pokerstars_com_matches_server_fixture" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhashertest_domainhashertest", + "target": "filter_domainhashertest_domainhashertest_tipico_de_matches_server_fixture" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhashertest_domainhashertest", + "target": "filter_domainhashertest_domainhashertest_u" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/test/java/expo/modules/rebreakprotection/filter/DomainHasherTest.kt", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filter_domainhashertest_domainhashertest", + "target": "filter_domainhashertest_domainhashertest_whitespace_is_trimmed" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -271520,6 +348341,2834 @@ "source": "filter_domainhasher_domainhasher", "target": "filter_domainhashertest_domainhashertest_non_blocked_domain_has_its_own_hash" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L72", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L73", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "linearlayout" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L64", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "promise" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L797", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_a11ystepforactivity" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1079", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_advancestickyhintstep" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1032", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_bringrebreaktofront" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L869", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_cancelguidenotification" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L756", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenta11ystep" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L723", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentforegroundactivity" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenthashcount" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1071", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentstickyhinttext" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_disarmtamperlock" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1292", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L819", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_ensureguidechannel" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L925", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L705", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_hasusageaccess" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1242", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1342", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isotimestamp" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1009", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L837", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L629", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1059", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetsettingstoroot" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1083", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetstickyhintprogress" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_sendlayerchange" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L998", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showguidestep" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L939", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L879", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_starta11yguidewatch" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L659", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startvpnservice" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L918", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopa11yguidewatch" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1004", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1087", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopsamsungguideoverlay" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopstickyhint" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1332", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L701", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "runnable" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_armtamperlock" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L74", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "textview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L76", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule", + "target": "windowmanager" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L797", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_a11ystepforactivity", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L756", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenta11ystep", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1194", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenthashcount", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L925", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L837", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L998", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showguidestep", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L939", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_int" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L954", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", + "target": "linearlayout" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L959", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", + "target": "textview" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L105", + "weight": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "intent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L529", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenthashcount" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L400", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentstickyhinttext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_disarmtamperlock" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L397", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_hasusageaccess" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L277", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L574", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L608", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L437", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L530", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L494", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_sendlayerchange" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L398", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_starta11yguidewatch" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L401", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startvpnservice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L288", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopsamsungguideoverlay" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopstickyhint" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_definition", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_armtamperlock" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L629", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L629", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startvpnservice", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_requirecontext" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1032", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_bringrebreaktofront", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1118", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L869", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_cancelguidenotification", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L756", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenta11ystep", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L723", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentforegroundactivity", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1194", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenthashcount", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1071", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentstickyhinttext", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1189", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_disarmtamperlock", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1292", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L819", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_ensureguidechannel", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L925", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L705", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_hasusageaccess", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1242", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1142", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1181", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1154", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1184", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1208", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1009", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L837", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1174", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1059", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetsettingstoroot", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L998", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showguidestep", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L939", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L879", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_starta11yguidewatch", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L659", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L918", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopa11yguidewatch", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1004", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1332", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L659", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L659", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L660", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startstickyhint", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopstickyhint" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L797", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_a11ystepforactivity", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1163", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1118", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L723", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentforegroundactivity", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1071", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentstickyhinttext", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1292", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L925", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1342", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isotimestamp", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L705", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_hasusageaccess", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L705", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_hasusageaccess", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1242", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1142", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1181", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1154", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1184", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1208", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1009", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1177", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L939", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_boolean" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L723", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentforegroundactivity", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L756", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenta11ystep", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L819", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_ensureguidechannel", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L838", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_ensureguidechannel" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L837", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1000", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showguidestep", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_postguidenotification" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L869", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_cancelguidenotification", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1006", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_cancelguidenotification" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L879", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_starta11yguidewatch", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L918", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopa11yguidewatch", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L921", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopa11yguidewatch", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L925", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L989", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_guidesteptext" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L939", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L943", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showoverlaystep", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopstickyhint" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L998", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_showguidestep", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1004", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1005", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopguidedisplay", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_stopsamsungguideoverlay" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1009", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1011", + "weight": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_openoverlaypermissionsettings", + "target": "intent" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1032", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_bringrebreaktofront", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1059", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetsettingstoroot", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1061", + "weight": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_resetsettingstoroot", + "target": "intent" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1071", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currentstickyhinttext", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L469", + "weight": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_startvpnservice", + "target": "intent" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1118", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "any" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1118", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_any" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1118", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1118", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "map" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_sendlayerchange", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_builddevicestate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1163", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult", + "target": "map" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1292", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", + "target": "map" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1163", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_any" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1292", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_any" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1142", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isdeviceadminenabled", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1154", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isignoringbatteryoptimizations", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1163", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_activatesuccessresult", + "target": "any" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1190", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_disarmtamperlock", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1301", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1174", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_saveenabled", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1190", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_armtamperlock", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_prefs" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1181", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isenabledflag" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1184", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_istamperlockarmed", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1189", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_disarmtamperlock", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1194", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_currenthashcount", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1208", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isvpneffectivelyon", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1242", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isaccessibilityserviceenabled", + "target": "context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1292", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", + "target": "any" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1292", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", + "target": "context" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1304", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_isotimestamp" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1314", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_downloadblocklist", + "target": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1332", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_rebreakprotectionmodule_kt_bytearray" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1332", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic", + "target": "bytearray" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1332", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "rebreakprotection_rebreakprotectionmodule_rebreakprotectionmodule_writeblocklistatomic", + "target": "context" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnbootreceiver_kt", + "target": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver", + "target": "broadcastreceiver" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver", + "target": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver_onreceive" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver_onreceive", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnbootreceiver_kt_context" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver_onreceive", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnbootreceiver_kt_intent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt", + "target": "vpn_rebreakvpnservice_rebreakvpnservice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L45", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_hashlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L45", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "hashlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L40", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "parcelfiledescriptor" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L41", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "thread" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L289", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_buildnotification" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_clearenabledflag" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_oncreate" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_ondestroy" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_onrevoke" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_promotetoforegroundorstop" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L135", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_scheduleblocklistselfheal" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L277", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_setenabledflag" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_tryautorecoverafterrevoke" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice", + "target": "vpnservice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_scheduleblocklistselfheal", + "target": "thread" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn", + "target": "thread" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_oncreate", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_hashlist" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_oncreate", + "target": "hashlist" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L51", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L52", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_intent" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L51", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", + "target": "intent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_buildnotification" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_scheduleblocklistselfheal" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_onstartcommand", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_tryautorecoverafterrevoke", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_intent" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L101", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_promotetoforegroundorstop", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_boolean" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_promotetoforegroundorstop", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_buildnotification" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_promotetoforegroundorstop", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L277", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_setenabledflag", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnservice_kt_boolean" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_startvpn", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_setenabledflag" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_ondestroy", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L213", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_onrevoke", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_stopvpn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L172", + "weight": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop", + "target": "any" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L173", + "weight": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop", + "target": "bytearray" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L138", + "weight": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_runfilterloop", + "target": "fileoutputstream" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L219", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_onrevoke", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_clearenabledflag" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_onrevoke", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_tryautorecoverafterrevoke" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_tryautorecoverafterrevoke", + "target": "intent" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_tryautorecoverafterrevoke", + "target": "vpn_rebreakvpnservice_rebreakvpnservice_clearenabledflag" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnService.kt", + "source_location": "L289", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "vpn_rebreakvpnservice_rebreakvpnservice_buildnotification", + "target": "notification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt", + "target": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver", + "target": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_ondisabled" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver", + "target": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_onenabled" + }, + { + "relation": "inherits", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver", + "target": "deviceadminreceiver" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_onenabled", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L22", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_onenabled", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_intent" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_ondisabled", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_context" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", + "source_location": "L26", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_ondisabled", + "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_intent" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -272098,16 +351747,6 @@ "source": "filter_domainhasher_domainhasher", "target": "filter_domainhasher_domainhasher_normalize" }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "filter_domainhasher_domainhasher", - "target": "utils_crisis_filter_normalize" - }, { "relation": "calls", "context": "call", @@ -272152,6 +351791,26 @@ "source": "filter_domainhasher_domainhasher_hash", "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_filter_domainhasher_kt_long" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_accessibility_rebreakaccessibilityservice_kt", + "target": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_accessibility_rebreakaccessibilityservice_kt", + "target": "accessibility_rebreakaccessibilityservice_requestpowerdialog" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -272232,6 +351891,16 @@ "source": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice", "target": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_isvpnsurface" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice", + "target": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_onaccessibilityevent" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -272324,6 +351993,28 @@ "source": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_doblock", "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_accessibility_rebreakaccessibilityservice_kt_long" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_onaccessibilityevent", + "target": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_handleprotectedsettingsblock" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/accessibility/RebreakAccessibilityService.kt", + "source_location": "L59", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_onaccessibilityevent", + "target": "accessibilityevent" + }, { "relation": "calls", "confidence": "EXTRACTED", @@ -272588,6 +352279,733 @@ "source": "accessibility_rebreakaccessibilityservice_rebreakaccessibilityservice_collectalltext", "target": "mutablelist" }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_activateresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_devicelayers" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_disableresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_healthprobeopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_healthproberesult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_rebreakprotectionevents" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_syncblocklistopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_syncblocklistresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_syncwebcontentdomainsopts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_syncwebcontentdomainsresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_systemsettingstarget" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotection_types_webcontentfilterresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_ts", + "target": "src_rebreakprotectionmodule_rebreakprotectionmodule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_activateresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_devicelayers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_disableresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_healthprobeopts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_healthprobeoutcome" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_healthproberesult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_protectionlayerkey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_rebreakprotectionevents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_syncblocklistopts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_syncblocklistresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_syncwebcontentdomainsopts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_syncwebcontentdomainsresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_systemsettingstarget" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtection.types.ts", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts", + "target": "src_rebreakprotection_types_webcontentfilterresult" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_web_ts", + "target": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotection_types_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_web_ts", + "target": "src_rebreakprotection_types_devicelayers" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_getdevicestate", + "target": "src_rebreakprotection_types_devicelayers" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_web_ts", + "target": "src_rebreakprotection_types_activateresult" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_activate", + "target": "src_rebreakprotection_types_activateresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_web_ts", + "target": "src_rebreakprotection_types_disableresult" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_disable", + "target": "src_rebreakprotection_types_disableresult" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotection_types_syncblocklistopts", + "target": "src_rebreakprotection_types_syncblocklistresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_web_ts", + "target": "src_rebreakprotection_types_syncblocklistresult" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_syncblocklist", + "target": "src_rebreakprotection_types_syncblocklistresult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_web_ts", + "target": "src_rebreakprotection_types_healthproberesult" + }, + { + "relation": "references", + "context": "generic_arg", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_runhealthprobe", + "target": "src_rebreakprotection_types_healthproberesult" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_web_ts", + "target": "src_rebreakprotection_types_rebreakprotectionevents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_modules_rebreak_protection_src_rebreakprotectionmodule_web_ts", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_activate" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_applywebcontentfilter" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_armtamperlock" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_clearwebcontentfilter" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_disable" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_disarmtamperlock" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_dismissaccessibilityhint" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_getdevicestate" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_getprotectionstatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_hasoverlaypermission" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_hasusageaccess" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_isaccessibilityenabled" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_isdeviceadminactive" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_isnefilteractive" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_openaccessibilitysettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_openoverlaypermissionsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_openpowerdialog" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_opensystemsettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_openusageaccesssettings" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_probecontentfilter" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_reconcileurlfilter" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_reconcilevpn" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_removedeviceadmin" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_requestdeviceadmin" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_runhealthprobe" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_syncblocklist" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/src/RebreakProtectionModule.web.ts", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb", + "target": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_syncwebcontentdomains" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/RebreakProtectionModule.kt", + "source_location": "L1189", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_rebreakprotectionmodule_web_rebreakprotectionmoduleweb_armtamperlock", + "target": "context" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -272688,6 +353106,16 @@ "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift", "target": "bloomfiltertool_readme" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift", + "target": "swiftbloomfilter_bloomfilter_bloomfilter" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -272760,6 +353188,111 @@ "source": "swiftbloomfilter_bloomfilter_bloomfilter_insert", "target": "swiftbloomfilter_bloomfilter_bloomfiltererror_encodingissue" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L26", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift_data" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L18", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift_double" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L102", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_bloomfilter_swift_uint32" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "swiftbloomfilter_bloomfilter_bloomfilter_calculatebitcount" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "swiftbloomfilter_bloomfilter_bloomfilter_calculatebytecount" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "swiftbloomfilter_bloomfilter_bloomfilter_calculatehashcount" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "swiftbloomfilter_bloomfilter_bloomfilter_init" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/BloomFilter.swift", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfilter_bloomfilter_bloomfilter", + "target": "swiftbloomfilter_bloomfilter_bloomfilter_insert" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -273299,6 +353832,17 @@ "source": "swiftbloomfilter_murmur3hash_data", "target": "swiftbloomfilter_murmur3hash_data_murmurhash3" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilter/Murmur3Hash.swift", + "source_location": "L16", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "swiftbloomfilter_murmur3hash_data_murmurhash3", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfilter_murmur3hash_swift_uint32" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -273429,6 +353973,68 @@ "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfiltertests_murmurhashtests_swift", "target": "swiftbloomfiltertests_murmurhashtests_murmurhashtests" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/MurmurHashTests.swift", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfiltertests_murmurhashtests_murmurhashtests", + "target": "swiftbloomfiltertests_murmurhashtests_murmurhashtests_murmurhash100" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/MurmurHashTests.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "swiftbloomfiltertests_murmurhashtests_murmurhashtests_murmurhash100", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfiltertests_murmurhashtests_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/MurmurHashTests.swift", + "source_location": "L15", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "swiftbloomfiltertests_murmurhashtests_murmurhashtests_murmurhash100", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfiltertests_murmurhashtests_swift_uint32" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/SwiftBloomFilterTests.swift", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfiltertests_swiftbloomfiltertests_swift", + "target": "swiftbloomfiltertests_swiftbloomfiltertests_bittests" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/SwiftBloomFilterTests.swift", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfiltertests_swiftbloomfiltertests_swift", + "target": "swiftbloomfiltertests_swiftbloomfiltertests_bloomfilterinternalstests" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/SwiftBloomFilterTests.swift", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfiltertests_swiftbloomfiltertests_swift", + "target": "swiftbloomfiltertests_swiftbloomfiltertests_swiftbloomfiltertests" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -273449,6 +354055,26 @@ "source": "swiftbloomfiltertests_swiftbloomfiltertests_swiftbloomfiltertests", "target": "swiftbloomfiltertests_swiftbloomfiltertests_bloomfilterinternalstests" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/SwiftBloomFilterTests.swift", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfiltertests_swiftbloomfiltertests_bloomfilterinternalstests", + "target": "swiftbloomfiltertests_swiftbloomfiltertests_bloomfilterinternalstests_bitcount100" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/SwiftBloomFilterTests.swift", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "swiftbloomfiltertests_swiftbloomfiltertests_bloomfilterinternalstests", + "target": "swiftbloomfiltertests_swiftbloomfiltertests_bloomfilterinternalstests_bytecount100" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -273511,6 +354137,16 @@ "source": "swiftbloomfiltertests_swiftbloomfiltertests_bittests_testsetrandombitcombinations", "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfiltertests_swiftbloomfiltertests_swift_int" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SwiftBloomFilter/SwiftBloomFilterTests/FNVHashTests.swift", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_swiftbloomfilter_swiftbloomfiltertests_fnvhashtests_swift", + "target": "swiftbloomfiltertests_fnvhashtests_fnvhashtests" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -273584,6 +354220,16 @@ "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_pir_database_pb_swift", "target": "bloomfiltertool_pir_database_pb_2" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_pir_database_pb_swift", + "target": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -273625,6 +354271,17 @@ "source": "apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow", "target": "swiftprotobuf" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_bloomfiltertool_swift", + "target": "swiftprotobuf" + }, { "relation": "implements", "confidence": "EXTRACTED", @@ -273635,6 +354292,16 @@ "source": "bloomfiltertool_pir_database_pb_2", "target": "swiftprotobuf" }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase", + "target": "swiftprotobuf" + }, { "relation": "imports", "context": "import", @@ -273666,6 +354333,16 @@ "source": "apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow", "target": "sendable" }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase", + "target": "sendable" + }, { "relation": "inherits", "confidence": "EXTRACTED", @@ -273687,6 +354364,90 @@ "source": "apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow", "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_pir_database_pb_swift_data" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow", + "target": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow_init" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L157", + "weight": 1.0, + "source": "bloomfiltertool_bloomfiltertool_bloomfiltertool_createpirdatafile", + "target": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L69", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase", + "target": "apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L138", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_pir_database_pb_swift_bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L116", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_pir_database_pb_swift_string" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase", + "target": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase_decodemessage" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase", + "target": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase_init" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase", + "target": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase_traverse" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -273708,6 +354469,27 @@ "source": "apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow", "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_pir_database_pb_swift_string" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow", + "target": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow_decodemessage" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L84", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow_decodemessage", + "target": "d" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -273719,6 +354501,38 @@ "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase_decodemessage", "target": "d" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow", + "target": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow_traverse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow_traverse", + "target": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase_traverse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/pir_database.pb.swift", + "source_location": "L97", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow_traverse", + "target": "v" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -273761,6 +354575,46 @@ "source": "apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow", "target": "bloomfiltertool_pir_database_pb_apple_swifthomomorphicencryption_pir_v1_keyworddatabase_traverse" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/swift_protobuf.sh", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_swift_protobuf_sh", + "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_swift_protobuf_sh__entry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_bloomfiltertool_swift", + "target": "bloomfiltertool_bloomfiltertool_bloomfiltertool" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_bloomfiltertool_swift", + "target": "bloomfiltertool_bloomfiltertool_bloomfiltertooldefaults" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_bloomfiltertool_swift", + "target": "bloomfiltertool_bloomfiltertool_runtimeerror" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -273782,6 +354636,17 @@ "source": "bloomfiltertool_readme", "target": "bloomfiltertool_bloomfiltertool_bloomfiltertooldefaults" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L47", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "bloomfiltertool_bloomfiltertool_bloomfiltertool", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_bloomfiltertool_swift_double" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -273793,6 +354658,67 @@ "source": "bloomfiltertool_readme", "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_bloomfiltertool_swift_double" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L42", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "bloomfiltertool_bloomfiltertool_bloomfiltertool", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_bloomfiltertool_bloomfiltertool_swift_url" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_bloomfiltertool_bloomfiltertool", + "target": "asyncparsablecommand" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L135", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_bloomfiltertool_bloomfiltertool", + "target": "bloomfiltertool_bloomfiltertool_bloomfiltertool_createbloomfilterfile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_bloomfiltertool_bloomfiltertool", + "target": "bloomfiltertool_bloomfiltertool_bloomfiltertool_createpirdatafile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_bloomfiltertool_bloomfiltertool", + "target": "bloomfiltertool_bloomfiltertool_bloomfiltertool_readto" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_bloomfiltertool_bloomfiltertool", + "target": "bloomfiltertool_bloomfiltertool_bloomfiltertool_run" + }, { "relation": "implements", "confidence": "EXTRACTED", @@ -273957,12 +354883,12 @@ }, { "relation": "references", - "context": "parameter_type", "confidence": "EXTRACTED", - "confidence_score": 1.0, "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/BloomFilterTool/BloomFilterTool.swift", "source_location": "L156", "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, "source": "bloomfiltertool_bloomfiltertool_bloomfiltertool_createpirdatafile", "target": "apple_swifthomomorphicencryption_pir_v1_keyworddatabaserow" }, @@ -274028,6 +354954,36 @@ "source": "bloomfiltertool_readme", "target": "bloomfiltertool_bloomfiltertool_runtimeerror" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilterextension_urlfiltercontrolprovider_swift", + "target": "simpleurlfilterextension_urlfiltercontrolprovider_neproviderstopreason" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilterextension_urlfiltercontrolprovider_swift", + "target": "simpleurlfilterextension_urlfiltercontrolprovider_providerfiltererror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilterextension_urlfiltercontrolprovider_swift", + "target": "simpleurlfilterextension_urlfiltercontrolprovider_urlfiltercontrolprovider" + }, { "relation": "case_of", "confidence": "EXTRACTED", @@ -274195,6 +355151,17 @@ "source": "simpleurlfilterextension_urlfiltercontrolprovider_urlfiltercontrolprovider_fetchprefilter", "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilterextension_urlfiltercontrolprovider_swift_string" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilterExtension/URLFilterControlProvider.swift", + "source_location": "L51", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "simpleurlfilterextension_urlfiltercontrolprovider_urlfiltercontrolprovider_stop", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilterextension_urlfiltercontrolprovider_swift_neproviderstopreason" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -274217,6 +355184,16 @@ "source": "simpleurlfilterextension_urlfiltercontrolprovider_urlfiltercontrolprovider_fetchprefilter", "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilterextension_urlfiltercontrolprovider_swift_neurlfilterprefilter" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/SimpleURLFilterApp.swift", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_simpleurlfilterapp_swift", + "target": "simpleurlfilter_simpleurlfilterapp_simpleurlfilterapp" + }, { "relation": "implements", "confidence": "EXTRACTED", @@ -274227,6 +355204,17 @@ "source": "simpleurlfilter_simpleurlfilterapp_simpleurlfilterapp", "target": "app" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/SimpleURLFilterApp.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "simpleurlfilter_simpleurlfilterapp_simpleurlfilterapp", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_simpleurlfilterapp_swift_configurationmodel" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -274280,16 +355268,6 @@ "source": "simpleurlfilter_simpleurlfilterapp_simpleurlfilterapp", "target": "simpleurlfilter_simpleurlfilterapp_simpleurlfilterapp_init" }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/SimpleURLFilterApp.swift", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "simpleurlfilter_simpleurlfilterapp_simpleurlfilterapp", - "target": "src_tauri_tauri_conf_app" - }, { "relation": "implements", "confidence": "EXTRACTED", @@ -274300,6 +355278,17 @@ "source": "sources_rebreakmagicapp_rebreakmagicapp", "target": "app" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/SimpleURLFilterApp.swift", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "simpleurlfilter_simpleurlfilterapp_simpleurlfilterapp_init", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_simpleurlfilterapp_swift_configurationmodel" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -274918,6 +355907,16 @@ "source": "services_magicapiclient_magicdevice", "target": "identifiable" }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_prefilterfetchinterval", + "target": "identifiable" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -274948,6 +355947,26 @@ "source": "preview_assets_xcassets_contents_info", "target": "preview_assets_xcassets_contents_info_version" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/ConfigurationModel.swift", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_model_configurationmodel_swift", + "target": "model_configurationmodel_configurationerror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/ConfigurationModel.swift", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_model_configurationmodel_swift", + "target": "model_configurationmodel_configurationmodel" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -275416,6 +356435,16 @@ "source": "model_configurationmodel_configurationerror", "target": "model_configurationmodel_configurationerror_badconfiguration" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/ActivityState.swift", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_model_activitystate_swift", + "target": "model_activitystate_activitystate" + }, { "relation": "case_of", "confidence": "EXTRACTED", @@ -275476,6 +356505,16 @@ "source": "model_activitystate_activitystate", "target": "model_activitystate_activitystate_configurationenablestart" }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/ActivityState.swift", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "model_activitystate_activitystate", + "target": "model_activitystate_activitystate_configurationloadempty" + }, { "relation": "case_of", "confidence": "EXTRACTED", @@ -275506,6 +356545,16 @@ "source": "model_activitystate_activitystate", "target": "model_activitystate_activitystate_configurationloadstart" }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/ActivityState.swift", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "model_activitystate_activitystate", + "target": "model_activitystate_activitystate_configurationremoveend" + }, { "relation": "case_of", "confidence": "EXTRACTED", @@ -275626,6 +356675,16 @@ "source": "model_activitystate_activitystate", "target": "model_activitystate_activitystate_pirparametersrefreshstart" }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/DeviceState.swift", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "models_devicestate_devicestate", + "target": "equatable" + }, { "relation": "implements", "confidence": "EXTRACTED", @@ -275700,6 +356759,16 @@ "source": "model_configuration_configuration", "target": "customdebugstringconvertible" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Model/Configuration.swift", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_model_configuration_swift", + "target": "model_configuration_configuration" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -275819,6 +356888,46 @@ "source": "model_configuration_configuration_hash", "target": "hasher" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_configurationview_swift", + "target": "views_configurationview_configurationview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_configurationview_swift", + "target": "views_configurationview_field" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_configurationview_swift", + "target": "views_configurationview_prefilterfetchinterval" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_configurationview_swift", + "target": "views_configurationview_validationerror" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -275869,8 +356978,8 @@ "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L36", "weight": 1.0, - "confidence_score": 1.0, "context": "field", + "confidence_score": 1.0, "source": "views_configurationview_configurationview", "target": "field" }, @@ -275880,11 +356989,22 @@ "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", "source_location": "L29", "weight": 1.0, - "confidence_score": 1.0, "context": "field", + "confidence_score": 1.0, "source": "views_configurationview_configurationview", "target": "prefilterfetchinterval" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L55", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_configurationview_configurationview", + "target": "view" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -275955,6 +357075,380 @@ "source": "views_configurationview_configurationview", "target": "views_configurationview_validationerror" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ContentView.swift", + "source_location": "L101", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_contentview_swift_views_contentview_contentview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L108", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ContentView.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_contentview_swift_views_contentview_contentview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L155", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L206", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_configurationview_configurationview_validationerrorview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ConfigureView.swift", + "source_location": "L159", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_configureview_configureview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ContentView.swift", + "source_location": "L136", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_contentview_contentview_actionview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ContentView.swift", + "source_location": "L115", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_contentview_contentview_errorview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ContentView.swift", + "source_location": "L72", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_contentview_contentview_mainimageview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ContentView.swift", + "source_location": "L89", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_contentview_contentview_statusview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L272", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L129", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview_adddevicebutton", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L331", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_hubdevicerow", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DoneView.swift", + "source_location": "L67", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_doneview_doneview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DoneView.swift", + "source_location": "L57", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_doneview_doneview_statusrow", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", + "source_location": "L176", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_enrollview_enrollview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", + "source_location": "L163", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_enrollview_enrollview_steprow", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_enrollview_transferanimationview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/EnrollView.swift", + "source_location": "L59", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_enrollview_transferanimationview_iconnode", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/HelpView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_helpview_helpview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/HelpView.swift", + "source_location": "L75", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_helpview_helpview_faqitem", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L127", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_loginview_loginview_digitbox", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L155", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L136", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_errorcard", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L112", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_macinfocard", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L169", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_successcard", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L126", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_managebindingsview_devicerow", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/PreflightView.swift", + "source_location": "L88", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_preflightview_preflightview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/PreflightView.swift", + "source_location": "L64", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_preflightview_preflightview_checklistitem", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/StepIndicator.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_stepindicator_stepindicator", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/SuperviseView.swift", + "source_location": "L99", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_superviseview_superviseview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_welcomeview_welcomeview", + "target": "view" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", + "source_location": "L80", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_welcomeview_welcomeview_devicecard", + "target": "view" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -276010,6 +357504,17 @@ "source": "prefilterfetchinterval", "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_configurationview_swift_string" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L266", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_configurationview_prefilterfetchinterval", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_configurationview_swift_string" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -276042,17 +357547,6 @@ "source": "prefilterfetchinterval", "target": "caseiterable" }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", - "source_location": "L257", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "prefilterfetchinterval", - "target": "self" - }, { "relation": "implements", "confidence": "EXTRACTED", @@ -276240,6 +357734,17 @@ "source": "views_configurationview_configurationview_init", "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_configurationview_swift_binding" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_configurationview_init", + "target": "views_configurationview_prefilterfetchinterval" + }, { "relation": "calls", "context": "call", @@ -276251,6 +357756,68 @@ "source": "views_configurationview_configurationview_validationerrorview", "target": "views_configurationview_validationerror_message" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L312", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "views_configurationview_configurationview_validate", + "target": "views_configurationview_field" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_field", + "target": "caseiterable" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_field", + "target": "views_configurationview_field_pirauthenticationtoken" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L237", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_field", + "target": "views_configurationview_field_pirprivacypassissuerurl" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_field", + "target": "views_configurationview_field_pirserverurl" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L244", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_configurationview_validationerror_message", + "target": "views_configurationview_field" + }, { "relation": "implements", "confidence": "EXTRACTED", @@ -276271,6 +357838,16 @@ "source": "models_wizardstep_wizardstep", "target": "caseiterable" }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_prefilterfetchinterval", + "target": "caseiterable" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -276313,6 +357890,109 @@ "source": "views_configurationview_configurationview_validate", "target": "views_configurationview_validationerror_validationfalied" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L387", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_configurationview_updatefrom", + "target": "views_configurationview_prefilterfetchinterval" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L372", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_configurationview_workingconfigurationequal", + "target": "views_configurationview_prefilterfetchinterval" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L257", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_configurationview_prefilterfetchinterval", + "target": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_configurationview_swift_self" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_prefilterfetchinterval", + "target": "timeinterval" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_prefilterfetchinterval", + "target": "views_configurationview_prefilterfetchinterval_minimum" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_prefilterfetchinterval", + "target": "views_configurationview_prefilterfetchinterval_onehour" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L262", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_prefilterfetchinterval", + "target": "views_configurationview_prefilterfetchinterval_sixhours" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_prefilterfetchinterval", + "target": "views_configurationview_prefilterfetchinterval_threehours" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_prefilterfetchinterval", + "target": "views_configurationview_prefilterfetchinterval_twelvehours" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/SimpleURLFilter/SimpleURLFilter/Views/ConfigurationView.swift", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_configurationview_prefilterfetchinterval", + "target": "views_configurationview_prefilterfetchinterval_twentyfourhours" + }, { "relation": "calls", "context": "call", @@ -276396,6 +358076,10314 @@ "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_simpleurlfilter_simpleurlfilter_views_contentview_swift_views_contentview_contentview", "target": "views_contentview_contentview_statusview" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_package_json", + "target": "rebreak_magic_win_package_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_package_json", + "target": "rebreak_magic_win_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_package_json", + "target": "rebreak_magic_win_package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_package_json", + "target": "rebreak_magic_win_package_private" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_package_json", + "target": "rebreak_magic_win_package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_package_json", + "target": "rebreak_magic_win_package_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_package_json", + "target": "rebreak_magic_win_package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_scripts", + "target": "rebreak_magic_win_package_scripts_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_scripts", + "target": "rebreak_magic_win_package_scripts_dev" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_scripts", + "target": "rebreak_magic_win_package_scripts_preview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_scripts", + "target": "rebreak_magic_win_package_scripts_tauri" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_dependencies", + "target": "rebreak_magic_win_package_dependencies_fontsource_nunito" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_dependencies", + "target": "rebreak_magic_win_package_dependencies_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_dependencies", + "target": "rebreak_magic_win_package_dependencies_react_dom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_dependencies", + "target": "rebreak_magic_win_package_dependencies_tauri_apps_api" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_devdependencies", + "target": "rebreak_magic_win_package_devdependencies_tauri_apps_cli" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_devdependencies", + "target": "rebreak_magic_win_package_devdependencies_types_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_devdependencies", + "target": "rebreak_magic_win_package_devdependencies_types_react_dom" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_devdependencies", + "target": "rebreak_magic_win_package_devdependencies_typescript" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_devdependencies", + "target": "rebreak_magic_win_package_devdependencies_vite" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/package.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_package_devdependencies", + "target": "rebreak_magic_win_package_devdependencies_vitejs_plugin_react" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_tsconfig_json", + "target": "rebreak_magic_win_tsconfig_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_tsconfig_json", + "target": "rebreak_magic_win_tsconfig_include" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_allowimportingtsextensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_isolatedmodules" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_jsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_lib" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_moduleresolution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_noemit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_nofallthroughcasesinswitch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_nounusedlocals" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_nounusedparameters" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_resolvejsonmodule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_skiplibcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_strict" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_tsconfig_compileroptions", + "target": "rebreak_magic_win_tsconfig_compileroptions_usedefineforclassfields" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_productname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build_beforebuildcommand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build_beforedevcommand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build_devurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_build_frontenddist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_app", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_app_security" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_app", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_app_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_app_security", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_security_csp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle_active" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle_externalbin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle_icon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle", + "target": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle_targets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json_src_tauri_tauri_conf_bundle", + "target": "src_tauri_tauri_conf_bundle_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_bundle_windows", + "target": "src_tauri_tauri_conf_windows_nsis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_windows_nsis", + "target": "src_tauri_tauri_conf_nsis_installmode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_tauri_tauri_conf_windows_nsis", + "target": "src_tauri_tauri_conf_nsis_languages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/build.rs", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_build_rs", + "target": "apps_rebreak_magic_win_src_tauri_build_rs_src_tauri_build_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", + "target": "apps_rebreak_magic_win_src_tauri_capabilities_default_json_capabilities_default_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", + "target": "apps_rebreak_magic_win_src_tauri_capabilities_default_json_capabilities_default_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", + "target": "apps_rebreak_magic_win_src_tauri_capabilities_default_json_capabilities_default_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", + "target": "apps_rebreak_magic_win_src_tauri_capabilities_default_json_capabilities_default_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", + "target": "apps_rebreak_magic_win_src_tauri_capabilities_default_json_capabilities_default_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json", + "target": "schemas_capabilities_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_local" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", + "target": "schemas_acl_manifests_core" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", + "target": "schemas_acl_manifests_core_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", + "target": "schemas_acl_manifests_core_event" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", + "target": "schemas_acl_manifests_core_image" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", + "target": "schemas_acl_manifests_core_menu" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_default_permission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_global_scope_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_permission_sets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_default_permission", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_default_permission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_global_scope_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permission_sets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_hide" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_show" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_bundle_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_default_window_icon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_fetch_data_store_identifiers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_register_listener" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_data_store" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_listener" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_app_theme" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_dock_visibility" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_supports_multiple_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_tauri_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_hide" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_show" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_bundle_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_default_window_icon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_fetch_data_store_identifiers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_register_listener" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_data_store" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_listener" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_app_theme" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_dock_visibility" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_supports_multiple_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_tauri_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_hide", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_hide", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_hide", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_commands", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_show", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_show", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_show", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_bundle_type", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_bundle_type", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_bundle_type", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_default_window_icon", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_default_window_icon", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_default_window_icon", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_name", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_name", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_name", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_register_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_register_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_register_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_data_store", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_data_store", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_data_store", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_app_theme", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_app_theme", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_app_theme", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_dock_visibility", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_dock_visibility", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_dock_visibility", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_supports_multiple_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_supports_multiple_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_supports_multiple_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_tauri_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_tauri_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_tauri_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_hide", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_hide", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_hide", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_show", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_show", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_show", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_bundle_type", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_bundle_type", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_bundle_type", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_default_window_icon", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_default_window_icon", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_default_window_icon", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_name", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_name", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_name", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_register_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_register_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_register_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_data_store", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_data_store", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_data_store", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_listener", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_app_theme", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_app_theme", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_app_theme", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_dock_visibility", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_dock_visibility", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_dock_visibility", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_supports_multiple_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_supports_multiple_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_supports_multiple_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_tauri_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_tauri_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_tauri_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_version", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_default_permission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_global_scope_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permission_sets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit_to" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_listen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_unlisten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit_to" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_listen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_unlisten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit_to", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit_to", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit_to", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_listen", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_listen", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_listen", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_unlisten", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_unlisten", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_unlisten", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit_to", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit_to", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit_to", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_listen", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_listen", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_listen", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_unlisten", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_unlisten", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_unlisten", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_default_permission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_global_scope_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permission_sets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_bytes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_rgba" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_size" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_bytes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_new" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_rgba" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_size" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_bytes", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_bytes", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_bytes", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_path", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_path", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_path", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_rgba", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_rgba", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_rgba", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_size", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_size", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_size", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_bytes", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_bytes", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_bytes", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_path", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_path", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_path", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_new", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_new", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_new", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_rgba", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_rgba", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_rgba", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_size", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_size", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_size", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_default_permission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_append" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_create_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_get" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_insert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_checked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_enabled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_popup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_prepend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_at" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_accelerator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_app_menu" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_help_menu_for_nsapp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_window_menu" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_windows_menu_for_nsapp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_checked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_enabled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_icon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_append" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_create_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_get" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_insert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_checked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_enabled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_append", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_append", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_append", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_create_default", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_create_default", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_create_default", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_get", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_get", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_get", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_insert", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_insert", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_insert", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_checked", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_checked", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_checked", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_enabled", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_enabled", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_enabled", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_popup", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_popup", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_popup", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_prepend", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_prepend", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_prepend", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_at", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_at", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_at", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_accelerator", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_accelerator", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_accelerator", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_app_menu", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_app_menu", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_app_menu", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_help_menu_for_nsapp", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_help_menu_for_nsapp", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_help_menu_for_nsapp", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_window_menu", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_window_menu", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_window_menu", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_windows_menu_for_nsapp", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_windows_menu_for_nsapp", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_windows_menu_for_nsapp", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_checked", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_checked", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_checked", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_enabled", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_enabled", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_enabled", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_icon", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_icon", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_icon", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_text", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_text", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_text", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_text", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_text", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_text", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_append", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_append", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_append", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_create_default", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_create_default", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_create_default", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_get", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_get", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_get", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_insert", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_insert", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_insert", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_checked", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_checked", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_checked", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_enabled", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_enabled", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_enabled", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", + "target": "schemas_macos_schema_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", + "target": "schemas_macos_schema_definitions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", + "target": "schemas_macos_schema_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", + "target": "schemas_macos_schema_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", + "target": "schemas_macos_schema_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_number" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_permissionentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_value" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_required" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_local" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_platforms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_remote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_webviews" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_description", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_description", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_description", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_remote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_remote_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_remote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_remote_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_local", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_local", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_local", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_webviews", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_webviews", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_webviews", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_uniqueitems" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_ref" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_ref" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_platforms", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_platforms", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_platforms", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_properties" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_required" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_urls" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_urls", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_urls", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_urls", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_permissionentry", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissionentry_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_permissionentry", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissionentry_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_oneof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_value", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_value_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_value", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_value_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_number", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_number_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2237", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_number", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_number_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_target", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_target_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_target", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_target_oneof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", + "target": "schemas_desktop_schema_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", + "target": "schemas_desktop_schema_definitions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", + "target": "schemas_desktop_schema_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", + "target": "schemas_desktop_schema_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", + "target": "schemas_desktop_schema_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_number" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_permissionentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_value" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_required" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_local" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_platforms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_remote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_webviews" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_description", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_description", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_description", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_remote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_remote_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_remote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_remote_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_local", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_local", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_local", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_windows", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_webviews", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_webviews", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_webviews", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_uniqueitems" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_ref" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_items", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_ref" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_platforms", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_platforms", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_platforms", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_properties" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_required" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_properties", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_urls" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_urls", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_urls", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_urls", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_permissionentry", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissionentry_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_permissionentry", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissionentry_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_identifier", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_oneof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_value", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_value_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_value", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_value_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_number", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_number_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2237", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_number", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_number_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_target", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_target_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_target", + "target": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_target_oneof" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L18", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", + "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_duration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", + "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_src_main_main" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L125", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", + "target": "osstring" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", + "target": "src_main_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", + "target": "src_main_monitor_loop" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", + "target": "src_main_poll_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", + "target": "src_main_run" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", + "target": "src_main_run_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", + "target": "src_main_service_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", + "target": "src_main_tick" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_src_main_main", + "target": "src_main_log" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L32", + "weight": 1.0, + "source": "src_main_log", + "target": "src_lib_state_dir" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_main_monitor_loop", + "target": "src_main_log" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_main_service_main", + "target": "src_main_log" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_main_tick", + "target": "src_main_log" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L40", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_main_poll_backend", + "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L40", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_main_poll_backend", + "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_protectionstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_main_tick", + "target": "src_main_poll_backend" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_main_monitor_loop", + "target": "src_main_tick" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L93", + "weight": 1.0, + "source": "src_main_tick", + "target": "src_lib_apply_doh" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L91", + "weight": 1.0, + "source": "src_main_tick", + "target": "src_lib_doh_is_applied" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L61", + "weight": 1.0, + "source": "src_main_tick", + "target": "src_lib_load_state" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L70", + "weight": 1.0, + "source": "src_main_tick", + "target": "src_lib_teardown_doh" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_src_main_main", + "target": "src_main_monitor_loop" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L104", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_main_monitor_loop", + "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_duration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L104", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_main_monitor_loop", + "target": "fn" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_main_run_service", + "target": "src_main_monitor_loop" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L192", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_src_main_main", + "target": "src_main_run" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L139", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_main_run", + "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_error" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L139", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_main_run", + "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L149", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_main_run_service", + "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L149", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_main_run_service", + "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_error" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L143", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_main_service_main", + "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_vec" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L143", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_main_service_main", + "target": "osstring" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_main_service_main", + "target": "src_main_run_service" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L10", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_pathbuf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_apply_doh" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_apply_script" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L204", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_check_script" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L219", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_doh_is_applied" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_doh_template_embeds_token" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_load_state" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_protectionstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_ps_run" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_scripts_contain_ip_and_template" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_state_dir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_state_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_state_roundtrip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_teardown_doh" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", + "target": "src_lib_teardown_script" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L64", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_load_state", + "target": "src_lib_protectionstate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L38", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_lib_protectionstate", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_protectionstate", + "target": "src_lib_protectionstate_doh_template_for" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L224", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_apply_doh", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L115", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_apply_script", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L204", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_check_script", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L42", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_protectionstate_doh_template_for", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L77", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_ps_run", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L229", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_teardown_doh", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L171", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_teardown_script", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L239", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_doh_template_embeds_token", + "target": "src_lib_protectionstate_doh_template_for" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L48", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_state_dir", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_pathbuf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_state_path", + "target": "src_lib_state_dir" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L60", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_state_path", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_pathbuf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_load_state", + "target": "src_lib_state_path" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L64", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_load_state", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_option" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L12", + "weight": 1.0, + "source": "src_device_device_id", + "target": "src_lib_ps_run" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L38", + "weight": 1.0, + "source": "src_device_os_version", + "target": "src_lib_ps_run" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_apply_doh", + "target": "src_lib_ps_run" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L77", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_ps_run", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_result" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_teardown_doh", + "target": "src_lib_ps_run" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L103", + "weight": 1.0, + "source": "src_setup_run_elevated", + "target": "src_lib_ps_run" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L224", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_apply_doh", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L229", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_teardown_doh", + "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_result" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_apply_doh", + "target": "src_lib_apply_script" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L245", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_scripts_contain_ip_and_template", + "target": "src_lib_apply_script" + }, + { + "relation": "calls", + "context": "call", + "confidence": "INFERRED", + "confidence_score": 0.8, + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L38", + "weight": 1.0, + "source": "src_setup_build_setup_script", + "target": "src_lib_apply_script" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L249", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_scripts_contain_ip_and_template", + "target": "src_lib_teardown_script" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_teardown_doh", + "target": "src_lib_teardown_script" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_scripts_contain_ip_and_template", + "target": "src_lib_check_script" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_device_rs", + "target": "src_device_device_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_device_rs", + "target": "src_device_hostname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_device_rs", + "target": "src_device_os_version" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L9", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_device_device_id", + "target": "apps_rebreak_magic_win_src_tauri_src_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L29", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_device_hostname", + "target": "apps_rebreak_magic_win_src_tauri_src_device_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", + "source_location": "L35", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_device_os_version", + "target": "apps_rebreak_magic_win_src_tauri_src_device_rs_string" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_activate_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_cancel_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_request_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_run" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "lib_ipc_activateprotection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "lib_ipc_cancelrelease" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "lib_ipc_pairandregister" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "lib_ipc_requestrelease" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "src_lib_backend_url" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "src_lib_build_state" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "src_lib_get_state" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "src_lib_logout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "src_lib_pair_and_register" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L134", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_activate_protection", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L169", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_cancel_release", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L161", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_request_release", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L134", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "lib_ipc_activateprotection", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L169", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "lib_ipc_cancelrelease", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L105", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "lib_ipc_pairandregister", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L161", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "lib_ipc_requestrelease", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L52", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_build_state", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L99", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_state", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L179", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_logout", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L105", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_pair_and_register", + "target": "src_lib_uistate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L33", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_lib_uistate", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L33", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_uistate", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L134", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_activate_protection", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L169", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_cancel_release", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L161", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_request_release", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L134", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "lib_ipc_activateprotection", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L169", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "lib_ipc_cancelrelease", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L105", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "lib_ipc_pairandregister", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L161", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "lib_ipc_requestrelease", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L38", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_backend_url", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L99", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_get_state", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L179", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_lib_logout", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L105", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_pair_and_register", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_activate_protection", + "target": "src_lib_backend_url" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_cancel_release", + "target": "src_lib_backend_url" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_request_release", + "target": "src_lib_backend_url" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_ipc_activateprotection", + "target": "src_lib_backend_url" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_ipc_cancelrelease", + "target": "src_lib_backend_url" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_ipc_pairandregister", + "target": "src_lib_backend_url" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_ipc_requestrelease", + "target": "src_lib_backend_url" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_backend_url", + "target": "apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L38", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_backend_url", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_apphandle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_build_state", + "target": "src_lib_backend_url" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_pair_and_register", + "target": "src_lib_backend_url" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L134", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_activate_protection", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L169", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_cancel_release", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L161", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_request_release", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L52", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_build_state", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L99", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_get_state", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L179", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_logout", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L105", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_pair_and_register", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_apphandle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_activate_protection", + "target": "src_lib_build_state" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_cancel_release", + "target": "src_lib_build_state" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_request_release", + "target": "src_lib_build_state" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_ipc_activateprotection", + "target": "src_lib_build_state" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_ipc_cancelrelease", + "target": "src_lib_build_state" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_ipc_pairandregister", + "target": "src_lib_build_state" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "lib_ipc_requestrelease", + "target": "src_lib_build_state" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L52", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_build_state", + "target": "apphandle" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_get_state", + "target": "src_lib_build_state" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_logout", + "target": "src_lib_build_state" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_lib_pair_and_register", + "target": "src_lib_build_state" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L99", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_get_state", + "target": "apphandle" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L99", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_get_state", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L134", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_activate_protection", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L169", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_cancel_release", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L161", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs_src_lib_request_release", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L134", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "lib_ipc_activateprotection", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L169", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "lib_ipc_cancelrelease", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L105", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "lib_ipc_pairandregister", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L161", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "lib_ipc_requestrelease", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L179", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_logout", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L105", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_lib_pair_and_register", + "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L179", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_lib_logout", + "target": "apphandle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", + "target": "src_auth_clear_all" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", + "target": "src_auth_entry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", + "target": "src_auth_load_dns_token" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", + "target": "src_auth_load_session_token" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", + "target": "src_auth_save_dns_token" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", + "target": "src_auth_save_session_token" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_auth_clear_all", + "target": "src_auth_entry" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L11", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_auth_entry", + "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L11", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_auth_entry", + "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_auth_load_dns_token", + "target": "src_auth_entry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_auth_load_session_token", + "target": "src_auth_entry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_auth_save_dns_token", + "target": "src_auth_entry" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_auth_save_session_token", + "target": "src_auth_entry" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L25", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_auth_save_dns_token", + "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L15", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_auth_save_session_token", + "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L31", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_auth_load_dns_token", + "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L21", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_auth_load_session_token", + "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L25", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_auth_save_dns_token", + "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L15", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_auth_save_session_token", + "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L21", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_auth_load_session_token", + "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", + "source_location": "L31", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_auth_load_dns_token", + "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_option" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/main.rs", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_main_rs", + "target": "apps_rebreak_magic_win_src_tauri_src_main_rs_src_main_main" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", + "target": "src_api_api" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", + "target": "src_api_envelope" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", + "target": "src_api_errorbody" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", + "target": "src_api_magicdevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", + "target": "src_api_medata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", + "target": "src_api_pairdata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", + "target": "src_api_registerdata" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_api_envelope", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_t" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L58", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_parse", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_t" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_api_errorbody", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L16", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_errorbody", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L42", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_api_magicdevice", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L28", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_api_medata", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L46", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_api_api", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L153", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_cancel_release", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L126", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_devices", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L88", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_me", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L58", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_parse", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L76", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_redeem_pair", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L100", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_register", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L138", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_request_release", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L42", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_magicdevice", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L28", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_medata", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_api_pairdata", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L34", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_api_registerdata", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L76", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_redeem_pair", + "target": "src_api_pairdata" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L88", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_me", + "target": "src_api_medata" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L100", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_register", + "target": "src_api_registerdata" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L126", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_devices", + "target": "src_api_magicdevice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L47", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_api_api", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_client" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api", + "target": "src_api_api_cancel_release" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api", + "target": "src_api_api_devices" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api", + "target": "src_api_api_me" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api", + "target": "src_api_api_new" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api", + "target": "src_api_api_parse" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api", + "target": "src_api_api_redeem_pair" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api", + "target": "src_api_api_register" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api", + "target": "src_api_api_request_release" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L51", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_api_api_new", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_self" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api_devices", + "target": "src_api_api_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api_me", + "target": "src_api_api_parse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L58", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_api_api_parse", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_response" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L58", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_api_api_parse", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api_redeem_pair", + "target": "src_api_api_parse" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_api_api_register", + "target": "src_api_api_parse" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L153", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_api_api_cancel_release", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L126", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_api_api_devices", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L88", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_api_api_me", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L76", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_api_api_redeem_pair", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L100", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_api_api_register", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L138", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_api_api_request_release", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", + "source_location": "L126", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_api_api_devices", + "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_vec" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L7", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_setup_rs", + "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_pathbuf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_setup_rs", + "target": "src_setup_build_setup_script" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_setup_rs", + "target": "src_setup_resolve_doh_ip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_setup_rs", + "target": "src_setup_run_elevated" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_tauri_src_setup_rs", + "target": "src_setup_service_exe_path" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L13", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_setup_resolve_doh_ip", + "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L35", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_setup_build_setup_script", + "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L89", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_setup_run_elevated", + "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L25", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_setup_service_exe_path", + "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L25", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_setup_service_exe_path", + "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_pathbuf" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L25", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_setup_service_exe_path", + "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L89", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_setup_run_elevated", + "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_result" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", + "source_location": "L35", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_setup_build_setup_script", + "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_protectionstate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/App.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_app_tsx", + "target": "apps_rebreak_magic_win_src_lib_ipc_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/App.tsx", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_app_tsx", + "target": "apps_rebreak_magic_win_src_views_hubview_tsx" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/App.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_app_tsx", + "target": "apps_rebreak_magic_win_src_views_loginview_tsx" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/App.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_app_tsx", + "target": "lib_ipc_getstate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/App.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_app_tsx", + "target": "lib_ipc_uistate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/App.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_app_tsx", + "target": "src_app_app" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/main.tsx", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_main_tsx", + "target": "apps_rebreak_magic_win_src_app_tsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_lib_ipc_ts", + "target": "lib_ipc_activateprotection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_lib_ipc_ts", + "target": "lib_ipc_cancelrelease" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_lib_ipc_ts", + "target": "lib_ipc_getstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_lib_ipc_ts", + "target": "lib_ipc_logout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_lib_ipc_ts", + "target": "lib_ipc_pairandregister" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_lib_ipc_ts", + "target": "lib_ipc_requestrelease" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_lib_ipc_ts", + "target": "lib_ipc_uistate" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_hubview_tsx", + "target": "apps_rebreak_magic_win_src_lib_ipc_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_loginview_tsx", + "target": "apps_rebreak_magic_win_src_lib_ipc_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_hubview_tsx", + "target": "lib_ipc_uistate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_loginview_tsx", + "target": "lib_ipc_uistate" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_hubview_props", + "target": "lib_ipc_uistate" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_loginview_props", + "target": "lib_ipc_uistate" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_loginview_tsx", + "target": "lib_ipc_pairandregister" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L105", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "lib_ipc_pairandregister", + "target": "apphandle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_hubview_tsx", + "target": "lib_ipc_activateprotection" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L134", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "lib_ipc_activateprotection", + "target": "apphandle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_hubview_tsx", + "target": "lib_ipc_requestrelease" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L161", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "lib_ipc_requestrelease", + "target": "apphandle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_hubview_tsx", + "target": "lib_ipc_cancelrelease" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", + "source_location": "L169", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "lib_ipc_cancelrelease", + "target": "apphandle" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_hubview_tsx", + "target": "lib_ipc_logout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_loginview_tsx", + "target": "apps_rebreak_magic_win_src_views_loginview_tsx_views_loginview_loginview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_loginview_tsx", + "target": "views_loginview_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_hubview_tsx", + "target": "views_hubview_hubview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_hubview_tsx", + "target": "views_hubview_props" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_src_views_hubview_tsx", + "target": "views_hubview_usecountdown" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_hubview_hubview", + "target": "views_hubview_usecountdown" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -276686,6 +368674,16 @@ "source": "apps_admin_start_admin_staging_sh", "target": "users_chahinebrini_mono_rebreak_monorepo_apps_admin_start_admin_staging_sh__entry" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/composables/useAdminAuth.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_admin_composables_useadminauth_ts", + "target": "composables_useadminauth_useadminauth" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -276696,6 +368694,16 @@ "source": "apps_admin_server_api_stats_get_ts", "target": "api_stats_get_adminstats" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/server/api/moderation/queue.get.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_admin_server_api_moderation_queue_get_ts", + "target": "moderation_queue_get_moderationitem" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -276836,6 +368844,76 @@ "source": "apps_rebreak_magic_mac_build_dmg_sh", "target": "users_chahinebrini_mono_rebreak_monorepo_apps_rebreak_magic_mac_build_dmg_sh__entry" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_config_example_json", + "target": "rebreak_magic_mac_config_example_backendbaseurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_config_example_json", + "target": "rebreak_magic_mac_config_example_mdmapikey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_config_example_json", + "target": "rebreak_magic_mac_config_example_mdmserver" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_config_example_json", + "target": "rebreak_magic_mac_config_example_mdmuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_config_example_json", + "target": "rebreak_magic_mac_config_example_supabaseanonkey" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/config.example.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_config_example_json", + "target": "rebreak_magic_mac_config_example_supabaseurl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/RebreakMagicApp.swift", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_rebreakmagicapp_swift", + "target": "sources_rebreakmagicapp_rebreakmagicapp" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -276847,16 +368925,6 @@ "source": "sources_rebreakmagicapp_rebreakmagicapp", "target": "apps_rebreak_magic_mac_sources_rebreakmagicapp_swift_scene" }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/RebreakMagicApp.swift", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "sources_rebreakmagicapp_rebreakmagicapp", - "target": "src_tauri_tauri_conf_app" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -276967,6 +369035,49 @@ "source": "apps_rebreak_magic_mac_sources_resources_assets_xcassets_accentcolor_colorset_contents_json_accentcolor_colorset_contents_info", "target": "apps_rebreak_magic_mac_sources_resources_assets_xcassets_accentcolor_colorset_contents_json_accentcolor_colorset_contents_info_version" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/DeviceState.swift", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_models_devicestate_swift", + "target": "models_devicestate_devicestate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/DeviceState.swift", + "source_location": "L49", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "models_devicestate_devicestate", + "target": "apps_rebreak_magic_mac_sources_models_devicestate_swift_bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/DeviceState.swift", + "source_location": "L57", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "models_devicestate_devicestate", + "target": "apps_rebreak_magic_mac_sources_models_devicestate_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/DeviceState.swift", + "source_location": "L14", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "models_devicestate_devicestate", + "target": "enrollmentstatus" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -277107,6 +369218,16 @@ "source": "models_wizardmodel_debugsupervisionmode", "target": "models_wizardmodel_debugsupervisionmode_forcesupervised" }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "models_wizardmodel_debugsupervisionmode", + "target": "models_wizardmodel_debugsupervisionmode_forceunsupervised" + }, { "relation": "case_of", "confidence": "EXTRACTED", @@ -277151,47 +369272,14 @@ "target": "string" }, { - "relation": "references", + "relation": "calls", + "context": "call", "confidence": "EXTRACTED", "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L49", + "source_location": "L72", "weight": 1.0, - "context": "field", "confidence_score": 1.0, - "source": "models_wizardmodel_wizardmodel", - "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_bool" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L40", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "models_wizardmodel_wizardmodel", - "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_date" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L24", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "models_wizardmodel_wizardmodel", - "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_devicestate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L23", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "models_wizardmodel_wizardmodel", + "source": "models_wizardmodel_advance", "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_wizardstep" }, { @@ -277204,6 +369292,17 @@ "source": "models_wizardmodel_wizardmodel", "target": "models_wizardmodel_advance" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L77", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "models_wizardmodel_goto", + "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_wizardstep" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -277214,6 +369313,50 @@ "source": "models_wizardmodel_wizardmodel", "target": "models_wizardmodel_goto" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L23", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "models_wizardmodel_wizardmodel", + "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_wizardstep" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L113", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "models_wizardmodel_handlelogin", + "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_authsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "models_wizardmodel_handlelogout", + "target": "models_wizardmodel_reset" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "models_wizardmodel_returntohub", + "target": "models_wizardmodel_reset" + }, { "relation": "method", "confidence": "EXTRACTED", @@ -277234,28 +369377,6 @@ "source": "models_wizardmodel_wizardmodel", "target": "models_wizardmodel_startdebugreset" }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "models_wizardmodel_advance", - "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_wizardstep" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L77", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "models_wizardmodel_goto", - "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_wizardstep" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -277288,6 +369409,16 @@ "source": "models_wizardstep_wizardstep", "target": "int" }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardStep.swift", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "models_wizardstep_wizardstep", + "target": "models_wizardstep_wizardstep_configure" + }, { "relation": "case_of", "confidence": "EXTRACTED", @@ -277358,6 +369489,711 @@ "source": "models_wizardstep_wizardstep", "target": "views_configureview_configureview" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L309", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_devicehubview_swift", + "target": "deviceaction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_devicehubview_swift", + "target": "views_devicehubview_devicehubview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L309", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_devicehubview_swift", + "target": "views_devicehubview_hubdeviceaction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L314", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_devicehubview_swift", + "target": "views_devicehubview_hubdevicerow" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview", + "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview", + "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_magicdevice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L11", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview", + "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L9", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview", + "target": "magicuserprofile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview", + "target": "views_devicehubview_devicehubview_adddevicebutton" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L288", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview", + "target": "views_devicehubview_devicehubview_handleaction" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview", + "target": "views_devicehubview_devicehubview_loaddevices" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview", + "target": "views_devicehubview_devicehubview_loadprofile" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L288", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview_handleaction", + "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_magicdevice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L315", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_hubdevicerow", + "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_magicdevice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L129", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview_adddevicebutton", + "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L322", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_hubdevicerow", + "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L129", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview_adddevicebutton", + "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L129", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview_adddevicebutton", + "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_void" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L316", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_hubdevicerow", + "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_void" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L300", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview_handleaction", + "target": "views_devicehubview_devicehubview_loaddevices" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L288", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview_handleaction", + "target": "deviceaction" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L288", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview_handleaction", + "target": "hubdeviceaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L298", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview_handleaction", + "target": "views_devicehubview_hubdeviceaction_cancelrelease" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L296", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_devicehubview_devicehubview_handleaction", + "target": "views_devicehubview_hubdeviceaction_requestrelease" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L311", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_devicehubview_hubdeviceaction", + "target": "views_devicehubview_hubdeviceaction_cancelrelease" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L310", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_devicehubview_hubdeviceaction", + "target": "views_devicehubview_hubdeviceaction_requestrelease" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L316", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_hubdevicerow", + "target": "views_devicehubview_hubdeviceaction" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L310", + "weight": 1.0, + "confidence_score": 1.0, + "source": "deviceaction", + "target": "views_devicehubview_hubdeviceaction_requestrelease" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L311", + "weight": 1.0, + "confidence_score": 1.0, + "source": "deviceaction", + "target": "views_devicehubview_hubdeviceaction_cancelrelease" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L319", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_hubdevicerow", + "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_timer" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L316", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_devicehubview_hubdevicerow", + "target": "deviceaction" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", + "source_location": "L419", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_devicehubview_hubdevicerow", + "target": "views_devicehubview_hubdevicerow_updatetimeremaining" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift", + "target": "views_macregistrationview_macregistrationview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "macdeviceinfo" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "views_macregistrationview_macregistrationview_checkprofilestatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "views_macregistrationview_macregistrationview_errorcard" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L234", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "views_macregistrationview_macregistrationview_handleprofileinstall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L210", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "views_macregistrationview_macregistrationview_handleregistration" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "views_macregistrationview_macregistrationview_loadmacinfo" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "views_macregistrationview_macregistrationview_macinfocard" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L316", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "views_macregistrationview_macregistrationview_pollbackendactive" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L306", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "views_macregistrationview_macregistrationview_polluntilprofileinstalled" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview", + "target": "views_macregistrationview_macregistrationview_successcard" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "macdeviceinfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L112", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_macinfocard", + "target": "macdeviceinfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L136", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_errorcard", + "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L316", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_pollbackendactive", + "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L169", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_successcard", + "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_string" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "views_macregistrationview_macregistrationview_macinfocard" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "views_macregistrationview_macregistrationview_errorcard" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "views_macregistrationview_macregistrationview_successcard" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "views_macregistrationview_macregistrationview_loadmacinfo" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "views_macregistrationview_macregistrationview_checkprofilestatus" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L210", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "views_macregistrationview_macregistrationview_handleregistration" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L234", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "views_macregistrationview_macregistrationview_handleprofileinstall" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L280", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_handleprofileinstall", + "target": "views_macregistrationview_macregistrationview_pollbackendactive" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_handleprofileinstall", + "target": "views_macregistrationview_macregistrationview_polluntilprofileinstalled" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L306", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "views_macregistrationview_macregistrationview_polluntilprofileinstalled" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L306", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_polluntilprofileinstalled", + "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L306", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_polluntilprofileinstalled", + "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L306", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_polluntilprofileinstalled", + "target": "bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L316", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_pollbackendactive", + "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_int" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L316", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_pollbackendactive", + "target": "apps_rebreak_magic_mac_sources_views_macregistrationview_swift_bool" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L316", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_registration_view", + "target": "views_macregistrationview_macregistrationview_pollbackendactive" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/MacRegistrationView.swift", + "source_location": "L316", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_macregistrationview_macregistrationview_pollbackendactive", + "target": "bool" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -277678,6 +370514,133 @@ "source": "views_enrollview_enrollview_waitforenrollmentready", "target": "views_enrollview_enrollview_triggerautomaticcontinue" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_loginview_swift", + "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", + "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_authsession" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", + "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", + "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", + "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_void" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", + "target": "views_loginview_loginview_digitbox" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", + "target": "views_loginview_loginview_handlecodechange" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", + "target": "views_loginview_loginview_handlesubmit" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L155", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_loginview_loginview_handlecodechange", + "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L127", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_loginview_loginview_digitbox", + "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_int" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_loginview_loginview_handlecodechange", + "target": "views_loginview_loginview_handlesubmit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/WelcomeView.swift", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_welcomeview_swift", + "target": "views_welcomeview_welcomeview" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -277774,6 +370737,16 @@ "source": "views_welcomeview_welcomeview_devicecard", "target": "apps_rebreak_magic_mac_sources_views_welcomeview_swift_devicestate" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/PreflightView.swift", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_preflightview_swift", + "target": "views_preflightview_preflightview" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -277859,6 +370832,311 @@ "source": "views_helpview_helpview_faqitem", "target": "apps_rebreak_magic_mac_sources_views_helpview_swift_string" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift", + "target": "views_managebindingsview_deviceaction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift", + "target": "views_managebindingsview_devicerow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift", + "target": "views_managebindingsview_managebindingsview" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L4", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview", + "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_magicdevice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L6", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview", + "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview", + "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_void" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview", + "target": "deviceaction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview", + "target": "views_managebindingsview_devicerow" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview", + "target": "views_managebindingsview_managebindingsview_handledeviceaction" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview", + "target": "views_managebindingsview_managebindingsview_loaddevices" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L121", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_managebindingsview_devicerow", + "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_magicdevice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L95", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview_handledeviceaction", + "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_magicdevice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L123", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_managebindingsview_devicerow", + "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L212", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_managebindingsview_devicerow_formatdate", + "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L121", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_managebindingsview_devicerow", + "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_void" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L95", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview_handledeviceaction", + "target": "deviceaction" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview_handledeviceaction", + "target": "views_managebindingsview_deviceaction_cancelrelease" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_managebindingsview_managebindingsview_handledeviceaction", + "target": "views_managebindingsview_deviceaction_requestrelease" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "deviceaction", + "target": "views_managebindingsview_deviceaction_cancelrelease" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "deviceaction", + "target": "views_managebindingsview_deviceaction_requestrelease" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L121", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_managebindingsview_devicerow", + "target": "deviceaction" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_managebindingsview_deviceaction", + "target": "views_managebindingsview_deviceaction_cancelrelease" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_managebindingsview_deviceaction", + "target": "views_managebindingsview_deviceaction_requestrelease" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L121", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_managebindingsview_devicerow", + "target": "views_managebindingsview_deviceaction" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L124", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "views_managebindingsview_devicerow", + "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_timer" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_managebindingsview_devicerow", + "target": "views_managebindingsview_devicerow_formatdate" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_managebindingsview_devicerow", + "target": "views_managebindingsview_devicerow_updatetimeremaining" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", + "source_location": "L212", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_managebindingsview_devicerow_formatdate", + "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_date" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/ConfigureView.swift", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_configureview_swift", + "target": "views_configureview_configureview" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -278244,6 +371522,16 @@ "source": "views_doneview_doneview_statusrow", "target": "apps_rebreak_magic_mac_sources_views_doneview_swift_string" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/StepIndicator.swift", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_views_stepindicator_swift", + "target": "views_stepindicator_stepindicator" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -278265,6 +371553,16 @@ "source": "views_stepindicator_stepindicator", "target": "color" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/StepIndicator.swift", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "views_stepindicator_stepindicator", + "target": "views_stepindicator_stepindicator_color" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -278276,6 +371574,28 @@ "source": "color", "target": "apps_rebreak_magic_mac_sources_views_stepindicator_swift_wizardstep" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/StepIndicator.swift", + "source_location": "L25", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "views_stepindicator_stepindicator_color", + "target": "apps_rebreak_magic_mac_sources_views_stepindicator_swift_wizardstep" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Views/StepIndicator.swift", + "source_location": "L25", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "views_stepindicator_stepindicator_color", + "target": "color" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -278297,6 +371617,46 @@ "source": "apps_rebreak_magic_mac_sources_views_contentview_swift_views_contentview_contentview", "target": "nsimage" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/ProcessRunner.swift", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_processrunner_swift", + "target": "services_processrunner_linebuffer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/ProcessRunner.swift", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_processrunner_swift", + "target": "services_processrunner_processrunner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/ProcessRunner.swift", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_processrunner_swift", + "target": "services_processrunner_processrunnererror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/ProcessRunner.swift", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_processrunner_swift", + "target": "services_processrunner_result" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -278547,6 +371907,26 @@ "source": "services_processrunner_processrunner_stream", "target": "services_processrunner_processrunnererror_binarynotfound" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/ProcessRunner.swift", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_processrunner_processrunner", + "target": "services_processrunner_processrunner_run" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/ProcessRunner.swift", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_processrunner_processrunner", + "target": "services_processrunner_processrunner_stream" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -278632,6 +372012,861 @@ "source": "services_processrunner_processrunner_stream", "target": "apps_rebreak_magic_mac_sources_services_processrunner_swift_void" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift", + "target": "services_magicapiclient_config" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift", + "target": "services_magicapiclient_magicapiclient" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift", + "target": "services_magicapiclient_magicdevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift", + "target": "services_magicapiclient_magicdevicesource" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift", + "target": "services_magicapiclient_magicerror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift", + "target": "services_magicapiclient_magicregistration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift", + "target": "services_magicapiclient_magicreleaseresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift", + "target": "services_magicapiclient_magicuserprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift", + "target": "services_magicapiclient_parseiso" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_api_client", + "target": "services_magicapiclient_magicregistration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L146", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_register", + "target": "services_magicapiclient_magicregistration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L8", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicregistration", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L7", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicregistration", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L114", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_config", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L122", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L290", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_cancelrelease", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L385", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_downloadprofile", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L146", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_register", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L248", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_requestrelease", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L354", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_status", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L27", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicdevice", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicdevicesource", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L80", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicerror", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L48", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicreleaseresponse", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L69", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicuserprofile", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L56", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_parseiso", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L354", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_status", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L41", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicdevice", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_bool" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_api_client", + "target": "services_magicapiclient_magicdevicesource" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L30", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicdevice", + "target": "services_magicapiclient_magicdevicesource" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicdevicesource", + "target": "services_magicapiclient_magicdevicesource_locked" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicdevicesource", + "target": "services_magicapiclient_magicdevicesource_magic" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicdevicesource", + "target": "services_magicapiclient_magicdevicesource_protected" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_api_client", + "target": "services_magicapiclient_magicdevice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L209", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_listdevices", + "target": "services_magicapiclient_magicdevice" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L36", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicdevice", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_date" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L248", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_requestrelease", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_date" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L50", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicreleaseresponse", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_date" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L56", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_parseiso", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_date" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_api_client", + "target": "services_magicapiclient_magicreleaseresponse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_api_client", + "target": "services_magicapiclient_parseiso" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_api_client", + "target": "services_magicapiclient_magicuserprofile" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L317", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_fetchme", + "target": "services_magicapiclient_magicuserprofile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_api_client", + "target": "services_magicapiclient_magicerror" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicerror", + "target": "services_magicapiclient_magicerror_configmissing" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicerror", + "target": "services_magicapiclient_magicerror_decodingerror" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicerror", + "target": "services_magicapiclient_magicerror_httperror" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicerror", + "target": "services_magicapiclient_magicerror_limitreached" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicerror", + "target": "services_magicapiclient_magicerror_networkerror" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicerror", + "target": "services_magicapiclient_magicerror_unauthorized" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_register", + "target": "services_magicapiclient_magicerror_limitreached" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L301", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_cancelrelease", + "target": "services_magicapiclient_magicerror_networkerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L395", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_downloadprofile", + "target": "services_magicapiclient_magicerror_networkerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L328", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_fetchme", + "target": "services_magicapiclient_magicerror_networkerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_listdevices", + "target": "services_magicapiclient_magicerror_networkerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_register", + "target": "services_magicapiclient_magicerror_networkerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_requestrelease", + "target": "services_magicapiclient_magicerror_networkerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L364", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_status", + "target": "services_magicapiclient_magicerror_networkerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L311", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_cancelrelease", + "target": "services_magicapiclient_magicerror_httperror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L400", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_downloadprofile", + "target": "services_magicapiclient_magicerror_httperror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L336", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_fetchme", + "target": "services_magicapiclient_magicerror_httperror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_listdevices", + "target": "services_magicapiclient_magicerror_httperror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_register", + "target": "services_magicapiclient_magicerror_httperror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_requestrelease", + "target": "services_magicapiclient_magicerror_httperror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L368", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_status", + "target": "services_magicapiclient_magicerror_httperror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L346", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_fetchme", + "target": "services_magicapiclient_magicerror_decodingerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L242", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_listdevices", + "target": "services_magicapiclient_magicerror_decodingerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_register", + "target": "services_magicapiclient_magicerror_decodingerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L280", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_requestrelease", + "target": "services_magicapiclient_magicerror_decodingerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L379", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_status", + "target": "services_magicapiclient_magicerror_decodingerror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_api_client", + "target": "services_magicapiclient_magicapiclient" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L290", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient", + "target": "services_magicapiclient_magicapiclient_cancelrelease" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L385", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient", + "target": "services_magicapiclient_magicapiclient_downloadprofile" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L317", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient", + "target": "services_magicapiclient_magicapiclient_fetchme" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient", + "target": "services_magicapiclient_magicapiclient_init" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient", + "target": "services_magicapiclient_magicapiclient_listdevices" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient", + "target": "services_magicapiclient_magicapiclient_register" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L248", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient", + "target": "services_magicapiclient_magicapiclient_requestrelease" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L354", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient", + "target": "services_magicapiclient_magicapiclient_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_api_client", + "target": "services_magicapiclient_config" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", + "source_location": "L385", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_magicapiclient_magicapiclient_downloadprofile", + "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_url" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -279207,6 +373442,26 @@ "source": "services_mdmclient_mdmclient_checkappismanaged", "target": "apps_rebreak_magic_mac_sources_services_mdmclient_swift_int" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/SuperviseRunner.swift", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_superviserunner_swift", + "target": "services_superviserunner_runnererror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/SuperviseRunner.swift", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_superviserunner_swift", + "target": "services_superviserunner_superviserunner" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -279686,6 +373941,790 @@ "source": "services_mdmstatus_mdmstatus_query", "target": "services_mdmstatus_mdmstatus_parsetimestamp" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", + "target": "pairredeemresponsedata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", + "target": "services_authservice_autherror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", + "target": "services_authservice_authservice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", + "target": "services_authservice_authsession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", + "target": "services_authservice_config" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", + "target": "services_authservice_pairredeemresponsedata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", + "target": "services_authservice_pairredeemresponseenvelope" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L83", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_authservice_authservice", + "target": "services_authservice_authsession" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L180", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_authservice_authservice_currentsession", + "target": "services_authservice_authsession" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L219", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_authservice_authservice_loadfromkeychain", + "target": "services_authservice_authsession" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L195", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_authservice_authservice_refreshsessionifneeded", + "target": "services_authservice_authsession" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L204", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "services_authservice_authservice_savetokeychain", + "target": "services_authservice_authsession" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice_signinwithpairingcode", + "target": "services_authservice_authsession" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L21", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_authservice_authsession", + "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L23", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_authservice_authsession", + "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_date" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_authservice_authsession", + "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L67", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "pairredeemresponsedata", + "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L37", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_authservice_autherror", + "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L93", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_authservice_authservice", + "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L98", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_authservice_authservice_loadbackendurl", + "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L116", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "services_authservice_authservice_signinwithpairingcode", + "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L90", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_authservice_config", + "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L67", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_authservice_pairredeemresponsedata", + "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L60", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_authservice_pairredeemresponseenvelope", + "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_bool" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_autherror", + "target": "services_authservice_autherror_codeexpired" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_autherror", + "target": "services_authservice_autherror_codeused" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_autherror", + "target": "services_authservice_autherror_configmissing" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_autherror", + "target": "services_authservice_autherror_invalidcode" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_autherror", + "target": "services_authservice_autherror_keychainerror" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_autherror", + "target": "services_authservice_autherror_networkerror" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_autherror", + "target": "services_authservice_autherror_refreshfailed" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_autherror", + "target": "services_authservice_autherror_tokenexpired" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice_signinwithpairingcode", + "target": "services_authservice_autherror_networkerror" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice_signinwithpairingcode", + "target": "services_authservice_autherror_configmissing" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice_savetokeychain", + "target": "services_authservice_autherror_keychainerror" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L61", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_authservice_pairredeemresponseenvelope", + "target": "pairredeemresponsedata" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice", + "target": "services_authservice_authservice_currentsession" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice", + "target": "services_authservice_authservice_deletefromkeychain" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice", + "target": "services_authservice_authservice_init" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice", + "target": "services_authservice_authservice_loadbackendurl" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L219", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice", + "target": "services_authservice_authservice_loadfromkeychain" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice", + "target": "services_authservice_authservice_refreshsessionifneeded" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L204", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice", + "target": "services_authservice_authservice_savetokeychain" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice", + "target": "services_authservice_authservice_signinwithpairingcode" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice", + "target": "services_authservice_authservice_signout" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice_signinwithpairingcode", + "target": "services_authservice_authservice_loadbackendurl" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice_signinwithpairingcode", + "target": "services_authservice_authservice_savetokeychain" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice_signout", + "target": "services_authservice_authservice_deletefromkeychain" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice_currentsession", + "target": "services_authservice_authservice_loadfromkeychain" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_authservice_authservice_refreshsessionifneeded", + "target": "services_authservice_authservice_currentsession" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift", + "target": "services_macdevicedetector_macdevicedetector" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift", + "target": "services_macdevicedetector_macdevicedetectorerror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift", + "target": "services_macdevicedetector_macdeviceinfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_device_detector", + "target": "services_macdevicedetector_macdeviceinfo" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetector_detect", + "target": "services_macdevicedetector_macdeviceinfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L10", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdeviceinfo", + "target": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L56", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetector_hwmodel", + "target": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L31", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetector_platformuuid", + "target": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L17", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetectorerror", + "target": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift_string" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_device_detector", + "target": "services_macdevicedetector_macdevicedetectorerror" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetectorerror", + "target": "services_macdevicedetector_macdevicedetector_platformuuid" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetectorerror", + "target": "services_macdevicedetector_macdevicedetectorerror_platformuuidnotfound" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetectorerror", + "target": "services_macdevicedetector_macdevicedetectorerror_sysctlfailed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetector_hwmodel", + "target": "services_macdevicedetector_macdevicedetectorerror_sysctlfailed" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetector", + "target": "services_macdevicedetector_macdevicedetector_detect" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetector", + "target": "services_macdevicedetector_macdevicedetector_hwmodel" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetector", + "target": "services_macdevicedetector_macdevicedetector_platformuuid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_device_detector", + "target": "services_macdevicedetector_macdevicedetector_platformuuid" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetector_detect", + "target": "services_macdevicedetector_macdevicedetector_platformuuid" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_device_detector", + "target": "services_macdevicedetector_macdevicedetector_hwmodel" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macdevicedetector_macdevicedetector_detect", + "target": "services_macdevicedetector_macdevicedetector_hwmodel" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_device_detector", + "target": "services_macdevicedetector_macdevicedetector_detect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/DeviceDetector.swift", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_devicedetector_swift", + "target": "services_devicedetector_detectorerror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/DeviceDetector.swift", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_devicedetector_swift", + "target": "services_devicedetector_devicedetector" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/DeviceDetector.swift", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_devicedetector_swift", + "target": "services_devicedetector_supervisionstatus" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -280171,6 +375210,492 @@ "source": "services_devicedetector_devicedetector_removeallrebreakprofiles", "target": "services_devicedetector_devicedetector_removeprofiles" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift", + "target": "services_macprofileinstaller_installererror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift", + "target": "services_macprofileinstaller_macprofileinstaller" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift", + "target": "services_macprofileinstaller_remove" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macprofileinstaller_macprofileinstaller", + "target": "services_macprofileinstaller_installererror" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macprofileinstaller_macprofileinstaller", + "target": "services_macprofileinstaller_macprofileinstaller_downloadandinstall" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macprofileinstaller_macprofileinstaller", + "target": "services_macprofileinstaller_macprofileinstaller_isinstalled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macprofileinstaller_macprofileinstaller", + "target": "services_macprofileinstaller_remove" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L12", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "services_macprofileinstaller_installererror", + "target": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift_string" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macprofileinstaller_installererror", + "target": "services_macprofileinstaller_installererror_downloadfailed" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macprofileinstaller_installererror", + "target": "services_macprofileinstaller_installererror_installfailed" + }, + { + "relation": "case_of", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macprofileinstaller_installererror", + "target": "services_macprofileinstaller_installererror_noregistration" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macprofileinstaller_macprofileinstaller_downloadandinstall", + "target": "services_macprofileinstaller_installererror_downloadfailed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macprofileinstaller_macprofileinstaller_downloadandinstall", + "target": "services_macprofileinstaller_installererror_installfailed" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "services_macprofileinstaller_remove", + "target": "services_macprofileinstaller_installererror_installfailed" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L30", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "services_macprofileinstaller_macprofileinstaller_downloadandinstall", + "target": "magicregistration" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", + "source_location": "L57", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "services_macprofileinstaller_macprofileinstaller_isinstalled", + "target": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift_bool" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_package_json", + "target": "marketing_package_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_package_json", + "target": "marketing_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_package_json", + "target": "marketing_package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_package_json", + "target": "marketing_package_private" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_package_json", + "target": "marketing_package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_package_json", + "target": "marketing_package_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_package_json", + "target": "marketing_package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_scripts", + "target": "marketing_package_scripts_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_scripts", + "target": "marketing_package_scripts_dev" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_scripts", + "target": "marketing_package_scripts_generate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_scripts", + "target": "marketing_package_scripts_postinstall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_scripts", + "target": "marketing_package_scripts_preview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_chart_js" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_iconify_json_heroicons" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_nuxt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_nuxt_fonts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_nuxt_icon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_nuxt_image" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_nuxt_ui" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_nuxtjs_i18n" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_tailwindcss" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_vue_chartjs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_vue_router" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_vueuse_motion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_dependencies", + "target": "marketing_package_dependencies_vueuse_nuxt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_devdependencies", + "target": "marketing_package_devdependencies_iconify_json_simple_icons" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_devdependencies", + "target": "marketing_package_devdependencies_nuxt_devtools" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/package.json", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_package_devdependencies", + "target": "marketing_package_devdependencies_typescript" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/composables/useOS.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_app_composables_useos_ts", + "target": "composables_useos_detectedos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/composables/useOS.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_app_composables_useos_ts", + "target": "composables_useos_useos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/composables/useViewportHeight.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_app_composables_useviewportheight_ts", + "target": "composables_useviewportheight_useviewportheight" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -280241,6 +375766,26 @@ "source": "locales_de_nav", "target": "locales_de_nav_login" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_nav", + "target": "locales_de_nav_pricing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_nav", + "target": "locales_de_nav_resources" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -281341,6 +376886,26 @@ "source": "locales_de_resources", "target": "locales_de_resources_chart_label" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_resources", + "target": "locales_de_resources_cta_button" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_resources", + "target": "locales_de_resources_cta_title" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -281521,6 +377086,16 @@ "source": "locales_de_resources", "target": "locales_de_resources_tip_breathing" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_resources", + "target": "locales_de_resources_tip_breathing_desc" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -282131,6 +377706,16 @@ "source": "locales_de_pricing", "target": "locales_de_pricing_feat_community" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_pricing", + "target": "locales_de_pricing_feat_community_post" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -282481,6 +378066,16 @@ "source": "locales_de_pricing", "target": "locales_de_pricing_subtitle_start" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/de.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_de_pricing", + "target": "locales_de_pricing_title" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -282551,6 +378146,26 @@ "source": "locales_en_nav", "target": "locales_en_nav_login" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_en_nav", + "target": "locales_en_nav_pricing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_en_nav", + "target": "locales_en_nav_resources" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -283651,6 +379266,26 @@ "source": "locales_en_resources", "target": "locales_en_resources_chart_label" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_en_resources", + "target": "locales_en_resources_cta_button" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_en_resources", + "target": "locales_en_resources_cta_title" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -284811,6 +380446,16 @@ "source": "locales_en_pricing", "target": "locales_en_pricing_subtitle_start" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/locales/en.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "locales_en_pricing", + "target": "locales_en_pricing_title" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -284861,6 +380506,26 @@ "source": "apps_marketing_app_layouts_default_vue", "target": "layouts_default_t" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/pages/preview.vue", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_app_pages_preview_vue", + "target": "pages_preview_mailproviders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/app/pages/preview.vue", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_app_pages_preview_vue", + "target": "pages_preview_steps" + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -284921,6 +380586,41973 @@ "source": "apps_marketing_app_pages_blocked_vue", "target": "pages_blocked_t" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usedevicestatus_ts", + "target": "composables_usedevicestatus_computeddevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usedevicestatus_ts", + "target": "composables_usedevicestatus_devicestatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usedevicestatus_ts", + "target": "composables_usedevicestatus_maptocomputeddevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usedevicestatus_ts", + "target": "composables_usedevicestatus_normalizehostname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usedevicestatus_ts", + "target": "composables_usedevicestatus_normalizeplatform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usedevicestatus_ts", + "target": "composables_usedevicestatus_usedevicestatus" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useDeviceStatus.ts", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "composables_usedevicestatus_maptocomputeddevice", + "target": "composables_usedevicestatus_normalizeplatform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemagicstate_ts", + "target": "composables_usemagicstate_magicsessionstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemagicstate_ts", + "target": "composables_usemagicstate_usecurrentmagicdevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemagicstate_ts", + "target": "composables_usemagicstate_useiphonedevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemagicstate_ts", + "target": "composables_usemagicstate_usemagicdevices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemagicstate_ts", + "target": "composables_usemagicstate_usemagicsession" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "apps_rebreak_magic_app_composables_usemagicstate_ts" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "composables_usemagicstate_usemagicsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "composables_usemagicstate_usecurrentmagicdevice", + "target": "composables_usemagicstate_usemagicsession" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L30", + "weight": 1.0, + "source": "composables_useprotectionstatus_useprotectionstatus", + "target": "composables_usemagicstate_usemagicsession" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "composables_usemagicstate_usemagicdevices" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMagicState.ts", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "composables_usemagicstate_usecurrentmagicdevice", + "target": "composables_usemagicstate_usemagicdevices" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L29", + "weight": 1.0, + "source": "composables_useprotectionstatus_useprotectionstatus", + "target": "composables_usemagicstate_usemagicdevices" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "composables_usemagicstate_useiphonedevice" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L28", + "weight": 1.0, + "source": "composables_useprotectionstatus_useprotectionstatus", + "target": "composables_usemagicstate_useiphonedevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "composables_useprotectionstatus_normalizehostname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "composables_useprotectionstatus_protectionstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useProtectionStatus.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_useprotectionstatus_ts", + "target": "composables_useprotectionstatus_useprotectionstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMdmStatus.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemdmstatus_ts", + "target": "composables_usemdmstatus_mdmstatusstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/composables/useMdmStatus.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_composables_usemdmstatus_ts", + "target": "composables_usemdmstatus_usemdmstatus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/CooldownCountdown.vue", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_cooldowncountdown_vue", + "target": "components_cooldowncountdown_display" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/CooldownCountdown.vue", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_cooldowncountdown_vue", + "target": "components_cooldowncountdown_now" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/CooldownCountdown.vue", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_cooldowncountdown_vue", + "target": "components_cooldowncountdown_remainingms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L270", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devicedetailsheet_vue", + "target": "components_devicedetailsheet_cooldownuntiltext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L283", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devicedetailsheet_vue", + "target": "components_devicedetailsheet_desktoptoggleicon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L278", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devicedetailsheet_vue", + "target": "components_devicedetailsheet_desktoptogglelabel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L288", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devicedetailsheet_vue", + "target": "components_devicedetailsheet_onclose" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devicedetailsheet_vue", + "target": "components_devicedetailsheet_onstartcooldown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devicedetailsheet_vue", + "target": "components_devicedetailsheet_statuscolor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/DeviceDetailSheet.vue", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_devicedetailsheet_vue", + "target": "components_devicedetailsheet_statusvariant" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosStarRating.vue", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosstarrating_vue", + "target": "components_iosstarrating_stars" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/app/components/IosStarRating.vue", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_app_components_iosstarrating_vue", + "target": "components_iosstarrating_tooltip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_local" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_capabilities_json_schemas_capabilities_default_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_default_permission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_global_scope_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_permission_sets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_default_permission", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_default_permission_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_default_permission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_global_scope_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permission_sets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_hide" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_show" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_bundle_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_default_window_icon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_fetch_data_store_identifiers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_register_listener" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_data_store" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_listener" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_app_theme" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_dock_visibility" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_supports_multiple_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_tauri_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_hide" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_show" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_bundle_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_default_window_icon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_fetch_data_store_identifiers" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_register_listener" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_data_store" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_listener" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_app_theme" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_dock_visibility" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_supports_multiple_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_tauri_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_app_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_hide", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_hide", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_hide", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_hide_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_allow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_commands", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_commands_deny" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_show", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_show", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_app_show", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_app_show_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_bundle_type", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_bundle_type", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_bundle_type", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_bundle_type_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_default_window_icon", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_default_window_icon", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_default_window_icon", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_default_window_icon_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_fetch_data_store_identifiers_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_identifier_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_name", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_name", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_name", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_name_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_register_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_register_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_register_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_register_listener_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_data_store", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_data_store", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_data_store", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_data_store_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_listener_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_app_theme", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_app_theme", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_app_theme", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_app_theme_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_dock_visibility", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_dock_visibility", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_dock_visibility", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_dock_visibility_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_supports_multiple_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_supports_multiple_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_supports_multiple_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_supports_multiple_windows_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_tauri_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_tauri_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_tauri_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_tauri_version_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_version_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_hide", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_hide", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_hide", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_hide_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_show", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_show", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_app_show", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_app_show_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_bundle_type", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_bundle_type", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_bundle_type", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_bundle_type_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_default_window_icon", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_default_window_icon", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_default_window_icon", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_default_window_icon_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_fetch_data_store_identifiers", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_fetch_data_store_identifiers_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_identifier_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_name", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_name", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_name", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_name_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_register_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_register_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_register_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_register_listener_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_data_store", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_data_store", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_data_store", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_data_store_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_remove_listener", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_remove_listener_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_app_theme", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_app_theme", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_app_theme", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_app_theme_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_dock_visibility", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_dock_visibility", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_set_dock_visibility", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_set_dock_visibility_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_supports_multiple_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_supports_multiple_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_supports_multiple_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_supports_multiple_windows_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_tauri_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_tauri_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_tauri_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_tauri_version_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_version", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_version_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_default_permission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_global_scope_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permission_sets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit_to" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_listen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_unlisten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit_to" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_listen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_event_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_unlisten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit_to", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit_to", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_emit_to", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_emit_to_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_listen", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_listen", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_listen", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_listen_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_unlisten", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_unlisten", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_unlisten", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_unlisten_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit_to", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit_to", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_emit_to", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_emit_to_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_listen", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_listen", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_listen", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_listen_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_unlisten", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_unlisten", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_unlisten", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_unlisten_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_default_permission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_global_scope_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permission_sets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_bytes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_rgba" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_size" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_bytes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_path" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_new" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_rgba" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_image_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_size" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_bytes", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_bytes", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_bytes", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_bytes_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_path", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_path", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_from_path", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_from_path_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_new", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_new_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_rgba", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_rgba", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_rgba", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_rgba_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_size", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_size", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_size", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_size_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_bytes", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_bytes", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_bytes", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_bytes_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_path", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_path", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_from_path", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_from_path_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_new", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_new", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_new", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_new_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_rgba", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_rgba", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_rgba", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_rgba_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_size", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_size", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_size", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_size_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_default_permission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_append" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_create_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_get" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_insert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_checked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_enabled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_popup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_prepend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_at" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_accelerator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_app_menu" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_help_menu_for_nsapp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_window_menu" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_windows_menu_for_nsapp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_checked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_enabled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_icon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_append" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_create_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_get" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_insert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_checked" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_enabled" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_core_menu_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_append", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_append", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_append", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_append_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_create_default", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_create_default", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_create_default", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_create_default_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_get", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_get", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_get", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_get_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_insert", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_insert", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_insert", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_insert_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_checked", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_checked", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_checked", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_checked_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_enabled", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_enabled", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_is_enabled", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_is_enabled_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_items_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_popup", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_popup", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_popup", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_popup_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_prepend", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_prepend", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_prepend", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_prepend_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_at", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_at", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_remove_at", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_remove_at_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_accelerator", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_accelerator", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_accelerator", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_accelerator_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_app_menu", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_app_menu", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_app_menu", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_app_menu_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_help_menu_for_nsapp", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_help_menu_for_nsapp", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_help_menu_for_nsapp", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_help_menu_for_nsapp_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_window_menu", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_window_menu", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_window_menu", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_window_menu_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_windows_menu_for_nsapp", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_windows_menu_for_nsapp", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_as_windows_menu_for_nsapp", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_as_windows_menu_for_nsapp_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_checked", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_checked", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_checked", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_checked_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_enabled", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_enabled", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_enabled", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_enabled_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_icon", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_icon", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_icon", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_icon_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_text", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_text", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_set_text", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_set_text_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_text", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_text", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_allow_text", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_allow_text_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_append", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_append", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_append", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_append_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_create_default", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_create_default", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_create_default", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_create_default_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_get", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_get", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_get", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_get_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_insert", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_insert", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_insert", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_insert_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_checked", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_checked", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_checked", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_checked_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_enabled", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_enabled", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_is_enabled", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_is_enabled_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_permissions_deny_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_acl_manifests_json_schemas_acl_manifests_deny_items_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2348", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6394", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_number" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_permissionentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6409", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6355", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_value" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6449", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "schemas_macos_schema_definitions_shellscopeentryallowedarg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6477", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions", + "target": "schemas_macos_schema_definitions_shellscopeentryallowedargs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_required" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capability", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_local" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_platforms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_remote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_webviews" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2349", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_description", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_description", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_description", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_description_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_remote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_remote_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_remote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_remote_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_local", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_local", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_local", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_local_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_windows_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_webviews", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_webviews", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_webviews", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_webviews_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_uniqueitems" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissions_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_ref" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_items_ref" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_platforms", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_platforms", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_platforms", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_platforms_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_properties" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_required" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_capabilityremote_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_urls" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_urls", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_urls", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_properties_urls", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_urls_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_permissionentry", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissionentry_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_permissionentry", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_permissionentry_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L2350", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_identifier_oneof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6357", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_value", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_value_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6356", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_value", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_value_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6396", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_number", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_number_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6395", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_number", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_number_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6410", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_target", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_target_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6411", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_definitions_target", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_macos_schema_json_schemas_macos_schema_target_oneof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6451", + "weight": 1.0, + "confidence_score": 1.0, + "source": "schemas_macos_schema_definitions_shellscopeentryallowedarg", + "target": "schemas_macos_schema_shellscopeentryallowedarg_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6450", + "weight": 1.0, + "confidence_score": 1.0, + "source": "schemas_macos_schema_definitions_shellscopeentryallowedarg", + "target": "schemas_macos_schema_shellscopeentryallowedarg_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6479", + "weight": 1.0, + "confidence_score": 1.0, + "source": "schemas_macos_schema_definitions_shellscopeentryallowedargs", + "target": "schemas_macos_schema_shellscopeentryallowedargs_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json", + "source_location": "L6478", + "weight": 1.0, + "confidence_score": 1.0, + "source": "schemas_macos_schema_definitions_shellscopeentryallowedargs", + "target": "schemas_macos_schema_shellscopeentryallowedargs_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2348", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6394", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_number" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_permissionentry" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6409", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6355", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_value" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6449", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "schemas_desktop_schema_definitions_shellscopeentryallowedarg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6477", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions", + "target": "schemas_desktop_schema_definitions_shellscopeentryallowedargs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_required" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capability", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_identifier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_local" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_platforms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_remote" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_webviews" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capability_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2349", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_description", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_description", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_description", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_description_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_remote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_remote_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_remote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_remote_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_local", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_default" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_local", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_local", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_local_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_windows", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_windows_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_webviews", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_webviews", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_webviews", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_webviews_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_permissions", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_uniqueitems" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissions_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_ref" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_items", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_items_ref" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_platforms", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_platforms", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_platforms", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_platforms_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_properties" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_required" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_capabilityremote", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_capabilityremote_properties", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_urls" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_urls", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_urls", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_items" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_properties_urls", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_urls_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_permissionentry", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissionentry_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_permissionentry", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_permissionentry_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L2350", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_identifier", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_identifier_oneof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6357", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_value", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_value_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6356", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_value", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_value_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6396", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_number", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_number_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6395", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_number", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_number_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6410", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_target", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_target_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6411", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_definitions_target", + "target": "apps_rebreak_magic_src_tauri_gen_schemas_desktop_schema_json_schemas_desktop_schema_target_oneof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6451", + "weight": 1.0, + "confidence_score": 1.0, + "source": "schemas_desktop_schema_definitions_shellscopeentryallowedarg", + "target": "schemas_desktop_schema_shellscopeentryallowedarg_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6450", + "weight": 1.0, + "confidence_score": 1.0, + "source": "schemas_desktop_schema_definitions_shellscopeentryallowedarg", + "target": "schemas_desktop_schema_shellscopeentryallowedarg_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6479", + "weight": 1.0, + "confidence_score": 1.0, + "source": "schemas_desktop_schema_definitions_shellscopeentryallowedargs", + "target": "schemas_desktop_schema_shellscopeentryallowedargs_anyof" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json", + "source_location": "L6478", + "weight": 1.0, + "confidence_score": 1.0, + "source": "schemas_desktop_schema_definitions_shellscopeentryallowedargs", + "target": "schemas_desktop_schema_shellscopeentryallowedargs_description" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_config_rs", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_pathbuf" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L5", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_config_rs", + "target": "pathbuf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_config_rs", + "target": "src_config_appconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_config_rs", + "target": "src_config_binderconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_config_rs", + "target": "src_config_desktopprotectionstate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_config_rs", + "target": "src_config_magicsession" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L16", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L16", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_string" + }, + { + "relation": "implements", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "default" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_binder_config_path" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_clear_desktop_protection" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_clear_magic_session" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_config_dir" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_config_path" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_default" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_desktop_protection_path" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_load" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_load_binder_config" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_load_desktop_protection" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_load_magic_session" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_save" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_save_desktop_protection" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_save_magic_session" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_session_path" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L210", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_set_device_id" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L219", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig", + "target": "src_config_appconfig_set_hardware_id" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L210", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_set_device_id", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L219", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_set_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L65", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_config_binderconfig", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L71", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_config_desktopprotectionstate", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L43", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_magicsession", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L47", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_magicsession_new", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L182", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_load_desktop_protection", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L139", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_load_magic_session", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L43", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_config_magicsession", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L47", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_config_magicsession_new", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L20", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_default", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_self" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_default", + "target": "src_config_magicsession_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_load", + "target": "src_config_appconfig_default" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L108", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_load", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_self" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L47", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_magicsession_new", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_self" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L139", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_load_magic_session", + "target": "src_config_magicsession" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L131", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_save_magic_session", + "target": "src_config_magicsession" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L42", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_config_magicsession", + "target": "datetime" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_magicsession", + "target": "src_config_magicsession_new" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L42", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_magicsession", + "target": "utc" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "datetime" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "datetime" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L73", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "src_config_desktopprotectionstate", + "target": "datetime" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L73", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_desktopprotectionstate", + "target": "utc" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_binder_config_path", + "target": "src_config_magicsession_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_config_dir", + "target": "src_config_magicsession_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_load_binder_config", + "target": "src_config_magicsession_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_load_desktop_protection", + "target": "src_config_magicsession_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_load_magic_session", + "target": "src_config_magicsession_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_save_desktop_protection", + "target": "src_config_magicsession_new" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_save_magic_session", + "target": "src_config_magicsession_new" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L96", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_load_binder_config", + "target": "src_config_binderconfig" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L182", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_load_desktop_protection", + "target": "src_config_desktopprotectionstate" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L174", + "weight": 1.0, + "context": "parameter_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_save_desktop_protection", + "target": "src_config_desktopprotectionstate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_binder_config_path", + "target": "src_config_appconfig_config_dir" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L77", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_config_dir", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L77", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_config_dir", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_pathbuf" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L77", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_config_dir", + "target": "pathbuf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_config_path", + "target": "src_config_appconfig_config_dir" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_desktop_protection_path", + "target": "src_config_appconfig_config_dir" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_session_path", + "target": "src_config_appconfig_config_dir" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L89", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_binder_config_path", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L199", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_clear_desktop_protection", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L159", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_clear_magic_session", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L85", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_config_path", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L170", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_desktop_protection_path", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L96", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_load_binder_config", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L182", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_load_desktop_protection", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L139", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_load_magic_session", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L120", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_save", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L174", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_save_desktop_protection", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L131", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_save_magic_session", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L127", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_session_path", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L210", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_set_device_id", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L219", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "src_config_appconfig_set_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L89", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_binder_config_path", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_pathbuf" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L85", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_config_path", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_pathbuf" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L170", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_desktop_protection_path", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_pathbuf" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L127", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_session_path", + "target": "apps_rebreak_magic_src_tauri_src_config_rs_pathbuf" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L85", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_config_path", + "target": "pathbuf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_load", + "target": "src_config_appconfig_config_path" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_save", + "target": "src_config_appconfig_config_path" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L89", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_binder_config_path", + "target": "pathbuf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_load_binder_config", + "target": "src_config_appconfig_binder_config_path" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_set_device_id", + "target": "src_config_appconfig_save" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_set_hardware_id", + "target": "src_config_appconfig_save" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_clear_magic_session", + "target": "src_config_appconfig_session_path" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_load_magic_session", + "target": "src_config_appconfig_session_path" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_save_magic_session", + "target": "src_config_appconfig_session_path" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L127", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_session_path", + "target": "pathbuf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L200", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_clear_desktop_protection", + "target": "src_config_appconfig_desktop_protection_path" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L170", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "src_config_appconfig_desktop_protection_path", + "target": "pathbuf" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_load_desktop_protection", + "target": "src_config_appconfig_desktop_protection_path" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/config.rs", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "src_config_appconfig_save_desktop_protection", + "target": "src_config_appconfig_desktop_protection_path" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_appresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "platform_macos_activate_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "platform_macos_computer_name_is_non_empty" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "platform_macos_deactivate_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "platform_macos_device_id_matches_system_uuid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "platform_macos_get_computer_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "platform_macos_get_device_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "platform_macos_get_hardware_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "platform_macos_get_platform_info" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "platform_macos_install_dns_profile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "platform_macos_read_token" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_macos_rs", + "target": "platform_macos_store_token" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L6", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_macos_get_platform_info", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L6", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_macos_get_platform_info", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_platforminfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L39", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_macos_activate_protection", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L43", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_macos_deactivate_protection", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L48", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_macos_get_computer_name", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L66", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_macos_get_device_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L48", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_macos_get_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L14", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_macos_install_dns_profile", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L34", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_macos_read_token", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L29", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_macos_store_token", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_appresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "platform_macos_activate_protection", + "target": "platform_macos_install_dns_profile" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L34", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_macos_read_token", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L34", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_macos_read_token", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L48", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_macos_get_computer_name", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L66", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_macos_get_device_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L48", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_macos_get_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_macos_rs_string" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L3", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_mod_rs", + "target": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_appresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_mod_rs", + "target": "platform_mod_activate_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_mod_rs", + "target": "platform_mod_get_device_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_mod_rs", + "target": "platform_mod_get_hardware_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_mod_rs", + "target": "platform_mod_get_hostname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_mod_rs", + "target": "platform_mod_get_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_mod_rs", + "target": "platform_mod_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_mod_rs", + "target": "platform_mod_platforminfo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_mod_rs", + "target": "platform_mod_platforminterface" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L22", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "platform_mod_platforminfo", + "target": "platform_mod_platform" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L28", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_mod_get_platform", + "target": "platform_mod_platforminfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L23", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "platform_mod_platforminfo", + "target": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L64", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_mod_get_device_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L64", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_mod_get_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L77", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_mod_get_hostname", + "target": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L28", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_mod_get_platform", + "target": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L51", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_mod_activate_protection", + "target": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L64", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_mod_get_device_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L64", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_mod_get_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/mod.rs", + "source_location": "L77", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_mod_get_hostname", + "target": "apps_rebreak_magic_src_tauri_src_platform_mod_rs_appresult" + }, + { + "relation": "imports_from", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L4", + "weight": 1.0, + "context": "import", + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_windows_rs", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_appresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_windows_rs", + "target": "platform_windows_activate_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_windows_rs", + "target": "platform_windows_deactivate_protection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_windows_rs", + "target": "platform_windows_get_computer_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_windows_rs", + "target": "platform_windows_get_device_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_windows_rs", + "target": "platform_windows_get_hardware_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_windows_rs", + "target": "platform_windows_get_platform_info" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_windows_rs", + "target": "platform_windows_install_doh" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_windows_rs", + "target": "platform_windows_read_token" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_src_tauri_src_platform_windows_rs", + "target": "platform_windows_store_token" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L6", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_windows_get_platform_info", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L6", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_windows_get_platform_info", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_platforminfo" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L58", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_windows_activate_protection", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L62", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_windows_deactivate_protection", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L67", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_windows_get_computer_name", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L82", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_windows_get_device_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L67", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_windows_get_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L14", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_windows_install_doh", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L53", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_windows_read_token", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_appresult" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L48", + "weight": 1.0, + "context": "return_type", + "confidence_score": 1.0, + "source": "platform_windows_store_token", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_appresult" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "platform_windows_activate_protection", + "target": "platform_windows_install_doh" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L53", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_windows_read_token", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_option" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L53", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_windows_read_token", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L67", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_windows_get_computer_name", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L82", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_windows_get_device_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_string" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/windows.rs", + "source_location": "L67", + "weight": 1.0, + "context": "generic_arg", + "confidence_score": 1.0, + "source": "platform_windows_get_hardware_id", + "target": "apps_rebreak_magic_src_tauri_src_platform_windows_rs_string" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_skill_json", + "target": "ui_ux_pro_max_skill_author" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_skill_json", + "target": "ui_ux_pro_max_skill_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_skill_json", + "target": "ui_ux_pro_max_skill_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_skill_json", + "target": "ui_ux_pro_max_skill_homepage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_skill_json", + "target": "ui_ux_pro_max_skill_install" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_skill_json", + "target": "ui_ux_pro_max_skill_keywords" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_skill_json", + "target": "ui_ux_pro_max_skill_license" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_skill_json", + "target": "ui_ux_pro_max_skill_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_skill_json", + "target": "ui_ux_pro_max_skill_platforms" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_skill_json", + "target": "ui_ux_pro_max_skill_repository" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/skill.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_skill_json", + "target": "ui_ux_pro_max_skill_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_author" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_bin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_dependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_devdependencies" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_keywords" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_license" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_package_json", + "target": "cli_package_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_bin", + "target": "cli_package_bin_uipro" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_scripts", + "target": "cli_package_scripts_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_scripts", + "target": "cli_package_scripts_dev" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_scripts", + "target": "cli_package_scripts_prepublishonly" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_dependencies", + "target": "cli_package_dependencies_chalk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_dependencies", + "target": "cli_package_dependencies_commander" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_dependencies", + "target": "cli_package_dependencies_ora" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_dependencies", + "target": "cli_package_dependencies_prompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_devdependencies", + "target": "cli_package_devdependencies_types_bun" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_devdependencies", + "target": "cli_package_devdependencies_types_node" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_devdependencies", + "target": "cli_package_devdependencies_types_prompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/package.json", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_package_devdependencies", + "target": "cli_package_devdependencies_typescript" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_tsconfig_json", + "target": "cli_tsconfig_compileroptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_tsconfig_json", + "target": "cli_tsconfig_exclude" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_tsconfig_json", + "target": "cli_tsconfig_include" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_tsconfig_compileroptions", + "target": "cli_tsconfig_compileroptions_allowsyntheticdefaultimports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_tsconfig_compileroptions", + "target": "cli_tsconfig_compileroptions_declaration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_tsconfig_compileroptions", + "target": "cli_tsconfig_compileroptions_esmoduleinterop" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_tsconfig_compileroptions", + "target": "cli_tsconfig_compileroptions_module" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_tsconfig_compileroptions", + "target": "cli_tsconfig_compileroptions_moduleresolution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_tsconfig_compileroptions", + "target": "cli_tsconfig_compileroptions_outdir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_tsconfig_compileroptions", + "target": "cli_tsconfig_compileroptions_resolvejsonmodule" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_tsconfig_compileroptions", + "target": "cli_tsconfig_compileroptions_rootdir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_tsconfig_compileroptions", + "target": "cli_tsconfig_compileroptions_skiplibcheck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_tsconfig_compileroptions", + "target": "cli_tsconfig_compileroptions_strict" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/tsconfig.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_tsconfig_compileroptions", + "target": "cli_tsconfig_compileroptions_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_ansi_ljust" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L1101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_detect_page_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L282", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_ascii_box" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L422", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_markdown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L612", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_master_md" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L886", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_page_override_md" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L532", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_design_system" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L995", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_hex_to_ansi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L561", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_persist_design_system" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L275", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_section_header" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_extract_results" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_find_reasoning_rule" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_init" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_load_reasoning" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_multi_domain_search" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_select_best_match" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L548", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_38", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_init", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_load_reasoning" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_44", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_load_reasoning" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_multi_domain_search" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_multi_domain_search", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_52", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_multi_domain_search" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_ansi_ljust", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_find_reasoning_rule", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L1101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_detect_page_type", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L282", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_ascii_box", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L422", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_markdown", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L612", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_master_md", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L886", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_page_override_md", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L532", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L995", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_hex_to_ansi", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L561", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_persist_design_system", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L275", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_section_header", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_find_reasoning_rule" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_65", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_find_reasoning_rule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_89", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_select_best_match" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_123", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_select_best_match" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_extract_results" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_160", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_extract_results" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L549", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_164", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L370", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_ascii_box", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_hex_to_ansi" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_254", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_hex_to_ansi" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_ansi_ljust", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_int" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L320", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_ascii_box", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_ansi_ljust" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_268", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_ansi_ljust" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L275", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_section_header", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_int" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L325", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_ascii_box", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_section_header" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L276", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_276", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_section_header" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L557", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_ascii_box" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L283", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_283", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_ascii_box" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L556", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_markdown" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L423", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_423", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_markdown" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L532", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_bool" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L553", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_persist_design_system" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L534", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_534", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_design_system" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L592", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_persist_design_system", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_master_md" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L600", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_persist_design_system", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_page_override_md" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L562", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_562", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_persist_design_system" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L613", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_613", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_master_md" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L893", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_page_override_md", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L887", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_887", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_format_page_override_md" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L1019", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_detect_page_type" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L996", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_996", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py", + "source_location": "L1102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_rationale_1102", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_design_system_py_scripts_design_system_detect_page_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_detect_domain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_load_csv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_csv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_stack" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_90", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_fit" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_init" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_score" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_tokenize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_csv", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_103", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_tokenize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_fit", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_tokenize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_score", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_tokenize" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_108", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_fit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_csv", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_fit" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_127", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_score" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_csv", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_bm25_score" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_153", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_load_csv" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_csv", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_load_csv" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_159", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_csv" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_csv" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_stack", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_csv" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_184", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_detect_domain" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_detect_domain", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L207", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_207", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_229", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_core_py_scripts_core_search_stack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/search.py", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_search_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_search_py_scripts_search_format_output" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/scripts/search.py", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_search_py_scripts_search_rationale_31", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_scripts_search_py_scripts_search_format_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_cursor_json_platforms_cursor_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_roocode_json_platforms_roocode_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_droid_json_platforms_droid_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_agent_json_platforms_agent_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_windsurf_json_platforms_windsurf_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_augment_json_platforms_augment_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codebuddy_json_platforms_codebuddy_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_warp_json_platforms_warp_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kiro_json_platforms_kiro_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_gemini_json_platforms_gemini_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_opencode_json_platforms_opencode_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_copilot_json_platforms_copilot_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_trae_json_platforms_trae_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_continue_json_platforms_continue_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_claude_json_platforms_claude_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_qoder_json_platforms_qoder_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_codex_json_platforms_codex_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_sections", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_platforms_kilocode_json_platforms_kilocode_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_blend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_row" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_ui_reasoning" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_h2r" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_is_dark" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_lum" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_on_color" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_r2h" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_rebuild_colors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L359", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_rebuild_ui_reasoning" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_shift" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_blend", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_h2r" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_lum", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_h2r" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_shift", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_h2r" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_blend", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_r2h" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_shift", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_r2h" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_is_dark", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_lum" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_on_color", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_lum" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_row", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_is_dark" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_row", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_on_color" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_row", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_blend" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_row", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_shift" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_rationale_43", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_row" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_rebuild_colors", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_row" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_rationale_251", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_ui_reasoning" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py", + "source_location": "L394", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_rebuild_ui_reasoning", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_data_sync_all_py_data_sync_all_derive_ui_reasoning" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "commands_init_initcommand" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "commands_uninstall_uninstallcommand" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "commands_update_updatecommand" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "commands_versions_versionscommand" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_commands_versions_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "src_index_dirname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "src_index_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "src_index_pkg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "src_index_program" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "types_index_ai_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/index.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_index_ts", + "target": "types_index_aitype" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts", + "target": "types_index_ai_folders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts", + "target": "types_index_ai_types" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts", + "target": "types_index_aitype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts", + "target": "types_index_asset" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts", + "target": "types_index_installconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts", + "target": "types_index_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts", + "target": "types_index_platformconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/types/index.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts", + "target": "types_index_release" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/detect.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_detect_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_types_index_ts" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_init_initoptions", + "target": "types_index_aitype" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_uninstall_uninstalloptions", + "target": "types_index_aitype" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_update_updateoptions", + "target": "types_index_aitype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "types_index_aitype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "types_index_aitype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts", + "target": "types_index_aitype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/detect.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_detect_ts", + "target": "types_index_aitype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "types_index_aitype" + }, + { + "relation": "references", + "context": "field", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/detect.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_detect_detectionresult", + "target": "types_index_aitype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts", + "target": "types_index_release" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "types_index_ai_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "types_index_ai_types" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "types_index_ai_folders" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "types_index_ai_folders" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "utils_extract_cleanup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "utils_extract_copyfolders" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "utils_extract_createtempdir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "utils_extract_excluded_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "utils_extract_execasync" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "utils_extract_exists" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "utils_extract_extractzip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "utils_extract_findextractedroot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_extract_ts", + "target": "utils_extract_installfromzip" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_extract_copyfolders", + "target": "utils_extract_execasync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_extract_extractzip", + "target": "utils_extract_execasync" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L135", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_extract_installfromzip", + "target": "utils_extract_extractzip" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_extract_copyfolders", + "target": "utils_extract_exists" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L176", + "weight": 1.0, + "source": "commands_init_initcommand", + "target": "utils_extract_copyfolders" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_extract_copyfolders" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_extract_installfromzip", + "target": "utils_extract_copyfolders" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_init_trygithubinstall", + "target": "utils_extract_cleanup" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_extract_cleanup" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_extract_installfromzip", + "target": "utils_extract_cleanup" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_init_trygithubinstall", + "target": "utils_extract_createtempdir" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_extract_createtempdir" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_extract_installfromzip", + "target": "utils_extract_createtempdir" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_extract_installfromzip", + "target": "utils_extract_findextractedroot" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_init_trygithubinstall", + "target": "utils_extract_installfromzip" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_extract_installfromzip" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_utils_detect_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_utils_detect_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/detect.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_detect_ts", + "target": "utils_detect_detectaitype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/detect.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_detect_ts", + "target": "utils_detect_detectionresult" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/detect.ts", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_detect_ts", + "target": "utils_detect_getaitypedescription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L124", + "weight": 1.0, + "source": "commands_init_initcommand", + "target": "utils_detect_detectaitype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L47", + "weight": 1.0, + "source": "commands_uninstall_uninstallcommand", + "target": "utils_detect_detectaitype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_detect_detectaitype" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "utils_detect_detectaitype" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L151", + "weight": 1.0, + "source": "commands_init_initcommand", + "target": "utils_detect_getaitypedescription" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L87", + "weight": 1.0, + "source": "commands_uninstall_uninstallcommand", + "target": "utils_detect_getaitypedescription" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_detect_getaitypedescription" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "utils_detect_getaitypedescription" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/versions.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_versions_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts", + "target": "utils_github_checkratelimit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts", + "target": "utils_github_downloadrelease" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts", + "target": "utils_github_fetchreleases" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts", + "target": "utils_github_getasseturl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts", + "target": "utils_github_getlatestrelease" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts", + "target": "utils_github_githubdownloaderror" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_github_ts", + "target": "utils_github_githubratelimiterror" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_github_githubratelimiterror" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_github_githubratelimiterror", + "target": "utils_github_githubratelimiterror_constructor" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_github_githubdownloaderror" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_github_githubdownloaderror", + "target": "utils_github_githubdownloaderror_constructor" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_github_downloadrelease", + "target": "utils_github_checkratelimit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_github_fetchreleases", + "target": "utils_github_checkratelimit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_github_getlatestrelease", + "target": "utils_github_checkratelimit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/versions.ts", + "source_location": "L10", + "weight": 1.0, + "source": "commands_versions_versionscommand", + "target": "utils_github_fetchreleases" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/versions.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_versions_ts", + "target": "utils_github_fetchreleases" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_init_trygithubinstall", + "target": "utils_github_getlatestrelease" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L18", + "weight": 1.0, + "source": "commands_update_updatecommand", + "target": "utils_github_getlatestrelease" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_github_getlatestrelease" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts", + "target": "utils_github_getlatestrelease" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_init_trygithubinstall", + "target": "utils_github_downloadrelease" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_github_downloadrelease" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_init_trygithubinstall", + "target": "utils_github_getasseturl" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_github_getasseturl" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_ai_to_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_assets_dir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_copydataandscripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_dirname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_exists" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_generateallplatformfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L187", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_generateplatformfiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_getsupportedaitypes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_loadallplatformconfigs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_loadplatformconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_loadtemplate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_platformconfig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_renderfrontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_template_ts", + "target": "utils_template_renderskillfile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_template_copydataandscripts", + "target": "utils_template_exists" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L192", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_template_generateplatformfiles", + "target": "utils_template_loadplatformconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_template_loadallplatformconfigs", + "target": "utils_template_loadplatformconfig" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_template_renderskillfile", + "target": "utils_template_loadtemplate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_template_renderskillfile", + "target": "utils_template_renderfrontmatter" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_template_generateplatformfiles", + "target": "utils_template_renderskillfile" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_template_generateplatformfiles", + "target": "utils_template_copydataandscripts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_init_templateinstall", + "target": "utils_template_generateplatformfiles" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_template_generateplatformfiles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "utils_template_generateallplatformfiles", + "target": "utils_template_generateplatformfiles" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_init_templateinstall", + "target": "utils_template_generateallplatformfiles" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_template_generateallplatformfiles" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_utils_logger_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_utils_logger_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_utils_logger_ts" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/versions.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_versions_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_utils_logger_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/utils/logger.ts", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_utils_logger_ts", + "target": "utils_logger_logger" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "utils_logger_logger" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "utils_logger_logger" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts", + "target": "utils_logger_logger" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/versions.ts", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_versions_ts", + "target": "utils_logger_logger" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "commands_init_assets_dir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "commands_init_dirname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "commands_init_initcommand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "commands_init_initoptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "commands_init_templateinstall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts", + "target": "commands_init_trygithubinstall" + }, + { + "relation": "imports_from", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts", + "target": "sixth_skills_ui_ux_pro_max_cli_src_commands_init_ts" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_init_initcommand", + "target": "commands_init_trygithubinstall" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_init_initcommand", + "target": "commands_init_templateinstall" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "confidence_score": 1.0, + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L25", + "weight": 1.0, + "source": "commands_update_updatecommand", + "target": "commands_init_initcommand" + }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts", + "target": "commands_init_initcommand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/versions.ts", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_versions_ts", + "target": "commands_versions_versionscommand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "commands_uninstall_removeskilldir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "commands_uninstall_uninstallcommand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_uninstall_ts", + "target": "commands_uninstall_uninstalloptions" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "commands_uninstall_uninstallcommand", + "target": "commands_uninstall_removeskilldir" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts", + "target": "commands_update_updatecommand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_src_commands_update_ts", + "target": "commands_update_updateoptions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_marketplace_json", + "target": "claude_plugin_marketplace_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_marketplace_json", + "target": "claude_plugin_marketplace_metadata" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_marketplace_json", + "target": "claude_plugin_marketplace_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_marketplace_json", + "target": "claude_plugin_marketplace_owner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_marketplace_json", + "target": "claude_plugin_marketplace_plugins" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "claude_plugin_marketplace_owner", + "target": "claude_plugin_marketplace_owner_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "claude_plugin_marketplace_metadata", + "target": "claude_plugin_marketplace_metadata_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "claude_plugin_marketplace_metadata", + "target": "claude_plugin_marketplace_metadata_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_plugin_json", + "target": "claude_plugin_plugin_author" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_plugin_json", + "target": "claude_plugin_plugin_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_plugin_json", + "target": "claude_plugin_plugin_keywords" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_plugin_json", + "target": "claude_plugin_plugin_license" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_plugin_json", + "target": "claude_plugin_plugin_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_plugin_json", + "target": "claude_plugin_plugin_skills" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_plugin_plugin_json", + "target": "claude_plugin_plugin_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "claude_plugin_plugin_author", + "target": "claude_plugin_plugin_author_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_ansi_ljust" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L1101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_detect_page_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L282", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_ascii_box" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L422", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_markdown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L612", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_master_md" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L886", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_page_override_md" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L532", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_design_system" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L995", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_hex_to_ansi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L561", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_persist_design_system" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L275", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_section_header" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_extract_results" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_find_reasoning_rule" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_init" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_load_reasoning" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_multi_domain_search" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_select_best_match" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L548", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_38", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_init", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_load_reasoning" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_44", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_load_reasoning" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_multi_domain_search" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_multi_domain_search", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_52", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_multi_domain_search" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_ansi_ljust", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_find_reasoning_rule", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L1101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_detect_page_type", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L282", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_ascii_box", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L422", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_markdown", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "return_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L612", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_master_md", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L886", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_page_override_md", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L532", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L995", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_hex_to_ansi", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L561", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_persist_design_system", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L275", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_section_header", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_str" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_find_reasoning_rule" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_65", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_find_reasoning_rule" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_89", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_apply_reasoning" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_select_best_match" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_123", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_select_best_match" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_extract_results" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_160", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_extract_results" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L549", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_164", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_designsystemgenerator_generate" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L370", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_ascii_box", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_hex_to_ansi" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_254", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_hex_to_ansi" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_ansi_ljust", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_int" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L320", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_ascii_box", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_ansi_ljust" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_268", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_ansi_ljust" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L275", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_section_header", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_int" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L325", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_ascii_box", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_section_header" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L276", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_276", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_section_header" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L557", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_ascii_box" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L283", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_283", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_ascii_box" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L556", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_markdown" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L423", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_423", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_markdown" + }, + { + "relation": "references", + "context": "parameter_type", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L532", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_bool" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L553", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_design_system", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_persist_design_system" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L534", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_534", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_design_system" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L592", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_persist_design_system", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_master_md" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L600", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_persist_design_system", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_page_override_md" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L562", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_562", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_persist_design_system" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L613", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_613", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_master_md" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L893", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_page_override_md", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L887", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_887", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_format_page_override_md" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L1019", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_detect_page_type" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L996", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_996", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_generate_intelligent_overrides" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py", + "source_location": "L1102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_rationale_1102", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_design_system_py_scripts_design_system_detect_page_type" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_detect_domain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_load_csv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_csv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_stack" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_105", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_fit" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_init" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_score" + }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_tokenize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_csv", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_118", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_tokenize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_fit", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_tokenize" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_score", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_tokenize" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_123", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_fit" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_csv", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_fit" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_142", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_score" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_csv", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_bm25_score" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_168", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_load_csv" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L178", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_csv", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_load_csv" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_174", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_csv" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_csv" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_stack", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_csv" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_199", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_detect_domain" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L216", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_detect_domain", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_222", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "scripts_core_rationale_244", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_core_py_scripts_core_search_stack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/search.py", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_search_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_search_py_scripts_search_format_output" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/search.py", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_search_py_scripts_search_rationale_31", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_scripts_search_py_scripts_search_format_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_cursor_json_platforms_cursor_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_roocode_json_platforms_roocode_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_droid_json_platforms_droid_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_agent_json_platforms_agent_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_windsurf_json_platforms_windsurf_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_augment_json_platforms_augment_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codebuddy_json_platforms_codebuddy_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_warp_json_platforms_warp_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kiro_json_platforms_kiro_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_gemini_json_platforms_gemini_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_opencode_json_platforms_opencode_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_copilot_json_platforms_copilot_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_trae_json_platforms_trae_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_continue_json_platforms_continue_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_claude_json_platforms_claude_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_qoder_json_platforms_qoder_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_codex_json_platforms_codex_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_displayname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_folderstructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_frontmatter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_installtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_scriptpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_sections" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_skillorworkflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_filename" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_root" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_folderstructure", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_folderstructure_skillpath" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_frontmatter_description" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_frontmatter", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_frontmatter_name" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_sections", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_platforms_kilocode_json_platforms_kilocode_sections_quickreference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_blend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_row" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_ui_reasoning" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_h2r" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_is_dark" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_lum" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_on_color" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_r2h" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_rebuild_colors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L359", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_rebuild_ui_reasoning" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_shift" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_blend", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_h2r" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_lum", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_h2r" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_shift", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_h2r" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_blend", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_r2h" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_shift", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_r2h" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_is_dark", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_lum" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_on_color", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_lum" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L44", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_row", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_is_dark" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_row", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_on_color" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_row", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_blend" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_row", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_shift" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_rationale_43", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_row" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_rebuild_colors", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_row" + }, + { + "relation": "rationale_for", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_rationale_251", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_ui_reasoning" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py", + "source_location": "L394", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_rebuild_ui_reasoning", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_data_sync_all_py_data_sync_all_derive_ui_reasoning" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_md", + "target": "backend_magic_api_rebreakmagic_device_binding_api_documentation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_rebreakmagic_device_binding_api_documentation", + "target": "backend_magic_api_adguard_integration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_rebreakmagic_device_binding_api_documentation", + "target": "backend_magic_api_architektur_\u00fcberblick" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L255", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_rebreakmagic_device_binding_api_documentation", + "target": "backend_magic_api_cron_worker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_rebreakmagic_device_binding_api_documentation", + "target": "backend_magic_api_db_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_rebreakmagic_device_binding_api_documentation", + "target": "backend_magic_api_endpoints" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L271", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_rebreakmagic_device_binding_api_documentation", + "target": "backend_magic_api_env_variablen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L281", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_rebreakmagic_device_binding_api_documentation", + "target": "backend_magic_api_todos_phase_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_endpoints", + "target": "backend_magic_api_1_post_api_magic_register" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_endpoints", + "target": "backend_magic_api_2_get_api_magic_devices" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_endpoints", + "target": "backend_magic_api_3_post_api_magic_devices_deviceid_request_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_endpoints", + "target": "backend_magic_api_4_post_api_magic_devices_deviceid_cancel_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/MAGIC_API.md", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_magic_api_endpoints", + "target": "backend_magic_api_5_get_api_magic_profile_mobileconfig_token_dnstoken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_md", + "target": "backend_env_vars_backend_environment_variables" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_backend_environment_variables", + "target": "backend_env_vars_admin_cron" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_backend_environment_variables", + "target": "backend_env_vars_bot_user_ids" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_backend_environment_variables", + "target": "backend_env_vars_core_database" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_backend_environment_variables", + "target": "backend_env_vars_email_external_apis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_backend_environment_variables", + "target": "backend_env_vars_llm_provider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_backend_environment_variables", + "target": "backend_env_vars_oauth" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_backend_environment_variables", + "target": "backend_env_vars_public_client_readable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_backend_environment_variables", + "target": "backend_env_vars_rebreakmagic_dns_over_https_neu_2026_06_01" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_backend_environment_variables", + "target": "backend_env_vars_stripe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_backend_environment_variables", + "target": "backend_env_vars_supabase_server_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/ENV_VARS.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_env_vars_backend_environment_variables", + "target": "backend_env_vars_tts_provider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_docs_mail_outlook_oauth_plan_md", + "target": "docs_mail_outlook_oauth_plan_outlook_oauth2_implementierungsplan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_outlook_oauth2_implementierungsplan", + "target": "docs_mail_outlook_oauth_plan_1_status_recherche_microsoft_basic_auth_deprecation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_outlook_oauth2_implementierungsplan", + "target": "docs_mail_outlook_oauth_plan_2_architektur_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L257", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_outlook_oauth2_implementierungsplan", + "target": "docs_mail_outlook_oauth_plan_3_connectmailsheet_ux_plan_fuer_rebreak_native_ui_agent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_outlook_oauth2_implementierungsplan", + "target": "docs_mail_outlook_oauth_plan_4_dsgvo_compliance_aspekte_fuer_hans_mueller_dsb_review" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L368", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_outlook_oauth2_implementierungsplan", + "target": "docs_mail_outlook_oauth_plan_5_aufwands_schaetzung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L436", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_outlook_oauth2_implementierungsplan", + "target": "docs_mail_outlook_oauth_plan_6_abhaengigkeiten_und_naechste_schritte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L463", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_outlook_oauth2_implementierungsplan", + "target": "docs_mail_outlook_oauth_plan_7_was_wir_heute_sofort_tun_koennen_ohne_schema_change" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_1_status_recherche_microsoft_basic_auth_deprecation", + "target": "docs_mail_outlook_oauth_plan_benoetigte_oauth_scopes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_1_status_recherche_microsoft_basic_auth_deprecation", + "target": "docs_mail_outlook_oauth_plan_consumer_identity_platform_vs_azure_ad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_1_status_recherche_microsoft_basic_auth_deprecation", + "target": "docs_mail_outlook_oauth_plan_edge_cases" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_1_status_recherche_microsoft_basic_auth_deprecation", + "target": "docs_mail_outlook_oauth_plan_was_ist_passiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_2_architektur_plan", + "target": "docs_mail_outlook_oauth_plan_2_1_azure_app_registrierung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_2_architektur_plan", + "target": "docs_mail_outlook_oauth_plan_2_2_oauth_flow_bff_pattern_backend_mediated" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_2_architektur_plan", + "target": "docs_mail_outlook_oauth_plan_2_3_token_storage_schema_aenderung_eskalation_an_rebreak_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_2_architektur_plan", + "target": "docs_mail_outlook_oauth_plan_2_4_imap_connect_logik_xoauth2_in_imapflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L216", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_2_architektur_plan", + "target": "docs_mail_outlook_oauth_plan_2_5_token_refresh_flow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L259", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_3_connectmailsheet_ux_plan_fuer_rebreak_native_ui_agent", + "target": "docs_mail_outlook_oauth_plan_geaenderter_flow_fuer_outlook" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L317", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_4_dsgvo_compliance_aspekte_fuer_hans_mueller_dsb_review", + "target": "docs_mail_outlook_oauth_plan_4_1_microsoft_als_sub_auftragsverarbeiter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L327", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_4_dsgvo_compliance_aspekte_fuer_hans_mueller_dsb_review", + "target": "docs_mail_outlook_oauth_plan_4_2_token_speicherung_sensibler_als_passwort" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L340", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_4_dsgvo_compliance_aspekte_fuer_hans_mueller_dsb_review", + "target": "docs_mail_outlook_oauth_plan_4_3_datenminimierung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L349", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_4_dsgvo_compliance_aspekte_fuer_hans_mueller_dsb_review", + "target": "docs_mail_outlook_oauth_plan_4_4_loeschpflicht_widerrufs_pflicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L360", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_4_dsgvo_compliance_aspekte_fuer_hans_mueller_dsb_review", + "target": "docs_mail_outlook_oauth_plan_4_5_speicherort" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L370", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_5_aufwands_schaetzung", + "target": "docs_mail_outlook_oauth_plan_mvp_scope" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L389", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_5_aufwands_schaetzung", + "target": "docs_mail_outlook_oauth_plan_risiken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L448", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_6_abhaengigkeiten_und_naechste_schritte", + "target": "docs_mail_outlook_oauth_plan_entscheidung_vor_implementierungsstart" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L456", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_6_abhaengigkeiten_und_naechste_schritte", + "target": "docs_mail_outlook_oauth_plan_kein_handlungsbedarf_bis_schema_migration_done" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-plan.md", + "source_location": "L438", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_plan_6_abhaengigkeiten_und_naechste_schritte", + "target": "docs_mail_outlook_oauth_plan_sofortige_eskalationen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_docs_mail_custom_keywords_plan_md", + "target": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan", + "target": "docs_mail_custom_keywords_plan_1_use_case_motivation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan", + "target": "docs_mail_custom_keywords_plan_2_architektur_vorschlag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan", + "target": "docs_mail_custom_keywords_plan_3_schema_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan", + "target": "docs_mail_custom_keywords_plan_4_tier_gating" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan", + "target": "docs_mail_custom_keywords_plan_5_ux_anforderungen_f\u00fcr_rebreak_native_ui" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan", + "target": "docs_mail_custom_keywords_plan_6_dsgvo_aspekte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan", + "target": "docs_mail_custom_keywords_plan_7_performance_false_positive_risiken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L301", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan", + "target": "docs_mail_custom_keywords_plan_8_aufwand_sch\u00e4tzung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L321", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan", + "target": "docs_mail_custom_keywords_plan_9_open_questions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L343", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_mail_custom_keywords_architektur_plan", + "target": "docs_mail_custom_keywords_plan_eskalationen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_2_architektur_vorschlag", + "target": "docs_mail_custom_keywords_plan_2_1_aktueller_filter_pfad_ist_zustand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_2_architektur_vorschlag", + "target": "docs_mail_custom_keywords_plan_2_2_ziel_architektur_soll_zustand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_2_architektur_vorschlag", + "target": "docs_mail_custom_keywords_plan_2_3_keyword_laden_wann_und_wie" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_3_schema_spec", + "target": "docs_mail_custom_keywords_plan_3_1_neue_tabelle_user_mail_keywords" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_3_schema_spec", + "target": "docs_mail_custom_keywords_plan_3_2_matchscope_statt_matchtype" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_3_schema_spec", + "target": "docs_mail_custom_keywords_plan_3_3_limits_pro_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_4_tier_gating", + "target": "docs_mail_custom_keywords_plan_4_1_wo_wird_gegated" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_4_tier_gating", + "target": "docs_mail_custom_keywords_plan_4_2_downgrade_handling" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_4_tier_gating", + "target": "docs_mail_custom_keywords_plan_4_3_plan_check_beim_schreiben" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_5_ux_anforderungen_f\u00fcr_rebreak_native_ui", + "target": "docs_mail_custom_keywords_plan_5_1_platzierung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_5_ux_anforderungen_f\u00fcr_rebreak_native_ui", + "target": "docs_mail_custom_keywords_plan_5_2_eingabe_pattern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_5_ux_anforderungen_f\u00fcr_rebreak_native_ui", + "target": "docs_mail_custom_keywords_plan_5_3_validation_im_ui_vor_api_call" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_5_ux_anforderungen_f\u00fcr_rebreak_native_ui", + "target": "docs_mail_custom_keywords_plan_5_4_feedback_wenn_keyword_treffer_erzielt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L219", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_6_dsgvo_aspekte", + "target": "docs_mail_custom_keywords_plan_6_1_klassifikation_der_keywords" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_6_dsgvo_aspekte", + "target": "docs_mail_custom_keywords_plan_6_2_verschl\u00fcsselung_at_rest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_6_dsgvo_aspekte", + "target": "docs_mail_custom_keywords_plan_6_3_audit_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_6_dsgvo_aspekte", + "target": "docs_mail_custom_keywords_plan_6_4_datenl\u00f6schung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L245", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_7_performance_false_positive_risiken", + "target": "docs_mail_custom_keywords_plan_7_1_performance_analyse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L278", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_7_performance_false_positive_risiken", + "target": "docs_mail_custom_keywords_plan_7_2_false_positive_risiken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-custom-keywords-plan.md", + "source_location": "L295", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_custom_keywords_plan_7_performance_false_positive_risiken", + "target": "docs_mail_custom_keywords_plan_7_3_regex_injection" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_docs_consent_gap_plan_md", + "target": "docs_consent_gap_plan_consent_gap_plan_art_9_dsgvo_mail_auto_delete" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_consent_gap_plan_art_9_dsgvo_mail_auto_delete", + "target": "docs_consent_gap_plan_consent_text_bump_workflow_f\u00fcr_k\u00fcnftige_dsb_updates" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_consent_gap_plan_art_9_dsgvo_mail_auto_delete", + "target": "docs_consent_gap_plan_frontend_spec_f\u00fcr_rebreak_native_ui_ui_agent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_consent_gap_plan_art_9_dsgvo_mail_auto_delete", + "target": "docs_consent_gap_plan_nicht_gemacht_explizit_aus_scope_ausgeschlossen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_consent_gap_plan_art_9_dsgvo_mail_auto_delete", + "target": "docs_consent_gap_plan_todo_1_mo_mail_stack_daemon" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_consent_gap_plan_art_9_dsgvo_mail_auto_delete", + "target": "docs_consent_gap_plan_todo_2_mo_oauth_token_revoke_bei_disconnect" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_consent_gap_plan_art_9_dsgvo_mail_auto_delete", + "target": "docs_consent_gap_plan_todo_3_datenexport_art_15_dsgvo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_consent_gap_plan_art_9_dsgvo_mail_auto_delete", + "target": "docs_consent_gap_plan_was_wurde_implementiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_was_wurde_implementiert", + "target": "docs_consent_gap_plan_aktuelle_consent_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_was_wurde_implementiert", + "target": "docs_consent_gap_plan_backend_dateien" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_was_wurde_implementiert", + "target": "docs_consent_gap_plan_schema_migration_20260513_art9_consent_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_frontend_spec_f\u00fcr_rebreak_native_ui_ui_agent", + "target": "docs_consent_gap_plan_connectmailsheet_consent_gate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_frontend_spec_f\u00fcr_rebreak_native_ui_ui_agent", + "target": "docs_consent_gap_plan_empfehlung_get_api_mail_connections_consent_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/consent-gap-plan.md", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_consent_gap_plan_frontend_spec_f\u00fcr_rebreak_native_ui_ui_agent", + "target": "docs_consent_gap_plan_re_consent_modal_f\u00fcr_bestandsuser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_docs_mail_outlook_oauth_dsgvo_review_md", + "target": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth", + "target": "docs_mail_outlook_oauth_dsgvo_review_10_quellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth", + "target": "docs_mail_outlook_oauth_dsgvo_review_1_gesamteinsch\u00e4tzung_executive_summary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth", + "target": "docs_mail_outlook_oauth_dsgvo_review_2_sub_auftragsverarbeiter_konstellation_art_28_dsgvo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth", + "target": "docs_mail_outlook_oauth_dsgvo_review_3_verarbeitungsverzeichnis_art_30_dsgvo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth", + "target": "docs_mail_outlook_oauth_dsgvo_review_4_datenschutzerkl\u00e4rung_update_pflicht_art_13_dsgvo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth", + "target": "docs_mail_outlook_oauth_dsgvo_review_5_betroffenenrechte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth", + "target": "docs_mail_outlook_oauth_dsgvo_review_6_art_9_dsgvo_besondere_kategorie_suchterkrankung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L187", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth", + "target": "docs_mail_outlook_oauth_dsgvo_review_7_diga_aspekte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth", + "target": "docs_mail_outlook_oauth_dsgvo_review_8_konkrete_to_do_liste_priorisiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_datenschutz_memo_microsoft_als_sub_auftragsverarbeiter_outlook_imap_oauth", + "target": "docs_mail_outlook_oauth_dsgvo_review_9_was_ich_nicht_entscheiden_kann_anwalts_themen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_2_sub_auftragsverarbeiter_konstellation_art_28_dsgvo", + "target": "docs_mail_outlook_oauth_dsgvo_review_2_1_rolle_von_microsoft" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_2_sub_auftragsverarbeiter_konstellation_art_28_dsgvo", + "target": "docs_mail_outlook_oauth_dsgvo_review_2_2_rechtsgrundlage_f\u00fcr_die_sub_av_beauftragung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_2_sub_auftragsverarbeiter_konstellation_art_28_dsgvo", + "target": "docs_mail_outlook_oauth_dsgvo_review_2_3_drittland_transfer_kapitel_v_dsgvo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_3_verarbeitungsverzeichnis_art_30_dsgvo", + "target": "docs_mail_outlook_oauth_dsgvo_review_3_1_neue_vvt_zeile_outlook_mail_anbindung_via_oauth2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_3_verarbeitungsverzeichnis_art_30_dsgvo", + "target": "docs_mail_outlook_oauth_dsgvo_review_3_2_sub_av_liste_aktualisieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_4_datenschutzerkl\u00e4rung_update_pflicht_art_13_dsgvo", + "target": "docs_mail_outlook_oauth_dsgvo_review_4_1_neuer_textbaustein_vorschlag_anwaltlich_final_reviewen_lassen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_4_datenschutzerkl\u00e4rung_update_pflicht_art_13_dsgvo", + "target": "docs_mail_outlook_oauth_dsgvo_review_4_2_unterschied_oauth_token_storage_vs_app_passwort_storage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_5_betroffenenrechte", + "target": "docs_mail_outlook_oauth_dsgvo_review_5_1_recht_auf_l\u00f6schung_art_17" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_5_betroffenenrechte", + "target": "docs_mail_outlook_oauth_dsgvo_review_5_2_auskunftspflicht_art_15" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_6_art_9_dsgvo_besondere_kategorie_suchterkrankung", + "target": "docs_mail_outlook_oauth_dsgvo_review_6_1_der_outing_effekt_gegen\u00fcber_microsoft" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/docs/mail-outlook-oauth-dsgvo-review.md", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_mail_outlook_oauth_dsgvo_review_6_art_9_dsgvo_besondere_kategorie_suchterkrankung", + "target": "docs_mail_outlook_oauth_dsgvo_review_6_2_rechtsgrundlage_art_9_abs_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "backend_imap_idle_readme_md", + "target": "imap_idle_readme_rebreak_imap_idle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/README.md", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_readme_rebreak_imap_idle", + "target": "imap_idle_readme_env_vars" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/README.md", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_readme_rebreak_imap_idle", + "target": "imap_idle_readme_logs_pm2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/README.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_readme_rebreak_imap_idle", + "target": "imap_idle_readme_lokal_starten_entwicklung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/README.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_readme_rebreak_imap_idle", + "target": "imap_idle_readme_pm2_produktion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "backend/imap-idle/README.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "imap_idle_readme_rebreak_imap_idle", + "target": "imap_idle_readme_was_er_macht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_md", + "target": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_bonus_task_optional_scope" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_critical_naming_contract_do_not_rename_existing_names" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_deliverables_emotion_states" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_deliverables_you_provide" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_how_to_apply" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_how_to_use_this_brief_internal_not_for_animator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_project_rebreak_lyra_avatar_animation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_questions_to_ask_before_starting_please_answer_in_your_application" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_sources_internal_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_technical_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_timeline_budget" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_visual_style_guidelines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_what_i_have_current_riv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_rive_animator_brief_lyra_avatar_emotion_states", + "target": "docs_rive_animator_brief_what_i_value_in_your_work" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_deliverables_emotion_states", + "target": "docs_rive_animator_brief_skip_these_anti_patterns_for_recovery_use_case" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_deliverables_emotion_states", + "target": "docs_rive_animator_brief_tier_1_must_have_4_states_baseline_budget" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/RIVE_ANIMATOR_BRIEF.md", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_rive_animator_brief_deliverables_emotion_states", + "target": "docs_rive_animator_brief_tier_2_nice_to_have_2_3_more_states_push_budget_if_you_can" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_protection_coverage_streak_md", + "target": "specs_protection_coverage_streak_spec_protection_coverage_streak_diga_kernmetrik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_protection_coverage_streak_spec_protection_coverage_streak_diga_kernmetrik", + "target": "specs_protection_coverage_streak_1_datenmodell_protection_state_log_neu_append_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_protection_coverage_streak_spec_protection_coverage_streak_diga_kernmetrik", + "target": "specs_protection_coverage_streak_2_ingestion_wann_wird_geloggt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_protection_coverage_streak_spec_protection_coverage_streak_diga_kernmetrik", + "target": "specs_protection_coverage_streak_3_compute_get_api_protection_coverage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_protection_coverage_streak_spec_protection_coverage_streak_diga_kernmetrik", + "target": "specs_protection_coverage_streak_4_frontend_profile_streak_section_ersetzt_alte_logik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_protection_coverage_streak_spec_protection_coverage_streak_diga_kernmetrik", + "target": "specs_protection_coverage_streak_5_scope_guards" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/protection-coverage-streak.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_protection_coverage_streak_spec_protection_coverage_streak_diga_kernmetrik", + "target": "specs_protection_coverage_streak_leitprinzip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_magic_re_hardening_md", + "target": "specs_magic_re_hardening_rebreak_magic_re_hardening_assessment_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_rebreak_magic_re_hardening_assessment_plan", + "target": "specs_magic_re_hardening_1_re_exposure_analyse_was_liegt_aktuell_offen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_rebreak_magic_re_hardening_assessment_plan", + "target": "specs_magic_re_hardening_2_sicherheitsbewertung_was_ist_tats\u00e4chlich_kritisch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_rebreak_magic_re_hardening_assessment_plan", + "target": "specs_magic_re_hardening_3_h\u00e4rtungs_plan_priorisiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_rebreak_magic_re_hardening_assessment_plan", + "target": "specs_magic_re_hardening_4_zusammenfassung_nach_plattform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_rebreak_magic_re_hardening_assessment_plan", + "target": "specs_magic_re_hardening_5_was_die_h\u00e4rtung_nicht_sch\u00fctzt_grenzen_klar_kommunizieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L234", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_rebreak_magic_re_hardening_assessment_plan", + "target": "specs_magic_re_hardening_6_empfohlene_implementierungs_reihenfolge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_rebreak_magic_re_hardening_assessment_plan", + "target": "specs_magic_re_hardening_7_dateipfade_f\u00fcr_implementierung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_1_re_exposure_analyse_was_liegt_aktuell_offen", + "target": "specs_magic_re_hardening_1_1_mac_app_swiftui_app_bundle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_1_re_exposure_analyse_was_liegt_aktuell_offen", + "target": "specs_magic_re_hardening_1_2_windows_app_tauri_2_rust" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_1_re_exposure_analyse_was_liegt_aktuell_offen", + "target": "specs_magic_re_hardening_1_3_backend_ber\u00fchrungspunkte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_2_sicherheitsbewertung_was_ist_tats\u00e4chlich_kritisch", + "target": "specs_magic_re_hardening_kein_risiko" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_2_sicherheitsbewertung_was_ist_tats\u00e4chlich_kritisch", + "target": "specs_magic_re_hardening_kritisch_direkter_bypass_m\u00f6glich" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_2_sicherheitsbewertung_was_ist_tats\u00e4chlich_kritisch", + "target": "specs_magic_re_hardening_mittel_kein_direkter_bypass_aber_schlechte_praxis_competitor_wissen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_2_sicherheitsbewertung_was_ist_tats\u00e4chlich_kritisch", + "target": "specs_magic_re_hardening_niedrig_kein_operativer_bypass" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_3_h\u00e4rtungs_plan_priorisiert", + "target": "specs_magic_re_hardening_priorit\u00e4t_1_quick_wins_1_3_tage_aufwand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L135", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_3_h\u00e4rtungs_plan_priorisiert", + "target": "specs_magic_re_hardening_priorit\u00e4t_2_mittlerer_aufwand_1_2_wochen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_3_h\u00e4rtungs_plan_priorisiert", + "target": "specs_magic_re_hardening_priorit\u00e4t_3_gr\u00f6sserer_umbau_nice_to_have" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_1_quick_wins_1_3_tage_aufwand", + "target": "specs_magic_re_hardening_3_1_windows_protection_json_acl_h\u00e4rten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_1_quick_wins_1_3_tage_aufwand", + "target": "specs_magic_re_hardening_3_2_debug_code_aus_mac_release_build_entfernen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_1_quick_wins_1_3_tage_aufwand", + "target": "specs_magic_re_hardening_3_3_service_name_verschleiern_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_1_quick_wins_1_3_tage_aufwand", + "target": "specs_magic_re_hardening_3_4_intern_kommentar_strings_aus_mac_binary_entfernen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_2_mittlerer_aufwand_1_2_wochen", + "target": "specs_magic_re_hardening_3_5_windows_protected_service_ppl_gr\u00f6sster_tamper_schutz" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_2_mittlerer_aufwand_1_2_wochen", + "target": "specs_magic_re_hardening_3_6_windows_powershell_scripts_verschl\u00fcsseln_nicht_als_string_literal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_2_mittlerer_aufwand_1_2_wochen", + "target": "specs_magic_re_hardening_3_7_mac_profil_removal_kommando_nicht_im_binary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_2_mittlerer_aufwand_1_2_wochen", + "target": "specs_magic_re_hardening_3_8_pairing_code_rate_limiting_auf_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_2_mittlerer_aufwand_1_2_wochen", + "target": "specs_magic_re_hardening_3_9_protection_json_dns_token_verschl\u00fcsseln_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_3_gr\u00f6sserer_umbau_nice_to_have", + "target": "specs_magic_re_hardening_3_10_binary_obfuscation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_3_gr\u00f6sserer_umbau_nice_to_have", + "target": "specs_magic_re_hardening_3_11_certificate_pinning_f\u00fcr_backend_calls" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L190", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_priorit\u00e4t_3_gr\u00f6sserer_umbau_nice_to_have", + "target": "specs_magic_re_hardening_3_12_code_signing_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L219", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_4_zusammenfassung_nach_plattform", + "target": "specs_magic_re_hardening_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L200", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_4_zusammenfassung_nach_plattform", + "target": "specs_magic_re_hardening_mac" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/magic-re-hardening.md", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_magic_re_hardening_4_zusammenfassung_nach_plattform", + "target": "specs_magic_re_hardening_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_05b_test_verifikation_v0_md", + "target": "diga_05b_test_verifikation_v0_dok_05b_software_verifikation_test_nachweis_v0" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_dok_05b_software_verifikation_test_nachweis_v0", + "target": "diga_05b_test_verifikation_v0_1_teststrategie_\u00fcberblick" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_dok_05b_software_verifikation_test_nachweis_v0", + "target": "diga_05b_test_verifikation_v0_2_abdeckung_je_sicherheits_schutzrelevantem_bereich" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_dok_05b_software_verifikation_test_nachweis_v0", + "target": "diga_05b_test_verifikation_v0_3_traceability_ansatz_soll_zustand_aktueller_stand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_dok_05b_software_verifikation_test_nachweis_v0", + "target": "diga_05b_test_verifikation_v0_4_status_l\u00fccken_f\u00fcr_formale_iec_62304_verifikation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_dok_05b_software_verifikation_test_nachweis_v0", + "target": "diga_05b_test_verifikation_v0_5_koordination_mit_dossier_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_1_teststrategie_\u00fcberblick", + "target": "diga_05b_test_verifikation_v0_1_1_maestro_e2e_mobile_app_prim\u00e4r" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_1_teststrategie_\u00fcberblick", + "target": "diga_05b_test_verifikation_v0_1_2_vitest_unit_integrationstests_backend_sekund\u00e4r" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_1_teststrategie_\u00fcberblick", + "target": "diga_05b_test_verifikation_v0_1_3_postman_collection_status_nicht_vorhanden" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_1_teststrategie_\u00fcberblick", + "target": "diga_05b_test_verifikation_v0_1_4_lyra_llm_eval_suite_status_implementiert_v0_live_run_ausstehend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_2_abdeckung_je_sicherheits_schutzrelevantem_bereich", + "target": "diga_05b_test_verifikation_v0_2_1_sos_krisen_flow_h\u00f6chste_sicherheitsrelevanz" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_2_abdeckung_je_sicherheits_schutzrelevantem_bereich", + "target": "diga_05b_test_verifikation_v0_2_2_schutz_aktivierung_blocker_vpn_a11y" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_2_abdeckung_je_sicherheits_schutzrelevantem_bereich", + "target": "diga_05b_test_verifikation_v0_2_3_dm_community" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_2_abdeckung_je_sicherheits_schutzrelevantem_bereich", + "target": "diga_05b_test_verifikation_v0_2_4_onboarding_streak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_2_abdeckung_je_sicherheits_schutzrelevantem_bereich", + "target": "diga_05b_test_verifikation_v0_2_5_demographie_diga_datenqualit\u00e4t" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_2_abdeckung_je_sicherheits_schutzrelevantem_bereich", + "target": "diga_05b_test_verifikation_v0_2_6_auth_session" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_2_abdeckung_je_sicherheits_schutzrelevantem_bereich", + "target": "diga_05b_test_verifikation_v0_2_7_mail_filter_schutzkomponente" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_3_traceability_ansatz_soll_zustand_aktueller_stand", + "target": "diga_05b_test_verifikation_v0_3_1_iec_62304_logik_anforderung_test_ergebnis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_3_traceability_ansatz_soll_zustand_aktueller_stand", + "target": "diga_05b_test_verifikation_v0_3_2_ist_zustand_der_traceability" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_3_traceability_ansatz_soll_zustand_aktueller_stand", + "target": "diga_05b_test_verifikation_v0_3_3_n\u00e4chste_schritte_f\u00fcr_formale_traceability" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_4_status_l\u00fccken_f\u00fcr_formale_iec_62304_verifikation", + "target": "diga_05b_test_verifikation_v0_4_1_was_vorhanden_ist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05b-test-verifikation-v0.md", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05b_test_verifikation_v0_4_status_l\u00fccken_f\u00fcr_formale_iec_62304_verifikation", + "target": "diga_05b_test_verifikation_v0_4_2_l\u00fccken_f\u00fcr_formale_verifikation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_09_pms_plan_v0_md", + "target": "diga_09_pms_plan_v0_post_market_surveillance_plan_pms_rebreak_v0_entwurf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_09_pms_plan_v0_post_market_surveillance_plan_pms_rebreak_v0_entwurf", + "target": "diga_09_pms_plan_v0_1_zweck_geltungsbereich" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_09_pms_plan_v0_post_market_surveillance_plan_pms_rebreak_v0_entwurf", + "target": "diga_09_pms_plan_v0_2_pms_datenquellen_real_vorhanden" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_09_pms_plan_v0_post_market_surveillance_plan_pms_rebreak_v0_entwurf", + "target": "diga_09_pms_plan_v0_3_vorkommnis_meldepflichtige_ereignisse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_09_pms_plan_v0_post_market_surveillance_plan_pms_rebreak_v0_entwurf", + "target": "diga_09_pms_plan_v0_4_trendberichterstattung_art_88" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_09_pms_plan_v0_post_market_surveillance_plan_pms_rebreak_v0_entwurf", + "target": "diga_09_pms_plan_v0_5_berichts_rhythmus_review_zyklus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_09_pms_plan_v0_post_market_surveillance_plan_pms_rebreak_v0_entwurf", + "target": "diga_09_pms_plan_v0_6_verantwortlichkeiten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_09_pms_plan_v0_post_market_surveillance_plan_pms_rebreak_v0_entwurf", + "target": "diga_09_pms_plan_v0_7_capa_andockpunkt_dok_10" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L192", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_09_pms_plan_v0_post_market_surveillance_plan_pms_rebreak_v0_entwurf", + "target": "diga_09_pms_plan_v0_8_offene_punkte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/09-pms-plan-v0.md", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_09_pms_plan_v0_3_vorkommnis_meldepflichtige_ereignisse", + "target": "diga_09_pms_plan_v0_3_1_meldeweg_entwurf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_10_qms_templates_v0_md", + "target": "diga_10_qms_templates_v0_qms_templates_iso_13485_ger\u00fcst_rebreak_v0_entwurf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_10_qms_templates_v0_qms_templates_iso_13485_ger\u00fcst_rebreak_v0_entwurf", + "target": "diga_10_qms_templates_v0_0_qms_prozesslandkarte_\u00fcberblick" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_10_qms_templates_v0_qms_templates_iso_13485_ger\u00fcst_rebreak_v0_entwurf", + "target": "diga_10_qms_templates_v0_1_dokumentenlenkung_iso_13485_4_2_4_4_2_5" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_10_qms_templates_v0_qms_templates_iso_13485_ger\u00fcst_rebreak_v0_entwurf", + "target": "diga_10_qms_templates_v0_2_\u00e4nderungsmanagement_software_konfiguration_iso_13485_7_3_9_iec_62304_8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_10_qms_templates_v0_qms_templates_iso_13485_ger\u00fcst_rebreak_v0_entwurf", + "target": "diga_10_qms_templates_v0_3_capa_corrective_and_preventive_action_iso_13485_8_5_2_8_5_3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_10_qms_templates_v0_qms_templates_iso_13485_ger\u00fcst_rebreak_v0_entwurf", + "target": "diga_10_qms_templates_v0_4_schulung_kompetenz_iso_13485_6_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_10_qms_templates_v0_qms_templates_iso_13485_ger\u00fcst_rebreak_v0_entwurf", + "target": "diga_10_qms_templates_v0_5_lieferanten_subprozessor_bewertung_iso_13485_7_4" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_10_qms_templates_v0_qms_templates_iso_13485_ger\u00fcst_rebreak_v0_entwurf", + "target": "diga_10_qms_templates_v0_6_management_review_iso_13485_5_6" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/10-qms-templates-v0.md", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_10_qms_templates_v0_qms_templates_iso_13485_ger\u00fcst_rebreak_v0_entwurf", + "target": "diga_10_qms_templates_v0_7_offene_punkte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_04_risiko_akte_v0_md", + "target": "diga_04_risiko_akte_v0_risikomanagement_akte_erstliste_rebreak_v0_entwurf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_risikomanagement_akte_erstliste_rebreak_v0_entwurf", + "target": "diga_04_risiko_akte_v0_1_methodik_bewertungsskalen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_risikomanagement_akte_erstliste_rebreak_v0_entwurf", + "target": "diga_04_risiko_akte_v0_2_risikotabelle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_risikomanagement_akte_erstliste_rebreak_v0_entwurf", + "target": "diga_04_risiko_akte_v0_3_top_risiken_priorisierung_f\u00fcr_gr\u00fcnder_profi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_risikomanagement_akte_erstliste_rebreak_v0_entwurf", + "target": "diga_04_risiko_akte_v0_4_offene_aktivit\u00e4ten_risikomanagement_prozess" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_risikomanagement_akte_erstliste_rebreak_v0_entwurf", + "target": "diga_04_risiko_akte_v0_5_andockpunkte_koordination" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_risikomanagement_akte_erstliste_rebreak_v0_entwurf", + "target": "diga_04_risiko_akte_v0_6_quellen_normen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_2_risikotabelle", + "target": "diga_04_risiko_akte_v0_2_1_lyra_fehlverhalten_verpasste_krise_h\u00f6chste_priorit\u00e4t" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_2_risikotabelle", + "target": "diga_04_risiko_akte_v0_2_2_falsche_sicherheit_user_verl\u00e4sst_sich_auf_l\u00fcckenhaften_schutz" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_2_risikotabelle", + "target": "diga_04_risiko_akte_v0_2_3_schutz_umgehung_bypass_im_impulsmoment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_2_risikotabelle", + "target": "diga_04_risiko_akte_v0_2_4_datenschutz_art_9_datenleck_spiegelung_zu_dok_08_owner_hans" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_2_risikotabelle", + "target": "diga_04_risiko_akte_v0_2_5_mail_filter_fehlfunktion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/04-risiko-akte-v0.md", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_04_risiko_akte_v0_2_risikotabelle", + "target": "diga_04_risiko_akte_v0_2_6_spiele_sos_werkzeuge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_00_dossier_plan_md", + "target": "diga_00_dossier_plan_diga_mdr_dossier_plan_arbeitsteilung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_00_dossier_plan_diga_mdr_dossier_plan_arbeitsteilung", + "target": "diga_00_dossier_plan_arbeitsteilung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_00_dossier_plan_diga_mdr_dossier_plan_arbeitsteilung", + "target": "diga_00_dossier_plan_dokumenten_landkarte_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_00_dossier_plan_diga_mdr_dossier_plan_arbeitsteilung", + "target": "diga_00_dossier_plan_optional_eigener_diga_agent" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_00_dossier_plan_diga_mdr_dossier_plan_arbeitsteilung", + "target": "diga_00_dossier_plan_reihenfolge_was_zuerst" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/00-dossier-plan.md", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_00_dossier_plan_diga_mdr_dossier_plan_arbeitsteilung", + "target": "diga_00_dossier_plan_\u00e4nderungshistorie" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_01_zweckbestimmung_v0_md", + "target": "diga_01_zweckbestimmung_v0_zweckbestimmung_intended_use_rebreak_v0_entwurf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_01_zweckbestimmung_v0_zweckbestimmung_intended_use_rebreak_v0_entwurf", + "target": "diga_01_zweckbestimmung_v0_1_produkt_hersteller" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_01_zweckbestimmung_v0_zweckbestimmung_intended_use_rebreak_v0_entwurf", + "target": "diga_01_zweckbestimmung_v0_2_zweckbestimmung_kern_aussage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_01_zweckbestimmung_v0_zweckbestimmung_intended_use_rebreak_v0_entwurf", + "target": "diga_01_zweckbestimmung_v0_3_medizinischer_zweck_indikation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_01_zweckbestimmung_v0_zweckbestimmung_intended_use_rebreak_v0_entwurf", + "target": "diga_01_zweckbestimmung_v0_4_vorgesehene_nutzer_zielgruppe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_01_zweckbestimmung_v0_zweckbestimmung_intended_use_rebreak_v0_entwurf", + "target": "diga_01_zweckbestimmung_v0_5_funktionen_wirkmechanismus_drei_ebenen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_01_zweckbestimmung_v0_zweckbestimmung_intended_use_rebreak_v0_entwurf", + "target": "diga_01_zweckbestimmung_v0_6_abgrenzung_was_rebreak_nicht_ist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_01_zweckbestimmung_v0_zweckbestimmung_intended_use_rebreak_v0_entwurf", + "target": "diga_01_zweckbestimmung_v0_7_kontraindikationen_warnhinweise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_01_zweckbestimmung_v0_zweckbestimmung_intended_use_rebreak_v0_entwurf", + "target": "diga_01_zweckbestimmung_v0_8_anwendungsumgebung_nutzungskontext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/01-zweckbestimmung-v0.md", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_01_zweckbestimmung_v0_zweckbestimmung_intended_use_rebreak_v0_entwurf", + "target": "diga_01_zweckbestimmung_v0_9_hinweis_zur_klassifizierung_offen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_05_software_lifecycle_architektur_soup_v0_md", + "target": "diga_05_software_lifecycle_architektur_soup_v0_dok_05_software_lifecycle_architektur_soup_v0" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_dok_05_software_lifecycle_architektur_soup_v0", + "target": "diga_05_software_lifecycle_architektur_soup_v0_0_ehrliche_einordnung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_dok_05_software_lifecycle_architektur_soup_v0", + "target": "diga_05_software_lifecycle_architektur_soup_v0_1_software_sicherheitsklassifizierung_iec_62304_4_3_vorschlag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_dok_05_software_lifecycle_architektur_soup_v0", + "target": "diga_05_software_lifecycle_architektur_soup_v0_2_software_system_architektur_iec_62304_5_3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_dok_05_software_lifecycle_architektur_soup_v0", + "target": "diga_05_software_lifecycle_architektur_soup_v0_3_soup_liste_iec_62304_5_3_3_8_1_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_dok_05_software_lifecycle_architektur_soup_v0", + "target": "diga_05_software_lifecycle_architektur_soup_v0_4_software_entwicklungs_lifecycle_konfigurationsmanagement_5_1_8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_dok_05_software_lifecycle_architektur_soup_v0", + "target": "diga_05_software_lifecycle_architektur_soup_v0_5_offene_punkte_richtung_formaler_iec_62304_konformit\u00e4t" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_2_software_system_architektur_iec_62304_5_3", + "target": "diga_05_software_lifecycle_architektur_soup_v0_2_1_komponenten_dekomposition" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_2_software_system_architektur_iec_62304_5_3", + "target": "diga_05_software_lifecycle_architektur_soup_v0_2_2_zentrale_schnittstellen_datenfl\u00fcsse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_2_software_system_architektur_iec_62304_5_3", + "target": "diga_05_software_lifecycle_architektur_soup_v0_2_3_architektur_belege_aus_dem_graph" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_3_soup_liste_iec_62304_5_3_3_8_1_2", + "target": "diga_05_software_lifecycle_architektur_soup_v0_3_1_backend_nitro_api_runtime_soup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_3_soup_liste_iec_62304_5_3_3_8_1_2", + "target": "diga_05_software_lifecycle_architektur_soup_v0_3_2_native_app_expo_rn_sicherheits_schutzrelevante_soup_auswahl" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_3_soup_liste_iec_62304_5_3_3_8_1_2", + "target": "diga_05_software_lifecycle_architektur_soup_v0_3_3_build_test_tooling_kein_runtime_soup_iec_5_1_9" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05_software_lifecycle_architektur_soup_v0_3_soup_liste_iec_62304_5_3_3_8_1_2", + "target": "diga_05_software_lifecycle_architektur_soup_v0_3_4_soup_anomalie_bewertung_7_1_2_offen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_07_gebrauchsanweisung_labeling_v0_md", + "target": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L316", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_10_glossar_nutzer_freundlich_optional" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L329", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_11_support_kontakt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L338", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_12_andockpunkte_koordination" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L351", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_13_offene_punkte_zusammenfassung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_1_produkt_und_herstellerangaben" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_2_zweckbestimmung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_3_f\u00fcr_wen_ist_rebreak_gedacht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_4_bedienung_der_kernfunktionen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_5_wichtige_warn_und_sicherheitshinweise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_6_systemvoraussetzungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L269", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_7_datenschutz_kurzhinweis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L286", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_8_was_tun_bei_problemen_vorkommnisse_melden" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L301", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_gebrauchsanweisung_labeling_rebreak_v0_entwurf", + "target": "diga_07_gebrauchsanweisung_labeling_v0_9_symbole_kennzeichnung_und_elektronische_bereitstellung_eifu" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_4_bedienung_der_kernfunktionen", + "target": "diga_07_gebrauchsanweisung_labeling_v0_4_1_schutz_aktivieren_digitale_zugangserschwerung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_4_bedienung_der_kernfunktionen", + "target": "diga_07_gebrauchsanweisung_labeling_v0_4_2_eigene_trigger_seiten_hinzuf\u00fcgen_pro_legend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_4_bedienung_der_kernfunktionen", + "target": "diga_07_gebrauchsanweisung_labeling_v0_4_3_postfach_schutz_verbinden_werbe_mails_entfernen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_4_bedienung_der_kernfunktionen", + "target": "diga_07_gebrauchsanweisung_labeling_v0_4_4_begleitung_im_suchtdruck_nutzen_lyra_sos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_4_bedienung_der_kernfunktionen", + "target": "diga_07_gebrauchsanweisung_labeling_v0_4_5_selbstbindung_rebreak_magic_inkl_ehrlichem_ausstieg" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L190", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_5_wichtige_warn_und_sicherheitshinweise", + "target": "diga_07_gebrauchsanweisung_labeling_v0_5_1_kein_ersatz_f\u00fcr_professionelle_hilfe_bei_krisen_sofort_hilfe_holen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_5_wichtige_warn_und_sicherheitshinweise", + "target": "diga_07_gebrauchsanweisung_labeling_v0_5_2_lyra_ist_kein_therapeut" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L211", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_5_wichtige_warn_und_sicherheitshinweise", + "target": "diga_07_gebrauchsanweisung_labeling_v0_5_3_schutz_erschwert_er_garantiert_nichts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_5_wichtige_warn_und_sicherheitshinweise", + "target": "diga_07_gebrauchsanweisung_labeling_v0_5_4_anzeige_spielfreie_tage_ehrlich_einordnen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_5_wichtige_warn_und_sicherheitshinweise", + "target": "diga_07_gebrauchsanweisung_labeling_v0_5_5_postfach_schutz_seltene_fehleinordnungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L237", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_5_wichtige_warn_und_sicherheitshinweise", + "target": "diga_07_gebrauchsanweisung_labeling_v0_5_6_selbstbindung_ausstieg_ist_m\u00f6glich" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_07_gebrauchsanweisung_labeling_v0_5_wichtige_warn_und_sicherheitshinweise", + "target": "diga_07_gebrauchsanweisung_labeling_v0_5_7_anwendungsbeschr\u00e4nkung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_03_requirements_v0_md", + "target": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_0_lesehilfe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_10_querschnittliche_nicht_funktionale_anforderungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L240", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_11_offene_punkte_abgrenzungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_1_schutz_blocker_ger\u00e4teweite_zugangserschwerung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_2_selbstbindung_rebreakmagic_lock_modus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_3_mail_schutz_trigger_mail_entfernung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_4_lyra_ki_coach_krisen_behandlung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_5_sos_werkzeuge_atem\u00fcbung_spiele_urge_logging" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_6_streak_protected_days_motivation_tracking" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_7_community_dm_anrufe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L200", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_8_authentifizierung_ger\u00e4te_limit_onboarding" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/03-requirements-v0.md", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_03_requirements_v0_anforderungen_requirements_rebreak_v0_entwurf", + "target": "diga_03_requirements_v0_9_demographie_diga_evidenz_daten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_05c_lyra_eval_v0_md", + "target": "diga_05c_lyra_eval_v0_dok_05c_lyra_llm_evaluierungssuite_v0" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_dok_05c_lyra_llm_evaluierungssuite_v0", + "target": "diga_05c_lyra_eval_v0_1_zweck_und_sicherheitsrelevanz" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_dok_05c_lyra_llm_evaluierungssuite_v0", + "target": "diga_05c_lyra_eval_v0_2_test_set_architektur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_dok_05c_lyra_llm_evaluierungssuite_v0", + "target": "diga_05c_lyra_eval_v0_3_haupt_metrik_crisis_detection_recall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_dok_05c_lyra_llm_evaluierungssuite_v0", + "target": "diga_05c_lyra_eval_v0_4_weitere_safety_metriken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_dok_05c_lyra_llm_evaluierungssuite_v0", + "target": "diga_05c_lyra_eval_v0_5_implementierung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_dok_05c_lyra_llm_evaluierungssuite_v0", + "target": "diga_05c_lyra_eval_v0_6_ergebnis_protokoll_schema_f\u00fcr_release_archiv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_dok_05c_lyra_llm_evaluierungssuite_v0", + "target": "diga_05c_lyra_eval_v0_7_bekannte_l\u00fccken_v0" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_dok_05c_lyra_llm_evaluierungssuite_v0", + "target": "diga_05c_lyra_eval_v0_8_koordination_mit_dossier_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_2_test_set_architektur", + "target": "diga_05c_lyra_eval_v0_2_1_prompt_kategorien" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_2_test_set_architektur", + "target": "diga_05c_lyra_eval_v0_2_2_prompt_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_2_test_set_architektur", + "target": "diga_05c_lyra_eval_v0_2_3_regel_typen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_5_implementierung", + "target": "diga_05c_lyra_eval_v0_5_1_dateien" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_5_implementierung", + "target": "diga_05c_lyra_eval_v0_5_2_ausf\u00fchrungsmodi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05c-lyra-eval-v0.md", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05c_lyra_eval_v0_5_implementierung", + "target": "diga_05c_lyra_eval_v0_5_3_env_vars" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_08_datenschutz_audit_v0_md", + "target": "diga_08_datenschutz_audit_v0_datenschutz_audit_massnahmenplan_rebreak_v0_entwurf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_datenschutz_audit_massnahmenplan_rebreak_v0_entwurf", + "target": "diga_08_datenschutz_audit_v0_0_vorbemerkung_geltungsgrenzen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_datenschutz_audit_massnahmenplan_rebreak_v0_entwurf", + "target": "diga_08_datenschutz_audit_v0_1_einordnung_h\u00f6chste_schutzstufe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_datenschutz_audit_massnahmenplan_rebreak_v0_entwurf", + "target": "diga_08_datenschutz_audit_v0_2_ist_zustand_l\u00fccken_m\u00e4ngel_je_bereich" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L319", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_datenschutz_audit_massnahmenplan_rebreak_v0_entwurf", + "target": "diga_08_datenschutz_audit_v0_3_diga_spezifische_datenschutz_anforderungen_bfarm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L340", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_datenschutz_audit_massnahmenplan_rebreak_v0_entwurf", + "target": "diga_08_datenschutz_audit_v0_4_priorisierter_massnahmenplan_eskalations_treppe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_datenschutz_audit_massnahmenplan_rebreak_v0_entwurf", + "target": "diga_08_datenschutz_audit_v0_5_koordination_mit_diga_regulatory_dr_marlene_brandt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L400", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_datenschutz_audit_massnahmenplan_rebreak_v0_entwurf", + "target": "diga_08_datenschutz_audit_v0_6_quellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_2_ist_zustand_l\u00fccken_m\u00e4ngel_je_bereich", + "target": "diga_08_datenschutz_audit_v0_2_1_mail_agent_imap_idle_daemon_gr\u00f6sste_datenschutz_oberfl\u00e4che" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_2_ist_zustand_l\u00fccken_m\u00e4ngel_je_bereich", + "target": "diga_08_datenschutz_audit_v0_2_2_lyra_groq_usa_art_9_daten_im_drittland" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_2_ist_zustand_l\u00fccken_m\u00e4ngel_je_bereich", + "target": "diga_08_datenschutz_audit_v0_2_3_auftragsverarbeiter_av_vertr\u00e4ge_art_28_drittland" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L248", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_2_ist_zustand_l\u00fccken_m\u00e4ngel_je_bereich", + "target": "diga_08_datenschutz_audit_v0_2_4_anonymit\u00e4t_by_design_verifizieren_dass_nichts_leakt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_2_ist_zustand_l\u00fccken_m\u00e4ngel_je_bereich", + "target": "diga_08_datenschutz_audit_v0_2_5_auth_supabase_self_hosted_demographie_daten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L278", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_2_ist_zustand_l\u00fccken_m\u00e4ngel_je_bereich", + "target": "diga_08_datenschutz_audit_v0_2_6_community" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L285", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_2_ist_zustand_l\u00fccken_m\u00e4ngel_je_bereich", + "target": "diga_08_datenschutz_audit_v0_2_7_fehlende_zu_pr\u00fcfende_pflicht_dokumente_prozesse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L354", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_4_priorisierter_massnahmenplan_eskalations_treppe", + "target": "diga_08_datenschutz_audit_v0_hoch_stufe_1_3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L344", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_4_priorisierter_massnahmenplan_eskalations_treppe", + "target": "diga_08_datenschutz_audit_v0_kritisch_sofort_stufe_1_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/08-datenschutz-audit-v0.md", + "source_location": "L365", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_08_datenschutz_audit_v0_4_priorisierter_massnahmenplan_eskalations_treppe", + "target": "diga_08_datenschutz_audit_v0_mittel_stufe_3_4" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_05d_traceability_matrix_v0_md", + "target": "diga_05d_traceability_matrix_v0_dok_05d_traceability_matrix_anforderung_risiko_code_verifikation_v0" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05d_traceability_matrix_v0_dok_05d_traceability_matrix_anforderung_risiko_code_verifikation_v0", + "target": "diga_05d_traceability_matrix_v0_0_ehrliche_einordnung_bitte_zuerst_lesen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05d_traceability_matrix_v0_dok_05d_traceability_matrix_anforderung_risiko_code_verifikation_v0", + "target": "diga_05d_traceability_matrix_v0_1_traceability_logik_iec_62304" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05d_traceability_matrix_v0_dok_05d_traceability_matrix_anforderung_risiko_code_verifikation_v0", + "target": "diga_05d_traceability_matrix_v0_2_traceability_matrix_lyra_krisen_strang_v0" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05d_traceability_matrix_v0_dok_05d_traceability_matrix_anforderung_risiko_code_verifikation_v0", + "target": "diga_05d_traceability_matrix_v0_2a_traceability_matrix_mail_schutz_strang_req_mail_v0" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05d_traceability_matrix_v0_dok_05d_traceability_matrix_anforderung_risiko_code_verifikation_v0", + "target": "diga_05d_traceability_matrix_v0_2b_traceability_matrix_schutz_selbstbindungs_strang_v0" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05d_traceability_matrix_v0_dok_05d_traceability_matrix_anforderung_risiko_code_verifikation_v0", + "target": "diga_05d_traceability_matrix_v0_2c_traceability_matrix_anonymit\u00e4ts_strang_req_comm_005_v0" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05d_traceability_matrix_v0_dok_05d_traceability_matrix_anforderung_risiko_code_verifikation_v0", + "target": "diga_05d_traceability_matrix_v0_3_herkunft_reproduzierbarkeit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", + "source_location": "L270", + "weight": 1.0, + "confidence_score": 1.0, + "source": "diga_05d_traceability_matrix_v0_dok_05d_traceability_matrix_anforderung_risiko_code_verifikation_v0", + "target": "diga_05d_traceability_matrix_v0_4_offene_schritte_richtung_formaler_iec_62304_record" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_eval_records_2026_06_10_gpt_4o_mini_md", + "target": "eval_records_2026_06_10_gpt_4o_mini_lyra_eval_record_2026_06_10_gpt_4o_mini" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_gpt_4o_mini_lyra_eval_record_2026_06_10_gpt_4o_mini", + "target": "eval_records_2026_06_10_gpt_4o_mini_bewertung_f\u00fcr_diga_verifikation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_gpt_4o_mini_lyra_eval_record_2026_06_10_gpt_4o_mini", + "target": "eval_records_2026_06_10_gpt_4o_mini_crisis_detection_recall_detail_safety_req_llm_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_gpt_4o_mini_lyra_eval_record_2026_06_10_gpt_4o_mini", + "target": "eval_records_2026_06_10_gpt_4o_mini_ergebnis_zusammenfassung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_gpt_4o_mini_lyra_eval_record_2026_06_10_gpt_4o_mini", + "target": "eval_records_2026_06_10_gpt_4o_mini_fehlgeschlagene_testf\u00e4lle_gesamt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_gpt_4o_mini_lyra_eval_record_2026_06_10_gpt_4o_mini", + "target": "eval_records_2026_06_10_gpt_4o_mini_klassifizierung_der_fehler" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_gpt_4o_mini_lyra_eval_record_2026_06_10_gpt_4o_mini", + "target": "eval_records_2026_06_10_gpt_4o_mini_protokoll_header" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_gpt_4o_mini_lyra_eval_record_2026_06_10_gpt_4o_mini", + "target": "eval_records_2026_06_10_gpt_4o_mini_tester_notizen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_gpt_4o_mini_fehlgeschlagene_testf\u00e4lle_gesamt", + "target": "eval_records_2026_06_10_gpt_4o_mini_drang_moment_handling_2_fehler_von_5" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_gpt_4o_mini_fehlgeschlagene_testf\u00e4lle_gesamt", + "target": "eval_records_2026_06_10_gpt_4o_mini_grenzf\u00e4lle_ambiguit\u00e4t_4_fehler_von_7" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_gpt_4o_mini_fehlgeschlagene_testf\u00e4lle_gesamt", + "target": "eval_records_2026_06_10_gpt_4o_mini_harmlose_coach_fragen_2_fehler_von_6" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_gpt_4o_mini_fehlgeschlagene_testf\u00e4lle_gesamt", + "target": "eval_records_2026_06_10_gpt_4o_mini_jailbreak_resistenz_3_fehler_von_6" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_specs_diga_eval_records_2026_06_10_groq_llama_3_3_70b_md", + "target": "eval_records_2026_06_10_groq_llama_3_3_70b_lyra_eval_record_2026_06_10_groq_llama_3_3_70b_versatile_produktionsmodell" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_groq_llama_3_3_70b_lyra_eval_record_2026_06_10_groq_llama_3_3_70b_versatile_produktionsmodell", + "target": "eval_records_2026_06_10_groq_llama_3_3_70b_bewertung_f\u00fcr_diga_verifikation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_groq_llama_3_3_70b_lyra_eval_record_2026_06_10_groq_llama_3_3_70b_versatile_produktionsmodell", + "target": "eval_records_2026_06_10_groq_llama_3_3_70b_crisis_detection_detail_safety_req_llm_001" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_groq_llama_3_3_70b_lyra_eval_record_2026_06_10_groq_llama_3_3_70b_versatile_produktionsmodell", + "target": "eval_records_2026_06_10_groq_llama_3_3_70b_ergebnis_zusammenfassung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_groq_llama_3_3_70b_lyra_eval_record_2026_06_10_groq_llama_3_3_70b_versatile_produktionsmodell", + "target": "eval_records_2026_06_10_groq_llama_3_3_70b_protokoll_header" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_groq_llama_3_3_70b_lyra_eval_record_2026_06_10_groq_llama_3_3_70b_versatile_produktionsmodell", + "target": "eval_records_2026_06_10_groq_llama_3_3_70b_\u00fcbrige_12_fehlschl\u00e4ge_klassifizierung_deckungsgleich_mit_vorg\u00e4nger_run" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_groq_llama_3_3_70b_crisis_detection_detail_safety_req_llm_001", + "target": "eval_records_2026_06_10_groq_llama_3_3_70b_cr_003_fail_ist_ein_regel_design_bug_kein_llm_fehler" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "eval_records_2026_06_10_groq_llama_3_3_70b_crisis_detection_detail_safety_req_llm_001", + "target": "eval_records_2026_06_10_groq_llama_3_3_70b_cr_004_befund_des_vorg\u00e4nger_runs_reproduziert_sich_nicht_auf_dem_produktionsmodell" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_internal_mail_daemon_deployment_md", + "target": "internal_mail_daemon_deployment_mail_daemon_deployment_backyard_handoff" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_mail_daemon_deployment_backyard_handoff", + "target": "internal_mail_daemon_deployment_abhaengigkeiten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_mail_daemon_deployment_backyard_handoff", + "target": "internal_mail_daemon_deployment_bekannte_provider_quirks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_mail_daemon_deployment_backyard_handoff", + "target": "internal_mail_daemon_deployment_datei_\u00fcbersicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_mail_daemon_deployment_backyard_handoff", + "target": "internal_mail_daemon_deployment_kontext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_mail_daemon_deployment_backyard_handoff", + "target": "internal_mail_daemon_deployment_rollback_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_mail_daemon_deployment_backyard_handoff", + "target": "internal_mail_daemon_deployment_verifikations_schritte_nach_deployment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_mail_daemon_deployment_backyard_handoff", + "target": "internal_mail_daemon_deployment_was_backyard_tun_muss_in_dieser_reihenfolge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_was_backyard_tun_muss_in_dieser_reihenfolge", + "target": "internal_mail_daemon_deployment_schritt_1_gh_actions_imap_idle_ins_artifact_einschliessen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_was_backyard_tun_muss_in_dieser_reihenfolge", + "target": "internal_mail_daemon_deployment_schritt_2_npm_install_auf_server" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_was_backyard_tun_muss_in_dieser_reihenfolge", + "target": "internal_mail_daemon_deployment_schritt_3_zombie_prozesse_aufr\u00e4umen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_was_backyard_tun_muss_in_dieser_reihenfolge", + "target": "internal_mail_daemon_deployment_schritt_4_ecosystem_config_js_erweitern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_was_backyard_tun_muss_in_dieser_reihenfolge", + "target": "internal_mail_daemon_deployment_schritt_5_start_idle_staging_sh_erstellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/MAIL_DAEMON_DEPLOYMENT.md", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_mail_daemon_deployment_was_backyard_tun_muss_in_dieser_reihenfolge", + "target": "internal_mail_daemon_deployment_schritt_6_pm2_starten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_internal_session_2026_06_08_preview_screenshots_handoff_md", + "target": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", + "target": "internal_session_2026_06_08_preview_screenshots_handoff_agenten_lernpunkt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", + "target": "internal_session_2026_06_08_preview_screenshots_handoff_done_diese_session" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", + "target": "internal_session_2026_06_08_preview_screenshots_handoff_erledigt_in_fortsetzung_2026_06_09" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", + "target": "internal_session_2026_06_08_preview_screenshots_handoff_laufender_zustand_der_umgebung_wichtig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", + "target": "internal_session_2026_06_08_preview_screenshots_handoff_n\u00e4chste_schritte_bypass_session" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", + "target": "internal_session_2026_06_08_preview_screenshots_handoff_offene_bugs_vom_founder_beim_testen_gefunden" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_preview_screenshots_handoff.md", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_preview_screenshots_handoff_session_handoff_2026_06_08_preview_page_screenshots_bug_hunt", + "target": "internal_session_2026_06_08_preview_screenshots_handoff_screenshot_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_internal_privacy_policy_user_notes_md", + "target": "internal_privacy_policy_user_notes_rebreak_privacy_policy_user_notes_dsb_begleitdokument" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_rebreak_privacy_policy_user_notes_dsb_begleitdokument", + "target": "internal_privacy_policy_user_notes_1_todo_dpa_avv_status_der_12_sub_auftragsverarbeiter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_rebreak_privacy_policy_user_notes_dsb_begleitdokument", + "target": "internal_privacy_policy_user_notes_2_anwalt_review_checkliste_3_kritische_punkte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_rebreak_privacy_policy_user_notes_dsb_begleitdokument", + "target": "internal_privacy_policy_user_notes_3_stufe_2_migrations_plan_lyra_pseudonymisierung_q3_2026" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_rebreak_privacy_policy_user_notes_dsb_begleitdokument", + "target": "internal_privacy_policy_user_notes_4_backyard_migration_empfehlung_marketing_site_privacy_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_rebreak_privacy_policy_user_notes_dsb_begleitdokument", + "target": "internal_privacy_policy_user_notes_5_risk_summary_snapshot_09_05_2026" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_rebreak_privacy_policy_user_notes_dsb_begleitdokument", + "target": "internal_privacy_policy_user_notes_6_n\u00e4chste_schritte_priorisiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_rebreak_privacy_policy_user_notes_dsb_begleitdokument", + "target": "internal_privacy_policy_user_notes_achtung_high_prio_flag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_2_anwalt_review_checkliste_3_kritische_punkte", + "target": "internal_privacy_policy_user_notes_2_1_pro_trial_als_gegenleistung_f\u00fcr_demographische_daten_risk_hoch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_2_anwalt_review_checkliste_3_kritische_punkte", + "target": "internal_privacy_policy_user_notes_2_2_llm_\u00fcbertragung_stufe_1_ohne_separates_consent_ui_risk_mittel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_2_anwalt_review_checkliste_3_kritische_punkte", + "target": "internal_privacy_policy_user_notes_2_3_\u00fcbergangsklausel_einzelunternehmer_raynis_gmbh_risk_mittel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_3_stufe_2_migrations_plan_lyra_pseudonymisierung_q3_2026", + "target": "internal_privacy_policy_user_notes_technische_schritte_high_level_spec_detail_spec_geht_an_rebreak_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_3_stufe_2_migrations_plan_lyra_pseudonymisierung_q3_2026", + "target": "internal_privacy_policy_user_notes_voraussetzungen_blocker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_3_stufe_2_migrations_plan_lyra_pseudonymisierung_q3_2026", + "target": "internal_privacy_policy_user_notes_ziel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_4_backyard_migration_empfehlung_marketing_site_privacy_page", + "target": "internal_privacy_policy_user_notes_empfehlung_an_rebreak_strategist_backyard" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/PRIVACY_POLICY_USER_NOTES.md", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_privacy_policy_user_notes_4_backyard_migration_empfehlung_marketing_site_privacy_page", + "target": "internal_privacy_policy_user_notes_status_quo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_internal_session_2026_06_08_handoff_md", + "target": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", + "target": "internal_session_2026_06_08_handoff_das_grosse_ding_rebreak_magic_f\u00fcr_windows_l\u00e4uft_e2e" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", + "target": "internal_session_2026_06_08_handoff_fags_fachverband_gl\u00fccksspielsucht_strategisch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", + "target": "internal_session_2026_06_08_handoff_marketing_live_auf_prod_rebreak_org" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", + "target": "internal_session_2026_06_08_handoff_native_ui_polish_committet_lokal_6_commits_ahead_von_origin_db6db54" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", + "target": "internal_session_2026_06_08_handoff_n\u00e4chste_session_der_eigentliche_gamechanger_user_priorit\u00e4t" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_handoff_session_handoff_2026_06_07_08_magic_windows_e2e_ger\u00e4te_ui_marketing_prod", + "target": "internal_session_2026_06_08_handoff_phase_a_backend_live_auf_staging_commit_a95e665" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_handoff_das_grosse_ding_rebreak_magic_f\u00fcr_windows_l\u00e4uft_e2e", + "target": "internal_session_2026_06_08_handoff_wichtige_lektion_kostete_stunde_falsche_box" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_handoff_das_grosse_ding_rebreak_magic_f\u00fcr_windows_l\u00e4uft_e2e", + "target": "internal_session_2026_06_08_handoff_zwei_harte_backend_bugs_heute_gefunden_gefixt_waren_der_blocker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-08_handoff.md", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_08_handoff_n\u00e4chste_session_der_eigentliche_gamechanger_user_priorit\u00e4t", + "target": "internal_session_2026_06_08_handoff_weitere_offene_threads_prio_absteigend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_internal_recovery_log_2026_05_10_md", + "target": "internal_recovery_log_2026_05_10_recovery_log_2026_05_10_lost_work_workflow_regeln" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_recovery_log_2026_05_10_lost_work_workflow_regeln", + "target": "internal_recovery_log_2026_05_10_1_was_passiert_ist_timeline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_recovery_log_2026_05_10_lost_work_workflow_regeln", + "target": "internal_recovery_log_2026_05_10_2_recovery_aktion_2026_05_10" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_recovery_log_2026_05_10_lost_work_workflow_regeln", + "target": "internal_recovery_log_2026_05_10_3_was_jetzt_noch_fehlt_nicht_aus_35189b9_wiederhergestellt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_recovery_log_2026_05_10_lost_work_workflow_regeln", + "target": "internal_recovery_log_2026_05_10_4_workflow_regeln_gegen_wiederholung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L135", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_recovery_log_2026_05_10_lost_work_workflow_regeln", + "target": "internal_recovery_log_2026_05_10_5_tier_aware_tts_architektur_jetzt_aktiv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_recovery_log_2026_05_10_lost_work_workflow_regeln", + "target": "internal_recovery_log_2026_05_10_6_game_flow_in_sos_vs_standalone" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_recovery_log_2026_05_10_lost_work_workflow_regeln", + "target": "internal_recovery_log_2026_05_10_7_keyboard_overlap_generische_l\u00f6sung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_recovery_log_2026_05_10_lost_work_workflow_regeln", + "target": "internal_recovery_log_2026_05_10_8_open_issues_zuk\u00fcnftige_sessions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_recovery_log_2026_05_10_lost_work_workflow_regeln", + "target": "internal_recovery_log_2026_05_10_9_files_mit_textinput_f\u00fcr_keyboardadjustedview_rollout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_1_was_passiert_ist_timeline", + "target": "internal_recovery_log_2026_05_10_1_1_ausl\u00f6ser_cutover_incident_7_mai_22_17" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_1_was_passiert_ist_timeline", + "target": "internal_recovery_log_2026_05_10_1_2_folgesymptom_stash_hopping_am_9_mai" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_1_was_passiert_ist_timeline", + "target": "internal_recovery_log_2026_05_10_1_3_konkreter_verlust_commit_35189b9_wip_pre_cherrypick" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_4_workflow_regeln_gegen_wiederholung", + "target": "internal_recovery_log_2026_05_10_4_1_kein_rapides_stash_cherry_pick_mehr" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_4_workflow_regeln_gegen_wiederholung", + "target": "internal_recovery_log_2026_05_10_4_2_recovery_kommandos_f\u00fcr_die_zukunft" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_4_workflow_regeln_gegen_wiederholung", + "target": "internal_recovery_log_2026_05_10_4_3_zwei_branches_gleichzeitig_sind_ein_anti_pattern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_7_keyboard_overlap_generische_l\u00f6sung", + "target": "internal_recovery_log_2026_05_10_7_1_1_auto_sized_sheets_kein_leerer_platz_unterhalb_des_inhalts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_7_keyboard_overlap_generische_l\u00f6sung", + "target": "internal_recovery_log_2026_05_10_7_1_2_library_migration_pfad_react_native_keyboard_controller" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_7_keyboard_overlap_generische_l\u00f6sung", + "target": "internal_recovery_log_2026_05_10_7_1_wann_was_nutzen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_7_keyboard_overlap_generische_l\u00f6sung", + "target": "internal_recovery_log_2026_05_10_7_2_anti_pattern_zu_vermeiden" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_8_open_issues_zuk\u00fcnftige_sessions", + "target": "internal_recovery_log_2026_05_10_8_1_aus_aktueller_session_2026_05_10_verschoben" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L233", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_8_open_issues_zuk\u00fcnftige_sessions", + "target": "internal_recovery_log_2026_05_10_8_2_aus_voriger_session" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_8_open_issues_zuk\u00fcnftige_sessions", + "target": "internal_recovery_log_2026_05_10_8_3_snake_sounds_audio_files_droppen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/RECOVERY_LOG_2026-05-10.md", + "source_location": "L255", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_recovery_log_2026_05_10_8_open_issues_zuk\u00fcnftige_sessions", + "target": "internal_recovery_log_2026_05_10_8_4_cache_invalidierung_neuer_pattern_in_useme_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_internal_session_2026_06_07_handoff_md", + "target": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", + "target": "internal_session_2026_06_07_handoff_artefakte_lokal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", + "target": "internal_session_2026_06_07_handoff_committed_deployed_heute" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", + "target": "internal_session_2026_06_07_handoff_key_findings_auch_in_memory" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", + "target": "internal_session_2026_06_07_handoff_mac_speicher_kritisch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", + "target": "internal_session_2026_06_07_handoff_offene_threads_entscheidungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", + "target": "internal_session_2026_06_07_handoff_sofort_n\u00e4chster_schritt_offen_blockt_mac_entscheidung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", + "target": "internal_session_2026_06_07_handoff_was_heute_fertig_wurde_verifiziert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/SESSION_2026-06-07_handoff.md", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_session_2026_06_07_handoff_session_handoff_2026_06_07_windows_schutz_mac_dns_marketing_nav", + "target": "internal_session_2026_06_07_handoff_working_tree_uncommitted_nicht_deployed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_concepts_layer2_country_pivot_md", + "target": "concepts_layer2_country_pivot_layer_2_country_pivot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L280", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_layer_2_country_pivot", + "target": "concepts_layer2_country_pivot_aufwand_sch\u00e4tzung_pro_block" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_layer_2_country_pivot", + "target": "concepts_layer2_country_pivot_bug_5_10min_sync_lag_hypothese_test_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_layer_2_country_pivot", + "target": "concepts_layer2_country_pivot_konkrete_code_\u00e4nderungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_layer_2_country_pivot", + "target": "concepts_layer2_country_pivot_migration_plan_f\u00fcr_existing_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L315", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_layer_2_country_pivot", + "target": "concepts_layer2_country_pivot_offene_fragen_f\u00fcr_user_kl\u00e4rung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L303", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_layer_2_country_pivot", + "target": "concepts_layer2_country_pivot_vorgeschlagene_rollout_reihenfolge_sicherste" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_layer_2_country_pivot", + "target": "concepts_layer2_country_pivot_was_wir_\u00e4ndern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_was_wir_\u00e4ndern", + "target": "concepts_layer2_country_pivot_nachher_ziel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_was_wir_\u00e4ndern", + "target": "concepts_layer2_country_pivot_vorher_aktuell" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_konkrete_code_\u00e4nderungen", + "target": "concepts_layer2_country_pivot_a_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_konkrete_code_\u00e4nderungen", + "target": "concepts_layer2_country_pivot_b_ios_apps_rebreak_native" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L216", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_konkrete_code_\u00e4nderungen", + "target": "concepts_layer2_country_pivot_c_admin_ui_apps_rebreak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_konkrete_code_\u00e4nderungen", + "target": "concepts_layer2_country_pivot_d_country_listen_curation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_a_backend", + "target": "concepts_layer2_country_pivot_a1_schema_migration_drop_vip_swap_fields" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_a_backend", + "target": "concepts_layer2_country_pivot_a2_webcontent_domains_get_ts_komplett_vereinfachen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_a_backend", + "target": "concepts_layer2_country_pivot_a3_custom_domains_index_post_ts_vip_logic_raus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_a_backend", + "target": "concepts_layer2_country_pivot_a4_vip_swap_post_ts_delete" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_a_backend", + "target": "concepts_layer2_country_pivot_a5_suggestion_endpoint_bleibtdomainsubmission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_a_backend", + "target": "concepts_layer2_country_pivot_a6_domainvote_tabelle_decision" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_b_ios_apps_rebreak_native", + "target": "concepts_layer2_country_pivot_b1_travel_detection_einbauen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_b_ios_apps_rebreak_native", + "target": "concepts_layer2_country_pivot_b2_usewebcontentdomains_ts_country_param" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_b_ios_apps_rebreak_native", + "target": "concepts_layer2_country_pivot_b3_blockerpage_ui_refactor" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_b_ios_apps_rebreak_native", + "target": "concepts_layer2_country_pivot_b4_lyra_reply_chip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/concepts/layer2-country-pivot.md", + "source_location": "L210", + "weight": 1.0, + "confidence_score": 1.0, + "source": "concepts_layer2_country_pivot_b_ios_apps_rebreak_native", + "target": "concepts_layer2_country_pivot_b5_usecustomdomains_hook_vip_swap_raus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_marketing_onepager_behoerden_md", + "target": "marketing_onepager_behoerden_rebreak_spielerschutz_dort_wo_oasis_strukturell_nicht_greift" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_behoerden_rebreak_spielerschutz_dort_wo_oasis_strukturell_nicht_greift", + "target": "marketing_onepager_behoerden_ausgangslage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_behoerden_rebreak_spielerschutz_dort_wo_oasis_strukturell_nicht_greift", + "target": "marketing_onepager_behoerden_beitrag_von_rebreak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_behoerden_rebreak_spielerschutz_dort_wo_oasis_strukturell_nicht_greift", + "target": "marketing_onepager_behoerden_datenschutz_ausdr\u00fccklich_keine_datenbank_kopplung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_behoerden_rebreak_spielerschutz_dort_wo_oasis_strukturell_nicht_greift", + "target": "marketing_onepager_behoerden_diga_und_versorgungsperspektive" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_behoerden_rebreak_spielerschutz_dort_wo_oasis_strukturell_nicht_greift", + "target": "marketing_onepager_behoerden_kontakt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_behoerden_rebreak_spielerschutz_dort_wo_oasis_strukturell_nicht_greift", + "target": "marketing_onepager_behoerden_relevanz_f\u00fcr_die_gl\u00fcstv_evaluierung_2026" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-behoerden.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_behoerden_rebreak_spielerschutz_dort_wo_oasis_strukturell_nicht_greift", + "target": "marketing_onepager_behoerden_was_wir_anbieten_suchen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_marketing_ilona_vorstand_mail_md", + "target": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", + "target": "marketing_ilona_vorstand_mail_forums_antwort_1_zeile_faden_warm_halten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", + "target": "marketing_ilona_vorstand_mail_lange_fassung_backup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", + "target": "marketing_ilona_vorstand_mail_mail_entwurf_kompakt_mit_tabelle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", + "target": "marketing_ilona_vorstand_mail_stil_hinweis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/ilona-vorstand-mail.md", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_ilona_vorstand_mail_ilona_fags_mail_an_ilona_antwort_auf_ihre_2_pn", + "target": "marketing_ilona_vorstand_mail_vor_dem_senden_ausf\u00fcllen_best\u00e4tigen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_marketing_onepager_fachstellen_md", + "target": "marketing_onepager_fachstellen_rebreak_digitale_unterst\u00fctzung_bei_gl\u00fccksspielsucht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_fachstellen_rebreak_digitale_unterst\u00fctzung_bei_gl\u00fccksspielsucht", + "target": "marketing_onepager_fachstellen_das_problem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_fachstellen_rebreak_digitale_unterst\u00fctzung_bei_gl\u00fccksspielsucht", + "target": "marketing_onepager_fachstellen_datenschutz_ethik_unsere_haltung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_fachstellen_rebreak_digitale_unterst\u00fctzung_bei_gl\u00fccksspielsucht", + "target": "marketing_onepager_fachstellen_die_l\u00f6sung_rebreak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_fachstellen_rebreak_digitale_unterst\u00fctzung_bei_gl\u00fccksspielsucht", + "target": "marketing_onepager_fachstellen_diga_ambition" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_fachstellen_rebreak_digitale_unterst\u00fctzung_bei_gl\u00fccksspielsucht", + "target": "marketing_onepager_fachstellen_kontakt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_fachstellen_rebreak_digitale_unterst\u00fctzung_bei_gl\u00fccksspielsucht", + "target": "marketing_onepager_fachstellen_stand_der_entwicklung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_fachstellen_rebreak_digitale_unterst\u00fctzung_bei_gl\u00fccksspielsucht", + "target": "marketing_onepager_fachstellen_was_wir_suchen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/onepager-fachstellen.md", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_onepager_fachstellen_rebreak_digitale_unterst\u00fctzung_bei_gl\u00fccksspielsucht", + "target": "marketing_onepager_fachstellen_zielgruppe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_marketing_pitch_deck_md", + "target": "marketing_pitch_deck_rebreak_pitch_deck_fach_version" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_10_schutzkonzept_f\u00fcr_die_testphase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_11_was_wir_suchen_partnerschaft_keine_kunden" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_12_abschluss_kontakt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_1_titel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_2_der_mensch_im_suchtdruck_das_eigentliche_problem" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_3_die_versorgungsl\u00fccke_ruhig_mit_quellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_4_warum_wir_das_machen_das_herz_des_decks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_5_was_rebreak_konkret_tut_drei_schutz_ebenen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_6_der_unterschied_zu_oasis_komplement_keine_konkurrenz" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_7_wie_wir_mit_daten_und_w\u00fcrde_umgehen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_8_wo_wir_stehen_ehrlich" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_folie_9_der_ehrliche_weg_diga" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_quellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/pitch-deck.md", + "source_location": "L207", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_pitch_deck_rebreak_pitch_deck_fach_version", + "target": "marketing_pitch_deck_wo_das_deck_noch_echte_inhalte_vom_gr\u00fcnder_braucht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_marketing_funding_partnership_plan_md", + "target": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L234", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls", + "target": "marketing_funding_partnership_plan_10_die_sequenz_in_einem_satz" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls", + "target": "marketing_funding_partnership_plan_1_die_zwei_knoten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls", + "target": "marketing_funding_partnership_plan_2_geld_mechanik_wichtig_nicht_verwechseln" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls", + "target": "marketing_funding_partnership_plan_3_win_win_warum_jeder_mitmacht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls", + "target": "marketing_funding_partnership_plan_4_gmbh_engpass_nein" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls", + "target": "marketing_funding_partnership_plan_5_kontakte_sequenz" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls", + "target": "marketing_funding_partnership_plan_5b_reihenfolge_plan_b_c_nicht_von_einer_person_abh\u00e4ngen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls", + "target": "marketing_funding_partnership_plan_6_was_anh\u00e4ngen_verlinken_in_beiden_mails" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls", + "target": "marketing_funding_partnership_plan_7_mail_entwurf_a_ilona_fags" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls", + "target": "marketing_funding_partnership_plan_8_mail_entwurf_b_nls_hannover" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_rebreak_f\u00f6rder_partnerschafts_plan_fags_nls", + "target": "marketing_funding_partnership_plan_9_mail_entwurf_c_fachstelle_plan_b_z_b_lukas_werk_step" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/marketing/funding-partnership-plan.md", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "marketing_funding_partnership_plan_6_was_anh\u00e4ngen_verlinken_in_beiden_mails", + "target": "marketing_funding_partnership_plan_kurz_vergleich_vs_die_\u00fcblichen_blocker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_superpowers_plans_2026_06_18_self_hosted_github_runner_md", + "target": "plans_2026_06_18_self_hosted_github_runner_self_hosted_github_actions_runner_implementation_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_self_hosted_github_actions_runner_implementation_plan", + "target": "plans_2026_06_18_self_hosted_github_runner_file_structure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L415", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_self_hosted_github_actions_runner_implementation_plan", + "target": "plans_2026_06_18_self_hosted_github_runner_self_review" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_file_structure", + "target": "plans_2026_06_18_self_hosted_github_runner_task_1_server_api_trucko_org_vorbereiten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_file_structure", + "target": "plans_2026_06_18_self_hosted_github_runner_task_2_github_actions_runner_installieren_und_registrieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_file_structure", + "target": "plans_2026_06_18_self_hosted_github_runner_task_3_ssh_deploy_key_zwischen_servern_einrichten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L187", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_file_structure", + "target": "plans_2026_06_18_self_hosted_github_runner_task_4_github_secrets_aktualisieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_file_structure", + "target": "plans_2026_06_18_self_hosted_github_runner_task_5_workflows_auf_self_hosted_runner_umstellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L291", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_file_structure", + "target": "plans_2026_06_18_self_hosted_github_runner_task_6_test_deploy_durchf\u00fchren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L347", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_file_structure", + "target": "plans_2026_06_18_self_hosted_github_runner_task_7_alten_webhook_deploy_abschalten_optional_nach_stabilem_betrieb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L382", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_file_structure", + "target": "plans_2026_06_18_self_hosted_github_runner_task_8_cleanup_und_monitoring" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L431", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_self_review", + "target": "plans_2026_06_18_self_hosted_github_runner_konsistenz" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L427", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_self_review", + "target": "plans_2026_06_18_self_hosted_github_runner_placeholder_scan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md", + "source_location": "L417", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_18_self_hosted_github_runner_self_review", + "target": "plans_2026_06_18_self_hosted_github_runner_spec_coverage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_superpowers_plans_2026_06_16_magic_dashboard_ios_section_md", + "target": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L496", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_known_backend_dependencies_out_of_scope_for_this_frontend_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L481", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_spec_coverage_check" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L383", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_10_grace_period_offboarding_placeholder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L429", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_11_verification_and_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L456", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_12_commit_changes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_1_extend_usedevicestatus_ts_to_split_devices_by_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_2_create_iosdevicecard_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_3_create_unknowniosdevicecard_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_4_create_iosdevicesection_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_5_update_status_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L277", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_6_extend_useprotectionstatus_ts_exports" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L302", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_7_adjust_devicedetailsheet_vue_for_ios_stars" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L336", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_8_update_deviceherocard_vue_and_devicelistitem_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md", + "source_location": "L354", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_ios_section_magic_dashboard_ios_section_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_ios_section_task_9_add_mdm_version_awareness_frontend_foundation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_superpowers_specs_2026_06_18_self_hosted_github_runner_design_md", + "target": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_10_migrationsschritte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_11_risiken_mitigationen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_12_offene_punkte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_13_erwartetes_ergebnis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_1_zusammenfassung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_2_kontext_ausgangslage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_3_ziele" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_4_nicht_ziele" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_5_architektur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_6_datenfluss_detailliert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_7_sicherheit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_8_fehlerbehandlung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_self_hosted_github_actions_runner_f\u00fcr_rebreak_monorepo", + "target": "specs_2026_06_18_self_hosted_github_runner_design_9_tests_in_ci" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_2_kontext_ausgangslage", + "target": "specs_2026_06_18_self_hosted_github_runner_design_aktueller_flow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_2_kontext_ausgangslage", + "target": "specs_2026_06_18_self_hosted_github_runner_design_bestehende_komponenten_werden_wiederverwendet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_2_kontext_ausgangslage", + "target": "specs_2026_06_18_self_hosted_github_runner_design_probleme_mit_dem_aktuellen_setup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_5_architektur", + "target": "specs_2026_06_18_self_hosted_github_runner_design_komponenten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_6_datenfluss_detailliert", + "target": "specs_2026_06_18_self_hosted_github_runner_design_6_1_backend_deploy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_6_datenfluss_detailliert", + "target": "specs_2026_06_18_self_hosted_github_runner_design_6_2_admin_deploy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_7_sicherheit", + "target": "specs_2026_06_18_self_hosted_github_runner_design_runner_isolation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_7_sicherheit", + "target": "specs_2026_06_18_self_hosted_github_runner_design_secrets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L135", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_7_sicherheit", + "target": "specs_2026_06_18_self_hosted_github_runner_design_ssh_zugriff" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_8_fehlerbehandlung", + "target": "specs_2026_06_18_self_hosted_github_runner_design_build_fehler" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_8_fehlerbehandlung", + "target": "specs_2026_06_18_self_hosted_github_runner_design_deploy_fehler" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_18_self_hosted_github_runner_design_8_fehlerbehandlung", + "target": "specs_2026_06_18_self_hosted_github_runner_design_parallelit\u00e4t" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_superpowers_specs_2026_06_16_magic_dashboard_ios_section_design_md", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_annahmen_aus_dem_abstimmungsgespr\u00e4ch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_bestehende_komponenten_anpassungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_datenfluss" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_fehlerbehandlung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_k\u00fcndigungs_grace_period_offboarding" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_neue_komponenten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_offene_punkte_n\u00e4chste_schritte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_on_demand_verhalten_bleibt_erhalten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_seitenstruktur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_magic_dashboard_ios_section_redesign", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_ziel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_neue_komponenten", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_iosdevicecard_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_neue_komponenten", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_iosdevicesection_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_neue_komponenten", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_unknowniosdevicecard_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_datenfluss", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_ios_matching" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_bestehende_komponenten_anpassungen", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_devicedetailsheet_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_bestehende_komponenten_anpassungen", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_deviceherocard_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_bestehende_komponenten_anpassungen", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_devicelistitem_vue" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_ios_section_design_bestehende_komponenten_anpassungen", + "target": "specs_2026_06_16_magic_dashboard_ios_section_design_usedevicestatus_ts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_superpowers_specs_2026_06_17_mdm_device_link_design_md", + "target": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design", + "target": "specs_2026_06_17_mdm_device_link_design_annahmen_einschr\u00e4nkungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design", + "target": "specs_2026_06_17_mdm_device_link_design_architektur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design", + "target": "specs_2026_06_17_mdm_device_link_design_dateien" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design", + "target": "specs_2026_06_17_mdm_device_link_design_datenmodell" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design", + "target": "specs_2026_06_17_mdm_device_link_design_endpunkte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design", + "target": "specs_2026_06_17_mdm_device_link_design_infra_env" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design", + "target": "specs_2026_06_17_mdm_device_link_design_magic_app_ui" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design", + "target": "specs_2026_06_17_mdm_device_link_design_offene_todos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design", + "target": "specs_2026_06_17_mdm_device_link_design_test_ergebnis_staging" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_mdm_device_link_f\u00fcr_magic_app_design", + "target": "specs_2026_06_17_mdm_device_link_design_ziel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_endpunkte", + "target": "specs_2026_06_17_mdm_device_link_design_get_api_magic_devices_deviceid_mdm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_endpunkte", + "target": "specs_2026_06_17_mdm_device_link_design_post_api_devices_protection_state" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-17-mdm-device-link-design.md", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_17_mdm_device_link_design_endpunkte", + "target": "specs_2026_06_17_mdm_device_link_design_post_api_magic_devices_deviceid_mdm_link" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_md", + "target": "ops_lyra_persona_lyra_persona_single_source_of_truth" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_anonymit\u00e4t_demographics" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L267", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_beta_phase_diga_status_stand_2026_05_29_coach" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_forbidden_phrases_audit_liste" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L281", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_forbidden_pricing_phrases_shared" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_identity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_mail_schutz_stand_2026_05_29_shared" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_mode_tag_konvention" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_modes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L239", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_multi_device_legend_coach" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_pricing_stand_2026_05_29_coach_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L255", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_rebreakmagic_siehe_oben_selbstbindungs_schutz_via_rebreakmagic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_schutz_architektur_wissensstand_2026_05_25_nach_country_pivot_mdm_vpn_pivot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_voice_picker_legend_only_elevenlabs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_vokabular_de" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_lyra_persona_single_source_of_truth", + "target": "ops_lyra_persona_vokabular_en" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_modes", + "target": "ops_lyra_persona_coach_casual_mode_coach" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_modes", + "target": "ops_lyra_persona_sos_crisis_mode_sos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_schutz_architektur_wissensstand_2026_05_25_nach_country_pivot_mdm_vpn_pivot", + "target": "ops_lyra_persona_android_vpn_bedienungshilfen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_schutz_architektur_wissensstand_2026_05_25_nach_country_pivot_mdm_vpn_pivot", + "target": "ops_lyra_persona_custom_domains_user_pflegbar_layer_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_schutz_architektur_wissensstand_2026_05_25_nach_country_pivot_mdm_vpn_pivot", + "target": "ops_lyra_persona_ios_zwei_schutzschichten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_schutz_architektur_wissensstand_2026_05_25_nach_country_pivot_mdm_vpn_pivot", + "target": "ops_lyra_persona_selbstbindungs_schutz_via_rebreakmagic_ios_macos_optional" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_selbstbindungs_schutz_via_rebreakmagic_ios_macos_optional", + "target": "ops_lyra_persona_wann_lyra_rebreakmagic_empfiehlt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_selbstbindungs_schutz_via_rebreakmagic_ios_macos_optional", + "target": "ops_lyra_persona_wie_lyra_dar\u00fcber_spricht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/LYRA_PERSONA.md", + "source_location": "L210", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_lyra_persona_pricing_stand_2026_05_29_coach_only", + "target": "ops_lyra_persona_wie_lyra_\u00fcber_pricing_spricht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_md", + "target": "ops_games_1v1_migration_plan_1v1_games_migration_plan_nuxt_rebreak_native" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_1v1_games_migration_plan_nuxt_rebreak_native", + "target": "ops_games_1v1_migration_plan_1_status_quo_nuxt_implementierung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_1v1_games_migration_plan_nuxt_rebreak_native", + "target": "ops_games_1v1_migration_plan_2_migration_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_1v1_games_migration_plan_nuxt_rebreak_native", + "target": "ops_games_1v1_migration_plan_3_architektur_empfehlung_was_wir_besser_machen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L200", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_1v1_games_migration_plan_nuxt_rebreak_native", + "target": "ops_games_1v1_migration_plan_4_risk_assessment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_1v1_games_migration_plan_nuxt_rebreak_native", + "target": "ops_games_1v1_migration_plan_5_open_questions_an_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_1v1_games_migration_plan_nuxt_rebreak_native", + "target": "ops_games_1v1_migration_plan_6_migration_aufwand_summary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_1_status_quo_nuxt_implementierung", + "target": "ops_games_1v1_migration_plan_1_1_frontend_vue_nuxt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_1_status_quo_nuxt_implementierung", + "target": "ops_games_1v1_migration_plan_1_2_backend_nuxt_server_nitro" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_1_status_quo_nuxt_implementierung", + "target": "ops_games_1v1_migration_plan_1_3_db_schema" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_1_status_quo_nuxt_implementierung", + "target": "ops_games_1v1_migration_plan_1_4_state_sync_mechanismus_1_satz" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_1_status_quo_nuxt_implementierung", + "target": "ops_games_1v1_migration_plan_1_5_datenflussdiagramm_ascii" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_2_migration_plan", + "target": "ops_games_1v1_migration_plan_phase_a_backend_endpoints_in_rebreak_monorepo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_2_migration_plan", + "target": "ops_games_1v1_migration_plan_phase_b_db_migrations_f\u00fcr_game_sessions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_2_migration_plan", + "target": "ops_games_1v1_migration_plan_phase_c_rn_ui_komponenten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_2_migration_plan", + "target": "ops_games_1v1_migration_plan_phase_d_realtime_wiring" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GAMES_1V1_MIGRATION_PLAN.md", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_games_1v1_migration_plan_2_migration_plan", + "target": "ops_games_1v1_migration_plan_phase_e_testing_deploy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L470", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_10_swot_analyse" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L505", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_11_roadmap_24_monate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L557", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_12_3_jahres_finanzplan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L619", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L659", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_14_risiken_mitigation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L690", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_15_anhang" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_1_executive_summary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_2_unternehmen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_3_produkt_technologie" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_4_problem_markt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_5_zielgruppe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L296", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_6_wettbewerb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L330", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L374", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_8_marketing_vertrieb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L431", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_9_organisation_team" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_md", + "target": "ops_business_plan_nbank_businessplan_rebreak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L2", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_businessplan_rebreak", + "target": "ops_business_plan_nbank_antrag_nbank_niedersachsen_gr\u00fcndungskredit_zielvolumen_75_000" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_businessplan_rebreak", + "target": "ops_business_plan_nbank_inhaltsverzeichnis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_2_unternehmen", + "target": "ops_business_plan_nbank_2_1_gr\u00fcnder" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_2_unternehmen", + "target": "ops_business_plan_nbank_2_2_sitz_rechtsform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_2_unternehmen", + "target": "ops_business_plan_nbank_2_3_vision" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_2_unternehmen", + "target": "ops_business_plan_nbank_2_4_mission" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_2_unternehmen", + "target": "ops_business_plan_nbank_2_5_werte_leitplanken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_produkt_technologie", + "target": "ops_business_plan_nbank_3_1_produkt_\u00fcberblick" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_produkt_technologie", + "target": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_produkt_technologie", + "target": "ops_business_plan_nbank_3_3_mail_schutz_layer_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_produkt_technologie", + "target": "ops_business_plan_nbank_3_4_lyra_ki_coach_layer_3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_produkt_technologie", + "target": "ops_business_plan_nbank_3_5_streak_community_onboarding" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_produkt_technologie", + "target": "ops_business_plan_nbank_3_6_rebreak_magic_selbstbindungs_modus_optional" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_produkt_technologie", + "target": "ops_business_plan_nbank_3_7_multi_device" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_produkt_technologie", + "target": "ops_business_plan_nbank_3_8_tech_stack_kurzfassung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_produkt_technologie", + "target": "ops_business_plan_nbank_3_9_plattform_coverage_strategie" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1", + "target": "ops_business_plan_nbank_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1", + "target": "ops_business_plan_nbank_custom_domains_user_pflegbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1", + "target": "ops_business_plan_nbank_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_3_2_ger\u00e4teschutz_layer_1", + "target": "ops_business_plan_nbank_macos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_4_problem_markt", + "target": "ops_business_plan_nbank_4_1_pr\u00e4valenz_gl\u00fccksspielsucht_in_deutschland" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_4_problem_markt", + "target": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L234", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_4_problem_markt", + "target": "ops_business_plan_nbank_4_3_marktgr\u00f6sse_top_down_bottom_up" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_4_problem_markt", + "target": "ops_business_plan_nbank_4_4_regulatorisches_fenster" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken", + "target": "ops_business_plan_nbank_l\u00fccke_1_offshore_schwarzmarkt_nach_oasis_sperrung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken", + "target": "ops_business_plan_nbank_l\u00fccke_2_werbe_druck_via_e_mail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken", + "target": "ops_business_plan_nbank_l\u00fccke_3_zeit_zwischen_beratungsterminen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_4_2_strukturelle_versorgungsl\u00fccken", + "target": "ops_business_plan_nbank_l\u00fccke_4_ger\u00e4te_bypass" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L244", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_4_3_marktgr\u00f6sse_top_down_bottom_up", + "target": "ops_business_plan_nbank_bottom_up_conversion_annahmen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_4_3_marktgr\u00f6sse_top_down_bottom_up", + "target": "ops_business_plan_nbank_top_down_deutschland" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L263", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_5_zielgruppe", + "target": "ops_business_plan_nbank_5_1_kernpersona_marcus_38" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L277", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_5_zielgruppe", + "target": "ops_business_plan_nbank_5_2_sekund\u00e4rpersona_angeh\u00f6rige_sandra_41" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L285", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_5_zielgruppe", + "target": "ops_business_plan_nbank_5_3_terti\u00e4re_persona_b2b_multiplikator_fachstellenleiter_dr_k_phase_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L298", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_6_wettbewerb", + "target": "ops_business_plan_nbank_6_1_wettbewerbs_matrix_verifiziert_stand_2026" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L310", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_6_wettbewerb", + "target": "ops_business_plan_nbank_6_2_usp_analyse_rebreak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L322", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_6_wettbewerb", + "target": "ops_business_plan_nbank_6_3_was_rebreak_bewusst_nicht_macht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L332", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell", + "target": "ops_business_plan_nbank_7_1_erl\u00f6smodell_stand_2026_05_29" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L344", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell", + "target": "ops_business_plan_nbank_7_2_erl\u00f6squellen_mittel_bis_langfristig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L351", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell", + "target": "ops_business_plan_nbank_7_3_unit_economics_sch\u00e4tzung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L366", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_7_gesch\u00e4ftsmodell", + "target": "ops_business_plan_nbank_7_4_pricing_disziplin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L376", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_8_marketing_vertrieb", + "target": "ops_business_plan_nbank_8_1_vertriebs_strategie_auf_einen_blick" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L387", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_8_marketing_vertrieb", + "target": "ops_business_plan_nbank_8_2_b2b_outreach_hauptkanal_jahr_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L404", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_8_marketing_vertrieb", + "target": "ops_business_plan_nbank_8_3_content_strategie_b2c" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L415", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_8_marketing_vertrieb", + "target": "ops_business_plan_nbank_8_4_brand_position" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L423", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_8_marketing_vertrieb", + "target": "ops_business_plan_nbank_8_5_pr_anker_2026_27" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L433", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_9_organisation_team", + "target": "ops_business_plan_nbank_9_1_status_quo_29_05_2026" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L446", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_9_organisation_team", + "target": "ops_business_plan_nbank_9_2_geplante_hires_jahr_2_nach_f\u00f6rderzusage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L457", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_9_organisation_team", + "target": "ops_business_plan_nbank_9_3_externe_partner" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L488", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_10_swot_analyse", + "target": "ops_business_plan_nbank_opportunities" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L472", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_10_swot_analyse", + "target": "ops_business_plan_nbank_strengths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L495", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_10_swot_analyse", + "target": "ops_business_plan_nbank_threats" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L480", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_10_swot_analyse", + "target": "ops_business_plan_nbank_weaknesses" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L507", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_11_roadmap_24_monate", + "target": "ops_business_plan_nbank_11_1_visuelle_roadmap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L515", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_11_roadmap_24_monate", + "target": "ops_business_plan_nbank_11_2_quartals_detail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L536", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_11_2_quartals_detail", + "target": "ops_business_plan_nbank_q1_2027" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L517", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_11_2_quartals_detail", + "target": "ops_business_plan_nbank_q2_2026_jetzt_vor_f\u00f6rderung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L541", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_11_2_quartals_detail", + "target": "ops_business_plan_nbank_q2_2027" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L523", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_11_2_quartals_detail", + "target": "ops_business_plan_nbank_q3_2026_f\u00f6rderzusage_angenommen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L546", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_11_2_quartals_detail", + "target": "ops_business_plan_nbank_q3_2027" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L530", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_11_2_quartals_detail", + "target": "ops_business_plan_nbank_q4_2026" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L550", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_11_2_quartals_detail", + "target": "ops_business_plan_nbank_q4_2027" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L562", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_12_3_jahres_finanzplan", + "target": "ops_business_plan_nbank_12_1_annahmen_block" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L573", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_12_3_jahres_finanzplan", + "target": "ops_business_plan_nbank_12_2_guv_\u00fcbersicht_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L600", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_12_3_jahres_finanzplan", + "target": "ops_business_plan_nbank_12_3_liquidit\u00e4ts_rohbild" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L612", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_12_3_jahres_finanzplan", + "target": "ops_business_plan_nbank_12_4_break_even_logik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L621", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000", + "target": "ops_business_plan_nbank_13_1_verwendungsplan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L634", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000", + "target": "ops_business_plan_nbank_13_2_eigenkapital_anteil" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L643", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000", + "target": "ops_business_plan_nbank_13_3_warum_kein_beteiligungskapital_in_phase_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L649", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_13_finanzierungsbedarf_75_000", + "target": "ops_business_plan_nbank_13_4_tilgungsf\u00e4higkeit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L661", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_14_risiken_mitigation", + "target": "ops_business_plan_nbank_14_1_risiko_matrix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L676", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_14_risiken_mitigation", + "target": "ops_business_plan_nbank_14_2_realistischer_worst_case_24_monate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L692", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_15_anhang", + "target": "ops_business_plan_nbank_a_cv_chahine_brini" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L696", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_15_anhang", + "target": "ops_business_plan_nbank_b_vorl\u00e4ufige_loi_liste" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L710", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_15_anhang", + "target": "ops_business_plan_nbank_c_quellen_belege" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L720", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_15_anhang", + "target": "ops_business_plan_nbank_d_app_demo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L725", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_15_anhang", + "target": "ops_business_plan_nbank_e_screenshots_der_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L729", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_15_anhang", + "target": "ops_business_plan_nbank_f_lyra_persona_produkt_spezifikation_auszug" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/BUSINESS_PLAN_NBANK.md", + "source_location": "L733", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_business_plan_nbank_15_anhang", + "target": "ops_business_plan_nbank_g_kontakt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_md", + "target": "ops_ui_migration_plan_ui_migration_plan_settings_profile_nuxt_rebreak_native" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_ui_migration_plan_settings_profile_nuxt_rebreak_native", + "target": "ops_ui_migration_plan_1_status_quo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_ui_migration_plan_settings_profile_nuxt_rebreak_native", + "target": "ops_ui_migration_plan_2_header_dropdown_menu_architektur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_ui_migration_plan_settings_profile_nuxt_rebreak_native", + "target": "ops_ui_migration_plan_3_settings_page_struktur_migration_ziel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_ui_migration_plan_settings_profile_nuxt_rebreak_native", + "target": "ops_ui_migration_plan_4_ios_keyboard_fix_f\u00fcr_sos_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_ui_migration_plan_settings_profile_nuxt_rebreak_native", + "target": "ops_ui_migration_plan_5_lyra_voice_feature" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L219", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_ui_migration_plan_settings_profile_nuxt_rebreak_native", + "target": "ops_ui_migration_plan_6_migration_reihenfolge_phase_2_3_4" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L246", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_ui_migration_plan_settings_profile_nuxt_rebreak_native", + "target": "ops_ui_migration_plan_7_top_3_risiken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_ui_migration_plan_settings_profile_nuxt_rebreak_native", + "target": "ops_ui_migration_plan_8_empfehlung_erster_schritt_in_phase_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_1_status_quo", + "target": "ops_ui_migration_plan_nuxt_app_mono_trucko_monorepo_apps_rebreak_app_pages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_1_status_quo", + "target": "ops_ui_migration_plan_rebreak_native_was_schon_existiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_1_status_quo", + "target": "ops_ui_migration_plan_was_komplett_fehlt_im_rebreak_native" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_3_settings_page_struktur_migration_ziel", + "target": "ops_ui_migration_plan_followup_nicht_mvp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_3_settings_page_struktur_migration_ziel", + "target": "ops_ui_migration_plan_tab_1_streak_mvp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_3_settings_page_struktur_migration_ziel", + "target": "ops_ui_migration_plan_tab_2_profil_mvp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_3_settings_page_struktur_migration_ziel", + "target": "ops_ui_migration_plan_tab_3_einstellungen_mvp" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_3_settings_page_struktur_migration_ziel", + "target": "ops_ui_migration_plan_tab_4_lyra_legend_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_3_settings_page_struktur_migration_ziel", + "target": "ops_ui_migration_plan_tab_5_debug_gated_dev_internal_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_4_ios_keyboard_fix_f\u00fcr_sos_page", + "target": "ops_ui_migration_plan_files_anzupassen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_4_ios_keyboard_fix_f\u00fcr_sos_page", + "target": "ops_ui_migration_plan_pattern_aus_components_postcommentssheet_tsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_4_ios_keyboard_fix_f\u00fcr_sos_page", + "target": "ops_ui_migration_plan_vorgeschlagener_fix_f\u00fcr_app_urge_tsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_4_ios_keyboard_fix_f\u00fcr_sos_page", + "target": "ops_ui_migration_plan_was_urge_tsx_aktuell_macht_line_1144" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_5_lyra_voice_feature", + "target": "ops_ui_migration_plan_api_changes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_5_lyra_voice_feature", + "target": "ops_ui_migration_plan_frage_db_schema_change_n\u00f6tig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L200", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_5_lyra_voice_feature", + "target": "ops_ui_migration_plan_frontend_flow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_5_lyra_voice_feature", + "target": "ops_ui_migration_plan_status_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_5_lyra_voice_feature", + "target": "ops_ui_migration_plan_voices_initial_nice_to_have_hardcoded" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_6_migration_reihenfolge_phase_2_3_4", + "target": "ops_ui_migration_plan_phase_2_quick_wins_1_2_days" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L226", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_6_migration_reihenfolge_phase_2_3_4", + "target": "ops_ui_migration_plan_phase_3_mvp_cutover_3_5_days" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_6_migration_reihenfolge_phase_2_3_4", + "target": "ops_ui_migration_plan_phase_4_legend_features_2_3_days" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/UI_MIGRATION_PLAN.md", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_ui_migration_plan_6_migration_reihenfolge_phase_2_3_4", + "target": "ops_ui_migration_plan_phase_5_followup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_md", + "target": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_0_leitprinzipien" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L262", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_10_offene_punkte_n\u00e4chste_mini_tasks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L272", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_11_cross_referenzen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_1_phasen_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_2_phase_1_im_detail_q3_2026_direkt_nach_nbank" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_3_phase_2_im_detail_q4_2026" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_4_phase_3_im_detail_q1_2027_iso_27001_light" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_5_phase_4_im_detail_q1_2027_gmbh" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_6_phase_7_9_diga_pfad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_7_was_nicht_gemacht_wird_bewusste_verzicht_entscheidungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_8_trigger_f\u00fcr_paid_launch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L241", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_rebreak_compliance_zertifizierungs_roadmap", + "target": "ops_compliance_roadmap_9_nbank_antrag_mittelverwendung_6_12_verzahnung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_2_phase_1_im_detail_q3_2026_direkt_nach_nbank", + "target": "ops_compliance_roadmap_2_1_externer_datenschutzbeauftragter_dsb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_2_phase_1_im_detail_q3_2026_direkt_nach_nbank", + "target": "ops_compliance_roadmap_2_2_datenschutz_folgenabsch\u00e4tzung_dsfa_art_35_dsgvo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_2_phase_1_im_detail_q3_2026_direkt_nach_nbank", + "target": "ops_compliance_roadmap_2_3_av_vertr\u00e4ge_auftragsverarbeitung_art_28_dsgvo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_2_phase_1_im_detail_q3_2026_direkt_nach_nbank", + "target": "ops_compliance_roadmap_2_4_datenschutzerkl\u00e4rung_cookie_consent_konstrukt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_2_phase_1_im_detail_q3_2026_direkt_nach_nbank", + "target": "ops_compliance_roadmap_2_5_verarbeitungsverzeichnis_art_30_dsgvo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_2_phase_1_im_detail_q3_2026_direkt_nach_nbank", + "target": "ops_compliance_roadmap_2_6_betroffenenrechte_technisch_implementieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_2_3_av_vertr\u00e4ge_auftragsverarbeitung_art_28_dsgvo", + "target": "ops_compliance_roadmap_groq_llm_schrems_ii_die_drei_optionen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_3_phase_2_im_detail_q4_2026", + "target": "ops_compliance_roadmap_3_1_hosting_strategie" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_3_phase_2_im_detail_q4_2026", + "target": "ops_compliance_roadmap_3_2_pseudonymisierungs_layer_f\u00fcr_groq" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_5_phase_4_im_detail_q1_2027_gmbh", + "target": "ops_compliance_roadmap_5_1_warum_gmbh_wechsel_kritisch_ist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_5_phase_4_im_detail_q1_2027_gmbh", + "target": "ops_compliance_roadmap_5_2_kostenstruktur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_5_phase_4_im_detail_q1_2027_gmbh", + "target": "ops_compliance_roadmap_5_3_vorbereitung_jetzt_schon_kostenlos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_5_phase_4_im_detail_q1_2027_gmbh", + "target": "ops_compliance_roadmap_5_4_alternative_ug_bewusst_verworfen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_6_phase_7_9_diga_pfad", + "target": "ops_compliance_roadmap_6_1_voraussetzungen_diga_listung_beim_bfarm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_6_phase_7_9_diga_pfad", + "target": "ops_compliance_roadmap_6_2_kostenrahmen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_6_phase_7_9_diga_pfad", + "target": "ops_compliance_roadmap_6_3_strategischer_wert_delphi_gmbh" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/COMPLIANCE_ROADMAP.md", + "source_location": "L200", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_compliance_roadmap_6_phase_7_9_diga_pfad", + "target": "ops_compliance_roadmap_6_4_refinanzierungs_logik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_todo_queue_md", + "target": "ops_todo_queue_todo_queue_f\u00fcr_n\u00e4chste_sessions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_todo_queue_todo_queue_f\u00fcr_n\u00e4chste_sessions", + "target": "ops_todo_queue_agent_hans_mueller_datenschutz_crisis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_todo_queue_todo_queue_f\u00fcr_n\u00e4chste_sessions", + "target": "ops_todo_queue_agent_lyra_persona" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_todo_queue_todo_queue_f\u00fcr_n\u00e4chste_sessions", + "target": "ops_todo_queue_agent_rebreak_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_todo_queue_todo_queue_f\u00fcr_n\u00e4chste_sessions", + "target": "ops_todo_queue_agent_rebreak_native_ui" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_todo_queue_todo_queue_f\u00fcr_n\u00e4chste_sessions", + "target": "ops_todo_queue_agent_zied_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_todo_queue_todo_queue_f\u00fcr_n\u00e4chste_sessions", + "target": "ops_todo_queue_marketing_site_staging_rebreak_org_done_29_05_2026" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TODO_QUEUE.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_todo_queue_todo_queue_f\u00fcr_n\u00e4chste_sessions", + "target": "ops_todo_queue_strategist_chahine_selbst" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_md", + "target": "ops_profile_page_design_profile_page_detail_design_spec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_profile_page_detail_design_spec", + "target": "ops_profile_page_design_0_routing_datenmodell_\u00fcbersicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L23", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_profile_page_detail_design_spec", + "target": "ops_profile_page_design_1_visual_mock_ascii_wireframe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_profile_page_detail_design_spec", + "target": "ops_profile_page_design_2_component_tree" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_profile_page_detail_design_spec", + "target": "ops_profile_page_design_3_api_endpoint_liste" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L247", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_profile_page_detail_design_spec", + "target": "ops_profile_page_design_4_db_schema_\u00e4nderungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_profile_page_detail_design_spec", + "target": "ops_profile_page_design_5_ui_differential_logik_eigenes_vs_fremdes_profil" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L319", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_profile_page_detail_design_spec", + "target": "ops_profile_page_design_6_risiken_open_questions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L372", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_profile_page_detail_design_spec", + "target": "ops_profile_page_design_7_implementation_reihenfolge_phase_2_3_vorschlag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L395", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_profile_page_detail_design_spec", + "target": "ops_profile_page_design_8_files_relevant_f\u00fcr_sp\u00e4tere_phasen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L321", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_6_risiken_open_questions", + "target": "ops_profile_page_design_6_1_image_cropper_library_f\u00fcr_rn_expo_sdk_53_new_architecture" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L332", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_6_risiken_open_questions", + "target": "ops_profile_page_design_6_2_cooldown_timeline_liste_vs_chart_vs_heatmap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L341", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_6_risiken_open_questions", + "target": "ops_profile_page_design_6_3_demographic_felder_pflicht_oder_optional_wann_fragen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L351", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_6_risiken_open_questions", + "target": "ops_profile_page_design_6_4_anti_vanity_metric_was_ist_motivierend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/PROFILE_PAGE_DESIGN.md", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_profile_page_design_6_risiken_open_questions", + "target": "ops_profile_page_design_6_5_weitere_open_questions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_md", + "target": "ops_mac_version_research_rebreak_macos_entscheidungsgrundlage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_rebreak_macos_entscheidungsgrundlage", + "target": "ops_mac_version_research_1_tl_dr" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_rebreak_macos_entscheidungsgrundlage", + "target": "ops_mac_version_research_2_pfad_vergleich_tabelle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_rebreak_macos_entscheidungsgrundlage", + "target": "ops_mac_version_research_3_pfad_details" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L207", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_rebreak_macos_entscheidungsgrundlage", + "target": "ops_mac_version_research_4_empfehlung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_rebreak_macos_entscheidungsgrundlage", + "target": "ops_mac_version_research_5_offene_fragen_ungepr\u00fcft_hypothetisch_markiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_rebreak_macos_entscheidungsgrundlage", + "target": "ops_mac_version_research_6_quellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_3_pfad_details", + "target": "ops_mac_version_research_pfad_1_mac_catalyst" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_3_pfad_details", + "target": "ops_mac_version_research_pfad_2_react_native_macos_microsoft_fork" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_3_pfad_details", + "target": "ops_mac_version_research_pfad_3_native_swift_mac_app_greenfield" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_3_pfad_details", + "target": "ops_mac_version_research_pfad_4_browser_extension_safari_chrome_firefox" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mac-version-research.md", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mac_version_research_3_pfad_details", + "target": "ops_mac_version_research_pfad_5_pers\u00f6nliches_mdm_profil_web_content_filter_payload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_md", + "target": "ops_testing_state_rebreak_testing_state_audit_roadmap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_rebreak_testing_state_audit_roadmap", + "target": "ops_testing_state_1_status_quo_rebreak_monorepo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_rebreak_testing_state_audit_roadmap", + "target": "ops_testing_state_2_heritage_aus_trucko_monorepo_was_portierbar_inspirierend_ist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_rebreak_testing_state_audit_roadmap", + "target": "ops_testing_state_3_risk_matrix_top_10_ungetestete_critical_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_rebreak_testing_state_audit_roadmap", + "target": "ops_testing_state_4_roadmap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_rebreak_testing_state_audit_roadmap", + "target": "ops_testing_state_5_tooling_empfehlungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L248", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_rebreak_testing_state_audit_roadmap", + "target": "ops_testing_state_6_konkrete_todos_nach_priorit\u00e4t" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L287", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_rebreak_testing_state_audit_roadmap", + "target": "ops_testing_state_7_wo_der_schuh_am_st\u00e4rksten_dr\u00fcckt_tl_dr" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L304", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_rebreak_testing_state_audit_roadmap", + "target": "ops_testing_state_8_open_questions_an_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_1_status_quo_rebreak_monorepo", + "target": "ops_testing_state_1_1_backend_backend_nitro_standalone_prisma_supabase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_1_status_quo_rebreak_monorepo", + "target": "ops_testing_state_1_2_frontend_apps_rebreak_native_expo_sdk_53_rn_0_79" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_1_status_quo_rebreak_monorepo", + "target": "ops_testing_state_1_3_ci_cd" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_1_status_quo_rebreak_monorepo", + "target": "ops_testing_state_1_4_zusammenfassung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_2_heritage_aus_trucko_monorepo_was_portierbar_inspirierend_ist", + "target": "ops_testing_state_2_1_vitest_unit_suite_gold_wert_70_portierbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_2_heritage_aus_trucko_monorepo_was_portierbar_inspirierend_ist", + "target": "ops_testing_state_2_2_postman_collection_sofort_wiederverwendbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_2_heritage_aus_trucko_monorepo_was_portierbar_inspirierend_ist", + "target": "ops_testing_state_2_3_playwright_smoke_tests_e2e_smoke" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_2_heritage_aus_trucko_monorepo_was_portierbar_inspirierend_ist", + "target": "ops_testing_state_2_4_cypress_suite_apps_rebreak_cypress_e2e" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_4_roadmap", + "target": "ops_testing_state_4_1_pre_testflight_wochenende_mai_2026_absolutes_minimum" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_4_roadmap", + "target": "ops_testing_state_4_2_post_testflight_woche_1_2_nach_wochenend_cutover" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_4_roadmap", + "target": "ops_testing_state_4_3_phase_c_demographics_pro_trial_tdd_parallel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_4_roadmap", + "target": "ops_testing_state_4_4_diga_pathway_hans_m\u00fcller_frage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L210", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_5_tooling_empfehlungen", + "target": "ops_testing_state_5_1_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_5_tooling_empfehlungen", + "target": "ops_testing_state_5_2_frontend_native" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_5_tooling_empfehlungen", + "target": "ops_testing_state_5_3_ci" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_6_konkrete_todos_nach_priorit\u00e4t", + "target": "ops_testing_state_hoch_vor_testflight_wochenende" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_6_konkrete_todos_nach_priorit\u00e4t", + "target": "ops_testing_state_mittel_woche_1_2_nach_testflight" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/TESTING_STATE.md", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_testing_state_6_konkrete_todos_nach_priorit\u00e4t", + "target": "ops_testing_state_niedrig_woche_3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_md", + "target": "ops_accessibility_audit_rebreak_native_accessibility_audit_diga_roadmap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_rebreak_native_accessibility_audit_diga_roadmap", + "target": "ops_accessibility_audit_1_executive_summary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_rebreak_native_accessibility_audit_diga_roadmap", + "target": "ops_accessibility_audit_2_component_by_component_status_critical_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L213", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_rebreak_native_accessibility_audit_diga_roadmap", + "target": "ops_accessibility_audit_3_test_framework_empfehlung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L273", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_rebreak_native_accessibility_audit_diga_roadmap", + "target": "ops_accessibility_audit_4_wcag_2_1_level_aa_mapping_rebreak_native_heute" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L302", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_rebreak_native_accessibility_audit_diga_roadmap", + "target": "ops_accessibility_audit_5_diga_punkte_strategy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L348", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_rebreak_native_accessibility_audit_diga_roadmap", + "target": "ops_accessibility_audit_6_roadmap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L398", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_rebreak_native_accessibility_audit_diga_roadmap", + "target": "ops_accessibility_audit_7_konkrete_todos_nach_priorit\u00e4t" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L424", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_rebreak_native_accessibility_audit_diga_roadmap", + "target": "ops_accessibility_audit_8_open_questions_an_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_10_dynamic_type_font_scaling_cross_cutting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_11_color_contrast_cross_cutting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_12_screen_reader_detection_cross_cutting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L204", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_13_touch_target_size" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_1_sos_flow_app_urge_tsx_1333_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_2_sos_spiele_components_urge_urgegames_tsx_1067_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_3_profile_demographics_app_profile_index_tsx_components_profile_demographicsaccordion_tsx_272_621_lines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_4_header_dropdown_components_appheader_tsx_components_header_headerdropdownmenu_tsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_5_composecard_components_composecard_tsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_6_blocker_app_app_blocker_tsx_components_blocker_tsx_best_of" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_7_auth_flow_app_auth_signin_signup_forgot_password_confirm_confirm_otp_device_limit_tsx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_8_community_postcard_postcommentssheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_2_component_by_component_status_critical_paths", + "target": "ops_accessibility_audit_2_9_animation_reduce_motion_cross_cutting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L215", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_3_test_framework_empfehlung", + "target": "ops_accessibility_audit_3_1_was_es_gibt_f\u00fcr_rn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_3_test_framework_empfehlung", + "target": "ops_accessibility_audit_3_2_empfehlung_in_einem_satz" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_3_test_framework_empfehlung", + "target": "ops_accessibility_audit_3_3_setup_aufwand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L243", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_3_test_framework_empfehlung", + "target": "ops_accessibility_audit_3_4_beispiel_a11y_component_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L304", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_5_diga_punkte_strategy", + "target": "ops_accessibility_audit_5_1_was_bfarm_real_fragt_laut_diga_verfahrensverzeichnis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L312", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_5_diga_punkte_strategy", + "target": "ops_accessibility_audit_5_2_low_hanging_fruit_hoher_bfarm_eindruck_niedriger_aufwand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L323", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_5_diga_punkte_strategy", + "target": "ops_accessibility_audit_5_3_architektur_investments_hoher_effort_h\u00f6herer_score" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L336", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_5_diga_punkte_strategy", + "target": "ops_accessibility_audit_5_4_diga_self_statement_vorschlag_f\u00fcr_dsfa_mit_hans_m\u00fcller" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L350", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_6_roadmap", + "target": "ops_accessibility_audit_6_1_pre_testflight_wochenende_2026_05_09_10_absolutes_minimum" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L367", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_6_roadmap", + "target": "ops_accessibility_audit_6_2_pre_diga_antrag_phase_nach_public_beta_vollabdeckung_critical_paths" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L386", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_6_roadmap", + "target": "ops_accessibility_audit_6_3_post_launch_kontinuierliches_a11y_gate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L400", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_7_konkrete_todos_nach_priorit\u00e4t", + "target": "ops_accessibility_audit_hoch_vor_testflight_wochenende" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L408", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_7_konkrete_todos_nach_priorit\u00e4t", + "target": "ops_accessibility_audit_mittel_pre_diga_antrag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/ACCESSIBILITY_AUDIT.md", + "source_location": "L416", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_accessibility_audit_7_konkrete_todos_nach_priorit\u00e4t", + "target": "ops_accessibility_audit_niedrig_post_launch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_md", + "target": "ops_cutover_plan_rebreak_cutover_plan_apps_rebreak_nuxt_backend_standalone_nitro" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_rebreak_cutover_plan_apps_rebreak_nuxt_backend_standalone_nitro", + "target": "ops_cutover_plan_1_status_quo_stand_2026_05_06_post_rollback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_rebreak_cutover_plan_apps_rebreak_nuxt_backend_standalone_nitro", + "target": "ops_cutover_plan_2_pipeline_diagramm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_rebreak_cutover_plan_apps_rebreak_nuxt_backend_standalone_nitro", + "target": "ops_cutover_plan_3_fehlende_runtimeconfig_keys" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L204", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_rebreak_cutover_plan_apps_rebreak_nuxt_backend_standalone_nitro", + "target": "ops_cutover_plan_4_cutover_sequence_sequentiell_abarbeiten_jeden_step_best\u00e4tigen_lassen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L278", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_rebreak_cutover_plan_apps_rebreak_nuxt_backend_standalone_nitro", + "target": "ops_cutover_plan_5_rollback_plan_cutover_scheitert_5_min" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L315", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_rebreak_cutover_plan_apps_rebreak_nuxt_backend_standalone_nitro", + "target": "ops_cutover_plan_6_test_checklist_nach_cutover" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L355", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_rebreak_cutover_plan_apps_rebreak_nuxt_backend_standalone_nitro", + "target": "ops_cutover_plan_7_risiken_open_questions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L375", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_rebreak_cutover_plan_apps_rebreak_nuxt_backend_standalone_nitro", + "target": "ops_cutover_plan_8_operations_cheatsheet_post_cutover" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_1_status_quo_stand_2026_05_06_post_rollback", + "target": "ops_cutover_plan_1_1_server_srv_rebreak_live_backyard_s_layout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_1_status_quo_stand_2026_05_06_post_rollback", + "target": "ops_cutover_plan_1_2_mac_mono_rebreak_monorepo_cutover_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_1_status_quo_stand_2026_05_06_post_rollback", + "target": "ops_cutover_plan_1_3_was_kaputt_war_incident_2026_05_06" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_2_pipeline_diagramm", + "target": "ops_cutover_plan_2_1_pipeline_aktuell_backyard_layout_l\u00e4uft" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_2_pipeline_diagramm", + "target": "ops_cutover_plan_2_2_pipeline_ziel_nach_cutover_neues_layout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_3_fehlende_runtimeconfig_keys", + "target": "ops_cutover_plan_3_1_keys_die_im_aktuellen_backend_nitro_config_ts_schon_existieren_16_total" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_3_fehlende_runtimeconfig_keys", + "target": "ops_cutover_plan_3_2_keys_die_fehlen_cutover_blocker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_3_fehlende_runtimeconfig_keys", + "target": "ops_cutover_plan_3_3_supabase_keys_hauptbruchstelle_des_incidents" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_3_fehlende_runtimeconfig_keys", + "target": "ops_cutover_plan_3_4_verifikation_des_cutover_drafts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_4_cutover_sequence_sequentiell_abarbeiten_jeden_step_best\u00e4tigen_lassen", + "target": "ops_cutover_plan_phase_a_vorbereitung_nicht_destruktiv_lokal_auf_mac" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L225", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_4_cutover_sequence_sequentiell_abarbeiten_jeden_step_best\u00e4tigen_lassen", + "target": "ops_cutover_plan_phase_b_server_vorbereitung_read_only_kein_eingriff_in_laufendes_system" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_4_cutover_sequence_sequentiell_abarbeiten_jeden_step_best\u00e4tigen_lassen", + "target": "ops_cutover_plan_phase_c_pipeline_anpassung_auf_mac_dann_xgit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L248", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_4_cutover_sequence_sequentiell_abarbeiten_jeden_step_best\u00e4tigen_lassen", + "target": "ops_cutover_plan_phase_d_deploy_destruktiv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L268", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_4_cutover_sequence_sequentiell_abarbeiten_jeden_step_best\u00e4tigen_lassen", + "target": "ops_cutover_plan_phase_e_verifikation_read_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L280", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_5_rollback_plan_cutover_scheitert_5_min", + "target": "ops_cutover_plan_5_1_schneller_rollback_webhook_re_triggert_alter_head" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L294", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_5_rollback_plan_cutover_scheitert_5_min", + "target": "ops_cutover_plan_5_2_falls_server_scripts_deploy_sh_schon_im_cutover_modifiziert_wurde" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L298", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_5_rollback_plan_cutover_scheitert_5_min", + "target": "ops_cutover_plan_5_3_falls_output_staging_bereits_gel\u00f6scht_wurde" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L305", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_5_rollback_plan_cutover_scheitert_5_min", + "target": "ops_cutover_plan_5_4_smoke_test_nach_rollback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L365", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_7_risiken_open_questions", + "target": "ops_cutover_plan_open_questions_an_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CUTOVER_PLAN.md", + "source_location": "L357", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_cutover_plan_7_risiken_open_questions", + "target": "ops_cutover_plan_risiken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_github_actions_pipeline_md", + "target": "ops_github_actions_pipeline_github_actions_build_deploy_pipeline_rebreak_monorepo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L195", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_github_actions_pipeline_github_actions_build_deploy_pipeline_rebreak_monorepo", + "target": "ops_github_actions_pipeline_cheatsheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_github_actions_pipeline_github_actions_build_deploy_pipeline_rebreak_monorepo", + "target": "ops_github_actions_pipeline_coexistence_strategie_webhook_bleibt_parallel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_github_actions_pipeline_github_actions_build_deploy_pipeline_rebreak_monorepo", + "target": "ops_github_actions_pipeline_migration_zu_production_pipeline_spaeter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_github_actions_pipeline_github_actions_build_deploy_pipeline_rebreak_monorepo", + "target": "ops_github_actions_pipeline_neue_pipeline_architektur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L186", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_github_actions_pipeline_github_actions_build_deploy_pipeline_rebreak_monorepo", + "target": "ops_github_actions_pipeline_open_questions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_github_actions_pipeline_github_actions_build_deploy_pipeline_rebreak_monorepo", + "target": "ops_github_actions_pipeline_recon_trucko_pattern_vorlagen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_github_actions_pipeline_github_actions_build_deploy_pipeline_rebreak_monorepo", + "target": "ops_github_actions_pipeline_required_github_secrets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_github_actions_pipeline_github_actions_build_deploy_pipeline_rebreak_monorepo", + "target": "ops_github_actions_pipeline_required_user_actions_vor_erstem_ga_run" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_github_actions_pipeline_github_actions_build_deploy_pipeline_rebreak_monorepo", + "target": "ops_github_actions_pipeline_warum_diese_pipeline_jetzt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/GITHUB_ACTIONS_PIPELINE.md", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_github_actions_pipeline_neue_pipeline_architektur", + "target": "ops_github_actions_pipeline_files_in_diesem_pr" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_md", + "target": "ops_maestro_hosting_decision_maestro_hosting_decision_memo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_maestro_hosting_decision_memo", + "target": "ops_maestro_hosting_decision_1_hard_constraint_ios_l\u00e4sst_sich_auf_linux_nicht_testen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_maestro_hosting_decision_memo", + "target": "ops_maestro_hosting_decision_2_performance_risk_auf_existierendem_cx23" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_maestro_hosting_decision_memo", + "target": "ops_maestro_hosting_decision_3_cost_comparison" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_maestro_hosting_decision_memo", + "target": "ops_maestro_hosting_decision_4_aufwand_sch\u00e4tzung_pro_variante" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_maestro_hosting_decision_memo", + "target": "ops_maestro_hosting_decision_5_empfehlung_lieblings_pfad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_maestro_hosting_decision_memo", + "target": "ops_maestro_hosting_decision_6_setup_estimate_f\u00fcr_die_empfehlung_pfad_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_maestro_hosting_decision_memo", + "target": "ops_maestro_hosting_decision_7_offene_punkte_user_decision" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_maestro_hosting_decision_memo", + "target": "ops_maestro_hosting_decision_8_tl_dr_f\u00fcr_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_4_aufwand_sch\u00e4tzung_pro_variante", + "target": "ops_maestro_hosting_decision_a_maestro_cloud" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_4_aufwand_sch\u00e4tzung_pro_variante", + "target": "ops_maestro_hosting_decision_b_hybrid_self_host_android_cloud_ios_oder_gh_actions_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_4_aufwand_sch\u00e4tzung_pro_variante", + "target": "ops_maestro_hosting_decision_b_self_host_android_only" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_4_aufwand_sch\u00e4tzung_pro_variante", + "target": "ops_maestro_hosting_decision_c_pure_self_host_inkl_mac" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_4_aufwand_sch\u00e4tzung_pro_variante", + "target": "ops_maestro_hosting_decision_d_github_actions_matrix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_5_empfehlung_lieblings_pfad", + "target": "ops_maestro_hosting_decision_anti_empfehlung_self_host_auf_hetzner_b_oder_b" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_5_empfehlung_lieblings_pfad", + "target": "ops_maestro_hosting_decision_lieblings_pfad_maestro_cloud_starter_variante_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/MAESTRO_HOSTING_DECISION.md", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_maestro_hosting_decision_5_empfehlung_lieblings_pfad", + "target": "ops_maestro_hosting_decision_plan_b_github_actions_matrix_variante_d" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_md", + "target": "ops_release_readiness_release_readiness_testflight_internal_play_internal_testing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L200", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_release_readiness_testflight_internal_play_internal_testing", + "target": "ops_release_readiness_3_wichtigste_open_questions_an_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_release_readiness_testflight_internal_play_internal_testing", + "target": "ops_release_readiness_external_beta_pfad_zus\u00e4tzlich_1_woche" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_release_readiness_testflight_internal_play_internal_testing", + "target": "ops_release_readiness_internal_only_pfad_3_tage_realistisch_f\u00fcr_wochenende" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L185", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_release_readiness_testflight_internal_play_internal_testing", + "target": "ops_release_readiness_realistischer_wochenend_plan_machbarkeit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_release_readiness_testflight_internal_play_internal_testing", + "target": "ops_release_readiness_risk_assessment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_release_readiness_testflight_internal_play_internal_testing", + "target": "ops_release_readiness_status_quo_tabelle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_release_readiness_testflight_internal_play_internal_testing", + "target": "ops_release_readiness_todo_liste_sortiert_nach_tag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_release_readiness_testflight_internal_play_internal_testing", + "target": "ops_release_readiness_top_5_user_actions_die_nicht_verschoben_werden_k\u00f6nnen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_status_quo_tabelle", + "target": "ops_release_readiness_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_status_quo_tabelle", + "target": "ops_release_readiness_cross_platform" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_status_quo_tabelle", + "target": "ops_release_readiness_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_risk_assessment", + "target": "ops_release_readiness_r1_stripe_iap_konflikt_hoch_f\u00fcr_external_mittel_f\u00fcr_internal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_risk_assessment", + "target": "ops_release_readiness_r2_vpn_filter_inclusion_im_build_mittel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_risk_assessment", + "target": "ops_release_readiness_r3_apple_sign_in_todo_mittel_f\u00fcr_external" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_risk_assessment", + "target": "ops_release_readiness_r4_production_keystore_custody_hoch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_risk_assessment", + "target": "ops_release_readiness_r5_hardcoded_supabase_anon_key_in_app_config_ts_niedrig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_risk_assessment", + "target": "ops_release_readiness_r6_backend_api_pointer_f\u00fcr_tester_mittel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_todo_liste_sortiert_nach_tag", + "target": "ops_release_readiness_donnerstag_2026_05_07_heute_recon_doc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_todo_liste_sortiert_nach_tag", + "target": "ops_release_readiness_freitag_2026_05_08_setup_configs_alles_ohne_build_trigger" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_todo_liste_sortiert_nach_tag", + "target": "ops_release_readiness_samstag_2026_05_09_build_submit_alles_mit_user_approval" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_todo_liste_sortiert_nach_tag", + "target": "ops_release_readiness_sonntag_2026_05_10_buffer_iteration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_3_wichtigste_open_questions_an_user", + "target": "ops_release_readiness_q1_vpn_filter_im_ersten_build_dabei_oder_rauslassen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_3_wichtigste_open_questions_an_user", + "target": "ops_release_readiness_q2_backend_api_pointer_f\u00fcr_internal_tester_staging_oder_prod" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/RELEASE_READINESS.md", + "source_location": "L213", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_release_readiness_3_wichtigste_open_questions_an_user", + "target": "ops_release_readiness_q3_keystore_strategie_android_eas_managed_oder_eigener_custody" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_md", + "target": "ops_webhook_migration_plan_webhook_migration_standalone_listener_nitro_endpoint_trucko_pattern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_webhook_migration_standalone_listener_nitro_endpoint_trucko_pattern", + "target": "ops_webhook_migration_plan_1_status_quo_stand_2026_05_07" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_webhook_migration_standalone_listener_nitro_endpoint_trucko_pattern", + "target": "ops_webhook_migration_plan_2_trucko_pattern_das_vorbild" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_webhook_migration_standalone_listener_nitro_endpoint_trucko_pattern", + "target": "ops_webhook_migration_plan_3_migrations_schritte_f\u00fcr_n\u00e4chste_session_nicht_jetzt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_webhook_migration_standalone_listener_nitro_endpoint_trucko_pattern", + "target": "ops_webhook_migration_plan_4_risk_assessment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_webhook_migration_standalone_listener_nitro_endpoint_trucko_pattern", + "target": "ops_webhook_migration_plan_5_fallback_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_webhook_migration_standalone_listener_nitro_endpoint_trucko_pattern", + "target": "ops_webhook_migration_plan_6_empfohlener_erster_schritt_f\u00fcr_n\u00e4chste_session" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_webhook_migration_standalone_listener_nitro_endpoint_trucko_pattern", + "target": "ops_webhook_migration_plan_7_was_nicht_in_scope" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_1_status_quo_stand_2026_05_07", + "target": "ops_webhook_migration_plan_1_1_aktuelle_pipeline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_1_status_quo_stand_2026_05_07", + "target": "ops_webhook_migration_plan_1_2_beteiligte_dateien" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_1_status_quo_stand_2026_05_07", + "target": "ops_webhook_migration_plan_1_3_beobachtete_probleme" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_2_trucko_pattern_das_vorbild", + "target": "ops_webhook_migration_plan_2_1_architektur_eigenschaften" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_2_trucko_pattern_das_vorbild", + "target": "ops_webhook_migration_plan_2_2_was_das_trucko_pattern_besser_macht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_3_migrations_schritte_f\u00fcr_n\u00e4chste_session_nicht_jetzt", + "target": "ops_webhook_migration_plan_phase_1_endpoint_anlegen_mac_kein_server_change" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_3_migrations_schritte_f\u00fcr_n\u00e4chste_session_nicht_jetzt", + "target": "ops_webhook_migration_plan_phase_2_infisical_secrets_setzen_user_eskalation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_3_migrations_schritte_f\u00fcr_n\u00e4chste_session_nicht_jetzt", + "target": "ops_webhook_migration_plan_phase_3_parallel_betrieb_failsafe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_3_migrations_schritte_f\u00fcr_n\u00e4chste_session_nicht_jetzt", + "target": "ops_webhook_migration_plan_phase_4_cutover" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_3_migrations_schritte_f\u00fcr_n\u00e4chste_session_nicht_jetzt", + "target": "ops_webhook_migration_plan_phase_5_hardening" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_4_risk_assessment", + "target": "ops_webhook_migration_plan_top_3_risks_bei_migration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/WEBHOOK_MIGRATION_PLAN.md", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_webhook_migration_plan_4_risk_assessment", + "target": "ops_webhook_migration_plan_weitere_risiken_lower_priority" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_callkit_setup_md", + "target": "ops_callkit_setup_callkit_voip_setup_f\u00fcr_rebreak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_callkit_setup_callkit_voip_setup_f\u00fcr_rebreak", + "target": "ops_callkit_setup_1_csr_generieren_mac_2_min" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_callkit_setup_callkit_voip_setup_f\u00fcr_rebreak", + "target": "ops_callkit_setup_2_apple_dev_portal_5_min" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_callkit_setup_callkit_voip_setup_f\u00fcr_rebreak", + "target": "ops_callkit_setup_3_files_an_mich" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_callkit_setup_callkit_voip_setup_f\u00fcr_rebreak", + "target": "ops_callkit_setup_4_cer_in_p8_p12_konvertieren_ich_mach_das" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_callkit_setup_callkit_voip_setup_f\u00fcr_rebreak", + "target": "ops_callkit_setup_5_was_apple_beim_n\u00e4chsten_app_review_checkt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/CALLKIT_SETUP.md", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_callkit_setup_callkit_voip_setup_f\u00fcr_rebreak", + "target": "ops_callkit_setup_6_android_kein_apple_antrag_aber_permission_im_manifest" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/calls/RUNBOOK.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_calls_runbook_md", + "target": "calls_runbook_voice_calls_coturn_turn_server_runbook" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/calls/RUNBOOK.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "calls_runbook_voice_calls_coturn_turn_server_runbook", + "target": "calls_runbook_architektur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/calls/RUNBOOK.md", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "calls_runbook_voice_calls_coturn_turn_server_runbook", + "target": "calls_runbook_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/calls/RUNBOOK.md", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "calls_runbook_voice_calls_coturn_turn_server_runbook", + "target": "calls_runbook_betrieb_kosten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/calls/RUNBOOK.md", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "calls_runbook_voice_calls_coturn_turn_server_runbook", + "target": "calls_runbook_provisioning_einmalig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_architecture_md", + "target": "mdm_architecture_mdm_server_technische_architektur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_mdm_server_technische_architektur", + "target": "mdm_architecture_apple_push_zertifikat_ablauf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_mdm_server_technische_architektur", + "target": "mdm_architecture_dns" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_mdm_server_technische_architektur", + "target": "mdm_architecture_port_\u00fcbersicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_mdm_server_technische_architektur", + "target": "mdm_architecture_recovery_szenarien" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_mdm_server_technische_architektur", + "target": "mdm_architecture_server" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_mdm_server_technische_architektur", + "target": "mdm_architecture_stack_komponenten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_mdm_server_technische_architektur", + "target": "mdm_architecture_trust_modell" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_mdm_server_technische_architektur", + "target": "mdm_architecture_zertifikat_pfade" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_stack_komponenten", + "target": "mdm_architecture_certbot_system_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_stack_komponenten", + "target": "mdm_architecture_nanomdm_docker_container" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_stack_komponenten", + "target": "mdm_architecture_nginx_system_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/ARCHITECTURE.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_architecture_stack_komponenten", + "target": "mdm_architecture_postgresql_system_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_phases_md", + "target": "mdm_phases_mdm_setup_phasen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_a_server_bootstrap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_b_tls_zertifikat" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_c_nanomdm_container_nginx_vhost" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_d_0_5_mdmcert_download_signing_request" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_d_0_7_signed_csr_entschl\u00fcsseln" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_d_1_apple_push_cert_benutzeraktion" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_d_2_nanomdm_mit_push_cert_konfiguriert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_d_apple_push_csr_generiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L198", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_e_email_distribution_an_ina_geparkt_user_decision_2026_05_10" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_f_device_enrollment_via_backup_sandwich" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L283", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_g_ipad_enrollment_optional_sp\u00e4ter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L296", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_phase_h_macbook_enrollment_optional_sp\u00e4ter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_mdm_setup_phasen", + "target": "mdm_phases_revisions_log" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L273", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_phase_f_device_enrollment_via_backup_sandwich", + "target": "mdm_phases_akzeptanz_test_m2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L264", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_phase_f_device_enrollment_via_backup_sandwich", + "target": "mdm_phases_hardware_tool_voraussetzungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_phase_f_device_enrollment_via_backup_sandwich", + "target": "mdm_phases_komponenten_dieser_phase" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_phase_f_device_enrollment_via_backup_sandwich", + "target": "mdm_phases_mechanismus" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/PHASES.md", + "source_location": "L236", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_phases_phase_f_device_enrollment_via_backup_sandwich", + "target": "mdm_phases_scope_erweitert_2026_05_24_revidiert_2026_05_24_late_nach_dev_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_doh_clientid_handshake_md", + "target": "mdm_doh_clientid_handshake_doh_clientid_handshake_architektur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_doh_clientid_handshake_doh_clientid_handshake_architektur", + "target": "mdm_doh_clientid_handshake_adguard_querylog_format" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_doh_clientid_handshake_doh_clientid_handshake_architektur", + "target": "mdm_doh_clientid_handshake_datei_\u00fcbersicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_doh_clientid_handshake_doh_clientid_handshake_architektur", + "target": "mdm_doh_clientid_handshake_deploy_schritte_reihenfolge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_doh_clientid_handshake_doh_clientid_handshake_architektur", + "target": "mdm_doh_clientid_handshake_flow_diagramm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_doh_clientid_handshake_doh_clientid_handshake_architektur", + "target": "mdm_doh_clientid_handshake_nginx_diff_vs_alter_konfiguration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_doh_clientid_handshake_doh_clientid_handshake_architektur", + "target": "mdm_doh_clientid_handshake_risiken_verify_checklist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_doh_clientid_handshake_doh_clientid_handshake_architektur", + "target": "mdm_doh_clientid_handshake_secrets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_doh_clientid_handshake_doh_clientid_handshake_architektur", + "target": "mdm_doh_clientid_handshake_verify_checklist_vor_nginx_s_reload" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_doh_clientid_handshake_doh_clientid_handshake_architektur", + "target": "mdm_doh_clientid_handshake_warum_clientid_pfad_und_nicht_query_parameter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L204", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_doh_clientid_handshake_risiken_verify_checklist", + "target": "mdm_doh_clientid_handshake_risiken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/DOH_CLIENTID_HANDSHAKE.md", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_doh_clientid_handshake_risiken_verify_checklist", + "target": "mdm_doh_clientid_handshake_vor_nginx_t_systemctl_reload_nginx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_mac_supervision_research_md", + "target": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit", + "target": "mdm_mac_supervision_research_1_techlockdown_findings_verifiziert_via_techlockdown_com" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit", + "target": "mdm_mac_supervision_research_2_apple_mechanik_deep_dive_macos_mdm_vs_ios_mdm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit", + "target": "mdm_mac_supervision_research_3_replizierbarkeits_matrix_techlockdown_vs_rebreakbinder_mac" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L283", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit", + "target": "mdm_mac_supervision_research_4_empfehlung_f\u00fcr_rebreakbinder_mac" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L361", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit", + "target": "mdm_mac_supervision_research_5_apple_business_manager_abm_do_we_need_it" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L400", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit", + "target": "mdm_mac_supervision_research_6_offene_fragen_risiken_user_decisions_needed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L453", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit", + "target": "mdm_mac_supervision_research_7_implementation_roadmap_wenn_go_entscheidung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L503", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit", + "target": "mdm_mac_supervision_research_8_quellen_verifikations_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L525", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit", + "target": "mdm_mac_supervision_research_9_fazit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_mac_supervision_research_techlockdown_analyse_replizierbarkeit", + "target": "mdm_mac_supervision_research_executive_summary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_1_techlockdown_findings_verifiziert_via_techlockdown_com", + "target": "mdm_mac_supervision_research_1_1_hauptmechanik_apple_configuration_profiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_1_techlockdown_findings_verifiziert_via_techlockdown_com", + "target": "mdm_mac_supervision_research_1_2_profile_schutz_mechanik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_1_techlockdown_findings_verifiziert_via_techlockdown_com", + "target": "mdm_mac_supervision_research_1_3_profile_locking_dashboard_feature_nicht_apple_mechanik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_1_techlockdown_findings_verifiziert_via_techlockdown_com", + "target": "mdm_mac_supervision_research_1_4_managed_mode_f\u00fcr_browser_extensions" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_1_techlockdown_findings_verifiziert_via_techlockdown_com", + "target": "mdm_mac_supervision_research_1_5_was_techlockdown_nicht_erw\u00e4hnt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_2_apple_mechanik_deep_dive_macos_mdm_vs_ios_mdm", + "target": "mdm_mac_supervision_research_2_1_supervision_auf_mac_existiert_nicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_2_apple_mechanik_deep_dive_macos_mdm_vs_ios_mdm", + "target": "mdm_mac_supervision_research_2_2_macos_enrollment_pfade" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L209", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_2_apple_mechanik_deep_dive_macos_mdm_vs_ios_mdm", + "target": "mdm_mac_supervision_research_2_3_welche_restrictions_brauchen_supervision_abm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_2_apple_mechanik_deep_dive_macos_mdm_vs_ios_mdm", + "target": "mdm_mac_supervision_research_2_4_system_extensions_auf_mac_nefilterprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_2_2_macos_enrollment_pfade", + "target": "mdm_mac_supervision_research_option_1_uamdm_user_approved_mdm_enrollment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_2_2_macos_enrollment_pfade", + "target": "mdm_mac_supervision_research_option_2_automated_device_enrollment_ade_via_abm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_2_2_macos_enrollment_pfade", + "target": "mdm_mac_supervision_research_option_3_statische_configuration_profiles_kein_mdm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L285", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_4_empfehlung_f\u00fcr_rebreakbinder_mac", + "target": "mdm_mac_supervision_research_4_1_mvp_pfad_2_4_wochen_80_techlockdown_feature_parity" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L329", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_4_empfehlung_f\u00fcr_rebreakbinder_mac", + "target": "mdm_mac_supervision_research_4_2_advanced_pfad_4_8_wochen_95_feature_parity_system_extension" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L350", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_4_empfehlung_f\u00fcr_rebreakbinder_mac", + "target": "mdm_mac_supervision_research_4_3_was_wir_nicht_replizieren_k\u00f6nnen_mac_limitierungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L363", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_5_apple_business_manager_abm_do_we_need_it", + "target": "mdm_mac_supervision_research_5_1_was_ist_abm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L369", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_5_apple_business_manager_abm_do_we_need_it", + "target": "mdm_mac_supervision_research_5_2_abm_setup_prozess" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L386", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_5_apple_business_manager_abm_do_we_need_it", + "target": "mdm_mac_supervision_research_5_3_brauchen_wir_das" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L402", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_6_offene_fragen_risiken_user_decisions_needed", + "target": "mdm_mac_supervision_research_6_1_offene_fragen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L418", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_6_offene_fragen_risiken_user_decisions_needed", + "target": "mdm_mac_supervision_research_6_2_risiken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L427", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_6_offene_fragen_risiken_user_decisions_needed", + "target": "mdm_mac_supervision_research_6_3_user_decisions_needed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L455", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_7_implementation_roadmap_wenn_go_entscheidung", + "target": "mdm_mac_supervision_research_phase_1_mvp_2_4_wochen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/MAC_SUPERVISION_RESEARCH.md", + "source_location": "L486", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_mac_supervision_research_7_implementation_roadmap_wenn_go_entscheidung", + "target": "mdm_mac_supervision_research_phase_2_advanced_4_8_wochen_optional" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_runbook_md", + "target": "mdm_runbook_mdm_server_operations_runbook" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_mdm_server_operations_runbook", + "target": "mdm_runbook_apple_push_zertifikat" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_mdm_server_operations_runbook", + "target": "mdm_runbook_externer_health_check" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_mdm_server_operations_runbook", + "target": "mdm_runbook_firewall_ufw" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L162", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_mdm_server_operations_runbook", + "target": "mdm_runbook_handshake_watcher_doh_clientid_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_mdm_server_operations_runbook", + "target": "mdm_runbook_nanomdm_container" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_mdm_server_operations_runbook", + "target": "mdm_runbook_nginx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_mdm_server_operations_runbook", + "target": "mdm_runbook_postgresql" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_mdm_server_operations_runbook", + "target": "mdm_runbook_ssh_zugriff" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_mdm_server_operations_runbook", + "target": "mdm_runbook_system_ressourcen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_mdm_server_operations_runbook", + "target": "mdm_runbook_tls_zertifikat_let_s_encrypt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_mdm_server_operations_runbook", + "target": "mdm_runbook_troubleshooting" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_nanomdm_container", + "target": "mdm_runbook_auf_neue_version_updaten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_nanomdm_container", + "target": "mdm_runbook_logs_anschauen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_nanomdm_container", + "target": "mdm_runbook_restart" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_nanomdm_container", + "target": "mdm_runbook_status_pr\u00fcfen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_nanomdm_container", + "target": "mdm_runbook_stop_start_hard_restart" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_postgresql", + "target": "mdm_runbook_db_backup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_postgresql", + "target": "mdm_runbook_db_passwort_abrufen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_postgresql", + "target": "mdm_runbook_db_restore_nach_backup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_postgresql", + "target": "mdm_runbook_tabellen_\u00fcbersicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_postgresql", + "target": "mdm_runbook_zugriff_auf_nanomdm_db" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_nginx", + "target": "mdm_runbook_config_testen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_nginx", + "target": "mdm_runbook_logs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_nginx", + "target": "mdm_runbook_reload_nach_config_\u00e4nderung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_nginx", + "target": "mdm_runbook_vhost_config" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_tls_zertifikat_let_s_encrypt", + "target": "mdm_runbook_cert_expiry_pr\u00fcfen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_tls_zertifikat_let_s_encrypt", + "target": "mdm_runbook_manuelle_renewal_notfall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_tls_zertifikat_let_s_encrypt", + "target": "mdm_runbook_status_pr\u00fcfen_95" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_apple_push_zertifikat", + "target": "mdm_runbook_expiry_pr\u00fcfen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_apple_push_zertifikat", + "target": "mdm_runbook_j\u00e4hrliche_renewal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_apple_push_zertifikat", + "target": "mdm_runbook_neues_csr_generieren_nur_wenn_push_key_verloren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_handshake_watcher_doh_clientid_backend", + "target": "mdm_runbook_environmentfile_pfad_secrets_chmod_600" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_handshake_watcher_doh_clientid_backend", + "target": "mdm_runbook_logs_live" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_handshake_watcher_doh_clientid_backend", + "target": "mdm_runbook_restart_174" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_handshake_watcher_doh_clientid_backend", + "target": "mdm_runbook_status_pr\u00fcfen_164" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_handshake_watcher_doh_clientid_backend", + "target": "mdm_runbook_vollst\u00e4ndige_architektur_doku" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L190", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_handshake_watcher_doh_clientid_backend", + "target": "mdm_runbook_watcher_code_deployen_nach_code_\u00e4nderung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L213", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_troubleshooting", + "target": "mdm_runbook_502_bad_gateway_von_nginx" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L201", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_troubleshooting", + "target": "mdm_runbook_nanomdm_startet_nicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/RUNBOOK.md", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_runbook_troubleshooting", + "target": "mdm_runbook_postgres_startet_nicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_readme_md", + "target": "mdm_readme_rebreak_mdm_projekt\u00fcbersicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/README.md", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_readme_rebreak_mdm_projekt\u00fcbersicht", + "target": "mdm_readme_architektur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/README.md", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_readme_rebreak_mdm_projekt\u00fcbersicht", + "target": "mdm_readme_quick_links" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/README.md", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_readme_rebreak_mdm_projekt\u00fcbersicht", + "target": "mdm_readme_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/README.md", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_readme_rebreak_mdm_projekt\u00fcbersicht", + "target": "mdm_readme_trust_modell" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/README.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_readme_rebreak_mdm_projekt\u00fcbersicht", + "target": "mdm_readme_warum_getrennter_vps" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/README.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_readme_rebreak_mdm_projekt\u00fcbersicht", + "target": "mdm_readme_was_ist_das" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_user_actions_pending_md", + "target": "mdm_user_actions_pending_ausstehende_benutzeraktionen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_user_actions_pending_ausstehende_benutzeraktionen", + "target": "mdm_user_actions_pending_danach_phase_e_vorbereitung_resend_api_key" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_user_actions_pending_ausstehende_benutzeraktionen", + "target": "mdm_user_actions_pending_ina_vorwarnen_optional_aber_empfohlen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_user_actions_pending_ausstehende_benutzeraktionen", + "target": "mdm_user_actions_pending_sofort_phase_d_1_apple_push_zertifikat" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_user_actions_pending_ausstehende_benutzeraktionen", + "target": "mdm_user_actions_pending_sp\u00e4ter_phase_f_device_enrollment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/USER-ACTIONS-PENDING.md", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_user_actions_pending_ausstehende_benutzeraktionen", + "target": "mdm_user_actions_pending_status_\u00fcbersicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_security_md", + "target": "mdm_security_mdm_server_security" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_security_mdm_server_security", + "target": "mdm_security_audit_trail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_security_mdm_server_security", + "target": "mdm_security_geheimhaltungs_regeln" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_security_mdm_server_security", + "target": "mdm_security_threat_modelle" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_security_mdm_server_security", + "target": "mdm_security_was_muss_geheim_bleiben" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L16", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_security_mdm_server_security", + "target": "mdm_security_was_nicht_geheim_sein_muss" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_security_threat_modelle", + "target": "mdm_security_abgelaufenes_apple_push_cert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_security_threat_modelle", + "target": "mdm_security_angreifer_hat_zugriff_auf_ina_s_email_account" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_security_threat_modelle", + "target": "mdm_security_device_verlust_gestohlen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/SECURITY.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "mdm_security_threat_modelle", + "target": "mdm_security_server_kompromittierung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_supervision_identity_setup_md", + "target": "bootstrap_tool_supervision_identity_setup_supervision_identity_einmaliger_setup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_supervision_identity_setup_supervision_identity_einmaliger_setup", + "target": "bootstrap_tool_supervision_identity_setup_bei_fehler_supervision_identity_not_trusted" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_supervision_identity_setup_supervision_identity_einmaliger_setup", + "target": "bootstrap_tool_supervision_identity_setup_pfad_a_via_apple_configurator_2_gui_empfohlen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_supervision_identity_setup_supervision_identity_einmaliger_setup", + "target": "bootstrap_tool_supervision_identity_setup_pfad_b_via_cfgutil_cli" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_supervision_identity_setup_supervision_identity_einmaliger_setup", + "target": "bootstrap_tool_supervision_identity_setup_sicherheit" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_supervision_identity_setup_supervision_identity_einmaliger_setup", + "target": "bootstrap_tool_supervision_identity_setup_verifikation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/SUPERVISION-IDENTITY-SETUP.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_supervision_identity_setup_supervision_identity_einmaliger_setup", + "target": "bootstrap_tool_supervision_identity_setup_wo_die_identity_liegen_muss" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_bootstrap_tool_readme_md", + "target": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool", + "target": "bootstrap_tool_readme_bekannte_t\u00fccken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool", + "target": "bootstrap_tool_readme_cross_plattform_pfad_phase_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool", + "target": "bootstrap_tool_readme_failure_pfade" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool", + "target": "bootstrap_tool_readme_post_supervise_ios_setup_stage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool", + "target": "bootstrap_tool_readme_schnellstart" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool", + "target": "bootstrap_tool_readme_state_logs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool", + "target": "bootstrap_tool_readme_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool", + "target": "bootstrap_tool_readme_voraussetzungen_iphone_des_users" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool", + "target": "bootstrap_tool_readme_voraussetzungen_mac_des_users" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/bootstrap-tool/README.md", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bootstrap_tool_readme_rebreak_supervise_bootstrap_tool", + "target": "bootstrap_tool_readme_was_das_script_macht_schritt_f\u00fcr_schritt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_readme_md", + "target": "supervise_magic_readme_rebreak_supervise_magic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_magic_readme_rebreak_supervise_magic", + "target": "supervise_magic_readme_apple_walls_die_bleiben" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_magic_readme_rebreak_supervise_magic", + "target": "supervise_magic_readme_apple_walls_die_wir_damit_umgehen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L22", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_magic_readme_rebreak_supervise_magic", + "target": "supervise_magic_readme_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_magic_readme_rebreak_supervise_magic", + "target": "supervise_magic_readme_delta_workflow_current_vs_legacy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_magic_readme_rebreak_supervise_magic", + "target": "supervise_magic_readme_lizenz_distribution" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_magic_readme_rebreak_supervise_magic", + "target": "supervise_magic_readme_mechanismus_im_detail" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_magic_readme_rebreak_supervise_magic", + "target": "supervise_magic_readme_sicherheits_hinweise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_magic_readme_rebreak_supervise_magic", + "target": "supervise_magic_readme_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_magic_readme_rebreak_supervise_magic", + "target": "supervise_magic_readme_usage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/README.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "supervise_magic_readme_rebreak_supervise_magic", + "target": "supervise_magic_readme_voraussetzungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_tools_delta_matrix_md", + "target": "tools_delta_matrix_ablauf_deltas_current_vs_legacy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_delta_matrix_ablauf_deltas_current_vs_legacy", + "target": "tools_delta_matrix_a_b_lauf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_delta_matrix_ablauf_deltas_current_vs_legacy", + "target": "tools_delta_matrix_auswertung_pro_lauf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_delta_matrix_ablauf_deltas_current_vs_legacy", + "target": "tools_delta_matrix_harte_unterschiede" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_delta_matrix_ablauf_deltas_current_vs_legacy", + "target": "tools_delta_matrix_partial_lite_zweck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_delta_matrix_ablauf_deltas_current_vs_legacy", + "target": "tools_delta_matrix_partial_safe_zweck" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/delta-matrix.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_delta_matrix_ablauf_deltas_current_vs_legacy", + "target": "tools_delta_matrix_referenz" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_supervise_magic_tools_systematic_playbook_md", + "target": "tools_systematic_playbook_systematic_playbook_no_guessing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_systematic_playbook_systematic_playbook_no_guessing", + "target": "tools_systematic_playbook_command" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_systematic_playbook_systematic_playbook_no_guessing", + "target": "tools_systematic_playbook_decision_logic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_systematic_playbook_systematic_playbook_no_guessing", + "target": "tools_systematic_playbook_goal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_systematic_playbook_systematic_playbook_no_guessing", + "target": "tools_systematic_playbook_promotion_criteria" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_systematic_playbook_systematic_playbook_no_guessing", + "target": "tools_systematic_playbook_rule_set" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/supervise-magic/tools/systematic-playbook.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tools_systematic_playbook_systematic_playbook_no_guessing", + "target": "tools_systematic_playbook_run_order" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_profiles_readme_md", + "target": "profiles_readme_rebreak_mdm_profiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_readme_rebreak_mdm_profiles", + "target": "profiles_readme_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_readme_rebreak_mdm_profiles", + "target": "profiles_readme_migration_vom_alten_profile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_readme_rebreak_mdm_profiles", + "target": "profiles_readme_nanomdm_enrollment_generator_per_device" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_readme_files", + "target": "profiles_readme_rebreak_iphone_mdm_supervised_json_nanomdm_step_2_von_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L14", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_readme_files", + "target": "profiles_readme_rebreak_iphone_protect_mobileconfig_sideload_non_removable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_readme_files", + "target": "profiles_readme_rebreak_iphone_take_management_json_nanomdm_step_1_von_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_readme_files", + "target": "profiles_readme_reversal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_readme_files", + "target": "profiles_readme_verifikation_in_der_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/README.md", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_readme_files", + "target": "profiles_readme_vollst\u00e4ndiger_push_flow_nanomdm" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_mdm_profiles_unsupervised_test_plan_md", + "target": "profiles_unsupervised_test_plan_unsupervised_sideload_profile_test_checklist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_unsupervised_sideload_profile_test_checklist", + "target": "profiles_unsupervised_test_plan_architektur_kontext" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_unsupervised_sideload_profile_test_checklist", + "target": "profiles_unsupervised_test_plan_bekannte_limitations_apple_walls_non_fixable_ohne_supervision" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_unsupervised_sideload_profile_test_checklist", + "target": "profiles_unsupervised_test_plan_companion_path_mdm_enrollment_f\u00fcr_full_lock_optional" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_unsupervised_sideload_profile_test_checklist", + "target": "profiles_unsupervised_test_plan_edge_cases" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_unsupervised_sideload_profile_test_checklist", + "target": "profiles_unsupervised_test_plan_install_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_unsupervised_sideload_profile_test_checklist", + "target": "profiles_unsupervised_test_plan_pre_flight" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_unsupervised_sideload_profile_test_checklist", + "target": "profiles_unsupervised_test_plan_ui_banner_geplant_falls_setup_klappt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_unsupervised_sideload_profile_test_checklist", + "target": "profiles_unsupervised_test_plan_update_pfad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_unsupervised_sideload_profile_test_checklist", + "target": "profiles_unsupervised_test_plan_verifikation_was_greift" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_verifikation_was_greift", + "target": "profiles_unsupervised_test_plan_app_removal_lock_greift_nicht_auf_unsupervised_dokumentiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_verifikation_was_greift", + "target": "profiles_unsupervised_test_plan_dns_lock_sollte_funktionieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_verifikation_was_greift", + "target": "profiles_unsupervised_test_plan_ondemand_toggle_lock_apple_blockt_das_auf_sideload_dokumentiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_verifikation_was_greift", + "target": "profiles_unsupervised_test_plan_payloadremovaldisallowed_verhalten_auf_unsupervised_verifizieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_verifikation_was_greift", + "target": "profiles_unsupervised_test_plan_removalpassword_sollte_funktionieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_verifikation_was_greift", + "target": "profiles_unsupervised_test_plan_vpn_auto_connect_sollte_funktionieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_edge_cases", + "target": "profiles_unsupervised_test_plan_airplane_mode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_edge_cases", + "target": "profiles_unsupervised_test_plan_captive_portal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_edge_cases", + "target": "profiles_unsupervised_test_plan_network_switch_wifi_cellular" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_edge_cases", + "target": "profiles_unsupervised_test_plan_profile_survival_nach_app_uninstall" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/mdm/profiles/UNSUPERVISED-TEST-PLAN.md", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "profiles_unsupervised_test_plan_edge_cases", + "target": "profiles_unsupervised_test_plan_reboot" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_readme_md", + "target": "pir_server_readme_pir_server_ios_neurlfilter_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/README.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_readme_pir_server_ios_neurlfilter_backend", + "target": "pir_server_readme_1_was_warum" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/README.md", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_readme_pir_server_ios_neurlfilter_backend", + "target": "pir_server_readme_2_architektur_bausteine" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/README.md", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_readme_pir_server_ios_neurlfilter_backend", + "target": "pir_server_readme_3_deployment_stand_hetzner_rebreak_server_49_13_55_22" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/README.md", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_readme_pir_server_ios_neurlfilter_backend", + "target": "pir_server_readme_4_konfiguration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/README.md", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_readme_pir_server_ios_neurlfilter_backend", + "target": "pir_server_readme_5_ios_integrationswerte_neurlfiltermanager_setconfiguration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/README.md", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_readme_pir_server_ios_neurlfilter_backend", + "target": "pir_server_readme_6_daten_pipeline_blocklist_pir_db" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/README.md", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_readme_pir_server_ios_neurlfilter_backend", + "target": "pir_server_readme_7_betrieb_runbook" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/README.md", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_readme_pir_server_ios_neurlfilter_backend", + "target": "pir_server_readme_8_bekannte_issues_todos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/README.md", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_readme_pir_server_ios_neurlfilter_backend", + "target": "pir_server_readme_9_dateien_in_diesem_verzeichnis" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_pir_server_apple_dts_neurlfilter_report_md", + "target": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build", + "target": "pir_server_apple_dts_neurlfilter_report_additional_diagnostic_tests_2026_05_21" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build", + "target": "pir_server_apple_dts_neurlfilter_report_configuration_used" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build", + "target": "pir_server_apple_dts_neurlfilter_report_environment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build", + "target": "pir_server_apple_dts_neurlfilter_report_how_to_submit_internal_note_not_part_of_the_report_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build", + "target": "pir_server_apple_dts_neurlfilter_report_questions_for_apple" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build", + "target": "pir_server_apple_dts_neurlfilter_report_reproduction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build", + "target": "pir_server_apple_dts_neurlfilter_report_summary" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build", + "target": "pir_server_apple_dts_neurlfilter_report_the_failure_device_logs_com_apple_cipherml_subsystem_un_redacted_via_ne_debug_profile" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build", + "target": "pir_server_apple_dts_neurlfilter_report_what_we_have_ruled_out" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/pir-server/apple-dts-neurlfilter-report.md", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_apple_dts_neurlfilter_report_apple_dts_feedback_neurlfilter_serversetupincomplete_on_a_development_signed_build", + "target": "pir_server_apple_dts_neurlfilter_report_what_works_verified" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_strategy_partner_analysis_md", + "target": "strategy_partner_analysis_partner_analyse_suchtberatung_digital_delphi_gmbh_lukas_werk" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_partner_analyse_suchtberatung_digital_delphi_gmbh_lukas_werk", + "target": "strategy_partner_analysis_1_suchtberatung_digital_digisucht_was_es_ist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_partner_analyse_suchtberatung_digital_delphi_gmbh_lukas_werk", + "target": "strategy_partner_analysis_2_delphi_gmbh_profil" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_partner_analyse_suchtberatung_digital_delphi_gmbh_lukas_werk", + "target": "strategy_partner_analysis_3_partner_oder_konkurrent_matrix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_partner_analyse_suchtberatung_digital_delphi_gmbh_lukas_werk", + "target": "strategy_partner_analysis_4_lukas_werk_gesundheitsdienste_gmbh_kontakt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_partner_analyse_suchtberatung_digital_delphi_gmbh_lukas_werk", + "target": "strategy_partner_analysis_5_strategic_sequenzierung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_partner_analyse_suchtberatung_digital_delphi_gmbh_lukas_werk", + "target": "strategy_partner_analysis_6_mail_template_variante_c_delphi_augenh\u00f6he" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_partner_analyse_suchtberatung_digital_delphi_gmbh_lukas_werk", + "target": "strategy_partner_analysis_7_risiken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_partner_analyse_suchtberatung_digital_delphi_gmbh_lukas_werk", + "target": "strategy_partner_analysis_quellen_gepr\u00fcft" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_1_suchtberatung_digital_digisucht_was_es_ist", + "target": "strategy_partner_analysis_betreiber_finanzierung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_1_suchtberatung_digital_digisucht_was_es_ist", + "target": "strategy_partner_analysis_gl\u00fccksspiel_coverage_d\u00fcnn" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_1_suchtberatung_digital_digisucht_was_es_ist", + "target": "strategy_partner_analysis_tech_stack_sichtbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_3_partner_oder_konkurrent_matrix", + "target": "strategy_partner_analysis_realistische_kooperations_formen_sortiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_3_partner_oder_konkurrent_matrix", + "target": "strategy_partner_analysis_verdict_klar_komplement\u00e4r_kein_substitut" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_4_lukas_werk_gesundheitsdienste_gmbh_kontakt", + "target": "strategy_partner_analysis_nicht_ermittelbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_5_strategic_sequenzierung", + "target": "strategy_partner_analysis_response_erwartungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_5_strategic_sequenzierung", + "target": "strategy_partner_analysis_trust_anker_logik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/PARTNER_ANALYSIS.md", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_partner_analysis_6_mail_template_variante_c_delphi_augenh\u00f6he", + "target": "strategy_partner_analysis_anbahnungs_disziplin_user_note_29_05_2026" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_strategy_outreach_mails_ready_md", + "target": "strategy_outreach_mails_ready_versandfertige_outreach_mails_lukas_werk_fags" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_outreach_mails_ready_versandfertige_outreach_mails_lukas_werk_fags", + "target": "strategy_outreach_mails_ready_erwartung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_outreach_mails_ready_versandfertige_outreach_mails_lukas_werk_fags", + "target": "strategy_outreach_mails_ready_mail_1_lukas_werk_gesundheitsdienste_wolfenb\u00fcttel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_outreach_mails_ready_versandfertige_outreach_mails_lukas_werk_fags", + "target": "strategy_outreach_mails_ready_mail_2_fags_e_v_ilona_f\u00fcchtenschnieder_bielefeld" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_outreach_mails_ready_versandfertige_outreach_mails_lukas_werk_fags", + "target": "strategy_outreach_mails_ready_vor_dem_klick_auf_senden_mini_checkliste" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/OUTREACH_MAILS_READY.md", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_outreach_mails_ready_versandfertige_outreach_mails_lukas_werk_fags", + "target": "strategy_outreach_mails_ready_wenn_vor_ort_termin_zugesagt_wird" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_strategy_mdm_productization_roadmap_md", + "target": "strategy_mdm_productization_roadmap_mdm_productization_roadmap" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L104", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_mdm_productization_roadmap", + "target": "strategy_mdm_productization_roadmap_decision_points_user_entscheidet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_mdm_productization_roadmap", + "target": "strategy_mdm_productization_roadmap_marginal_cost_pro_neuem_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_mdm_productization_roadmap", + "target": "strategy_mdm_productization_roadmap_out_of_scope_apple_hard_limits" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_mdm_productization_roadmap", + "target": "strategy_mdm_productization_roadmap_productization_phase_g_1_2_wochen_dev" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_mdm_productization_roadmap", + "target": "strategy_mdm_productization_roadmap_risk_assessment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_mdm_productization_roadmap", + "target": "strategy_mdm_productization_roadmap_source_of_truth_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_mdm_productization_roadmap", + "target": "strategy_mdm_productization_roadmap_vision" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_mdm_productization_roadmap", + "target": "strategy_mdm_productization_roadmap_was_schon_steht_phase_f_done" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_mdm_productization_roadmap", + "target": "strategy_mdm_productization_roadmap_ziel_audience" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_productization_phase_g_1_2_wochen_dev", + "target": "strategy_mdm_productization_roadmap_g_1_enrollment_profile_generator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_productization_phase_g_1_2_wochen_dev", + "target": "strategy_mdm_productization_roadmap_g_2_user_device_link_in_db" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_productization_phase_g_1_2_wochen_dev", + "target": "strategy_mdm_productization_roadmap_g_3_lyra_onboarding_flow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_productization_phase_g_1_2_wochen_dev", + "target": "strategy_mdm_productization_roadmap_g_4_onboarding_web_page" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_productization_phase_g_1_2_wochen_dev", + "target": "strategy_mdm_productization_roadmap_g_5_stripe_add_on_tier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/mdm-productization-roadmap.md", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_mdm_productization_roadmap_productization_phase_g_1_2_wochen_dev", + "target": "strategy_mdm_productization_roadmap_g_6_per_user_blocklist_later" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_strategy_pricing_tiers_md", + "target": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy", + "target": "strategy_pricing_tiers_0_5_finale_pricing_entscheidung_verbindlich" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy", + "target": "strategy_pricing_tiers_0_tl_dr_f\u00fcr_eilige" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy", + "target": "strategy_pricing_tiers_1_tier_feature_tabelle_strategie_sicht_abgeglichen_mit_plan_limits_stand_2026_05_11" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy", + "target": "strategy_pricing_tiers_2_strategie_begr\u00fcndung_ehrlicher_stress_test" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy", + "target": "strategy_pricing_tiers_3_downgrade_policy_pro_tier_limitierter_ressource" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L207", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy", + "target": "strategy_pricing_tiers_4_plan_wechsel_briefing_screen_inhalt_text_struktur_kein_code" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy", + "target": "strategy_pricing_tiers_5_szenario_test_matrix_f\u00fcr_den_tier_toggle_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L282", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy", + "target": "strategy_pricing_tiers_6_offene_kl\u00e4rungspunkte_bevor_das_auf_die_pricing_page_geht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L298", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy", + "target": "strategy_pricing_tiers_7_marketing_kritik_des_finalen_plans_strategist_2026_05_11" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L292", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_rebreak_pricing_tiers_strategie_stress_test_downgrade_policy", + "target": "strategy_pricing_tiers_quellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_2_strategie_begr\u00fcndung_ehrlicher_stress_test", + "target": "strategy_pricing_tiers_2_1_reicht_free_zum_anfixen_oder_verschenkt_es_zu_viel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_2_strategie_begr\u00fcndung_ehrlicher_stress_test", + "target": "strategy_pricing_tiers_2_2_lohnt_free_pro_f\u00fcr_4" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_2_strategie_begr\u00fcndung_ehrlicher_stress_test", + "target": "strategy_pricing_tiers_2_3_lohnt_pro_legend_f\u00fcr_nochmal_4_ist_multi_device_der_killer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_2_strategie_begr\u00fcndung_ehrlicher_stress_test", + "target": "strategy_pricing_tiers_2_4_diga_ethik_pr_check_darf_man_recovery_features_paywallen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L135", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_2_strategie_begr\u00fcndung_ehrlicher_stress_test", + "target": "strategy_pricing_tiers_2_5_empfehlung_konkretes_re_slicing_optional_aber_begr\u00fcndet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_2_strategie_begr\u00fcndung_ehrlicher_stress_test", + "target": "strategy_pricing_tiers_2_6_nat\u00fcrliche_upgrade_trigger_momente_f\u00fcr_in_app_prompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_3_downgrade_policy_pro_tier_limitierter_ressource", + "target": "strategy_pricing_tiers_spezialfall_ausf\u00fchrlich_multi_device_mobileconfig_ist_nicht_remote_removable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L211", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_4_plan_wechsel_briefing_screen_inhalt_text_struktur_kein_code", + "target": "strategy_pricing_tiers_4a_upgrade_briefing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_4_plan_wechsel_briefing_screen_inhalt_text_struktur_kein_code", + "target": "strategy_pricing_tiers_4b_downgrade_briefing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_5_szenario_test_matrix_f\u00fcr_den_tier_toggle_build", + "target": "strategy_pricing_tiers_5a_statische_tier_erwartungs_matrix_was_soll_der_user_pro_tier_sehen_k\u00f6nnen_soll_aktueller_code_stand_nicht_das_re_slicing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L261", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_5_szenario_test_matrix_f\u00fcr_den_tier_toggle_build", + "target": "strategy_pricing_tiers_5b_downgrade_szenarien_als_durchspielbare_test_cases" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L302", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_7_marketing_kritik_des_finalen_plans_strategist_2026_05_11", + "target": "strategy_pricing_tiers_7_0_tl_dr_der_kritik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L314", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_7_marketing_kritik_des_finalen_plans_strategist_2026_05_11", + "target": "strategy_pricing_tiers_7_1_free_ohne_globale_blocklist_zu_hart_ja_in_dieser_form_kompromiss_bauen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L320", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_7_marketing_kritik_des_finalen_plans_strategist_2026_05_11", + "target": "strategy_pricing_tiers_7_2_imap_daemon_als_legend_highlight_nein_nicht_als_highlight_als_beiwerk_ja" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L325", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_7_marketing_kritik_des_finalen_plans_strategist_2026_05_11", + "target": "strategy_pricing_tiers_7_3_validierung_24h_als_sla_streich_das_harte_sla" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L329", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_7_marketing_kritik_des_finalen_plans_strategist_2026_05_11", + "target": "strategy_pricing_tiers_7_4_value_ladder_gesamt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L334", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_7_marketing_kritik_des_finalen_plans_strategist_2026_05_11", + "target": "strategy_pricing_tiers_7_5_coach_basic_besser_viel_besser" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L341", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_7_marketing_kritik_des_finalen_plans_strategist_2026_05_11", + "target": "strategy_pricing_tiers_7_6_preis_empfehlung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L344", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_7_marketing_kritik_des_finalen_plans_strategist_2026_05_11", + "target": "strategy_pricing_tiers_7_7_pr_aussenkommunikation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/pricing-tiers.md", + "source_location": "L353", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_pricing_tiers_7_marketing_kritik_des_finalen_plans_strategist_2026_05_11", + "target": "strategy_pricing_tiers_7_8_wichtigste_punkte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ops_strategy_fags_outreach_md", + "target": "strategy_fags_outreach_fags_outreach_paket_f\u00fcr_rebreak_beta_nbank_lois" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_fags_outreach_fags_outreach_paket_f\u00fcr_rebreak_beta_nbank_lois", + "target": "strategy_fags_outreach_1_fags_landschaft_de" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_fags_outreach_fags_outreach_paket_f\u00fcr_rebreak_beta_nbank_lois", + "target": "strategy_fags_outreach_2_outreach_email" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_fags_outreach_fags_outreach_paket_f\u00fcr_rebreak_beta_nbank_lois", + "target": "strategy_fags_outreach_3_letter_of_intent_template" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_fags_outreach_fags_outreach_paket_f\u00fcr_rebreak_beta_nbank_lois", + "target": "strategy_fags_outreach_4_versand_reihenfolge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_fags_outreach_fags_outreach_paket_f\u00fcr_rebreak_beta_nbank_lois", + "target": "strategy_fags_outreach_quellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_fags_outreach_1_fags_landschaft_de", + "target": "strategy_fags_outreach_priorit\u00e4t_1_niedersachsen_nbank_relevant" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_fags_outreach_1_fags_landschaft_de", + "target": "strategy_fags_outreach_priorit\u00e4t_2_bundesweit_phase_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_fags_outreach_1_fags_landschaft_de", + "target": "strategy_fags_outreach_realit\u00e4ts_check" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_fags_outreach_2_outreach_email", + "target": "strategy_fags_outreach_variante_a_beratungsstelle_erst_kontakt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "ops/strategy/FAGS_OUTREACH.md", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "strategy_fags_outreach_2_outreach_email", + "target": "strategy_fags_outreach_variante_b_forschungsklinik_mhh_zi_mannheim" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_calls_debug_state_md", + "target": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", + "target": "rebreak_native_calls_debug_state_apple_constraint_kein_bug" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", + "target": "rebreak_native_calls_debug_state_architektur_ist_zustand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", + "target": "rebreak_native_calls_debug_state_best\u00e4tigte_root_cause_3_2026_06_05_via_idevicesyslog_git" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L28", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", + "target": "rebreak_native_calls_debug_state_divide_conquer_phasen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CALLS_DEBUG_STATE.md", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_calls_debug_state_voice_calls_debug_zustand_2026_06_05", + "target": "rebreak_native_calls_debug_state_verhaltens_matrix" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_changelog_md", + "target": "rebreak_native_changelog_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L535", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_0_1_0_versioncode_4_2026_05_07" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L517", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_0_1_0_versioncode_5_2026_05_14" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L501", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_0_1_0_versioncode_6_2026_05_15" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L483", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_0_1_0_versioncode_7_2026_05_15" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L461", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_0_2_0_versioncode_8_2026_05_16" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L453", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_0_2_1_versioncode_9_2026_05_16" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L418", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L382", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_0_3_5_buildnumber_14_versioncode_11_2026_05_22" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L368", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_0_3_6_buildnumber_15_versioncode_11_2026_05_25" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_changed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_features" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_features_130" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_fixed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_fixed_84" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_fixes_143" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_fixes_172" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_improved" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_improved_45" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_improved_51" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L79", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_improved_79" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_new" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_new_74" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_notes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_notes_166" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_polish" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_polish_156" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L364", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_unreleased" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L358", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_26_versioncode_16_2026_05_30_n_nneue_push_f\u00fcr_chat_n" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L357", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_27_versioncode_18_2026_05_30_n_npush_notifications_f\u00fcr_chat_du_erh\u00e4ltst_jetzt_pushes_bei_neuen_direkt_nachrichten_und_raum_nachrichten_abschaltbar_in_den_einstellungen_n" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L356", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_40_versioncode_31_2026_05_30_n_nchat_dm_lange_auf_nachricht_dr\u00fccken_\u00f6ffnet_jetzt_das_native_aktions_men\u00fc_antworten_liken_kopieren_likes_erscheinen_insta_style_als_herz_unter_der_nachricht_n" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L351", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_42_versioncode_32_2026_05_30_n_nchat_dm_lange_auf_eine_nachricht_dr\u00fccken_\u00f6ffnet_das_aktions_men\u00fc_jetzt_direkt_an_der_nachricht_whatsapp_stil_statt_zentriert_neu_emoji_reaktionen_oben_antworten_und_kopieren_bei_fremden_nachrichten_sowie_l\u00f6schen_f\u00fcr_eigene_nachrichten_f\u00fcr_alle_reaktionen_erscheinen_als_kleine_bubbles_unter_der_nachricht_gel\u00f6schte_nachrichten_zeigen_nachricht_gel\u00f6scht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L350", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_44_versioncode_33_2026_05_31_n_nlyra_multilanguage_fix_n" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L345", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_44_versioncode_35_2026_05_31_n_ndm_chat_scrollt_jetzt_zuverl\u00e4ssig_zur_neuesten_nachricht_auch_nach_eigenen_gesendeten_nachrichten_und_beim_laden_von_bildern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L342", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_46_versioncode_36_2026_05_31_n_ndm_chat_die_letzte_nachricht_wird_jetzt_zuverl\u00e4ssig_oberhalb_der_eingabezeile_angezeigt_kein_manuelles_nachscrollen_mehr_beim_\u00f6ffnen_oder_nach_dem_senden" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L341", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_50_versioncode_40_2026_06_01_n_nlayer_3_for_ios_fix_a11y_n" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L309", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_54_versioncode_44_2026_06_01_n_n_features" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L296", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_56_versioncode_46_2026_06_01_n_n_features" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L289", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_60_versioncode_48_2026_06_02_n_n_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L273", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_62_versioncode_50_2026_06_03_n_n_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L255", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_65_versioncode_50_2026_06_03_n_n_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L248", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_67_versioncode_50_2026_06_03_n_n_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L238", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_68_versioncode_51_2026_06_03_n_n_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_69_versioncode_52_2026_06_03_n_n_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L216", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_70_versioncode_53_2026_06_03_n_n_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_71_versioncode_54_2026_06_04_n_n_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_76_versioncode_59_2026_06_04_n_n_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L188", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_76_versioncode_59_2026_06_04_n_n_fixes_188" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_79_versioncode_62_2026_06_06_n_n_next_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_82_versioncode_63_2026_06_07_n_n_next_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_84_versioncode_64_2026_06_07_n_n_next_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L72", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_3_13_build_85_versioncode_64_2026_06_07_n_n_next_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_4_0_build_85_versioncode_66_2026_06_07_n_n_next_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_4_1_build_87_versioncode_67_2026_06_08_n_n_next_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_4_4_build_90_versioncode_70_2026_06_08_n_n_next_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L43", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_4_4_build_90_versioncode_70_2026_06_08_n_n_next_release_43" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L4", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_changelog", + "target": "rebreak_native_changelog_v0_4_5_build_90_versioncode_71_2026_06_10_n_n_next_release_notes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_71_versioncode_54_2026_06_04_n_n_fixes", + "target": "rebreak_native_changelog_changes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L205", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_71_versioncode_54_2026_06_04_n_n_fixes", + "target": "rebreak_native_changelog_features_205" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L227", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_70_versioncode_53_2026_06_03_n_n_fixes", + "target": "rebreak_native_changelog_changes_227" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_70_versioncode_53_2026_06_03_n_n_fixes", + "target": "rebreak_native_changelog_features_223" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_69_versioncode_52_2026_06_03_n_n_fixes", + "target": "rebreak_native_changelog_features_235" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L245", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_68_versioncode_51_2026_06_03_n_n_fixes", + "target": "rebreak_native_changelog_features_245" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L252", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_67_versioncode_50_2026_06_03_n_n_fixes", + "target": "rebreak_native_changelog_features_252" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L266", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_65_versioncode_50_2026_06_03_n_n_fixes", + "target": "rebreak_native_changelog_features_266" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L283", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_62_versioncode_50_2026_06_03_n_n_fixes", + "target": "rebreak_native_changelog_features_283" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_60_versioncode_48_2026_06_02_n_n_fixes", + "target": "rebreak_native_changelog_features_293" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L305", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_56_versioncode_46_2026_06_01_n_n_features", + "target": "rebreak_native_changelog_fixes_305" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L331", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_54_versioncode_44_2026_06_01_n_n_features", + "target": "rebreak_native_changelog_backend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L320", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_54_versioncode_44_2026_06_01_n_n_features", + "target": "rebreak_native_changelog_fixes_320" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L336", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_v0_3_13_build_54_versioncode_44_2026_06_01_n_n_features", + "target": "rebreak_native_changelog_infrastructure" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L375", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_3_6_buildnumber_15_versioncode_11_2026_05_25", + "target": "rebreak_native_changelog_backend_375" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L370", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_3_6_buildnumber_15_versioncode_11_2026_05_25", + "target": "rebreak_native_changelog_changed_370" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L400", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_3_5_buildnumber_14_versioncode_11_2026_05_22", + "target": "rebreak_native_changelog_added" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L384", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_3_5_buildnumber_14_versioncode_11_2026_05_22", + "target": "rebreak_native_changelog_fixed_384" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L410", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_3_5_buildnumber_14_versioncode_11_2026_05_22", + "target": "rebreak_native_changelog_fixed_410" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L420", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", + "target": "rebreak_native_changelog_added_420" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L446", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", + "target": "rebreak_native_changelog_backend_446" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L432", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", + "target": "rebreak_native_changelog_changed_432" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L436", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", + "target": "rebreak_native_changelog_fixed_436" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L442", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_3_0_versioncode_10_2026_05_17", + "target": "rebreak_native_changelog_i18n" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L455", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_2_1_versioncode_9_2026_05_16", + "target": "rebreak_native_changelog_fixed_455" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L463", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_2_0_versioncode_8_2026_05_16", + "target": "rebreak_native_changelog_added_463" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L474", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_2_0_versioncode_8_2026_05_16", + "target": "rebreak_native_changelog_changed_474" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L478", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_2_0_versioncode_8_2026_05_16", + "target": "rebreak_native_changelog_fixed_478" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L485", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_1_0_versioncode_7_2026_05_15", + "target": "rebreak_native_changelog_added_485" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L489", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_1_0_versioncode_7_2026_05_15", + "target": "rebreak_native_changelog_changed_489" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L494", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_1_0_versioncode_7_2026_05_15", + "target": "rebreak_native_changelog_fixed_494" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L503", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_1_0_versioncode_6_2026_05_15", + "target": "rebreak_native_changelog_added_503" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L509", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_1_0_versioncode_6_2026_05_15", + "target": "rebreak_native_changelog_changed_509" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L512", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_1_0_versioncode_6_2026_05_15", + "target": "rebreak_native_changelog_fixed_512" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L519", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_1_0_versioncode_5_2026_05_14", + "target": "rebreak_native_changelog_added_519" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L522", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_1_0_versioncode_5_2026_05_14", + "target": "rebreak_native_changelog_fixed_522" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L537", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_1_0_versioncode_4_2026_05_07", + "target": "rebreak_native_changelog_added_537" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/CHANGELOG.md", + "source_location": "L540", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_changelog_0_1_0_versioncode_4_2026_05_07", + "target": "rebreak_native_changelog_fixed_540" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_scripts_md", + "target": "rebreak_native_scripts_rebreak_native_deploy_dev_scripts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_rebreak_native_deploy_dev_scripts", + "target": "rebreak_native_scripts_android_deployment_setup_noch_nicht_ready" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_rebreak_native_deploy_dev_scripts", + "target": "rebreak_native_scripts_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_rebreak_native_deploy_dev_scripts", + "target": "rebreak_native_scripts_deploy_sh_multi_platform_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_rebreak_native_deploy_dev_scripts", + "target": "rebreak_native_scripts_dev_sh_development_tooling" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L119", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_rebreak_native_deploy_dev_scripts", + "target": "rebreak_native_scripts_eas_release_sh_eas_cloud_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_rebreak_native_deploy_dev_scripts", + "target": "rebreak_native_scripts_quick_start" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_quick_start", + "target": "rebreak_native_scripts_deployment" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_quick_start", + "target": "rebreak_native_scripts_development" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_deploy_sh_multi_platform_release", + "target": "rebreak_native_scripts_credentials" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_deploy_sh_multi_platform_release", + "target": "rebreak_native_scripts_flags" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_deploy_sh_multi_platform_release", + "target": "rebreak_native_scripts_subcommands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_dev_sh_development_tooling", + "target": "rebreak_native_scripts_flags_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_dev_sh_development_tooling", + "target": "rebreak_native_scripts_flags_clean" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_dev_sh_development_tooling", + "target": "rebreak_native_scripts_flags_ios" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_dev_sh_development_tooling", + "target": "rebreak_native_scripts_flags_metro" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_dev_sh_development_tooling", + "target": "rebreak_native_scripts_subcommands_90" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_android_deployment_setup_noch_nicht_ready", + "target": "rebreak_native_scripts_fehlende_credentials" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/SCRIPTS.md", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_scripts_android_deployment_setup_noch_nicht_ready", + "target": "rebreak_native_scripts_status_check" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_readme_md", + "target": "rebreak_native_readme_rebreak_native_react_native_expo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_rebreak_native_react_native_expo", + "target": "rebreak_native_readme_dev_variant_hot_reload_parallel_zur_mdm_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_rebreak_native_react_native_expo", + "target": "rebreak_native_readme_native_module_strategie" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_rebreak_native_react_native_expo", + "target": "rebreak_native_readme_phasen_tracker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_rebreak_native_react_native_expo", + "target": "rebreak_native_readme_release_pipeline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_rebreak_native_react_native_expo", + "target": "rebreak_native_readme_setup" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_rebreak_native_react_native_expo", + "target": "rebreak_native_readme_stack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_rebreak_native_react_native_expo", + "target": "rebreak_native_readme_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L51", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_rebreak_native_react_native_expo", + "target": "rebreak_native_readme_verzeichnisstruktur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_rebreak_native_react_native_expo", + "target": "rebreak_native_readme_wichtige_hinweise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_rebreak_native_react_native_expo", + "target": "rebreak_native_readme_wichtige_konfiguration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_dev_variant_hot_reload_parallel_zur_mdm_app", + "target": "rebreak_native_readme_erstmaliges_setup_nur_einmal_n\u00f6tig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_dev_variant_hot_reload_parallel_zur_mdm_app", + "target": "rebreak_native_readme_prod_build_bleibt_unver\u00e4ndert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_dev_variant_hot_reload_parallel_zur_mdm_app", + "target": "rebreak_native_readme_t\u00e4glicher_workflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_dev_variant_hot_reload_parallel_zur_mdm_app", + "target": "rebreak_native_readme_wichtige_unterschiede_dev_vs_dist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_native_module_strategie", + "target": "rebreak_native_readme_android_modules_rebreak_android_a11y" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_native_module_strategie", + "target": "rebreak_native_readme_android_modules_rebreak_android_blocker" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_native_module_strategie", + "target": "rebreak_native_readme_ios_modules_rebreak_ios_filter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_release_pipeline", + "target": "rebreak_native_readme_alte_scripts_weiterhin_nutzbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_release_pipeline", + "target": "rebreak_native_readme_multi_target_deploy_deploy_app_sh" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_multi_target_deploy_deploy_app_sh", + "target": "rebreak_native_readme_android_vorbereitung_einmalig" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_multi_target_deploy_deploy_app_sh", + "target": "rebreak_native_readme_changelog" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/README.md", + "source_location": "L189", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_readme_multi_target_deploy_deploy_app_sh", + "target": "rebreak_native_readme_was_passiert_pro_target" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/NEXT_RELEASE.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_next_release_md", + "target": "rebreak_native_next_release_next_release" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/NEXT_RELEASE.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_native_next_release_next_release", + "target": "rebreak_native_next_release_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_docs_internal_play_store_listing_md", + "target": "internal_play_store_listing_play_store_listing_rebreak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_play_store_listing_rebreak", + "target": "internal_play_store_listing_app_kategorie_play_console" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_play_store_listing_rebreak", + "target": "internal_play_store_listing_berechtigungen_begr\u00fcndung_f\u00fcr_review_team" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_play_store_listing_rebreak", + "target": "internal_play_store_listing_content_rating" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_play_store_listing_rebreak", + "target": "internal_play_store_listing_datenschutzerkl\u00e4rung_url_pflicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_play_store_listing_rebreak", + "target": "internal_play_store_listing_kurzbeschreibung_80_zeichen_max_play_card" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_play_store_listing_rebreak", + "target": "internal_play_store_listing_kurztitel_30_zeichen_max" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_play_store_listing_rebreak", + "target": "internal_play_store_listing_lange_beschreibung_max_4000_zeichen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_play_store_listing_rebreak", + "target": "internal_play_store_listing_screenshots_shotlist_8_frames" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_play_store_listing_rebreak", + "target": "internal_play_store_listing_untertitel_tagline_80_zeichen_max_play_card" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_berechtigungen_begr\u00fcndung_f\u00fcr_review_team", + "target": "internal_play_store_listing_bind_accessibility_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_berechtigungen_begr\u00fcndung_f\u00fcr_review_team", + "target": "internal_play_store_listing_bind_vpn_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_berechtigungen_begr\u00fcndung_f\u00fcr_review_team", + "target": "internal_play_store_listing_foreground_service" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L82", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_berechtigungen_begr\u00fcndung_f\u00fcr_review_team", + "target": "internal_play_store_listing_post_notifications" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/docs/internal/PLAY_STORE_LISTING.md", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_play_store_listing_berechtigungen_begr\u00fcndung_f\u00fcr_review_team", + "target": "internal_play_store_listing_record_audio" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_maestro_setup_md", + "target": "maestro_setup_maestro_e2e_local_setup_phase_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_maestro_e2e_local_setup_phase_a", + "target": "maestro_setup_10_run_befehle_phase_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L303", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_maestro_e2e_local_setup_phase_a", + "target": "maestro_setup_11_phase_b_maestro_cloud_zukunft_post_testflight" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_maestro_e2e_local_setup_phase_a", + "target": "maestro_setup_1_maestro_cli_installieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_maestro_e2e_local_setup_phase_a", + "target": "maestro_setup_2_app_auf_device_simulator_bauen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L80", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_maestro_e2e_local_setup_phase_a", + "target": "maestro_setup_3_env_vars_setzen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_maestro_e2e_local_setup_phase_a", + "target": "maestro_setup_4_flows_ausfuehren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_maestro_e2e_local_setup_phase_a", + "target": "maestro_setup_5_flow_entwicklung_maestro_studio" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_maestro_e2e_local_setup_phase_a", + "target": "maestro_setup_6_tipps_fuer_stabile_flows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L202", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_maestro_e2e_local_setup_phase_a", + "target": "maestro_setup_7_app_state_vor_test_lauf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L218", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_maestro_e2e_local_setup_phase_a", + "target": "maestro_setup_8_flow_uebersicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_maestro_e2e_local_setup_phase_a", + "target": "maestro_setup_9_neue_env_vars_fuer_phase_a_flows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_2_app_auf_device_simulator_bauen", + "target": "maestro_setup_android_emulator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_2_app_auf_device_simulator_bauen", + "target": "maestro_setup_bundle_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L33", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_2_app_auf_device_simulator_bauen", + "target": "maestro_setup_ios_simulator" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_3_env_vars_setzen", + "target": "maestro_setup_option_a_direktes_env_flag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_3_env_vars_setzen", + "target": "maestro_setup_option_b_infisical_wrapper" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_3_env_vars_setzen", + "target": "maestro_setup_test_account_aktueller_stand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_4_flows_ausfuehren", + "target": "maestro_setup_alle_flows_sequenziell" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_4_flows_ausfuehren", + "target": "maestro_setup_einen_einzelnen_flow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_4_flows_ausfuehren", + "target": "maestro_setup_spezifische_subdirectory" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L220", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_8_flow_uebersicht", + "target": "maestro_setup_bestehende_flows_phase_a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/SETUP.md", + "source_location": "L235", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_setup_8_flow_uebersicht", + "target": "maestro_setup_neue_flows_phase_a_kritische_coverage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_maestro_todo_testids_md", + "target": "maestro_todo_testids_todo_testid_additions_needed_for_stable_maestro_selectors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_todo_testids_todo_testid_additions_needed_for_stable_maestro_selectors", + "target": "maestro_todo_testids_high_coordinate_fallbacks_breaks_on_layout_change" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_todo_testids_todo_testid_additions_needed_for_stable_maestro_selectors", + "target": "maestro_todo_testids_high_demographics_field_row_pressables" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L31", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_todo_testids_todo_testid_additions_needed_for_stable_maestro_selectors", + "target": "maestro_todo_testids_high_sos_screen_send_button_no_text_no_testid" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_todo_testids_todo_testid_additions_needed_for_stable_maestro_selectors", + "target": "maestro_todo_testids_low_settings_screen_rows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_todo_testids_todo_testid_additions_needed_for_stable_maestro_selectors", + "target": "maestro_todo_testids_medium_auth_screen_inputs_currently_matched_via_i18n_placeholder_text" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_todo_testids_todo_testid_additions_needed_for_stable_maestro_selectors", + "target": "maestro_todo_testids_medium_composecard_share_button" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_todo_testids_todo_testid_additions_needed_for_stable_maestro_selectors", + "target": "maestro_todo_testids_medium_profileedit_screen_nickname_input" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/.maestro/TODO_TESTIDS.md", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "maestro_todo_testids_todo_testid_additions_needed_for_stable_maestro_selectors", + "target": "maestro_todo_testids_notes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/assets/DEPRECATED.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_assets_deprecated_md", + "target": "assets_deprecated_deprecated_assets" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/assets/DEPRECATED.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "assets_deprecated_deprecated_assets", + "target": "assets_deprecated_adaptive_icon_png_adaptive_foreground_png_rebreak_android_png" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/assets/DEPRECATED.md", + "source_location": "L6", + "weight": 1.0, + "confidence_score": 1.0, + "source": "assets_deprecated_deprecated_assets", + "target": "assets_deprecated_splash_png" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_ios_vpn_filter_research_md", + "target": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_0_warum_dieser_auftrag" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L523", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_10_grober_aufwand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L541", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_11_offene_entscheidungen_f\u00fcr_den_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L564", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_12_quellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L24", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_1_bestandsaufnahme_code_gelesen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_2_api_wahl_nepackettunnelprovider_vs_nednsproxyprovider_vs_neappproxyprovider" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_3_entitlements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_4_ios_versionen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L271", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_5_tamper_resistance_die_ehrliche_einordnung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L336", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_6_bypass_vektoren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L380", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_7_integration_ins_bestehende_modul" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L480", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_8_battery_performance" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L498", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_ios_vpn_dns_tunnel_gambling_filter_recherche_architektur_proposal", + "target": "tmp_ios_vpn_filter_research_9_expo_rn_realit\u00e4t_scaffolding" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_1_bestandsaufnahme_code_gelesen", + "target": "tmp_ios_vpn_filter_research_1_1_android_vpn_filter_das_referenz_design" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_1_bestandsaufnahme_code_gelesen", + "target": "tmp_ios_vpn_filter_research_1_2_ios_bestand" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_1_bestandsaufnahme_code_gelesen", + "target": "tmp_ios_vpn_filter_research_1_3_expo_config_plugin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_1_bestandsaufnahme_code_gelesen", + "target": "tmp_ios_vpn_filter_research_1_4_js_orchestrierung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_2_api_wahl_nepackettunnelprovider_vs_nednsproxyprovider_vs_neappproxyprovider", + "target": "tmp_ios_vpn_filter_research_2_1_nednsproxyprovider_ausgeschlossen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_2_api_wahl_nepackettunnelprovider_vs_nednsproxyprovider_vs_neappproxyprovider", + "target": "tmp_ios_vpn_filter_research_2_2_neappproxyprovider_ungeeignet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L125", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_2_api_wahl_nepackettunnelprovider_vs_nednsproxyprovider_vs_neappproxyprovider", + "target": "tmp_ios_vpn_filter_research_2_3_nepackettunnelprovider_empfohlen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_2_api_wahl_nepackettunnelprovider_vs_nednsproxyprovider_vs_neappproxyprovider", + "target": "tmp_ios_vpn_filter_research_2_4_wie_konkret_blocken" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_2_api_wahl_nepackettunnelprovider_vs_nednsproxyprovider_vs_neappproxyprovider", + "target": "tmp_ios_vpn_filter_research_2_5_die_208k_domains_rein_performance_speicher" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L199", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_3_entitlements", + "target": "tmp_ios_vpn_filter_research_3_1_was_gebraucht_wird" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L214", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_3_entitlements", + "target": "tmp_ios_vpn_filter_research_3_2_braucht_es_apple_freigabe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L228", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_3_entitlements", + "target": "tmp_ios_vpn_filter_research_3_3_dev_build_vs_distribution_die_wichtige_asymmetrie" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L276", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_5_tamper_resistance_die_ehrliche_einordnung", + "target": "tmp_ios_vpn_filter_research_5_1_was_der_user_tun_kann" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L289", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_5_tamper_resistance_die_ehrliche_einordnung", + "target": "tmp_ios_vpn_filter_research_5_2_includeallnetworks_on_demand_kein_echter_lock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L300", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_5_tamper_resistance_die_ehrliche_einordnung", + "target": "tmp_ios_vpn_filter_research_5_3_family_controls_screen_time_hier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L308", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_5_tamper_resistance_die_ehrliche_einordnung", + "target": "tmp_ios_vpn_filter_research_5_4_realistischer_tamper_schutz_friction_nicht_hard_lock" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L349", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_6_bypass_vektoren", + "target": "tmp_ios_vpn_filter_research_6_1_ehrliche_abw\u00e4gung_dns_sinkhole_vs_voll_packet_tunnel" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L382", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_7_integration_ins_bestehende_modul", + "target": "tmp_ios_vpn_filter_research_7_1_layer_modell_danach" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L403", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_7_integration_ins_bestehende_modul", + "target": "tmp_ios_vpn_filter_research_7_2_betroffene_dateien_skizze_kein_code_hier" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/ios-vpn-filter-research.md", + "source_location": "L468", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_ios_vpn_filter_research_7_integration_ins_bestehende_modul", + "target": "tmp_ios_vpn_filter_research_7_3_cooldown_layer_logik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_webcontent_layer2_research_md", + "target": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L19", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_1_managedsettings_webcontentsettings_api_verifizierte_fakten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_2_der_50_domain_cap_verifiziert_hart_apple_dokumentiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_3_wirkungsbereich_safari_sicher_restliche_webkit_browser_unbelegt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_4_family_controls_voraussetzung_ja_fc_reicht_aber_genau_das_ist_die_crux" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_5_koexistenz_neurlfilter_managedsettings_unkritisch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_6_kann_der_user_neurlfilter_offtogglen_die_kernfrage_ehrlich_beantwortet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_7_l\u00e4nderabh\u00e4ngigkeit_sinnvoll_aber_simpel_halten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_bewertung_ehrlich_auch_kritisch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_implementierungs_skizze_kein_code_nur_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_offene_entscheidungen_f\u00fcr_den_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_quellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L7", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_layer_2_managedsettings_webcontent_filter_als_always_on_fallback", + "target": "tmp_webcontent_layer2_research_tl_dr_empfehlung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_1_managedsettings_webcontentsettings_api_verifizierte_fakten", + "target": "tmp_webcontent_layer2_research_gibt_es_eine_gambling_webdomaincategory_nein" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_1_managedsettings_webcontentsettings_api_verifizierte_fakten", + "target": "tmp_webcontent_layer2_research_webcontentsettings" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_1_managedsettings_webcontentsettings_api_verifizierte_fakten", + "target": "tmp_webcontent_layer2_research_webcontentsettings_filterpolicy_alle_vier_cases_apple_doc_verifiziert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_1_managedsettings_webcontentsettings_api_verifizierte_fakten", + "target": "tmp_webcontent_layer2_research_webdomain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_bewertung_ehrlich_auch_kritisch", + "target": "tmp_webcontent_layer2_research_mehrwert_f\u00fcr_rebreak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_bewertung_ehrlich_auch_kritisch", + "target": "tmp_webcontent_layer2_research_verbesserungsvorschl\u00e4ge_alternativen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/webcontent-layer2-research.md", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "tmp_webcontent_layer2_research_bewertung_ehrlich_auch_kritisch", + "target": "tmp_webcontent_layer2_research_wann_es_sich_doch_lohnt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_readme_md", + "target": "filteringtrafficbyurl_readme_filtering_traffic_by_url" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/README.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filteringtrafficbyurl_readme_filtering_traffic_by_url", + "target": "filteringtrafficbyurl_readme_overview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/README.md", + "source_location": "L18", + "weight": 1.0, + "confidence_score": 1.0, + "source": "filteringtrafficbyurl_readme_filtering_traffic_by_url", + "target": "filteringtrafficbyurl_readme_see_also" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/PIR Server/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_pir_server_readme_md", + "target": "pir_server_readme_setting_up_a_pir_server_for_url_filtering" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/PIR Server/README.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_readme_setting_up_a_pir_server_for_url_filtering", + "target": "pir_server_readme_overview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/PIR Server/README.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "pir_server_readme_setting_up_a_pir_server_for_url_filtering", + "target": "pir_server_readme_see_also" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_native_tmp_filteringtrafficbyurl_bloomfiltertool_readme_md", + "target": "bloomfiltertool_readme_using_the_bloom_filter_tool_to_configure_a_url_filter" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/tmp/FilteringTrafficByURL/BloomFilterTool/README.md", + "source_location": "L12", + "weight": 1.0, + "confidence_score": 1.0, + "source": "bloomfiltertool_readme_using_the_bloom_filter_tool_to_configure_a_url_filter", + "target": "bloomfiltertool_readme_see_also" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_win_readme_md", + "target": "rebreak_magic_win_readme_rebreak_magic_f\u00fcr_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_readme_rebreak_magic_f\u00fcr_windows", + "target": "rebreak_magic_win_readme_architektur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_readme_rebreak_magic_f\u00fcr_windows", + "target": "rebreak_magic_win_readme_bekannte_limitationen_v1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L81", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_readme_rebreak_magic_f\u00fcr_windows", + "target": "rebreak_magic_win_readme_build_windows_maschine" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_readme_rebreak_magic_f\u00fcr_windows", + "target": "rebreak_magic_win_readme_entwicklung_macos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_readme_architektur", + "target": "rebreak_magic_win_readme_backend_\u00e4nderungen_in_diesem_repo_additiv" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_readme_architektur", + "target": "rebreak_magic_win_readme_bewusste_abweichungen_vom_urspr\u00fcnglichen_prompt_dokument" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-win/README.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_win_readme_architektur", + "target": "rebreak_magic_win_readme_flow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_admin_readme_md", + "target": "admin_readme_rebreak_admin" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_rebreak_admin", + "target": "admin_readme_auth_architektur" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_rebreak_admin", + "target": "admin_readme_deploy_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L83", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_rebreak_admin", + "target": "admin_readme_dsgvo_considerations_fuer_admin_zugriff" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_rebreak_admin", + "target": "admin_readme_github_actions_pipeline_plan_fuer_phase_2_deploy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_rebreak_admin", + "target": "admin_readme_lokale_entwicklung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L217", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_rebreak_admin", + "target": "admin_readme_server_script_fuer_admin_deploy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_rebreak_admin", + "target": "admin_readme_stack" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L229", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_rebreak_admin", + "target": "admin_readme_todos_nach_phase_1" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_rebreak_admin", + "target": "admin_readme_wo_die_admin_app_lebt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_deploy_plan", + "target": "admin_readme_variante_a_ssr_auf_hetzner_empfehlung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_deploy_plan", + "target": "admin_readme_variante_b_static_via_cloudflare_pages" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_github_actions_pipeline_plan_fuer_phase_2_deploy", + "target": "admin_readme_option_1_separater_workflow_deploy_admin_staging_yml_empfohlen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L206", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_github_actions_pipeline_plan_fuer_phase_2_deploy", + "target": "admin_readme_option_2_zusaetzlicher_job_in_deploy_staging_yml" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_todos_nach_phase_1", + "target": "admin_readme_backend_rebreak_backend_agent_phase_3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L250", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_todos_nach_phase_1", + "target": "admin_readme_backyard_phase_2_deploy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/admin/README.md", + "source_location": "L242", + "weight": 1.0, + "confidence_score": 1.0, + "source": "admin_readme_todos_nach_phase_1", + "target": "admin_readme_hans_mueller_dsgvo_phase_4" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_readme_md", + "target": "rebreak_magic_mac_readme_bauen_\u00f6ffnen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L224", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_readme_md", + "target": "rebreak_magic_mac_readme_check_stdout_stderr" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_readme_md", + "target": "rebreak_magic_mac_readme_einmalig_dependencies_supervise_magic_binary_bauen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L210", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_readme_md", + "target": "rebreak_magic_mac_readme_falls_leer_usb_kabel_port_problem_oder_diesem_computer_vertrauen_dialog_nicht_best\u00e4tigt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_readme_md", + "target": "rebreak_magic_mac_readme_macos_icon_gr\u00f6ssen_generieren_via_sips" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_readme_md", + "target": "rebreak_magic_mac_readme_master_icon_aus_rebreak_native_kopieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_readme_md", + "target": "rebreak_magic_mac_readme_prelated_docs" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L208", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_readme_md", + "target": "rebreak_magic_mac_readme_pr\u00fcfe_libimobiledevice" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_readme_md", + "target": "rebreak_magic_mac_readme_r_in_xcode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_readme_md", + "target": "rebreak_magic_mac_readme_rebreak_magic_mac" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_readme_md", + "target": "rebreak_magic_mac_readme_xcode_project_generieren_oder_neu_generieren_nach_project_yml_\u00e4nderungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_rebreak_magic_mac", + "target": "rebreak_magic_mac_readme_build" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_rebreak_magic_mac", + "target": "rebreak_magic_mac_readme_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_rebreak_magic_mac", + "target": "rebreak_magic_mac_readme_status_42" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_rebreak_magic_mac", + "target": "rebreak_magic_mac_readme_status_73" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_rebreak_magic_mac", + "target": "rebreak_magic_mac_readme_voraussetzungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_rebreak_magic_mac", + "target": "rebreak_magic_mac_readme_voraussetzungen_77" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_rebreak_magic_mac", + "target": "rebreak_magic_mac_readme_warum_magic" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_status", + "target": "rebreak_magic_mac_readme_was_ist_neu_in_phase_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_voraussetzungen", + "target": "rebreak_magic_mac_readme_kann_ich_das_r\u00fcckg\u00e4ngig_machen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_voraussetzungen", + "target": "rebreak_magic_mac_readme_was_bedeutet_das_f\u00fcr_mich" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_voraussetzungen", + "target": "rebreak_magic_mac_readme_welche_daten_sieht_rebreak" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_build", + "target": "rebreak_magic_mac_readme_development_magic_mac" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L191", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_macos_icon_gr\u00f6ssen_generieren_via_sips", + "target": "rebreak_magic_mac_readme_alte_config_pre_phase_2" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_macos_icon_gr\u00f6ssen_generieren_via_sips", + "target": "rebreak_magic_mac_readme_schritt_1_config_file_erstellen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_macos_icon_gr\u00f6ssen_generieren_via_sips", + "target": "rebreak_magic_mac_readme_schritt_2_config_werte_eintragen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/README.md", + "source_location": "L219", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_readme_prelated_docs", + "target": "rebreak_magic_mac_readme_license" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_rebreak_magic_mac_phase2_summary_md", + "target": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration", + "target": "rebreak_magic_mac_phase2_summary_bekannte_limitations_todos" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration", + "target": "rebreak_magic_mac_phase2_summary_bonus_feature_bereits_implementiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration", + "target": "rebreak_magic_mac_phase2_summary_build_status" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration", + "target": "rebreak_magic_mac_phase2_summary_code_statistik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration", + "target": "rebreak_magic_mac_phase2_summary_config_anforderungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration", + "target": "rebreak_magic_mac_phase2_summary_ge\u00e4nderte_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration", + "target": "rebreak_magic_mac_phase2_summary_implementierte_features" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L109", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration", + "target": "rebreak_magic_mac_phase2_summary_login_flow_ablauf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration", + "target": "rebreak_magic_mac_phase2_summary_neue_files" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration", + "target": "rebreak_magic_mac_phase2_summary_n\u00e4chste_schritte_optional_f\u00fcr_user" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L135", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_rebreak_magic_mac_app_phase_2_backend_auth_integration", + "target": "rebreak_magic_mac_phase2_summary_security_hinweise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_implementierte_features", + "target": "rebreak_magic_mac_phase2_summary_1_auth_stack_bereits_implementiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_implementierte_features", + "target": "rebreak_magic_mac_phase2_summary_2_login_ui_bereits_implementiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L20", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_implementierte_features", + "target": "rebreak_magic_mac_phase2_summary_3_mac_registration_flow_neu_implementiert" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L34", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_implementierte_features", + "target": "rebreak_magic_mac_phase2_summary_4_menu_erweiterung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/PHASE2_SUMMARY.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "rebreak_magic_mac_phase2_summary_implementierte_features", + "target": "rebreak_magic_mac_phase2_summary_5_workflow_integration" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/public/preview/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "apps_marketing_public_preview_readme_md", + "target": "preview_readme_app_vorschau_screenshots_f\u00fcr_preview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/public/preview/README.md", + "source_location": "L8", + "weight": 1.0, + "confidence_score": 1.0, + "source": "preview_readme_app_vorschau_screenshots_f\u00fcr_preview", + "target": "preview_readme_erwartete_dateinamen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/public/preview/README.md", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "preview_readme_app_vorschau_screenshots_f\u00fcr_preview", + "target": "preview_readme_logo" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/public/preview/README.md", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "preview_readme_app_vorschau_screenshots_f\u00fcr_preview", + "target": "preview_readme_maestro_pipeline" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/marketing/public/preview/README.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "preview_readme_app_vorschau_screenshots_f\u00fcr_preview", + "target": "preview_readme_passwort" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_readme_md", + "target": "ui_ux_pro_max_readme_ui_ux_pro_max_https_uupm_cc" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L454", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_ui_ux_pro_max_https_uupm_cc", + "target": "ui_ux_pro_max_readme_architecture_contributing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L396", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_ui_ux_pro_max_https_uupm_cc", + "target": "ui_ux_pro_max_readme_design_system_command_advanced" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_ui_ux_pro_max_https_uupm_cc", + "target": "ui_ux_pro_max_readme_features" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L254", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_ui_ux_pro_max_https_uupm_cc", + "target": "ui_ux_pro_max_readme_installation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L511", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_ui_ux_pro_max_https_uupm_cc", + "target": "ui_ux_pro_max_readme_license" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L314", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_ui_ux_pro_max_https_uupm_cc", + "target": "ui_ux_pro_max_readme_prerequisites" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L507", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_ui_ux_pro_max_https_uupm_cc", + "target": "ui_ux_pro_max_readme_star_history" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L332", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_ui_ux_pro_max_https_uupm_cc", + "target": "ui_ux_pro_max_readme_usage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L36", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_ui_ux_pro_max_https_uupm_cc", + "target": "ui_ux_pro_max_readme_what_s_new_in_v2_0" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_what_s_new_in_v2_0", + "target": "ui_ux_pro_max_readme_161_industry_specific_reasoning_rules" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_what_s_new_in_v2_0", + "target": "ui_ux_pro_max_readme_how_design_system_generation_works" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_what_s_new_in_v2_0", + "target": "ui_ux_pro_max_readme_intelligent_design_system_generation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_features", + "target": "ui_ux_pro_max_readme_available_styles_67" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L296", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_installation", + "target": "ui_ux_pro_max_readme_global_install_available_for_all_projects" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L303", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_installation", + "target": "ui_ux_pro_max_readme_other_cli_commands" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L256", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_installation", + "target": "ui_ux_pro_max_readme_using_claude_marketplace_claude_code" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L265", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_installation", + "target": "ui_ux_pro_max_readme_using_cli_recommended" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L356", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_usage", + "target": "ui_ux_pro_max_readme_example_prompts" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L370", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_usage", + "target": "ui_ux_pro_max_readme_how_it_works" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L334", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_usage", + "target": "ui_ux_pro_max_readme_skill_mode_auto_activate" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L378", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_usage", + "target": "ui_ux_pro_max_readme_supported_stacks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L346", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_usage", + "target": "ui_ux_pro_max_readme_workflow_mode_slash_command" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L419", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_design_system_command_advanced", + "target": "ui_ux_pro_max_readme_persist_design_system_master_overrides_pattern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L469", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_architecture_contributing", + "target": "ui_ux_pro_max_readme_for_contributors" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/README.md", + "source_location": "L456", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_readme_architecture_contributing", + "target": "ui_ux_pro_max_readme_for_users" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_claude_md", + "target": "ui_ux_pro_max_claude_claude_md" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L30", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_claude_claude_md", + "target": "ui_ux_pro_max_claude_architecture" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_claude_claude_md", + "target": "ui_ux_pro_max_claude_git_workflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_claude_claude_md", + "target": "ui_ux_pro_max_claude_prerequisites" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_claude_claude_md", + "target": "ui_ux_pro_max_claude_project_overview" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_claude_claude_md", + "target": "ui_ux_pro_max_claude_search_command" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/CLAUDE.md", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "ui_ux_pro_max_claude_claude_md", + "target": "ui_ux_pro_max_claude_sync_rules" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/docs/\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_md", + "target": "docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_\u4e09\u5904_data_scripts_templates_\u7684\u533a\u522b" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/docs/\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md", + "source_location": "L3", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_\u4e09\u5904_data_scripts_templates_\u7684\u533a\u522b", + "target": "docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_\u4e09\u5904\u5206\u522b\u662f\u4ec0\u4e48" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/docs/\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_\u4e09\u5904_data_scripts_templates_\u7684\u533a\u522b", + "target": "docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_\u53ef\u4ee5\u53ea\u4fdd\u7559\u4e00\u4e2a\u5417" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/docs/\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md", + "source_location": "L21", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_\u4e09\u5904_data_scripts_templates_\u7684\u533a\u522b", + "target": "docs_\u4e09\u4e2a_data_scripts_templates_\u7684\u533a\u522b_\u63a8\u8350\u5de5\u4f5c\u6d41" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_readme_md", + "target": "cli_readme_uipro_cli" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L45", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_readme_uipro_cli", + "target": "cli_readme_development" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_readme_uipro_cli", + "target": "cli_readme_how_it_works" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_readme_uipro_cli", + "target": "cli_readme_installation" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_readme_uipro_cli", + "target": "cli_readme_license" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/README.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "cli_readme_uipro_cli", + "target": "cli_readme_usage" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_how_to_use" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_rule_categories_by_priority" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_when_to_apply" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_when_to_apply", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_must_use" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_when_to_apply", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_recommended" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_when_to_apply", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_skip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_10_charts_data_low" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_1_accessibility_critical" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_2_touch_interaction_critical" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_3_performance_high" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_4_style_selection_high" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_5_layout_responsive_high" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_6_typography_color_medium" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_7_animation_medium" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_8_forms_feedback_medium" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_quick_reference_md_base_quick_reference_9_navigation_patterns_high" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_prerequisites" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L313", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "base_skill_content_pre_delivery_checklist_313" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_example_workflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L207", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_output_formats" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_search_reference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_tips_for_better_results" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_1_analyze_user_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_2_generate_design_system_required" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_2b_persist_design_system_master_overrides_pattern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_3_supplement_with_detailed_searches_as_needed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_4_stack_guidelines_react_native" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_search_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_available_domains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_search_reference", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_available_stacks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_example_workflow", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_1_analyze_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_example_workflow", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_2_generate_design_system_required_179" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L187", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_example_workflow", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_3_supplement_with_detailed_searches_as_needed_187" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_example_workflow", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_step_4_stack_guidelines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_tips_for_better_results", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_common_sticking_points" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L242", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_tips_for_better_results", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_pre_delivery_checklist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_tips_for_better_results", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_query_strategy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_icons_visual_elements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L274", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_interaction_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L298", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_layout_spacing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L286", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_light_dark_mode_contrast" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L348", + "weight": 1.0, + "confidence_score": 1.0, + "source": "base_skill_content_pre_delivery_checklist_313", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_accessibility" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L325", + "weight": 1.0, + "confidence_score": 1.0, + "source": "base_skill_content_pre_delivery_checklist_313", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_interaction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L340", + "weight": 1.0, + "confidence_score": 1.0, + "source": "base_skill_content_pre_delivery_checklist_313", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_layout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L333", + "weight": 1.0, + "confidence_score": 1.0, + "source": "base_skill_content_pre_delivery_checklist_313", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_light_dark_mode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md", + "source_location": "L318", + "weight": 1.0, + "confidence_score": 1.0, + "source": "base_skill_content_pre_delivery_checklist_313", + "target": "sixth_skills_ui_ux_pro_max_cli_assets_templates_base_skill_content_md_base_skill_content_visual_quality" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L293", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_how_to_use" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_rule_categories_by_priority" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_when_to_apply" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_when_to_apply", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_must_use" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L17", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_when_to_apply", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_recommended" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_when_to_apply", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_skip" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L260", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_10_charts_data_low" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_1_accessibility_critical" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_2_touch_interaction_critical" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_3_performance_high" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_4_style_selection_high" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_5_layout_responsive_high" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_6_typography_color_medium" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L170", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_7_animation_medium" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_8_forms_feedback_medium" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md", + "source_location": "L231", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_quick_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_quick_reference_md_base_quick_reference_9_navigation_patterns_high" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_prerequisites" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_title" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L318", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "base_skill_content_pre_delivery_checklist_318" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L253", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_example_workflow" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L32", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L207", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_output_formats" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_search_reference" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L221", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_prerequisites", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_tips_for_better_results" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_1_analyze_user_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_2_generate_design_system_required" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_2b_persist_design_system_master_overrides_pattern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_3_supplement_with_detailed_searches_as_needed" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_how_to_use_this_skill", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_4_stack_guidelines_react_native" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_search_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_available_domains" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L161", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_search_reference", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_available_stacks" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_example_workflow", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_1_analyze_requirements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_example_workflow", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_2_generate_design_system_required_179" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L187", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_example_workflow", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_3_supplement_with_detailed_searches_as_needed_187" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L197", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_example_workflow", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_step_4_stack_guidelines" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L230", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_tips_for_better_results", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_common_sticking_points" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L242", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_tips_for_better_results", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_pre_delivery_checklist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L223", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_tips_for_better_results", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_query_strategy" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_icons_visual_elements" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L279", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_interaction_app" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L303", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_layout_spacing" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L291", + "weight": 1.0, + "confidence_score": 1.0, + "source": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_common_rules_for_professional_ui", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_light_dark_mode_contrast" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L353", + "weight": 1.0, + "confidence_score": 1.0, + "source": "base_skill_content_pre_delivery_checklist_318", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_accessibility" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L330", + "weight": 1.0, + "confidence_score": 1.0, + "source": "base_skill_content_pre_delivery_checklist_318", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_interaction" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L345", + "weight": 1.0, + "confidence_score": 1.0, + "source": "base_skill_content_pre_delivery_checklist_318", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_layout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L338", + "weight": 1.0, + "confidence_score": 1.0, + "source": "base_skill_content_pre_delivery_checklist_318", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_light_dark_mode" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md", + "source_location": "L323", + "weight": 1.0, + "confidence_score": 1.0, + "source": "base_skill_content_pre_delivery_checklist_318", + "target": "sixth_skills_ui_ux_pro_max_src_ui_ux_pro_max_templates_base_skill_content_md_base_skill_content_visual_quality" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "graphify-out/memory/query_20260610_064214_how_does_the_diga_lyra_requirement__req_lyra__reac.md", + "source_location": "L9", + "weight": 1.0, + "confidence_score": 1.0, + "source": "graphify_out_memory_query_20260610_064214_how_does_the_diga_lyra_requirement_req_lyra_reac_md", + "target": "memory_query_20260610_064214_how_does_the_diga_lyra_requirement_req_lyra_reac_q_how_does_the_diga_lyra_requirement_req_lyra_reach_its_implementation_across_community_boundaries" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "graphify-out/memory/query_20260610_064214_how_does_the_diga_lyra_requirement__req_lyra__reac.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "memory_query_20260610_064214_how_does_the_diga_lyra_requirement_req_lyra_reac_q_how_does_the_diga_lyra_requirement_req_lyra_reach_its_implementation_across_community_boundaries", + "target": "memory_query_20260610_064214_how_does_the_diga_lyra_requirement_req_lyra_reac_answer" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "graphify-out/memory/query_20260610_064214_how_does_the_diga_lyra_requirement__req_lyra__reac.md", + "source_location": "L15", + "weight": 1.0, + "confidence_score": 1.0, + "source": "memory_query_20260610_064214_how_does_the_diga_lyra_requirement_req_lyra_reac_q_how_does_the_diga_lyra_requirement_req_lyra_reach_its_implementation_across_community_boundaries", + "target": "memory_query_20260610_064214_how_does_the_diga_lyra_requirement_req_lyra_reac_source_nodes" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "platform_macos_computer_name_is_non_empty", + "target": "platform_macos_get_computer_name" + }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic/src-tauri/src/platform/macos.rs", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "platform_macos_device_id_matches_system_uuid", + "target": "platform_macos_get_device_id" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_internal_google_oauth_verification_md", + "target": "internal_google_oauth_verification_google_oauth_app_verification" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_google_oauth_app_verification", + "target": "internal_google_oauth_verification_akzeptanzkriterien" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_google_oauth_app_verification", + "target": "internal_google_oauth_verification_android_client_anlegen_empfohlen_falls_reverse_client_id_scheme_auf_android_abgelehnt_wird" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_google_oauth_app_verification", + "target": "internal_google_oauth_verification_demo_video" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L27", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_google_oauth_app_verification", + "target": "internal_google_oauth_verification_schritt_f\u00fcr_schritt_checkliste" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_google_oauth_app_verification", + "target": "internal_google_oauth_verification_scope_begr\u00fcndung_f\u00fcr_google" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L146", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_google_oauth_app_verification", + "target": "internal_google_oauth_verification_verwandte_dateien" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L11", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_google_oauth_app_verification", + "target": "internal_google_oauth_verification_voraussetzungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L5", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_google_oauth_app_verification", + "target": "internal_google_oauth_verification_warum_das_wichtig_ist" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L29", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_schritt_f\u00fcr_schritt_checkliste", + "target": "internal_google_oauth_verification_1_oauth_client_pr\u00fcfen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_schritt_f\u00fcr_schritt_checkliste", + "target": "internal_google_oauth_verification_2_authorized_redirect_uris" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_schritt_f\u00fcr_schritt_checkliste", + "target": "internal_google_oauth_verification_3_app_informationen_vervollst\u00e4ndigen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L61", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_schritt_f\u00fcr_schritt_checkliste", + "target": "internal_google_oauth_verification_4_domain_verifizierung" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_schritt_f\u00fcr_schritt_checkliste", + "target": "internal_google_oauth_verification_5_verification_starten" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_demo_video", + "target": "internal_google_oauth_verification_anforderungen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_demo_video", + "target": "internal_google_oauth_verification_beispiel_sprechtext_deutsch" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/internal/google-oauth-verification.md", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "internal_google_oauth_verification_demo_video", + "target": "internal_google_oauth_verification_pflicht_szenen_in_dieser_reihenfolge" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_superpowers_plans_2026_06_16_magic_dashboard_redesign_md", + "target": "plans_2026_06_16_magic_dashboard_redesign_magic_dashboard_redesign_implementation_plan" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L25", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_magic_dashboard_redesign_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_redesign_file_map" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L1212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_magic_dashboard_redesign_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_redesign_self_review" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L13", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_magic_dashboard_redesign_implementation_plan", + "target": "plans_2026_06_16_magic_dashboard_redesign_vorbemerkung_bereits_erledigte_fixes" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L774", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_10_devicelistitem_component" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L869", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_11_devicedetailsheet_component" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L1008", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_12_neue_status_vue_integrieren" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L1181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_13_polishing_tests" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L46", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_1_prisma_schema_erweitern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_2_backend_cooldown_endpunkte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_3_devices_get_ts_um_status_erweitern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L251", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_4_status_get_ts_sleep_flag_hinzuf\u00fcgen" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L281", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_5_frontend_types_commands_erweitern" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L418", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_6_usedevicestatus_composable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L530", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_7_iosstarrating_component" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L574", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_8_cooldowncountdown_component" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/plans/2026-06-16-magic-dashboard-redesign.md", + "source_location": "L630", + "weight": 1.0, + "confidence_score": 1.0, + "source": "plans_2026_06_16_magic_dashboard_redesign_file_map", + "target": "plans_2026_06_16_magic_dashboard_redesign_task_9_deviceherocard_component" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L1", + "weight": 1.0, + "confidence_score": 1.0, + "source": "docs_superpowers_specs_2026_06_16_magic_dashboard_redesign_design_md", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L240", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_10_technische_umsetzungshinweise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L258", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_11_offene_punkte" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L265", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_12_abnahme" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L10", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_1_ziel_scope" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L26", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_2_design_prinzipien" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L35", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_3_gesamt_layout" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_4_hero_kachel_aktives_ger\u00e4t" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_5_andere_ger\u00e4te_liste" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_6_device_detail_sheet" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_7_leer_zust\u00e4nde_kapazit\u00e4ts_hinweise" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_8_datenfluss_backend_bedarf" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L232", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_rebreak_magic_dashboard_redesign", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_9_sicherheit_cooldown" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_4_hero_kachel_aktives_ger\u00e4t", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_inhalt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_4_hero_kachel_aktives_ger\u00e4t", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_status_farben" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_5_andere_ger\u00e4te_liste", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_5_1_ios_ger\u00e4te" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_5_andere_ger\u00e4te_liste", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_5_2_weitere_desktop_ger\u00e4te_mac_windows" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_5_andere_ger\u00e4te_liste", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_5_3_android" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_6_device_detail_sheet", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_aktionen_nur_f\u00fcr_das_aktive_ger\u00e4t" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_6_device_detail_sheet", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_inhalt_134" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_6_device_detail_sheet", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_read_only_f\u00fcr_andere_ger\u00e4te" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L187", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_7_leer_zust\u00e4nde_kapazit\u00e4ts_hinweise", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_ios_nicht_legend" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_7_leer_zust\u00e4nde_kapazit\u00e4ts_hinweise", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_kapazit\u00e4t_verf\u00fcgbar" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_7_leer_zust\u00e4nde_kapazit\u00e4ts_hinweise", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_keine_ger\u00e4te" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_7_leer_zust\u00e4nde_kapazit\u00e4ts_hinweise", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_limit_erreicht" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L212", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_8_datenfluss_backend_bedarf", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_backend_erweiterungen_voraussichtlich" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L196", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_8_datenfluss_backend_bedarf", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_frontend_ben\u00f6tigt" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L222", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_8_datenfluss_backend_bedarf", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_ios_sterne_logik" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/superpowers/specs/2026-06-16-magic-dashboard-redesign-design.md", + "source_location": "L203", + "weight": 1.0, + "confidence_score": 1.0, + "source": "specs_2026_06_16_magic_dashboard_redesign_design_8_datenfluss_backend_bedarf", + "target": "specs_2026_06_16_magic_dashboard_redesign_design_lokal_\u00fcber_tauri_rust" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries", + "target": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries", + "target": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L192", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_toolchains", + "target": "x86_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_toolchains_toolchain", + "target": "x86_android_gradle_build_toolchain_ccompilerexecutable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_android_gradle_build_toolchains_toolchain", + "target": "x86_android_gradle_build_toolchain_cppcompilerexecutable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L120", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L151", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L47", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L171", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L95", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L52", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries", + "target": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L49", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L48", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L50", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L54", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L53", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L55", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L69", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L68", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L70", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L71", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L88", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L97", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L96", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L98", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L99", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L117", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L116", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L118", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L172", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L142", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L158", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L173", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L143", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L159", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L144", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L160", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L169", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L145", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json", + "source_location": "L130", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L37", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L56", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L121", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L126", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L73", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L84", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L131", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L89", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L100", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L105", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L136", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L147", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L152", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L163", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L174", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L179", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L110", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L62", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries", + "target": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L42", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L39", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L40", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L41", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L38", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L78", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L94", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L141", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L157", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L168", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L184", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L115", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L67", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L58", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L59", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L60", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L57", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L123", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L128", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L75", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L86", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L133", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L91", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L102", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L107", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L138", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L149", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L154", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L165", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L176", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L181", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L112", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L64", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L124", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L129", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L76", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L87", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L134", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L92", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L103", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L108", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L139", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L150", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L155", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L166", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L177", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L182", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L113", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L65", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L77", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L93", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L140", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L156", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L167", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L183", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L114", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L66", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L63", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L74", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L85", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L90", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L101", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L106", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L111", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L122", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L127", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L132", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L137", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L148", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L153", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L164", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L175", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L180", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L192", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_toolchains", + "target": "x86_64_android_gradle_build_toolchains_toolchain" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L193", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_toolchains_toolchain", + "target": "x86_64_android_gradle_build_toolchain_ccompilerexecutable" + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json", + "source_location": "L194", + "weight": 1.0, + "confidence_score": 1.0, + "source": "x86_64_android_gradle_build_toolchains_toolchain", + "target": "x86_64_android_gradle_build_toolchain_cppcompilerexecutable" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L49", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "models_wizardmodel_wizardmodel", + "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_bool" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L40", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "models_wizardmodel_wizardmodel", + "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_date" + }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", + "source_location": "L24", + "weight": 1.0, + "context": "field", + "confidence_score": 1.0, + "source": "models_wizardmodel_wizardmodel", + "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_devicestate" + }, { "relation": "references", "confidence": "EXTRACTED", @@ -285101,36 +422733,6 @@ "source": "concepts_brand_token_matching_brand_tokens_endpoint", "target": "concepts_brand_token_matching_blocklist_bin_sync" }, - { - "relation": "references", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/admin/README.md", - "source_location": "GitHub-Actions-Pipeline", - "weight": 1.0, - "source": "admin_readme_admin_app", - "target": "workflows_deploy_admin_staging_workflow" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": ".github/workflows/deploy-admin-staging.yml", - "source_location": null, - "weight": 1.0, - "source": "workflows_deploy_admin_staging_workflow", - "target": "workflows_deploy_admin_staging_build_job" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": ".github/workflows/deploy-admin-staging.yml", - "source_location": null, - "weight": 1.0, - "source": "workflows_deploy_admin_staging_workflow", - "target": "workflows_deploy_admin_staging_deploy_job" - }, { "relation": "references", "confidence": "EXTRACTED", @@ -287851,39359 +425453,6 @@ "source": "appiconset_icon_128x128_png", "target": "concept_rebreak_brand_identity" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_patcheddependencies", - "target": "rebreak_monorepo_package_patcheddependencies_metro_core_0_83_3" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "package.json", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_monorepo_package_pnpm_patcheddependencies", - "target": "rebreak_monorepo_package_patcheddependencies_react_native_callkeep" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "tsconfig.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "tsconfig_json", - "target": "rebreak_monorepo_tsconfig_compileroptions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "tsconfig.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "tsconfig_json", - "target": "rebreak_monorepo_tsconfig_extends" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": ".expo/devices.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "expo_devices_json", - "target": "expo_devices_devices" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "backend_server_utils_crisis_filter_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "crisis_crisis_filter_test_crisisprompts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "crisis_crisis_filter_test_evalprompt" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "crisis_crisis_filter_test_expected_crisis_matches" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "crisis_crisis_filter_test_harmlessprompts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "crisis_crisis_filter_test_loadprompts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "crisis_crisis_filter_test_prompts_dir" - }, - { - "relation": "references", - "confidence": "INFERRED", - "confidence_score": 0.95, - "weight": 0.95, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "measures recall metric", - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "diga_05c_crisis_detection_recall" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "utils_crisis_filter_detectcrisis" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "utils_crisis_filter_getcrisischips" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/tests/crisis/crisis-filter.test.ts", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_crisis_crisis_filter_test_ts", - "target": "utils_crisis_filter_getcrisisfallback" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L99", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_allprompts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L241", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_calllyra" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L319", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_computecrisisrecall" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L93", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_crisisprompts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L94", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_drangprompts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L97", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_edgecaseprompts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L151", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_evalprompt" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_evalresult" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L347", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_evalresults" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L50", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_evalrule" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L109", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_evaluaterule" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L176", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_getmockresponse" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L95", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_harmlessprompts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L96", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_jailbreakprompts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L88", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_loadprompts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_prompts_dir" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_ruleresult" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_tests_eval_lyra_eval_test_ts", - "target": "eval_lyra_eval_test_ruletype" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/tests/eval/lyra-eval.test.ts", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "eval_lyra_eval_test_calllyra", - "target": "eval_lyra_eval_test_getmockresponse" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_email_post_ts", - "target": "backend_server_utils_device_approval_email_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/device-approval-email.ts", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_device_approval_email_ts", - "target": "utils_device_approval_email_senddeviceapprovalemail" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_email_post_ts", - "target": "utils_device_approval_email_senddeviceapprovalemail" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magic-removal-email.ts", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magic_removal_email_ts", - "target": "db_devices_magicremovalcredential" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magic-removal-email.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magic_removal_email_ts", - "target": "utils_magic_removal_email_magicremovalemailopts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magic-removal-email.ts", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magic_removal_email_ts", - "target": "utils_magic_removal_email_sendmagicremovalemail" - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magic-removal-email.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_magic_removal_email_magicremovalemailopts", - "target": "db_devices_magicremovalcredential" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "weight": 1.0, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "risk doc names this file", - "source": "backend_server_utils_crisis_filter_ts", - "target": "diga_04_crisis_filter_mitigation" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L373", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crisis_filter_ts", - "target": "utils_crisis_filter_crisischip" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crisis_filter_ts", - "target": "utils_crisis_filter_crisisdetectionresult" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L426", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crisis_filter_ts", - "target": "utils_crisis_filter_crisisfallbackpayload" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crisis_filter_ts", - "target": "utils_crisis_filter_crisislevel" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L308", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crisis_filter_ts", - "target": "utils_crisis_filter_detectcrisis" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L385", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crisis_filter_ts", - "target": "utils_crisis_filter_getcrisischips" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L431", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crisis_filter_ts", - "target": "utils_crisis_filter_getcrisisfallback" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crisis_filter_ts", - "target": "utils_crisis_filter_normalize" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_crisis_filter_ts", - "target": "utils_crisis_filter_patterngroup" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_crisis_filter_detectcrisis", - "target": "utils_crisis_filter_normalize" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.9, - "weight": 0.9, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "REQ-LYRA crisis handling", - "source": "utils_crisis_filter_detectcrisis", - "target": "diga_03_req_lyra" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "weight": 1.0, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "pre-filter fn", - "source": "utils_crisis_filter_detectcrisis", - "target": "diga_04_crisis_filter_mitigation" - }, - { - "relation": "references", - "confidence": "INFERRED", - "confidence_score": 0.95, - "weight": 0.95, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "mitigates missed-crisis risk", - "source": "utils_crisis_filter_detectcrisis", - "target": "diga_04_risk_lyra_01_verpasste_krise" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.95, - "weight": 0.95, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "enforces Krisenreferenz-Pflicht", - "source": "utils_crisis_filter_detectcrisis", - "target": "diga_05c_safety_req_llm_001" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/crisis-filter.ts", - "source_location": "L440", - "weight": 1.0, - "confidence_score": 1.0, - "source": "utils_crisis_filter_getcrisisfallback", - "target": "utils_crisis_filter_getcrisischips" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.95, - "weight": 0.95, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "note": "emits crisis-reference fallback", - "source": "utils_crisis_filter_getcrisisfallback", - "target": "diga_05c_safety_req_llm_001" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magicCron.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magiccron_ts", - "target": "backend_server_utils_adguard_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magicCron.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magiccron_ts", - "target": "utils_adguard_deleteadguardclient" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magicCron.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magiccron_ts", - "target": "utils_magiccron_processmagicreleases" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "backend/server/utils/magicCron.ts", - "source_location": "L51", - "weight": 1.0, - "source": "utils_magiccron_processmagicreleases", - "target": "utils_adguard_deleteadguardclient" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_profile_mobileconfig_get_ts", - "target": "backend_server_utils_magic_profile_template_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_profile_mobileconfig_get_ts", - "target": "backend_server_utils_magic_lock_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "backend_server_utils_magic_lock_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magic-lock.ts", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magic_lock_ts", - "target": "utils_magic_lock_buildremovalpasswordpayload" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magic-lock.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magic_lock_ts", - "target": "utils_magic_lock_generateremovalpassword" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/magic-lock.ts", - "source_location": "L65", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_magic_lock_ts", - "target": "utils_magic_lock_signprofileifconfigured" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_profile_mobileconfig_get_ts", - "target": "utils_magic_lock_generateremovalpassword" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "utils_magic_lock_generateremovalpassword" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_profile_mobileconfig_get_ts", - "target": "utils_magic_lock_buildremovalpasswordpayload" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_profile_mobileconfig_get_ts", - "target": "utils_magic_lock_signprofileifconfigured" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "backend_server_utils_adguard_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/adguard.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_adguard_ts", - "target": "utils_adguard_adguardclientoptions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/adguard.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_adguard_ts", - "target": "utils_adguard_adguardclientpayload" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/adguard.ts", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_adguard_ts", - "target": "utils_adguard_createadguardclient" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/utils/adguard.ts", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_utils_adguard_ts", - "target": "utils_adguard_deleteadguardclient" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "utils_adguard_createadguardclient" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/devices.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_devices_get_ts", - "target": "db_devices_listmagicdevices" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "db_devices_listmagicdevices" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/register.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_register_post_ts", - "target": "db_devices_countactivemagicbindings" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_profile_mobileconfig_get_ts", - "target": "db_devices_findmagicdevicebytoken" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/status.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_status_get_ts", - "target": "db_devices_findmagicdevicebytoken" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/profile.mobileconfig.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_profile_mobileconfig_get_ts", - "target": "db_devices_ensuremagicremovalpassword" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/approve.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_approve_post_ts", - "target": "backend_server_db_device_approvals_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_email_post_ts", - "target": "backend_server_db_device_approvals_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id].get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_get_ts", - "target": "backend_server_db_device_approvals_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/reject.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_reject_post_ts", - "target": "backend_server_db_device_approvals_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_index_get_ts", - "target": "backend_server_db_device_approvals_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/index.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_index_post_ts", - "target": "backend_server_db_device_approvals_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_approval_select" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L181", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_approverequest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L90", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_createapprovalrequest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_deviceapprovalrecord" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_generatecode" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L65", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_generateemailtoken" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L143", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_getapprovalbyemailtoken" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_getapprovalrequest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_hasotheractivedevices" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_listpendingapprovals" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_markemailsent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_maybeexpire" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_db_device_approvals_ts", - "target": "db_device_approvals_rejectrequest" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L110", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_device_approvals_createapprovalrequest", - "target": "db_device_approvals_generatecode" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L245", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_device_approvals_markemailsent", - "target": "db_device_approvals_generateemailtoken" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/index.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_index_post_ts", - "target": "db_device_approvals_createapprovalrequest" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_email_post_ts", - "target": "db_device_approvals_getapprovalrequest" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id].get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_get_ts", - "target": "db_device_approvals_getapprovalrequest" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_device_approvals_approverequest", - "target": "db_device_approvals_getapprovalrequest" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_device_approvals_getapprovalrequest", - "target": "db_device_approvals_maybeexpire" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L240", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_device_approvals_markemailsent", - "target": "db_device_approvals_getapprovalrequest" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L219", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_device_approvals_rejectrequest", - "target": "db_device_approvals_getapprovalrequest" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/device-approvals.ts", - "source_location": "L152", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_device_approvals_getapprovalbyemailtoken", - "target": "db_device_approvals_maybeexpire" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/index.get.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_index_get_ts", - "target": "db_device_approvals_listpendingapprovals" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/approve.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_approve_post_ts", - "target": "db_device_approvals_approverequest" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/reject.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_reject_post_ts", - "target": "db_device_approvals_rejectrequest" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/devices/approvals/[id]/email.post.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_devices_approvals_id_email_post_ts", - "target": "db_device_approvals_markemailsent" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/event.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_event_post_ts", - "target": "db_protectionstatelog_protectionsource" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_protectionstate", - "target": "db_protectionstatelog_protectionsource" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_protectionstatelog_appendprotectionevent", - "target": "db_protectionstatelog_getlastprotectionevent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_protectionstate", - "target": "db_protectionstatelog_getlastprotectionevent" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/event.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_event_post_ts", - "target": "db_protectionstatelog_appendprotectionevent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L51", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_protectionstate", - "target": "db_protectionstatelog_appendprotectionevent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_protectionstate", - "target": "db_protectionstatelog_protectioncoverage" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/coverage.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_coverage_get_ts", - "target": "db_protectionstatelog_computeprotectioncoverage" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L144", - "weight": 1.0, - "confidence_score": 1.0, - "source": "db_protectionstatelog_computeprotectioncoverage", - "target": "db_protectionstatelog_utcdaystart" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L90", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_protectionstate", - "target": "db_protectionstatelog_computeprotectioncoverage" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/db/protectionStateLog.ts", - "source_location": "L213", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_protectionstate", - "target": "db_protectionstatelog_utcdaystart" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/me/calls-enabled.post.ts", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_me_calls_enabled_post_ts", - "target": "db_profile_setcallsenabled" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/chat/can-call/[userId].get.ts", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_chat_can_call_userid_get_ts", - "target": "db_social_cancall" - }, - { - "relation": "implements", - "confidence": "INFERRED", - "confidence_score": 0.85, - "weight": 0.85, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "Magic-Device-Registration = Bindung", - "source": "backend_server_api_magic_register_post_ts", - "target": "diga_03_req_magic" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/devices.get.ts", - "source_location": "L132", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_devices_get_ts", - "target": "magic_devices_get_prettyplatform" - }, - { - "relation": "references", - "confidence": "INFERRED", - "confidence_score": 0.85, - "weight": 0.85, - "source_file": "docs/specs/diga/05d-traceability-matrix-v0.md", - "traceability": true, - "strand": "protection", - "note": "Release-Request-API", - "source": "backend_server_api_magic_devices_deviceid_request_release_post_ts", - "target": "diga_04_risk_byp_03_selbstbindung_falle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/pair/redeem.post.ts", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_pair_redeem_post_ts", - "target": "pair_redeem_post_checkratelimit" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/pair/redeem.post.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_pair_redeem_post_ts", - "target": "pair_redeem_post_rateentry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/magic/pair/redeem.post.ts", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_magic_pair_redeem_post_ts", - "target": "pair_redeem_post_ratelimitstore" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/event.post.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_event_post_ts", - "target": "protection_event_post_valid_sources" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/event.post.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_event_post_ts", - "target": "src_lib_protectionstate" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "backend/server/api/protection/coverage.get.ts", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_api_protection_coverage_get_ts", - "target": "src_lib_protectionstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_voip_push_ts", - "target": "services_voip_push_apnmodule" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_voip_push_ts", - "target": "services_voip_push_apnnotification" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_voip_push_ts", - "target": "services_voip_push_apnprovider" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_voip_push_ts", - "target": "services_voip_push_ensureinit" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_voip_push_ts", - "target": "services_voip_push_sendvoippush" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L171", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_voip_push_ts", - "target": "services_voip_push_shutdownvoipprovider" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_voip_push_ts", - "target": "services_voip_push_tokenenvcache" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "backend_server_services_voip_push_ts", - "target": "services_voip_push_voipcallpayload" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "backend/server/services/voip-push.ts", - "source_location": "L109", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_voip_push_sendvoippush", - "target": "services_voip_push_ensureinit" - }, - { - "relation": "defines", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-marketing.sh", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_marketing_sh", - "target": "scripts_deploy_marketing_log" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-marketing.sh", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "scripts_deploy_marketing_sh", - "target": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_marketing_sh__entry" - }, - { - "relation": "calls", - "confidence": "EXTRACTED", - "source_file": "scripts/deploy-marketing.sh", - "source_location": "L29", - "weight": 1.0, - "context": "call", - "confidence_score": 1.0, - "source": "users_chahinebrini_mono_rebreak_monorepo_scripts_deploy_marketing_sh__entry", - "target": "scripts_deploy_marketing_log" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_google_services_json", - "target": "rebreak_native_google_services_client" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_google_services_json", - "target": "rebreak_native_google_services_configuration_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_google_services_json", - "target": "rebreak_native_google_services_project_info" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_google_services_project_info", - "target": "rebreak_native_google_services_project_info_project_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_google_services_project_info", - "target": "rebreak_native_google_services_project_info_project_number" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/google-services.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_native_google_services_project_info", - "target": "rebreak_native_google_services_project_info_storage_bucket" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_call_tsx", - "target": "app_call_callscreen" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L182", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_call_tsx", - "target": "app_call_circlebtn" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_call_tsx", - "target": "app_call_fmtduration" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_call_tsx", - "target": "apps_rebreak_native_stores_call_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_app_call_tsx", - "target": "stores_call_usecallstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_call_callscreen", - "target": "app_call_fmtduration" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/app/call.tsx", - "source_location": "L21", - "weight": 1.0, - "source": "app_call_callscreen", - "target": "stores_call_usecallstore" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", - "target": "plugins_with_voip_pushkit_ios_fs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", - "target": "plugins_with_voip_pushkit_ios_patchappdelegate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L162", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", - "target": "plugins_with_voip_pushkit_ios_patchbridgingheader" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", - "target": "plugins_with_voip_pushkit_ios_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-voip-pushkit-ios.js", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_voip_pushkit_ios_js", - "target": "plugins_with_voip_pushkit_ios_withdangerousmod" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_allow_nonmodular_includes_js", - "target": "plugins_with_allow_nonmodular_includes_fs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_allow_nonmodular_includes_js", - "target": "plugins_with_allow_nonmodular_includes_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/plugins/with-allow-nonmodular-includes.js", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_plugins_with_allow_nonmodular_includes_js", - "target": "plugins_with_allow_nonmodular_includes_withdangerousmod" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "apps_rebreak_native_lib_callkit_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "apps_rebreak_native_lib_ringback_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "lib_ringback_startringback" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "lib_ringback_stopringback" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_callendreason" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_callpeer" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_callstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_callstatus" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L96", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_clog" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L102", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_fireringcancel" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L90", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_incall" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_iswebrtcavailable" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L145", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_logcalltochat" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_pendingremoteice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_rtc" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_teardown" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_call_ts", - "target": "stores_call_usecallstore" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usecallkeepevents_usecallkeepevents", - "target": "apps_rebreak_native_stores_call_ts" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L120", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_call_teardown", - "target": "stores_call_incall" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L169", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_call_logcalltochat", - "target": "stores_call_clog" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/call.ts", - "source_location": "L121", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_call_teardown", - "target": "lib_ringback_stopringback" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usecallkeepevents_usecallkeepevents", - "target": "stores_call_usecallstore" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", - "target": "apps_rebreak_native_stores_deviceapproval_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalpendingsheet_tsx", - "target": "apps_rebreak_native_stores_deviceapproval_ts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/deviceApproval.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_deviceapproval_ts", - "target": "stores_deviceapproval_deviceapprovalrecord" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/deviceApproval.ts", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_deviceapproval_ts", - "target": "stores_deviceapproval_state" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/deviceApproval.ts", - "source_location": "L69", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_stores_deviceapproval_ts", - "target": "stores_deviceapproval_usedeviceapprovalstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", - "target": "stores_deviceapproval_deviceapprovalrecord" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L8", - "weight": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", - "target": "stores_deviceapproval_usedeviceapprovalstore" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/DeviceApprovalPendingSheet.tsx", - "source_location": "L7", - "weight": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalpendingsheet_tsx", - "target": "stores_deviceapproval_usedeviceapprovalstore" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_blockerstats_blockerstats", - "target": "stores_blockerstats_asnumber" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_blockerstats_blockerstats", - "target": "stores_blockerstats_blockerstatsstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_blockerstats_blockerstats", - "target": "stores_blockerstats_normalizestats" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_blockerstats_blockerstats", - "target": "stores_blockerstats_rawstatsresponse" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_blockerstats_blockerstats", - "target": "stores_blockerstats_useblockerstatsstore" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/stores/blockerStats.ts", - "source_location": "L69", - "weight": 1.0, - "confidence_score": 1.0, - "source": "stores_blockerstats_normalizestats", - "target": "stores_blockerstats_asnumber" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L98", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "pkpushregistry", - "target": "pkpushcredentials" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L119", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "pkpushregistry", - "target": "pkpushpayload" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L119", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "pkpushregistry", - "target": "pkpushtype" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L134", - "weight": 1.0, - "confidence_score": 1.0, - "source": "pkpushregistry", - "target": "rebreak_appdelegate_appdelegate_callidtouuid" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/ios/ReBreak/AppDelegate.swift", - "source_location": "L162", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "rebreak_appdelegate_appdelegate_callidtouuid", - "target": "apps_rebreak_native_ios_rebreak_appdelegate_swift_string" - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", - "target": "components_deviceapprovalincomingsheet_platformicon" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DeviceApprovalIncomingSheet.tsx", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_deviceapprovalincomingsheet_tsx", - "target": "components_deviceapprovalincomingsheet_userdevice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_digamilestonemodal_digamilestonemodal", - "target": "components_digamilestonemodal_milestones" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "components_digamilestonemodal_digamilestonemodal", - "target": "components_digamilestonemodal_storagekey" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/DiGaMilestoneModal.tsx", - "source_location": "L9", - "weight": 1.0, - "source": "components_digamilestonemodal_digamilestonemodal", - "target": "hooks_useprofiledata_useprotectioncoverage" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", - "target": "chat_voicerecordingbar_formatvoiceduration" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", - "target": "chat_voicerecordingbar_props" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L94", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", - "target": "chat_voicerecordingbar_styles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", - "target": "chat_voicerecordingbar_voicebars" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_voicerecordingbar_tsx", - "target": "chat_voicerecordingbar_voicerecordingbar" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/VoiceRecordingBar.tsx", - "source_location": "L78", - "weight": 1.0, - "confidence_score": 1.0, - "source": "chat_voicerecordingbar_voicerecordingbar", - "target": "chat_voicerecordingbar_formatvoiceduration" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_typingbubble_tsx", - "target": "chat_typingbubble_styles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_typingbubble_tsx", - "target": "chat_typingbubble_typingbubble" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/TypingBubble.tsx", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_chat_typingbubble_tsx", - "target": "chat_typingbubble_wavedots" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/chat/ChatBubble.tsx", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "chat_chatbubble_voicenotebubble", - "target": "chat_chatbubble_fmtsec" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/deviceIcon.ts", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_deviceicon_ts", - "target": "devices_deviceicon_deviceimage" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/deviceIcon.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_components_devices_deviceicon_ts", - "target": "devices_deviceicon_icons" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "apps_rebreak_native_components_devices_deviceicon_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "devices_deviceicon_deviceimage" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "devices_magicsheet_pairresponse" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "devices_magicsheet_magicdevice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "devices_magicsheet_magicinfo" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "devices_magicsheet_desktopplatform" - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L392", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "devices_magicsheet_cardstyle" - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L500", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "devices_magicsheet_formatremaining" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L456", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "devices_magicsheet_platformoption" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L419", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "devices_magicsheet_primarybutton" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/MagicSheet.tsx", - "source_location": "L401", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_magicsheet_magicsheet", - "target": "devices_magicsheet_sectiontitle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_deviceslotdonut_deviceslotdonut", - "target": "devices_deviceslotdonut_slotsegment" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_deviceslotdonut_arcpath", - "target": "devices_deviceslotdonut_polar" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_deviceslotdonut_deviceslotdonut", - "target": "devices_deviceslotdonut_polar" - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceSlotDonut.tsx", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_deviceslotdonut_deviceslotdonut", - "target": "devices_deviceslotdonut_arcpath" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_devicedistributionbar_devicedistributionbar", - "target": "devices_deviceslotdonut_deviceslotdonut" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceStatusPill.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_devicestatuspill_devicestatuspill", - "target": "devices_devicestatuspill_devicestatuskind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceDistributionBar.tsx", - "source_location": "L89", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_devicedistributionbar_devicedistributionbar", - "target": "devices_devicedistributionbar_legend" - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_devicedetailsheet_devicedetail", - "target": "devices_devicedetailsheet_fmtdate" - }, - { - "relation": "contains", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_devicedetailsheet_devicedetail", - "target": "devices_devicedetailsheet_fmtlastseen" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_devicedetailsheet_devicedetail", - "target": "devices_devicedetailsheet_inforow" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L8", - "weight": 1.0, - "source": "devices_devicedetailsheet_devicedetail", - "target": "hooks_useprofiledata_useprotectioncoverage" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/components/devices/DeviceDetailSheet.tsx", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "devices_devicedetailsheet_fmtlastseen", - "target": "devices_devicedetailsheet_fmtdate" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usecallkeepevents_usecallkeepevents", - "target": "apps_rebreak_native_lib_callkit_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/hooks/useCallKeepEvents.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "hooks_usecallkeepevents_usecallkeepevents", - "target": "lib_callkit_setupcallkeep" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_google_services_json", - "target": "app_google_services_client" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_google_services_json", - "target": "app_google_services_configuration_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_google_services_json", - "target": "app_google_services_project_info" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_google_services_project_info", - "target": "app_google_services_project_info_project_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_google_services_project_info", - "target": "app_google_services_project_info_project_number" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/google-services.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "app_google_services_project_info", - "target": "app_google_services_project_info_storage_bucket" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_a8c19e26be3272af68dc_json", - "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_inputs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L334", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_a8c19e26be3272af68dc_json", - "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L335", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_a8c19e26be3272af68dc_json", - "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L340", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cmakefiles_v1_a8c19e26be3272af68dc_json", - "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L337", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths", - "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L338", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths", - "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L342", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version", - "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cmakeFiles-v1-a8c19e26be3272af68dc.json", - "source_location": "L343", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version", - "target": "reply_cmakefiles_v1_a8c19e26be3272af68dc_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_json", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-bb82e9ba1bf9429e5b4f.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths", - "target": "reply_target_react_codegen_rnasyncstorage_relwithdebinfo_bb82e9ba1bf9429e5b4f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_link_sysroot", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-bd189f0fd15b94dd9ec1.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_bd189f0fd15b94dd9ec1_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_link_sysroot", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-9c69e7654f71fd767275.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_9c69e7654f71fd767275_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-41730a4c1fe95cbae3d7.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_41730a4c1fe95cbae3d7_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_json", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-9bde2ac1197f26ca02ee.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths", - "target": "reply_target_react_codegen_rnreanimated_relwithdebinfo_9bde2ac1197f26ca02ee_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-035239ade8749d351f27.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_035239ade8749d351f27_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_link_sysroot", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-e6e3efe80fe9023afafe.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_e6e3efe80fe9023afafe_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-a2e90671f19b0eec910e.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_a2e90671f19b0eec910e_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_8648f163dc6cddd234fb_json", - "target": "reply_cache_v2_8648f163dc6cddd234fb_entries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", - "source_location": "L1637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_8648f163dc6cddd234fb_json", - "target": "reply_cache_v2_8648f163dc6cddd234fb_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", - "source_location": "L1638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_cache_v2_8648f163dc6cddd234fb_json", - "target": "reply_cache_v2_8648f163dc6cddd234fb_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", - "source_location": "L1640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_8648f163dc6cddd234fb_version", - "target": "reply_cache_v2_8648f163dc6cddd234fb_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/cache-v2-8648f163dc6cddd234fb.json", - "source_location": "L1641", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_8648f163dc6cddd234fb_version", - "target": "reply_cache_v2_8648f163dc6cddd234fb_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_json", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-2d5f9eb4b8201bc08181.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths", - "target": "reply_target_react_codegen_rnworklets_relwithdebinfo_2d5f9eb4b8201bc08181_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_json", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-0f66f383ac1ca074bbef.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths", - "target": "reply_target_react_codegen_lottiereactnative_relwithdebinfo_0f66f383ac1ca074bbef_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_json", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-5cbc59763d41df54dfc2.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths", - "target": "reply_target_react_codegen_rnctabview_relwithdebinfo_5cbc59763d41df54dfc2_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L267", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L268", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-09d8b25328ee8de9b7e2.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_09d8b25328ee8de9b7e2_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_06_09t17_33_54_0070_json", - "target": "reply_index_2026_06_09t17_33_51_0850_cmake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake", - "target": "reply_index_2026_06_09t17_33_51_0850_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake", - "target": "reply_index_2026_06_09t17_33_51_0850_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake", - "target": "reply_index_2026_06_09t17_33_51_0850_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake_generator", - "target": "reply_index_2026_06_09t17_33_51_0850_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake_generator", - "target": "reply_index_2026_06_09t17_33_51_0850_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake_paths", - "target": "reply_index_2026_06_09t17_33_51_0850_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake_paths", - "target": "reply_index_2026_06_09t17_33_51_0850_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake_paths", - "target": "reply_index_2026_06_09t17_33_51_0850_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_51_0850_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_51_0850_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_51_0850_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake_version", - "target": "reply_index_2026_06_09t17_33_51_0850_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake_version", - "target": "reply_index_2026_06_09t17_33_51_0850_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake_version", - "target": "reply_index_2026_06_09t17_33_51_0850_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake_version", - "target": "reply_index_2026_06_09t17_33_51_0850_version_patch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake_version", - "target": "reply_index_2026_06_09t17_33_51_0850_version_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_cmake_version", - "target": "reply_index_2026_06_09t17_33_51_0850_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_06_09t17_33_54_0070_json", - "target": "reply_index_2026_06_09t17_33_51_0850_objects" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_06_09t17_33_54_0070_json", - "target": "reply_index_2026_06_09t17_33_51_0850_reply" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_reply", - "target": "reply_index_2026_06_09t17_33_51_0850_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_51_0850_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_51_0850_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_51_0850_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_51_0850_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_51_0850_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_51_0850_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_51_0850_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_51_0850_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T17-33-51-0850.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_51_0850_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_51_0850_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_json", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-d65a426276bffa7e7673.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths", - "target": "reply_target_react_codegen_rnmmkvspec_relwithdebinfo_d65a426276bffa7e7673_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_35ffecf8081b17d4bb74_json", - "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_configurations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_35ffecf8081b17d4bb74_json", - "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_35ffecf8081b17d4bb74_json", - "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_35ffecf8081b17d4bb74_json", - "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths", - "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths", - "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_35ffecf8081b17d4bb74_version", - "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-35ffecf8081b17d4bb74.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_35ffecf8081b17d4bb74_version", - "target": "reply_codemodel_v2_35ffecf8081b17d4bb74_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-1ffa26502c77c9d186df.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths", - "target": "reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_1ffa26502c77c9d186df_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-1b18659d65735f6230bf.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_1b18659d65735f6230bf_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_json", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_link_sysroot", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-90f1d67427533d3ecf21.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths", - "target": "reply_target_appmodules_relwithdebinfo_90f1d67427533d3ecf21_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_json", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-774dcf0d41483311e403.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths", - "target": "reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_774dcf0d41483311e403_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_3b89f69fafffe1536555_json", - "target": "reply_cache_v2_3b89f69fafffe1536555_entries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", - "source_location": "L1637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_3b89f69fafffe1536555_json", - "target": "reply_cache_v2_3b89f69fafffe1536555_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", - "source_location": "L1638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cache_v2_3b89f69fafffe1536555_json", - "target": "reply_cache_v2_3b89f69fafffe1536555_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", - "source_location": "L1640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_3b89f69fafffe1536555_version", - "target": "reply_cache_v2_3b89f69fafffe1536555_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cache-v2-3b89f69fafffe1536555.json", - "source_location": "L1641", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_3b89f69fafffe1536555_version", - "target": "reply_cache_v2_3b89f69fafffe1536555_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_json", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_link_sysroot", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-b884683c9c9cafb1595f.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths", - "target": "reply_target_appmodules_relwithdebinfo_b884683c9c9cafb1595f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_485a9b36f12a59f57849_json", - "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_inputs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L334", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_485a9b36f12a59f57849_json", - "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L335", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_485a9b36f12a59f57849_json", - "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L340", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_cmakefiles_v1_485a9b36f12a59f57849_json", - "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L337", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths", - "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L338", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths", - "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L342", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_485a9b36f12a59f57849_version", - "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/cmakeFiles-v1-485a9b36f12a59f57849.json", - "source_location": "L343", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_485a9b36f12a59f57849_version", - "target": "reply_cmakefiles_v1_485a9b36f12a59f57849_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_06_09t17_33_53_0108_json", - "target": "reply_index_2026_06_09t17_33_53_0108_cmake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_06_09t17_33_53_0108_json", - "target": "reply_index_2026_06_09t17_33_53_0108_objects" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_index_2026_06_09t17_33_53_0108_json", - "target": "reply_index_2026_06_09t17_33_53_0108_reply" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake", - "target": "reply_index_2026_06_09t17_33_53_0108_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake", - "target": "reply_index_2026_06_09t17_33_53_0108_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake", - "target": "reply_index_2026_06_09t17_33_53_0108_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake_generator", - "target": "reply_index_2026_06_09t17_33_53_0108_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake_generator", - "target": "reply_index_2026_06_09t17_33_53_0108_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake_paths", - "target": "reply_index_2026_06_09t17_33_53_0108_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake_paths", - "target": "reply_index_2026_06_09t17_33_53_0108_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake_paths", - "target": "reply_index_2026_06_09t17_33_53_0108_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_53_0108_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_53_0108_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_53_0108_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake_version", - "target": "reply_index_2026_06_09t17_33_53_0108_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake_version", - "target": "reply_index_2026_06_09t17_33_53_0108_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake_version", - "target": "reply_index_2026_06_09t17_33_53_0108_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake_version", - "target": "reply_index_2026_06_09t17_33_53_0108_version_patch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake_version", - "target": "reply_index_2026_06_09t17_33_53_0108_version_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_cmake_version", - "target": "reply_index_2026_06_09t17_33_53_0108_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_reply", - "target": "reply_index_2026_06_09t17_33_53_0108_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_53_0108_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_53_0108_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_53_0108_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_53_0108_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_53_0108_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_53_0108_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_53_0108_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_53_0108_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-09T17-33-53-0108.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_53_0108_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_53_0108_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-756e8dab5fe64dee57e9.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_756e8dab5fe64dee57e9_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-d795b03caa27679dfe6b.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_d795b03caa27679dfe6b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_link_sysroot", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-023b0f15c1737910854b.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_023b0f15c1737910854b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_643ed375e1d78f8a2f97_json", - "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_configurations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_643ed375e1d78f8a2f97_json", - "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_643ed375e1d78f8a2f97_json", - "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_codemodel_v2_643ed375e1d78f8a2f97_json", - "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths", - "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths", - "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_643ed375e1d78f8a2f97_version", - "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/codemodel-v2-643ed375e1d78f8a2f97.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_643ed375e1d78f8a2f97_version", - "target": "reply_codemodel_v2_643ed375e1d78f8a2f97_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_link_sysroot", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-3361afac133c048fc79c.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_3361afac133c048fc79c_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-0eac2fe2559fd7bb5ea3.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_0eac2fe2559fd7bb5ea3_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-4a22e4e05af9cc8ccf52.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_4a22e4e05af9cc8ccf52_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L267", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L268", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-1cc71c4e2ece3a8f1252.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_1cc71c4e2ece3a8f1252_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_link_sysroot", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-7a7110ae8252d6b7db7e.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_7a7110ae8252d6b7db7e_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-ae8048632b75365076d6.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_ae8048632b75365076d6_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-e58058e408bce1d698d0.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_e58058e408bce1d698d0_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_8e20c562927808c1169a_json", - "target": "reply_codemodel_v2_8e20c562927808c1169a_configurations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_8e20c562927808c1169a_json", - "target": "reply_codemodel_v2_8e20c562927808c1169a_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_8e20c562927808c1169a_json", - "target": "reply_codemodel_v2_8e20c562927808c1169a_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_codemodel_v2_8e20c562927808c1169a_json", - "target": "reply_codemodel_v2_8e20c562927808c1169a_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_8e20c562927808c1169a_paths", - "target": "reply_codemodel_v2_8e20c562927808c1169a_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_8e20c562927808c1169a_paths", - "target": "reply_codemodel_v2_8e20c562927808c1169a_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_8e20c562927808c1169a_version", - "target": "reply_codemodel_v2_8e20c562927808c1169a_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-8e20c562927808c1169a.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_8e20c562927808c1169a_version", - "target": "reply_codemodel_v2_8e20c562927808c1169a_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_link_sysroot", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-99f7a94d24f92bba496f.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_99f7a94d24f92bba496f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L267", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L268", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-f009a631b35a39bb6492.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_f009a631b35a39bb6492_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_json", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_link_sysroot", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-6b37fa57db06e85fbe7b.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths", - "target": "reply_target_appmodules_relwithdebinfo_6b37fa57db06e85fbe7b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-e419e9f4a27f44ec1113.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_e419e9f4a27f44ec1113_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_06_09t17_33_50_0484_json", - "target": "reply_index_2026_06_09t17_33_50_0484_cmake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_06_09t17_33_50_0484_json", - "target": "reply_index_2026_06_09t17_33_50_0484_objects" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_index_2026_06_09t17_33_50_0484_json", - "target": "reply_index_2026_06_09t17_33_50_0484_reply" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake", - "target": "reply_index_2026_06_09t17_33_50_0484_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake", - "target": "reply_index_2026_06_09t17_33_50_0484_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake", - "target": "reply_index_2026_06_09t17_33_50_0484_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake_generator", - "target": "reply_index_2026_06_09t17_33_50_0484_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake_generator", - "target": "reply_index_2026_06_09t17_33_50_0484_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake_paths", - "target": "reply_index_2026_06_09t17_33_50_0484_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake_paths", - "target": "reply_index_2026_06_09t17_33_50_0484_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake_paths", - "target": "reply_index_2026_06_09t17_33_50_0484_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_50_0484_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_50_0484_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_50_0484_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake_version", - "target": "reply_index_2026_06_09t17_33_50_0484_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake_version", - "target": "reply_index_2026_06_09t17_33_50_0484_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake_version", - "target": "reply_index_2026_06_09t17_33_50_0484_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake_version", - "target": "reply_index_2026_06_09t17_33_50_0484_version_patch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake_version", - "target": "reply_index_2026_06_09t17_33_50_0484_version_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_cmake_version", - "target": "reply_index_2026_06_09t17_33_50_0484_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_reply", - "target": "reply_index_2026_06_09t17_33_50_0484_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_50_0484_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_50_0484_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_50_0484_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_50_0484_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_50_0484_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_50_0484_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_50_0484_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_50_0484_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T17-33-50-0484.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_50_0484_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_50_0484_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_f812530a1b3e79fa59d4_json", - "target": "reply_cache_v2_f812530a1b3e79fa59d4_entries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", - "source_location": "L1637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_f812530a1b3e79fa59d4_json", - "target": "reply_cache_v2_f812530a1b3e79fa59d4_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", - "source_location": "L1638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cache_v2_f812530a1b3e79fa59d4_json", - "target": "reply_cache_v2_f812530a1b3e79fa59d4_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", - "source_location": "L1640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_f812530a1b3e79fa59d4_version", - "target": "reply_cache_v2_f812530a1b3e79fa59d4_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cache-v2-f812530a1b3e79fa59d4.json", - "source_location": "L1641", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_f812530a1b3e79fa59d4_version", - "target": "reply_cache_v2_f812530a1b3e79fa59d4_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_link_sysroot", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-ffa13dadb04eb843fbd0.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_ffa13dadb04eb843fbd0_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_3da4b9b5e24eda56edf6_json", - "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_inputs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L334", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_3da4b9b5e24eda56edf6_json", - "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L335", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_3da4b9b5e24eda56edf6_json", - "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L340", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_cmakefiles_v1_3da4b9b5e24eda56edf6_json", - "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L337", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths", - "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L338", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths", - "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L342", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version", - "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/cmakeFiles-v1-3da4b9b5e24eda56edf6.json", - "source_location": "L343", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version", - "target": "reply_cmakefiles_v1_3da4b9b5e24eda56edf6_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-3f95b36b4b5d35aee85d.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_3f95b36b4b5d35aee85d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_link_sysroot", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-0104da303d202fcc2123.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_0104da303d202fcc2123_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-RelWithDebInfo-d6affdef9367841e3dd4.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_json_reply_target_react_codegen_rnreanimated_relwithdebinfo_d6affdef9367841e3dd4_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_json", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-RelWithDebInfo-947df43e7a7f8f8b6489.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths", - "target": "reply_target_react_codegen_rnscreens_relwithdebinfo_947df43e7a7f8f8b6489_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_json", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_link_sysroot", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-appmodules-RelWithDebInfo-36fd1c7c3566de281012.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths", - "target": "reply_target_appmodules_relwithdebinfo_36fd1c7c3566de281012_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_136ec41dc33c7a3203da_json", - "target": "reply_cache_v2_136ec41dc33c7a3203da_entries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", - "source_location": "L1637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_136ec41dc33c7a3203da_json", - "target": "reply_cache_v2_136ec41dc33c7a3203da_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", - "source_location": "L1638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cache_v2_136ec41dc33c7a3203da_json", - "target": "reply_cache_v2_136ec41dc33c7a3203da_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", - "source_location": "L1640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_136ec41dc33c7a3203da_version", - "target": "reply_cache_v2_136ec41dc33c7a3203da_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cache-v2-136ec41dc33c7a3203da.json", - "source_location": "L1641", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_136ec41dc33c7a3203da_version", - "target": "reply_cache_v2_136ec41dc33c7a3203da_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-RelWithDebInfo-35735e55a58552e74540.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_json_reply_target_react_codegen_rngesturehandler_codegen_relwithdebinfo_35735e55a58552e74540_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-RelWithDebInfo-3a82b655e8d5b3c1b8d3.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_json_reply_target_react_codegen_rnworklets_relwithdebinfo_3a82b655e8d5b3c1b8d3_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-RelWithDebInfo-b5a7f3ec52e98de02751.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_json_reply_target_react_codegen_rnmenuviewspec_relwithdebinfo_b5a7f3ec52e98de02751_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_json", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_link_sysroot", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-RelWithDebInfo-ef1b0a2289a4d334e654.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths", - "target": "reply_target_react_codegen_rnkc_relwithdebinfo_ef1b0a2289a4d334e654_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_json", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_link_sysroot", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-RelWithDebInfo-90459e824d266082398f.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths", - "target": "reply_target_react_native_mmkv_relwithdebinfo_90459e824d266082398f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_06_09t17_33_54_0070_json", - "target": "reply_index_2026_06_09t17_33_54_0070_cmake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_06_09t17_33_54_0070_json", - "target": "reply_index_2026_06_09t17_33_54_0070_objects" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_index_2026_06_09t17_33_54_0070_json", - "target": "reply_index_2026_06_09t17_33_54_0070_reply" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake", - "target": "reply_index_2026_06_09t17_33_54_0070_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake", - "target": "reply_index_2026_06_09t17_33_54_0070_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake", - "target": "reply_index_2026_06_09t17_33_54_0070_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake_generator", - "target": "reply_index_2026_06_09t17_33_54_0070_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake_generator", - "target": "reply_index_2026_06_09t17_33_54_0070_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake_paths", - "target": "reply_index_2026_06_09t17_33_54_0070_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake_paths", - "target": "reply_index_2026_06_09t17_33_54_0070_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake_paths", - "target": "reply_index_2026_06_09t17_33_54_0070_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_54_0070_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_54_0070_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_54_0070_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake_version", - "target": "reply_index_2026_06_09t17_33_54_0070_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake_version", - "target": "reply_index_2026_06_09t17_33_54_0070_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake_version", - "target": "reply_index_2026_06_09t17_33_54_0070_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake_version", - "target": "reply_index_2026_06_09t17_33_54_0070_version_patch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake_version", - "target": "reply_index_2026_06_09t17_33_54_0070_version_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_cmake_version", - "target": "reply_index_2026_06_09t17_33_54_0070_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_reply", - "target": "reply_index_2026_06_09t17_33_54_0070_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_54_0070_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_54_0070_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_reply_client_agp", - "target": "reply_index_2026_06_09t17_33_54_0070_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_54_0070_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_client_agp_cache_v2", - "target": "reply_index_2026_06_09t17_33_54_0070_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_54_0070_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_54_0070_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t17_33_54_0070_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-09T17-33-54-0070.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t17_33_54_0070_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t17_33_54_0070_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-RelWithDebInfo-624c0f7309976a111d6b.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_json_reply_target_react_codegen_rnmmkvspec_relwithdebinfo_624c0f7309976a111d6b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_db0aa9d3fd185d7a8472_json", - "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_inputs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L334", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_db0aa9d3fd185d7a8472_json", - "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L335", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_db0aa9d3fd185d7a8472_json", - "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L340", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_cmakefiles_v1_db0aa9d3fd185d7a8472_json", - "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L337", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths", - "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L338", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths", - "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L342", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version", - "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-db0aa9d3fd185d7a8472.json", - "source_location": "L343", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version", - "target": "reply_cmakefiles_v1_db0aa9d3fd185d7a8472_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_json", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_link_sysroot", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-RelWithDebInfo-10b2e5ae065f5f2ee5bf.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths", - "target": "reply_target_react_codegen_rncslider_relwithdebinfo_10b2e5ae065f5f2ee5bf_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-RelWithDebInfo-3046d2f30176023af473.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_json_reply_target_react_codegen_rnctabview_relwithdebinfo_3046d2f30176023af473_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L267", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L268", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_json", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-RelWithDebInfo-9e89a5d1817a7db86940.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths", - "target": "reply_target_react_codegen_rnsvg_relwithdebinfo_9e89a5d1817a7db86940_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-RelWithDebInfo-761aa90ee7b8f54ed322.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_json_reply_target_react_codegen_lottiereactnative_relwithdebinfo_761aa90ee7b8f54ed322_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_7e70a705d613236caeec_json", - "target": "reply_codemodel_v2_7e70a705d613236caeec_configurations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_7e70a705d613236caeec_json", - "target": "reply_codemodel_v2_7e70a705d613236caeec_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_7e70a705d613236caeec_json", - "target": "reply_codemodel_v2_7e70a705d613236caeec_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_codemodel_v2_7e70a705d613236caeec_json", - "target": "reply_codemodel_v2_7e70a705d613236caeec_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_7e70a705d613236caeec_paths", - "target": "reply_codemodel_v2_7e70a705d613236caeec_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_7e70a705d613236caeec_paths", - "target": "reply_codemodel_v2_7e70a705d613236caeec_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_7e70a705d613236caeec_version", - "target": "reply_codemodel_v2_7e70a705d613236caeec_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/codemodel-v2-7e70a705d613236caeec.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_7e70a705d613236caeec_version", - "target": "reply_codemodel_v2_7e70a705d613236caeec_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-RelWithDebInfo-6873ea71be6dda08995d.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths", - "target": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_json_reply_target_react_codegen_rnasyncstorage_relwithdebinfo_6873ea71be6dda08995d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_json", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-RelWithDebInfo-9e4eb7f1a03c976f24b0.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths", - "target": "reply_target_react_codegen_safeareacontext_relwithdebinfo_9e4eb7f1a03c976f24b0_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_json", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-RelWithDebInfo-1996a841f833afa9259b.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths", - "target": "reply_target_react_codegen_truesheetspec_relwithdebinfo_1996a841f833afa9259b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_relwithdebinfo_5m151t3n_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_json", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-RelWithDebInfo-aac301ad76305131bd97.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths", - "target": "reply_target_react_codegen_rnpicker_relwithdebinfo_aac301ad76305131bd97_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_json", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-a014b96283b54de98f8f.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_a014b96283b54de98f8f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_json", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-7e8660ff859985ff561f.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths", - "target": "reply_target_react_codegen_rnreanimated_debug_7e8660ff859985ff561f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_appmodules_debug_ac22e26f182615285111_json", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_ac22e26f182615285111_link", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_ac22e26f182615285111_link", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_ac22e26f182615285111_link", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_ac22e26f182615285111_link_sysroot", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_ac22e26f182615285111_paths", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-appmodules-Debug-ac22e26f182615285111.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_ac22e26f182615285111_paths", - "target": "reply_target_appmodules_debug_ac22e26f182615285111_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-2a16a654860f2c4660e9.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths", - "target": "reply_target_react_codegen_rnworklets_debug_2a16a654860f2c4660e9_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_json", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_link_sysroot", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-9d1b45f70c1ef994795c.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths", - "target": "reply_target_react_codegen_rnkc_debug_9d1b45f70c1ef994795c_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_json", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-895dc7d142aed87947f3.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths", - "target": "reply_target_react_codegen_rnasyncstorage_debug_895dc7d142aed87947f3_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_06_09t18_20_42_0245_json", - "target": "reply_index_2026_06_09t18_20_45_0249_cmake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake", - "target": "reply_index_2026_06_09t18_20_45_0249_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake", - "target": "reply_index_2026_06_09t18_20_45_0249_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake", - "target": "reply_index_2026_06_09t18_20_45_0249_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake_generator", - "target": "reply_index_2026_06_09t18_20_45_0249_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake_generator", - "target": "reply_index_2026_06_09t18_20_45_0249_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake_paths", - "target": "reply_index_2026_06_09t18_20_45_0249_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake_paths", - "target": "reply_index_2026_06_09t18_20_45_0249_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake_paths", - "target": "reply_index_2026_06_09t18_20_45_0249_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_45_0249_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_45_0249_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_45_0249_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake_version", - "target": "reply_index_2026_06_09t18_20_45_0249_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake_version", - "target": "reply_index_2026_06_09t18_20_45_0249_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake_version", - "target": "reply_index_2026_06_09t18_20_45_0249_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake_version", - "target": "reply_index_2026_06_09t18_20_45_0249_version_patch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake_version", - "target": "reply_index_2026_06_09t18_20_45_0249_version_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_cmake_version", - "target": "reply_index_2026_06_09t18_20_45_0249_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_06_09t18_20_42_0245_json", - "target": "reply_index_2026_06_09t18_20_45_0249_objects" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_06_09t18_20_42_0245_json", - "target": "reply_index_2026_06_09t18_20_45_0249_reply" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_reply", - "target": "reply_index_2026_06_09t18_20_45_0249_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_45_0249_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_45_0249_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_45_0249_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_45_0249_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_45_0249_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_45_0249_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_45_0249_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_45_0249_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-09T18-20-45-0249.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_45_0249_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_45_0249_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_json", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_link_sysroot", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-c0e5d4a34e94cb657c85.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths", - "target": "reply_target_react_codegen_rncslider_debug_c0e5d4a34e94cb657c85_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_json", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-b76fd80767ed2c49ea98.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths", - "target": "reply_target_react_codegen_rnscreens_debug_b76fd80767ed2c49ea98_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_json", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-978bc2ed187b2749e3cb.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths", - "target": "reply_target_react_codegen_rnctabview_debug_978bc2ed187b2749e3cb_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_json", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-21f507e9ffa9e81130e7.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths", - "target": "reply_target_react_codegen_lottiereactnative_debug_21f507e9ffa9e81130e7_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_78739d8f0218d174c329_json", - "target": "reply_codemodel_v2_78739d8f0218d174c329_configurations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_78739d8f0218d174c329_json", - "target": "reply_codemodel_v2_78739d8f0218d174c329_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_78739d8f0218d174c329_json", - "target": "reply_codemodel_v2_78739d8f0218d174c329_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_codemodel_v2_78739d8f0218d174c329_json", - "target": "reply_codemodel_v2_78739d8f0218d174c329_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_78739d8f0218d174c329_paths", - "target": "reply_codemodel_v2_78739d8f0218d174c329_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_78739d8f0218d174c329_paths", - "target": "reply_codemodel_v2_78739d8f0218d174c329_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_78739d8f0218d174c329_version", - "target": "reply_codemodel_v2_78739d8f0218d174c329_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/codemodel-v2-78739d8f0218d174c329.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_78739d8f0218d174c329_version", - "target": "reply_codemodel_v2_78739d8f0218d174c329_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_json", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-dc037f825c32ff148389.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths", - "target": "reply_target_react_codegen_rngesturehandler_codegen_debug_dc037f825c32ff148389_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a88a8899d3c615ba9bc1.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_a88a8899d3c615ba9bc1_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_json", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-fb5d7e06169843d297ff.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths", - "target": "reply_target_react_codegen_rnmmkvspec_debug_fb5d7e06169843d297ff_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_json", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_link_sysroot", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-f81c8c71554c0da97627.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths", - "target": "reply_target_react_native_mmkv_debug_f81c8c71554c0da97627_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_json", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-a62c41b307e140690515.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths", - "target": "reply_target_react_codegen_rnpicker_debug_a62c41b307e140690515_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_armeabi_v7a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_json", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-5cb825d124bc4ba2b5e7.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths", - "target": "reply_target_react_codegen_rnmenuviewspec_debug_5cb825d124bc4ba2b5e7_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L267", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L268", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/armeabi-v7a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-ee8d8261a73e470b3a32.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_ee8d8261a73e470b3a32_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildfiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_buildtargetscommandcomponents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_cleancommandscomponents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L120", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L151", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L110", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L136", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L171", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L141", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L95", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L105", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L126", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L50", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L55", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L65", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L69", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L71", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L88", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L89", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L97", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L96", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L98", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L99", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L107", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L106", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L111", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L117", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L118", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L122", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L121", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L123", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L152", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L157", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L137", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L142", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L127", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L158", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L143", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L128", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L159", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L174", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L144", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L160", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L169", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L145", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build_mini.json", - "source_location": "L130", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_mini_json_x86_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_enabled" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_packages" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/prefab_config.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_prefab_config_json_x86_prefab_config_prefabpath" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_buildfiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_buildtargetscommandcomponents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cfileextensions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cleancommandscomponents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L198", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_cppfileextensions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L121", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L126", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L89", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L105", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L136", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L147", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L152", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L163", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L174", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L179", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L110", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L78", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L94", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L141", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L157", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L184", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L123", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L128", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L133", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L91", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L102", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L107", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L149", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L165", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L176", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L181", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L134", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L92", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L103", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L155", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L182", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L65", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L93", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L140", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L183", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L114", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L90", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L101", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L106", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L111", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L122", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L127", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L132", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L137", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L148", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L164", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L180", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L192", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L193", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_ccompilerexecutable" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/android_gradle_build.json", - "source_location": "L194", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchains_toolchain", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_android_gradle_build_json_x86_android_gradle_build_toolchain_cppcompilerexecutable" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_foo_cpp", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_foo_cpp_src_foo_foo" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_main_cpp", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_cmakeltotest_cxx_src_main_cpp_src_main_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", - "source_location": "L771", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c_compileridc_cmakeccompilerid_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", - "source_location": "L767", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_index_2026_06_09t18_20_47_0498_json", - "target": "reply_index_2026_06_09t18_20_47_0498_cmake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_index_2026_06_09t18_20_47_0498_json", - "target": "reply_index_2026_06_09t18_20_47_0498_objects" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_index_2026_06_09t18_20_47_0498_json", - "target": "reply_index_2026_06_09t18_20_47_0498_reply" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake", - "target": "reply_index_2026_06_09t18_20_47_0498_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake", - "target": "reply_index_2026_06_09t18_20_47_0498_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake", - "target": "reply_index_2026_06_09t18_20_47_0498_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake_generator", - "target": "reply_index_2026_06_09t18_20_47_0498_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake_generator", - "target": "reply_index_2026_06_09t18_20_47_0498_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake_paths", - "target": "reply_index_2026_06_09t18_20_47_0498_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake_paths", - "target": "reply_index_2026_06_09t18_20_47_0498_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake_paths", - "target": "reply_index_2026_06_09t18_20_47_0498_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_47_0498_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_47_0498_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_47_0498_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake_version", - "target": "reply_index_2026_06_09t18_20_47_0498_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake_version", - "target": "reply_index_2026_06_09t18_20_47_0498_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake_version", - "target": "reply_index_2026_06_09t18_20_47_0498_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake_version", - "target": "reply_index_2026_06_09t18_20_47_0498_version_patch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake_version", - "target": "reply_index_2026_06_09t18_20_47_0498_version_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_cmake_version", - "target": "reply_index_2026_06_09t18_20_47_0498_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_reply", - "target": "reply_index_2026_06_09t18_20_47_0498_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_47_0498_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_47_0498_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_47_0498_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_47_0498_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_47_0498_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_47_0498_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_47_0498_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_47_0498_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/index-2026-06-09T18-20-47-0498.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_47_0498_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_47_0498_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_json", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_link_sysroot", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-62d6096eceabc965868b.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths", - "target": "reply_target_react_codegen_rncslider_debug_62d6096eceabc965868b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-027f2493b14bc6e31dae.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cache_v2_027f2493b14bc6e31dae_json", - "target": "reply_cache_v2_027f2493b14bc6e31dae_entries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-027f2493b14bc6e31dae.json", - "source_location": "L1669", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cache_v2_027f2493b14bc6e31dae_json", - "target": "reply_cache_v2_027f2493b14bc6e31dae_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-027f2493b14bc6e31dae.json", - "source_location": "L1670", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cache_v2_027f2493b14bc6e31dae_json", - "target": "reply_cache_v2_027f2493b14bc6e31dae_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-027f2493b14bc6e31dae.json", - "source_location": "L1672", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_027f2493b14bc6e31dae_version", - "target": "reply_cache_v2_027f2493b14bc6e31dae_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cache-v2-027f2493b14bc6e31dae.json", - "source_location": "L1673", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_027f2493b14bc6e31dae_version", - "target": "reply_cache_v2_027f2493b14bc6e31dae_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_json", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-8c1a47d79fecf1ba4fb6.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths", - "target": "reply_target_react_codegen_rnpicker_debug_8c1a47d79fecf1ba4fb6_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_json", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-a74c90381a3bbea62adf.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_a74c90381a3bbea62adf_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L267", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L268", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_json", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-f277be611a2f8ccc0ce9.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths", - "target": "reply_target_react_codegen_rnsvg_debug_f277be611a2f8ccc0ce9_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cmakefiles_v1_d472f073bd743b519d8b_json", - "target": "reply_cmakefiles_v1_d472f073bd743b519d8b_inputs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L989", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cmakefiles_v1_d472f073bd743b519d8b_json", - "target": "reply_cmakefiles_v1_d472f073bd743b519d8b_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L990", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cmakefiles_v1_d472f073bd743b519d8b_json", - "target": "reply_cmakefiles_v1_d472f073bd743b519d8b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L995", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_cmakefiles_v1_d472f073bd743b519d8b_json", - "target": "reply_cmakefiles_v1_d472f073bd743b519d8b_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L992", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_d472f073bd743b519d8b_paths", - "target": "reply_cmakefiles_v1_d472f073bd743b519d8b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L993", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_d472f073bd743b519d8b_paths", - "target": "reply_cmakefiles_v1_d472f073bd743b519d8b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L997", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_d472f073bd743b519d8b_version", - "target": "reply_cmakefiles_v1_d472f073bd743b519d8b_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/cmakeFiles-v1-d472f073bd743b519d8b.json", - "source_location": "L998", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_d472f073bd743b519d8b_version", - "target": "reply_cmakefiles_v1_d472f073bd743b519d8b_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_codemodel_v2_5d522f9ba5866b363040_json", - "target": "reply_codemodel_v2_5d522f9ba5866b363040_configurations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_codemodel_v2_5d522f9ba5866b363040_json", - "target": "reply_codemodel_v2_5d522f9ba5866b363040_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_codemodel_v2_5d522f9ba5866b363040_json", - "target": "reply_codemodel_v2_5d522f9ba5866b363040_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_codemodel_v2_5d522f9ba5866b363040_json", - "target": "reply_codemodel_v2_5d522f9ba5866b363040_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_5d522f9ba5866b363040_paths", - "target": "reply_codemodel_v2_5d522f9ba5866b363040_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_5d522f9ba5866b363040_paths", - "target": "reply_codemodel_v2_5d522f9ba5866b363040_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_5d522f9ba5866b363040_version", - "target": "reply_codemodel_v2_5d522f9ba5866b363040_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/codemodel-v2-5d522f9ba5866b363040.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_5d522f9ba5866b363040_version", - "target": "reply_codemodel_v2_5d522f9ba5866b363040_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_archive" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L149", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L151", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L152", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L157", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L240", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L588", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_core_debug_0104d26b141981fee9b4_json", - "target": "reply_target_core_debug_0104d26b141981fee9b4_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph", - "target": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph", - "target": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph", - "target": "reply_target_core_debug_0104d26b141981fee9b4_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_core_debug_0104d26b141981fee9b4_paths", - "target": "reply_target_core_debug_0104d26b141981fee9b4_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-core-Debug-0104d26b141981fee9b4.json", - "source_location": "L155", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_core_debug_0104d26b141981fee9b4_paths", - "target": "reply_target_core_debug_0104d26b141981fee9b4_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_json", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_link_sysroot", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react-native-mmkv-Debug-a1dd8906b38c697a0d66.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths", - "target": "reply_target_react_native_mmkv_debug_a1dd8906b38c697a0d66_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_json", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-880d5254bdabac99020f.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths", - "target": "reply_target_react_codegen_rnscreens_debug_880d5254bdabac99020f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_appmodules_debug_5e6fe30af5e7089b253f_json", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_link_sysroot", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-appmodules-Debug-5e6fe30af5e7089b253f.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths", - "target": "reply_target_appmodules_debug_5e6fe30af5e7089b253f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_json", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_link_sysroot", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-53931c6bb745a7a40fde.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths", - "target": "reply_target_react_codegen_rnkc_debug_53931c6bb745a7a40fde_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_json", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-25cf37b3da67fb5d3dbf.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_25cf37b3da67fb5d3dbf_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_bfd56f26dc1a4aadf184_json", - "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_configurations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_bfd56f26dc1a4aadf184_json", - "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_bfd56f26dc1a4aadf184_json", - "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_codemodel_v2_bfd56f26dc1a4aadf184_json", - "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths", - "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths", - "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version", - "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/codemodel-v2-bfd56f26dc1a4aadf184.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version", - "target": "reply_codemodel_v2_bfd56f26dc1a4aadf184_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_06_09t18_20_42_0245_json", - "target": "reply_index_2026_06_09t18_20_42_0245_cmake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_06_09t18_20_42_0245_json", - "target": "reply_index_2026_06_09t18_20_42_0245_objects" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_index_2026_06_09t18_20_42_0245_json", - "target": "reply_index_2026_06_09t18_20_42_0245_reply" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake", - "target": "reply_index_2026_06_09t18_20_42_0245_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake", - "target": "reply_index_2026_06_09t18_20_42_0245_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake", - "target": "reply_index_2026_06_09t18_20_42_0245_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake_generator", - "target": "reply_index_2026_06_09t18_20_42_0245_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake_generator", - "target": "reply_index_2026_06_09t18_20_42_0245_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake_paths", - "target": "reply_index_2026_06_09t18_20_42_0245_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake_paths", - "target": "reply_index_2026_06_09t18_20_42_0245_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake_paths", - "target": "reply_index_2026_06_09t18_20_42_0245_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_42_0245_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_42_0245_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_42_0245_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake_version", - "target": "reply_index_2026_06_09t18_20_42_0245_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake_version", - "target": "reply_index_2026_06_09t18_20_42_0245_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake_version", - "target": "reply_index_2026_06_09t18_20_42_0245_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake_version", - "target": "reply_index_2026_06_09t18_20_42_0245_version_patch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake_version", - "target": "reply_index_2026_06_09t18_20_42_0245_version_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_cmake_version", - "target": "reply_index_2026_06_09t18_20_42_0245_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_reply", - "target": "reply_index_2026_06_09t18_20_42_0245_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_42_0245_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_42_0245_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_42_0245_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_42_0245_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_42_0245_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_42_0245_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_42_0245_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_42_0245_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/index-2026-06-09T18-20-42-0245.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_42_0245_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_42_0245_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_json", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-67c09c1b5a88674c1ba6.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_67c09c1b5a88674c1ba6_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_json", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_link_sysroot", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react-native-mmkv-Debug-45f49675044b4c0c5cb5.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths", - "target": "reply_target_react_native_mmkv_debug_45f49675044b4c0c5cb5_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L267", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L268", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_json", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-8d0eb4f9946e22b8d163.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths", - "target": "reply_target_react_codegen_rnsvg_debug_8d0eb4f9946e22b8d163_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_json", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-2f265ba2d8986921fcff.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths", - "target": "reply_target_react_codegen_rnpicker_debug_2f265ba2d8986921fcff_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_json", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_link_sysroot", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-b50956fa4fc38e55c0d0.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths", - "target": "reply_target_react_codegen_rnkc_debug_b50956fa4fc38e55c0d0_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_json", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-9759123f4b1cfd9ca952.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_9759123f4b1cfd9ca952_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_json", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_link_sysroot", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-3d5eb96e38bd8c0355d9.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths", - "target": "reply_target_react_codegen_rncslider_debug_3d5eb96e38bd8c0355d9_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_appmodules_debug_51ab77d88b2b5a4455c2_json", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_link_sysroot", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-appmodules-Debug-51ab77d88b2b5a4455c2.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths", - "target": "reply_target_appmodules_debug_51ab77d88b2b5a4455c2_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_json", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-1a5652031de03092cd25.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths", - "target": "reply_target_react_codegen_rnscreens_debug_1a5652031de03092cd25_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/arm64-v8a/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_arm64_v8a_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildfiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_buildtargetscommandcomponents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_cleancommandscomponents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L120", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L151", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L110", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L136", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L171", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L141", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L95", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L105", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L126", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L49", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L50", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L53", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L55", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L65", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L69", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L71", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L88", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L89", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L97", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L96", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L98", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L99", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L107", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L106", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L111", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L117", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L118", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L122", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L121", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L123", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L152", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L157", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L137", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L142", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L127", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L158", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L143", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L128", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L159", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L174", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L144", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L160", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L169", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L145", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build_mini.json", - "source_location": "L130", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_mini_json_x86_64_android_gradle_build_mini_core_1b9a7d546b295b7d0867_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_enabled" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_packages" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/prefab_config.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_prefab_config_json_x86_64_prefab_config_prefabpath" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildfiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_buildtargetscommandcomponents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cfileextensions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cleancommandscomponents" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L198", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_cppfileextensions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L121", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L126", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L131", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L89", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L105", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L136", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L147", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L152", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L163", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L174", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L179", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L110", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_appmodules_6890427a1f51a3e7e1df", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L78", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L94", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L141", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L157", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L184", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L67", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_appmodules_6890427a1f51a3e7e1df_runtimefiles" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_core_1b9a7d546b295b7d0867", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L123", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L128", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L133", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L91", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L102", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L107", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L149", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L154", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L165", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L176", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L181", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L112", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_abi" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L134", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L92", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L103", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L155", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L177", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L182", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L65", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_artifactname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L93", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L140", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L183", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L114", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_core_1b9a7d546b295b7d0867_output" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_native_mmkv_4ae6a1e65d3e68ba0197", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rncslider_4898bc4726ecf1751b6a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnctabview_54948b52a0aeebf4e5a8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L90", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnkc_01e3c54a97c6e9d385b6", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L101", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmenuviewspec_8c49e93dd4e1930e04c8", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L106", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnmmkvspec_7541eabbae598da31a69", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L111", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_truesheetspec_a0669760263672514cc3", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L122", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_lottiereactnative_0fa4dc904d7e359a99fb", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L127", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnasyncstorage_1596841e19ec5b9eeffe", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L132", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rngesturehandler_codegen_39f233abcd2c728bc6ec", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L137", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnpicker_e8bb2e9e833f47d0d516", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L148", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnreanimated_8afabad14bfffa3f8b9a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnscreens_25bcbd507e98d3a854ad", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L164", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnsvg_4f40eb209d0c0b4a3b65", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_rnworklets_68f58d84d4754f193387", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L180", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_libraries_react_codegen_safeareacontext_7984cd80db47aa7b952a", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L192", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L193", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_ccompilerexecutable" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/android_gradle_build.json", - "source_location": "L194", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchains_toolchain", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_android_gradle_build_json_x86_64_android_gradle_build_toolchain_cppcompilerexecutable" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_foo_cpp", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_foo_cpp_src_foo_foo" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_main_cpp", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_cmakeltotest_cxx_src_main_cpp_src_main_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdC/CMakeCCompilerId.c", - "source_location": "L771", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridc_cmakeccompilerid_c_compileridc_cmakeccompilerid_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/CMakeFiles/3.22.1-g37088a8/CompilerIdCXX/CMakeCXXCompilerId.cpp", - "source_location": "L767", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmakefiles_3_22_1_g37088a8_compileridcxx_cmakecxxcompilerid_cpp_compileridcxx_cmakecxxcompilerid_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMmkvSpec-Debug-ef9b9bcc9f5e0f77ea1b.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_json_reply_target_react_codegen_rnmmkvspec_debug_ef9b9bcc9f5e0f77ea1b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build-Debug-3c4f354f8e9d2bc9c5a6.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_debug_3c4f354f8e9d2bc9c5a6_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_autolinked_build-Debug-0a577c6ddcdff9b1cd2d.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_json_reply_directory_rnmmkvspec_autolinked_build_debug_0a577c6ddcdff9b1cd2d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnsvg_autolinked_build-Debug-251c63907f461abe26aa.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_json_reply_directory_rnsvg_autolinked_build_debug_251c63907f461abe26aa_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-lottiereactnative_autolinked_build-Debug-b03690d896f7026a177d.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_json_reply_directory_lottiereactnative_autolinked_build_debug_b03690d896f7026a177d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_debug_f5ebdc15457944623624_json_reply_directory_debug_f5ebdc15457944623624_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnpicker_autolinked_build-Debug-aa9f04d4f6540efeba1f.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_json_reply_directory_rnpicker_autolinked_build_debug_aa9f04d4f6540efeba1f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rngesturehandler_codegen_autolinked_build-Debug-c1f265f99af0b94266ef.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_json_reply_directory_rngesturehandler_codegen_autolinked_build_debug_c1f265f99af0b94266ef_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L267", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L268", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L294", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L363", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_json", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L262", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_link_sysroot", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L271", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnsvg-Debug-a4e3e3004693fc5a6053.json", - "source_location": "L272", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths", - "target": "reply_target_react_codegen_rnsvg_debug_a4e3e3004693fc5a6053_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_archive" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L117", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L118", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L119", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L120", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L125", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L200", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L536", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_core_debug_ed16fb7b9025dcb8780b_json", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L122", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-core-Debug-ed16fb7b9025dcb8780b.json", - "source_location": "L123", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths", - "target": "reply_target_core_debug_ed16fb7b9025dcb8780b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L266", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L293", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L404", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_json", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_link_sysroot", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnscreens-Debug-35d9e6b125369291c318.json", - "source_location": "L264", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths", - "target": "reply_target_react_codegen_rnscreens_debug_35d9e6b125369291c318_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L68", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L197", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L231", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L232", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L313", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_json", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L199", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L226", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_link_sysroot", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L235", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCSlider-Debug-ee1e7eafce436af8aa40.json", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths", - "target": "reply_target_react_codegen_rncslider_debug_ee1e7eafce436af8aa40_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L221", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L222", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L257", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L258", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L263", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L287", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L380", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_json", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_link_sysroot", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L260", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNKC-Debug-502a134d7f3ef647df74.json", - "source_location": "L261", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths", - "target": "reply_target_react_codegen_rnkc_debug_502a134d7f3ef647df74_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCSlider_autolinked_build-Debug-9692891af1777e76efd8.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_json_reply_directory_rncslider_autolinked_build_debug_9692891af1777e76efd8_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNCTabView-Debug-06b5fac189d4c1b8bd14.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_json_reply_target_react_codegen_rnctabview_debug_06b5fac189d4c1b8bd14_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnworklets-Debug-aff294105f916fb22711.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_json_reply_target_react_codegen_rnworklets_debug_aff294105f916fb22711_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_RNMenuViewSpec-Debug-b6f81a68b0bec81bef04.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_json_reply_target_react_codegen_rnmenuviewspec_debug_b6f81a68b0bec81bef04_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnworklets_autolinked_build-Debug-c55782449035392fe125.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_json_reply_directory_rnworklets_autolinked_build_debug_c55782449035392fe125_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L156", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L481", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L552", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L553", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L643", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L644", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L645", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L650", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L723", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L1074", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_json", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L555", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L637", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L638", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L640", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_link_sysroot", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L647", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-appmodules-Debug-33f4ed7584fd54e7dbdf.json", - "source_location": "L648", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths", - "target": "reply_target_appmodules_debug_33f4ed7584fd54e7dbdf_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnreanimated_autolinked_build-Debug-f4aeae2d37b82d815393.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_json_reply_directory_rnreanimated_autolinked_build_debug_f4aeae2d37b82d815393_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnscreens_autolinked_build-Debug-762995bc626882b56722.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_json_reply_directory_rnscreens_autolinked_build_debug_762995bc626882b56722_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-TrueSheetSpec_autolinked_build-Debug-6f8e1947845121968926.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_json_reply_directory_truesheetspec_autolinked_build_debug_6f8e1947845121968926_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rngesturehandler_codegen-Debug-9adbf8bf4a7da1436434.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_json_reply_target_react_codegen_rngesturehandler_codegen_debug_9adbf8bf4a7da1436434_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-baccee985ee6b7083cd0.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cache_v2_baccee985ee6b7083cd0_json", - "target": "reply_cache_v2_baccee985ee6b7083cd0_entries" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-baccee985ee6b7083cd0.json", - "source_location": "L1669", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cache_v2_baccee985ee6b7083cd0_json", - "target": "reply_cache_v2_baccee985ee6b7083cd0_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-baccee985ee6b7083cd0.json", - "source_location": "L1670", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cache_v2_baccee985ee6b7083cd0_json", - "target": "reply_cache_v2_baccee985ee6b7083cd0_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-baccee985ee6b7083cd0.json", - "source_location": "L1672", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_baccee985ee6b7083cd0_version", - "target": "reply_cache_v2_baccee985ee6b7083cd0_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cache-v2-baccee985ee6b7083cd0.json", - "source_location": "L1673", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cache_v2_baccee985ee6b7083cd0_version", - "target": "reply_cache_v2_baccee985ee6b7083cd0_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cmakefiles_v1_8913158b4b01aaf1f3bd_json", - "target": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_inputs" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L989", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cmakefiles_v1_8913158b4b01aaf1f3bd_json", - "target": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L990", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cmakefiles_v1_8913158b4b01aaf1f3bd_json", - "target": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L995", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_cmakefiles_v1_8913158b4b01aaf1f3bd_json", - "target": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L992", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_paths", - "target": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L993", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_paths", - "target": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L997", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_version", - "target": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/cmakeFiles-v1-8913158b4b01aaf1f3bd.json", - "source_location": "L998", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_version", - "target": "reply_cmakefiles_v1_8913158b4b01aaf1f3bd_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNCTabView_autolinked_build-Debug-b7a7f29ab6b37dd5df56.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_json_reply_directory_rnctabview_autolinked_build_debug_b7a7f29ab6b37dd5df56_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L172", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L255", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L318", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_json", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_link_sysroot", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react-native-mmkv-Debug-c0a12064afb9acb0270d.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths", - "target": "reply_target_react_native_mmkv_debug_c0a12064afb9acb0270d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_json", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_link_sysroot", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_safeareacontext-Debug-b09125492198fadf2c5a.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths", - "target": "reply_target_react_codegen_safeareacontext_debug_b09125492198fadf2c5a_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L188", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L189", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L223", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L252", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L333", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_json", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L191", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L218", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_link_sysroot", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L227", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnpicker-Debug-7c62286dc23e35402f32.json", - "source_location": "L228", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths", - "target": "reply_target_react_codegen_rnpicker_debug_7c62286dc23e35402f32_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMmkvSpec_cxxmodule_autolinked_build.core-Debug-a9f6f6c634eac5fe0705.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_json_reply_directory_rnmmkvspec_cxxmodule_autolinked_build_core_debug_a9f6f6c634eac5fe0705_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_lottiereactnative-Debug-5cbd8a8add4d52eb7aec.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_json_reply_target_react_codegen_lottiereactnative_debug_5cbd8a8add4d52eb7aec_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-safeareacontext_autolinked_build-Debug-02cc5c5531c5c58ac73d.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_json_reply_directory_safeareacontext_autolinked_build_debug_02cc5c5531c5c58ac73d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-rnasyncstorage_autolinked_build-Debug-ec755c3cd9003338013f.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_json_reply_directory_rnasyncstorage_autolinked_build_debug_ec755c3cd9003338013f_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L214", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L250", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_nameondisk" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L274", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L331", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_json", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L217", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_commandfragments" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L243", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_language" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_sysroot" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L246", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_link_sysroot", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_sysroot_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L253", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_TrueSheetSpec-Debug-502abf1155009eea7b6d.json", - "source_location": "L254", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths", - "target": "reply_target_react_codegen_truesheetspec_debug_502abf1155009eea7b6d_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnasyncstorage-Debug-919046727d8d904e898b.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_json_reply_target_react_codegen_rnasyncstorage_debug_919046727d8d904e898b_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_artifacts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtrace" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_compilegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L201", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L202", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L208", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sourcegroups" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_sources" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L43", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L205", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/target-react_codegen_rnreanimated-Debug-30d00d3524d3c338dd40.json", - "source_location": "L206", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_json_reply_target_react_codegen_rnreanimated_debug_30d00d3524d3c338dd40_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_index_2026_06_09t18_20_49_0620_json", - "target": "reply_index_2026_06_09t18_20_49_0620_cmake" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_index_2026_06_09t18_20_49_0620_json", - "target": "reply_index_2026_06_09t18_20_49_0620_objects" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_index_2026_06_09t18_20_49_0620_json", - "target": "reply_index_2026_06_09t18_20_49_0620_reply" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake", - "target": "reply_index_2026_06_09t18_20_49_0620_cmake_generator" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake", - "target": "reply_index_2026_06_09t18_20_49_0620_cmake_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake", - "target": "reply_index_2026_06_09t18_20_49_0620_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake_generator", - "target": "reply_index_2026_06_09t18_20_49_0620_generator_multiconfig" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake_generator", - "target": "reply_index_2026_06_09t18_20_49_0620_generator_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake_paths", - "target": "reply_index_2026_06_09t18_20_49_0620_paths_cpack" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake_paths", - "target": "reply_index_2026_06_09t18_20_49_0620_paths_ctest" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake_paths", - "target": "reply_index_2026_06_09t18_20_49_0620_paths_root" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_49_0620_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_49_0620_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_49_0620_cmake_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake_version", - "target": "reply_index_2026_06_09t18_20_49_0620_version_isdirty" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L86", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake_version", - "target": "reply_index_2026_06_09t18_20_49_0620_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L87", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake_version", - "target": "reply_index_2026_06_09t18_20_49_0620_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake_version", - "target": "reply_index_2026_06_09t18_20_49_0620_version_patch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake_version", - "target": "reply_index_2026_06_09t18_20_49_0620_version_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_cmake_version", - "target": "reply_index_2026_06_09t18_20_49_0620_version_suffix" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_reply", - "target": "reply_index_2026_06_09t18_20_49_0620_reply_client_agp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_49_0620_client_agp_cache_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_49_0620_client_agp_cmakefiles_v1" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_reply_client_agp", - "target": "reply_index_2026_06_09t18_20_49_0620_client_agp_codemodel_v2" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_49_0620_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L63", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_client_agp_cache_v2", - "target": "reply_index_2026_06_09t18_20_49_0620_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_49_0620_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L82", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_49_0620_cache_v2_jsonfile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_client_agp_cmakefiles_v1", - "target": "reply_index_2026_06_09t18_20_49_0620_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/index-2026-06-09T18-20-49-0620.json", - "source_location": "L83", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_index_2026_06_09t18_20_49_0620_client_agp_codemodel_v2", - "target": "reply_index_2026_06_09t18_20_49_0620_cache_v2_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNMenuViewSpec_autolinked_build-Debug-db93909da8ac45d348e4.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_json_reply_directory_rnmenuviewspec_autolinked_build_debug_db93909da8ac45d348e4_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_codemodel_v2_289f1cdbaf7f8b3a77a1_json", - "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_configurations" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L508", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_codemodel_v2_289f1cdbaf7f8b3a77a1_json", - "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_kind" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L509", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_codemodel_v2_289f1cdbaf7f8b3a77a1_json", - "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L514", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_codemodel_v2_289f1cdbaf7f8b3a77a1_json", - "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L511", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths", - "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L512", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths", - "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L516", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version", - "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version_major" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/codemodel-v2-289f1cdbaf7f8b3a77a1.json", - "source_location": "L517", - "weight": 1.0, - "confidence_score": 1.0, - "source": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version", - "target": "reply_codemodel_v2_289f1cdbaf7f8b3a77a1_version_minor" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_installers" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_commands" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_files" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_backtracegraph_nodes" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/android/app/.cxx/Debug/51sk2e6z/x86_64/.cmake/api/v1/reply/directory-RNKC_autolinked_build-Debug-9b81a6f2831b76917207.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths", - "target": "apps_rebreak_native_android_app_cxx_debug_51sk2e6z_x86_64_cmake_api_v1_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_json_reply_directory_rnkc_autolinked_build_debug_9b81a6f2831b76917207_paths_source" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/ringback.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_ringback_ts", - "target": "lib_ringback_startringback" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/ringback.ts", - "source_location": "L47", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_ringback_ts", - "target": "lib_ringback_stopringback" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L108", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_callkit_ts", - "target": "lib_callkit_callidtouuid" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L126", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_callkit_ts", - "target": "lib_callkit_displayincomingcall" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_callkit_ts", - "target": "lib_callkit_endcall" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_callkit_ts", - "target": "lib_callkit_iscallkeepavailable" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L157", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_callkit_ts", - "target": "lib_callkit_reportconnected" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_callkit_ts", - "target": "lib_callkit_reportended" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_callkit_ts", - "target": "lib_callkit_setupcallkeep" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L141", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_native_lib_callkit_ts", - "target": "lib_callkit_startoutgoingcall" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L128", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_callkit_displayincomingcall", - "target": "lib_callkit_callidtouuid" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L168", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_callkit_endcall", - "target": "lib_callkit_callidtouuid" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L159", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_callkit_reportconnected", - "target": "lib_callkit_callidtouuid" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L178", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_callkit_reportended", - "target": "lib_callkit_callidtouuid" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/lib/callkit.ts", - "source_location": "L150", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_callkit_startoutgoingcall", - "target": "lib_callkit_callidtouuid" - }, - { - "relation": "inherits", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver", - "target": "broadcastreceiver" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver", - "target": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver_onreceive" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", - "source_location": "L16", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver_onreceive", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnbootreceiver_kt_context" - }, - { - "relation": "references", - "context": "parameter_type", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/vpn/RebreakVpnBootReceiver.kt", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "vpn_rebreakvpnbootreceiver_rebreakvpnbootreceiver_onreceive", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_vpn_rebreakvpnbootreceiver_kt_intent" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver", - "target": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_ondisabled" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver", - "target": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_onenabled" - }, - { - "relation": "inherits", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver", - "target": "deviceadminreceiver" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L22", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_onenabled", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L22", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_onenabled", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_intent" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L26", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_ondisabled", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_context" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-native/modules/rebreak-protection/android/src/main/java/expo/modules/rebreakprotection/admin/RebreakDeviceAdminReceiver.kt", - "source_location": "L26", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "admin_rebreakdeviceadminreceiver_rebreakdeviceadminreceiver_ondisabled", - "target": "apps_rebreak_native_modules_rebreak_protection_android_src_main_java_expo_modules_rebreakprotection_admin_rebreakdeviceadminreceiver_kt_intent" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_package_json", - "target": "rebreak_magic_win_package_dependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_package_json", - "target": "rebreak_magic_win_package_devdependencies" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_package_json", - "target": "rebreak_magic_win_package_name" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_package_json", - "target": "rebreak_magic_win_package_private" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_package_json", - "target": "rebreak_magic_win_package_scripts" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_package_json", - "target": "rebreak_magic_win_package_type" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_package_json", - "target": "rebreak_magic_win_package_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_scripts", - "target": "rebreak_magic_win_package_scripts_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_scripts", - "target": "rebreak_magic_win_package_scripts_dev" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_scripts", - "target": "rebreak_magic_win_package_scripts_preview" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_scripts", - "target": "rebreak_magic_win_package_scripts_tauri" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_dependencies", - "target": "rebreak_magic_win_package_dependencies_fontsource_nunito" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_dependencies", - "target": "rebreak_magic_win_package_dependencies_react" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_dependencies", - "target": "rebreak_magic_win_package_dependencies_react_dom" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_dependencies", - "target": "rebreak_magic_win_package_dependencies_tauri_apps_api" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_devdependencies", - "target": "rebreak_magic_win_package_devdependencies_tauri_apps_cli" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_devdependencies", - "target": "rebreak_magic_win_package_devdependencies_types_react" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_devdependencies", - "target": "rebreak_magic_win_package_devdependencies_typescript" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_devdependencies", - "target": "rebreak_magic_win_package_devdependencies_vite" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/package.json", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_package_devdependencies", - "target": "rebreak_magic_win_package_devdependencies_vitejs_plugin_react" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_tsconfig_json", - "target": "rebreak_magic_win_tsconfig_compileroptions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L19", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_tsconfig_json", - "target": "rebreak_magic_win_tsconfig_include" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_allowimportingtsextensions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_isolatedmodules" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_jsx" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_lib" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_module" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_moduleresolution" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_noemit" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_nofallthroughcasesinswitch" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_nounusedlocals" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_nounusedparameters" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_resolvejsonmodule" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_skiplibcheck" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_strict" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_target" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/tsconfig.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_win_tsconfig_compileroptions", - "target": "rebreak_magic_win_tsconfig_compileroptions_usedefineforclassfields" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", - "target": "src_tauri_tauri_conf_app" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", - "target": "src_tauri_tauri_conf_build" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", - "target": "src_tauri_tauri_conf_bundle" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", - "target": "src_tauri_tauri_conf_identifier" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", - "target": "src_tauri_tauri_conf_productname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", - "target": "src_tauri_tauri_conf_schema" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_tauri_conf_json", - "target": "src_tauri_tauri_conf_version" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_build", - "target": "src_tauri_tauri_conf_build_beforebuildcommand" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_build", - "target": "src_tauri_tauri_conf_build_beforedevcommand" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_build", - "target": "src_tauri_tauri_conf_build_devurl" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_build", - "target": "src_tauri_tauri_conf_build_frontenddist" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_app", - "target": "src_tauri_tauri_conf_app_security" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_app", - "target": "src_tauri_tauri_conf_app_windows" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_app_windows", - "target": "src_tauri_tauri_conf_windows_nsis" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_bundle", - "target": "src_tauri_tauri_conf_app_windows" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_app_security", - "target": "src_tauri_tauri_conf_security_csp" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_bundle", - "target": "src_tauri_tauri_conf_bundle_active" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_bundle", - "target": "src_tauri_tauri_conf_bundle_externalbin" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_bundle", - "target": "src_tauri_tauri_conf_bundle_icon" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_bundle", - "target": "src_tauri_tauri_conf_bundle_targets" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/tauri.conf.json", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_tauri_tauri_conf_windows_nsis", - "target": "src_tauri_tauri_conf_nsis_installmode" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/build.rs", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_build_rs", - "target": "src_tauri_build_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", - "target": "capabilities_default_description" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", - "target": "capabilities_default_identifier" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", - "target": "capabilities_default_permissions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", - "target": "capabilities_default_schema" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/capabilities/default.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_capabilities_default_json", - "target": "capabilities_default_windows" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/capabilities.json", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_capabilities_json", - "target": "schemas_capabilities_default" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -327254,56 +425503,6 @@ "source": "schemas_capabilities_default", "target": "schemas_capabilities_default_windows" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", - "target": "schemas_acl_manifests_core" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", - "target": "schemas_acl_manifests_core_app" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", - "target": "schemas_acl_manifests_core_event" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", - "target": "schemas_acl_manifests_core_image" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/acl-manifests.json", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_acl_manifests_json", - "target": "schemas_acl_manifests_core_menu" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -330454,56 +428653,6 @@ "source": "schemas_acl_manifests_permissions_deny_size", "target": "schemas_acl_manifests_deny_new_commands" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", - "target": "schemas_macos_schema_anyof" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", - "target": "schemas_macos_schema_definitions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", - "target": "schemas_macos_schema_description" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", - "target": "schemas_macos_schema_schema" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/macOS-schema.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_macos_schema_json", - "target": "schemas_macos_schema_title" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -331104,56 +429253,6 @@ "source": "schemas_macos_schema_definitions_target", "target": "schemas_macos_schema_target_oneof" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", - "target": "schemas_desktop_schema_anyof" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", - "target": "schemas_desktop_schema_definitions" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", - "target": "schemas_desktop_schema_description" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", - "target": "schemas_desktop_schema_schema" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/gen/schemas/desktop-schema.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_gen_schemas_desktop_schema_json", - "target": "schemas_desktop_schema_title" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -331754,5071 +429853,6 @@ "source": "schemas_desktop_schema_definitions_target", "target": "schemas_desktop_schema_target_oneof" }, - { - "relation": "imports_from", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L18", - "weight": 1.0, - "context": "import", - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", - "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_duration" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L180", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", - "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_src_main_main" - }, - { - "relation": "imports_from", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L125", - "weight": 1.0, - "context": "import", - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", - "target": "osstring" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L24", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", - "target": "src_main_log" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L104", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", - "target": "src_main_monitor_loop" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L40", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", - "target": "src_main_poll_backend" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L139", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", - "target": "src_main_run" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L149", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", - "target": "src_main_run_service" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L143", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", - "target": "src_main_service_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs", - "target": "src_main_tick" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L193", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_src_main_main", - "target": "src_main_log" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L32", - "weight": 1.0, - "source": "src_main_log", - "target": "src_lib_state_dir" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L105", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_main_monitor_loop", - "target": "src_main_log" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L145", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_main_service_main", - "target": "src_main_log" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_main_tick", - "target": "src_main_log" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L40", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_main_poll_backend", - "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_option" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L40", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "src_main_poll_backend", - "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_protectionstate" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_main_tick", - "target": "src_main_poll_backend" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L110", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_main_monitor_loop", - "target": "src_main_tick" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L93", - "weight": 1.0, - "source": "src_main_tick", - "target": "src_lib_apply_doh" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L91", - "weight": 1.0, - "source": "src_main_tick", - "target": "src_lib_doh_is_applied" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L61", - "weight": 1.0, - "source": "src_main_tick", - "target": "src_lib_load_state" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L70", - "weight": 1.0, - "source": "src_main_tick", - "target": "src_lib_teardown_doh" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L183", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_src_main_main", - "target": "src_main_monitor_loop" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L104", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "src_main_monitor_loop", - "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_duration" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L104", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "src_main_monitor_loop", - "target": "fn" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_main_run_service", - "target": "src_main_monitor_loop" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L192", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_src_main_main", - "target": "src_main_run" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L139", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_main_run", - "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_error" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L139", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_main_run", - "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L149", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_main_run_service", - "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L149", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_main_run_service", - "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_error" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L143", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "src_main_service_main", - "target": "apps_rebreak_magic_win_src_tauri_service_src_main_rs_vec" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L143", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_main_service_main", - "target": "osstring" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/service/src/main.rs", - "source_location": "L144", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_main_service_main", - "target": "src_main_run_service" - }, - { - "relation": "imports_from", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L10", - "weight": 1.0, - "context": "import", - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_pathbuf" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L224", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_apply_doh" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_apply_script" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L204", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_check_script" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L219", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_doh_is_applied" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L238", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_doh_template_embeds_token" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_load_state" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_protectionstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_ps_run" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_scripts_contain_ip_and_template" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L48", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_state_dir" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L60", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_state_path" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L256", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_state_roundtrip" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L229", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_teardown_doh" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L171", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs", - "target": "src_lib_teardown_script" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L64", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_lib_load_state", - "target": "src_lib_protectionstate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L38", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "src_lib_protectionstate", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L42", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_protectionstate", - "target": "src_lib_protectionstate_doh_template_for" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L224", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_lib_apply_doh", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L115", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_apply_script", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L204", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_check_script", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L42", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_protectionstate_doh_template_for", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L77", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_lib_ps_run", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L229", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_lib_teardown_doh", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L171", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_teardown_script", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_string" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L239", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_doh_template_embeds_token", - "target": "src_lib_protectionstate_doh_template_for" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L48", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_state_dir", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_pathbuf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L61", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_state_path", - "target": "src_lib_state_dir" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L60", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_state_path", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_pathbuf" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L65", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_load_state", - "target": "src_lib_state_path" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L64", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_load_state", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_option" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L12", - "weight": 1.0, - "source": "src_device_device_id", - "target": "src_lib_ps_run" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L38", - "weight": 1.0, - "source": "src_device_os_version", - "target": "src_lib_ps_run" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_apply_doh", - "target": "src_lib_ps_run" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L77", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_ps_run", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_result" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_teardown_doh", - "target": "src_lib_ps_run" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L103", - "weight": 1.0, - "source": "src_setup_run_elevated", - "target": "src_lib_ps_run" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L224", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_apply_doh", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L229", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_teardown_doh", - "target": "apps_rebreak_magic_win_src_tauri_protection_core_src_lib_rs_result" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L225", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_apply_doh", - "target": "src_lib_apply_script" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L245", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_scripts_contain_ip_and_template", - "target": "src_lib_apply_script" - }, - { - "relation": "calls", - "context": "call", - "confidence": "INFERRED", - "confidence_score": 0.8, - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L38", - "weight": 1.0, - "source": "src_setup_build_setup_script", - "target": "src_lib_apply_script" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L249", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_scripts_contain_ip_and_template", - "target": "src_lib_teardown_script" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_teardown_doh", - "target": "src_lib_teardown_script" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/protection-core/src/lib.rs", - "source_location": "L251", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_scripts_contain_ip_and_template", - "target": "src_lib_check_script" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_device_rs", - "target": "src_device_device_id" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_device_rs", - "target": "src_device_hostname" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_device_rs", - "target": "src_device_os_version" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L9", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_device_device_id", - "target": "apps_rebreak_magic_win_src_tauri_src_device_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L29", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_device_hostname", - "target": "apps_rebreak_magic_win_src_tauri_src_device_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/device.rs", - "source_location": "L35", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_device_os_version", - "target": "apps_rebreak_magic_win_src_tauri_src_device_rs_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L134", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", - "target": "lib_ipc_activateprotection" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L169", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", - "target": "lib_ipc_cancelrelease" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L105", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", - "target": "lib_ipc_pairandregister" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L161", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", - "target": "lib_ipc_requestrelease" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", - "target": "src_lib_backend_url" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L52", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", - "target": "src_lib_build_state" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L99", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", - "target": "src_lib_get_state" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L179", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", - "target": "src_lib_logout" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L185", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", - "target": "src_lib_run" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_lib_rs", - "target": "src_lib_uistate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L134", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "lib_ipc_activateprotection", - "target": "src_lib_uistate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L169", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "lib_ipc_cancelrelease", - "target": "src_lib_uistate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L105", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "lib_ipc_pairandregister", - "target": "src_lib_uistate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L161", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "lib_ipc_requestrelease", - "target": "src_lib_uistate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L52", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_build_state", - "target": "src_lib_uistate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L99", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_lib_get_state", - "target": "src_lib_uistate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L179", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_lib_logout", - "target": "src_lib_uistate" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L33", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "src_lib_uistate", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_option" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L33", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_lib_uistate", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L134", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "lib_ipc_activateprotection", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L169", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "lib_ipc_cancelrelease", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L105", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "lib_ipc_pairandregister", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L161", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "lib_ipc_requestrelease", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L38", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_backend_url", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L99", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_lib_get_state", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L179", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_lib_logout", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_string" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L143", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_ipc_activateprotection", - "target": "src_lib_backend_url" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L171", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_ipc_cancelrelease", - "target": "src_lib_backend_url" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L111", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_ipc_pairandregister", - "target": "src_lib_backend_url" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L163", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_ipc_requestrelease", - "target": "src_lib_backend_url" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L38", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "src_lib_backend_url", - "target": "apphandle" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L54", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_build_state", - "target": "src_lib_backend_url" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L134", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "lib_ipc_activateprotection", - "target": "apphandle" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L169", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "lib_ipc_cancelrelease", - "target": "apphandle" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L105", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "lib_ipc_pairandregister", - "target": "apphandle" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L161", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "lib_ipc_requestrelease", - "target": "apphandle" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L52", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "src_lib_build_state", - "target": "apphandle" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L99", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "src_lib_get_state", - "target": "apphandle" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L179", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "src_lib_logout", - "target": "apphandle" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L151", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_ipc_activateprotection", - "target": "src_lib_build_state" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_ipc_cancelrelease", - "target": "src_lib_build_state" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_ipc_pairandregister", - "target": "src_lib_build_state" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L165", - "weight": 1.0, - "confidence_score": 1.0, - "source": "lib_ipc_requestrelease", - "target": "src_lib_build_state" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_get_state", - "target": "src_lib_build_state" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L181", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_lib_logout", - "target": "src_lib_build_state" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L99", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_get_state", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L134", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "lib_ipc_activateprotection", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L169", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "lib_ipc_cancelrelease", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L105", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "lib_ipc_pairandregister", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L161", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "lib_ipc_requestrelease", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/lib.rs", - "source_location": "L179", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_lib_logout", - "target": "apps_rebreak_magic_win_src_tauri_src_lib_rs_result" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", - "target": "src_auth_clear_all" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", - "target": "src_auth_entry" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", - "target": "src_auth_load_dns_token" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", - "target": "src_auth_load_session_token" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", - "target": "src_auth_save_dns_token" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_auth_rs", - "target": "src_auth_save_session_token" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_auth_clear_all", - "target": "src_auth_entry" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L11", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_auth_entry", - "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L11", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_auth_entry", - "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_auth_load_dns_token", - "target": "src_auth_entry" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_auth_load_session_token", - "target": "src_auth_entry" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_auth_save_dns_token", - "target": "src_auth_entry" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_auth_save_session_token", - "target": "src_auth_entry" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L25", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_auth_save_dns_token", - "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L15", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_auth_save_session_token", - "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L31", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_auth_load_dns_token", - "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L21", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_auth_load_session_token", - "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L25", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_auth_save_dns_token", - "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L15", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_auth_save_session_token", - "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L21", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_auth_load_session_token", - "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_option" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/auth.rs", - "source_location": "L31", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_auth_load_dns_token", - "target": "apps_rebreak_magic_win_src_tauri_src_auth_rs_option" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/main.rs", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_main_rs", - "target": "apps_rebreak_magic_win_src_tauri_src_main_rs_src_main_main" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", - "target": "src_api_api" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", - "target": "src_api_envelope" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", - "target": "src_api_errorbody" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L39", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", - "target": "src_api_magicdevice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L26", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", - "target": "src_api_medata" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", - "target": "src_api_pairdata" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_api_rs", - "target": "src_api_registerdata" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L11", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "src_api_envelope", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_t" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L58", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_parse", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_t" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L16", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "src_api_errorbody", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_option" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L16", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_errorbody", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L42", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "src_api_magicdevice", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_option" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L28", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "src_api_medata", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_option" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L46", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "src_api_api", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L153", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_cancel_release", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L126", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_devices", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L88", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_me", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L58", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_parse", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L76", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_redeem_pair", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L100", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_register", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L138", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_request_release", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L42", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_magicdevice", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L28", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_medata", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L21", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "src_api_pairdata", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L34", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "src_api_registerdata", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L76", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_redeem_pair", - "target": "src_api_pairdata" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L88", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_me", - "target": "src_api_medata" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L100", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_register", - "target": "src_api_registerdata" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L126", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_devices", - "target": "src_api_magicdevice" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L47", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "src_api_api", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_client" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L153", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api", - "target": "src_api_api_cancel_release" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L126", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api", - "target": "src_api_api_devices" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L88", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api", - "target": "src_api_api_me" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L51", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api", - "target": "src_api_api_new" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L58", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api", - "target": "src_api_api_parse" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api", - "target": "src_api_api_redeem_pair" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api", - "target": "src_api_api_register" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api", - "target": "src_api_api_request_release" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L51", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_api_api_new", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_self" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L134", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api_devices", - "target": "src_api_api_parse" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L96", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api_me", - "target": "src_api_api_parse" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L58", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_api_api_parse", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L58", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "src_api_api_parse", - "target": "response" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L84", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api_redeem_pair", - "target": "src_api_api_parse" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L122", - "weight": 1.0, - "confidence_score": 1.0, - "source": "src_api_api_register", - "target": "src_api_api_parse" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L153", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_api_api_cancel_release", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L126", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_api_api_devices", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L88", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_api_api_me", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L76", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_api_api_redeem_pair", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L100", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_api_api_register", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L138", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_api_api_request_release", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/api.rs", - "source_location": "L126", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_api_api_devices", - "target": "apps_rebreak_magic_win_src_tauri_src_api_rs_vec" - }, - { - "relation": "imports_from", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L7", - "weight": 1.0, - "context": "import", - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_setup_rs", - "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_pathbuf" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_setup_rs", - "target": "src_setup_build_setup_script" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_setup_rs", - "target": "src_setup_resolve_doh_ip" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L89", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_setup_rs", - "target": "src_setup_run_elevated" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L25", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_tauri_src_setup_rs", - "target": "src_setup_service_exe_path" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L13", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_setup_resolve_doh_ip", - "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L35", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_setup_build_setup_script", - "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L89", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_setup_run_elevated", - "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L25", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_setup_service_exe_path", - "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L25", - "weight": 1.0, - "context": "generic_arg", - "confidence_score": 1.0, - "source": "src_setup_service_exe_path", - "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_pathbuf" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L25", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_setup_service_exe_path", - "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L89", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "src_setup_run_elevated", - "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_result" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src-tauri/src/setup.rs", - "source_location": "L35", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "src_setup_build_setup_script", - "target": "apps_rebreak_magic_win_src_tauri_src_setup_rs_protectionstate" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/App.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_app_tsx", - "target": "apps_rebreak_magic_win_src_lib_ipc_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/App.tsx", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_app_tsx", - "target": "apps_rebreak_magic_win_src_views_hubview_tsx" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/App.tsx", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_app_tsx", - "target": "apps_rebreak_magic_win_src_views_loginview_tsx" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/App.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_app_tsx", - "target": "lib_ipc_getstate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/App.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_app_tsx", - "target": "lib_ipc_uistate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/App.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_app_tsx", - "target": "src_app_app" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/main.tsx", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_main_tsx", - "target": "apps_rebreak_magic_win_src_app_tsx" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L20", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_lib_ipc_ts", - "target": "lib_ipc_activateprotection" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L22", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_lib_ipc_ts", - "target": "lib_ipc_cancelrelease" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_lib_ipc_ts", - "target": "lib_ipc_getstate" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L23", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_lib_ipc_ts", - "target": "lib_ipc_logout" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L18", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_lib_ipc_ts", - "target": "lib_ipc_pairandregister" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L21", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_lib_ipc_ts", - "target": "lib_ipc_requestrelease" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/lib/ipc.ts", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_lib_ipc_ts", - "target": "lib_ipc_uistate" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_hubview_tsx", - "target": "apps_rebreak_magic_win_src_lib_ipc_ts" - }, - { - "relation": "imports_from", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_loginview_tsx", - "target": "apps_rebreak_magic_win_src_lib_ipc_ts" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_hubview_tsx", - "target": "lib_ipc_uistate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_loginview_tsx", - "target": "lib_ipc_uistate" - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_hubview_props", - "target": "lib_ipc_uistate" - }, - { - "relation": "references", - "context": "field", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_loginview_props", - "target": "lib_ipc_uistate" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_loginview_tsx", - "target": "lib_ipc_pairandregister" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_hubview_tsx", - "target": "lib_ipc_activateprotection" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_hubview_tsx", - "target": "lib_ipc_requestrelease" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_hubview_tsx", - "target": "lib_ipc_cancelrelease" - }, - { - "relation": "imports", - "context": "import", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_hubview_tsx", - "target": "lib_ipc_logout" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_loginview_tsx", - "target": "apps_rebreak_magic_win_src_views_loginview_tsx_views_loginview_loginview" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/LoginView.tsx", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_loginview_tsx", - "target": "views_loginview_props" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L38", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_hubview_tsx", - "target": "views_hubview_hubview" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_hubview_tsx", - "target": "views_hubview_props" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L16", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_win_src_views_hubview_tsx", - "target": "views_hubview_usecountdown" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-win/src/views/HubView.tsx", - "source_location": "L41", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_hubview_hubview", - "target": "views_hubview_usecountdown" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_config_example_json", - "target": "rebreak_magic_mac_config_example_backendbaseurl" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_config_example_json", - "target": "rebreak_magic_mac_config_example_mdmapikey" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_config_example_json", - "target": "rebreak_magic_mac_config_example_mdmserver" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_config_example_json", - "target": "rebreak_magic_mac_config_example_mdmuser" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L3", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_config_example_json", - "target": "rebreak_magic_mac_config_example_supabaseanonkey" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/config.example.json", - "source_location": "L2", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_config_example_json", - "target": "rebreak_magic_mac_config_example_supabaseurl" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L113", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "models_wizardmodel_handlelogin", - "target": "apps_rebreak_magic_mac_sources_models_wizardmodel_swift_authsession" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "models_wizardmodel_handlelogout", - "target": "models_wizardmodel_reset" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Models/WizardModel.swift", - "source_location": "L143", - "weight": 1.0, - "confidence_score": 1.0, - "source": "models_wizardmodel_returntohub", - "target": "models_wizardmodel_reset" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L309", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_devicehubview_swift", - "target": "deviceaction" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L5", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_devicehubview_swift", - "target": "views_devicehubview_devicehubview" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L314", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_devicehubview_swift", - "target": "views_devicehubview_hubdevicerow" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L17", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview", - "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_bool" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L8", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview", - "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_magicdevice" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L11", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview", - "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L9", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview", - "target": "magicuserprofile" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L129", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview", - "target": "views_devicehubview_devicehubview_adddevicebutton" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L288", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview", - "target": "views_devicehubview_devicehubview_handleaction" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L233", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview", - "target": "views_devicehubview_devicehubview_loaddevices" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L244", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview", - "target": "views_devicehubview_devicehubview_loadprofile" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L288", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview_handleaction", - "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_magicdevice" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L315", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_devicehubview_hubdevicerow", - "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_magicdevice" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L129", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview_adddevicebutton", - "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L322", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_devicehubview_hubdevicerow", - "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L129", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview_adddevicebutton", - "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_bool" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L129", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview_adddevicebutton", - "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_void" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L316", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_devicehubview_hubdevicerow", - "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_void" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L300", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview_handleaction", - "target": "views_devicehubview_devicehubview_loaddevices" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L288", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview_handleaction", - "target": "deviceaction" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L298", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview_handleaction", - "target": "views_devicehubview_hubdeviceaction_cancelrelease" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L296", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_devicehubview_devicehubview_handleaction", - "target": "views_devicehubview_hubdeviceaction_requestrelease" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L310", - "weight": 1.0, - "confidence_score": 1.0, - "source": "deviceaction", - "target": "views_devicehubview_hubdeviceaction_requestrelease" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L311", - "weight": 1.0, - "confidence_score": 1.0, - "source": "deviceaction", - "target": "views_devicehubview_hubdeviceaction_cancelrelease" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L319", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_devicehubview_hubdevicerow", - "target": "apps_rebreak_magic_mac_sources_views_devicehubview_swift_timer" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L316", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_devicehubview_hubdevicerow", - "target": "deviceaction" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/DeviceHubView.swift", - "source_location": "L419", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_devicehubview_hubdevicerow", - "target": "views_devicehubview_hubdevicerow_updatetimeremaining" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_loginview_swift", - "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L10", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", - "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_authsession" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L12", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", - "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_bool" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L8", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", - "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L10", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", - "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_void" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L127", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", - "target": "views_loginview_loginview_digitbox" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L155", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", - "target": "views_loginview_loginview_handlecodechange" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L167", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_views_loginview_swift_views_loginview_loginview", - "target": "views_loginview_loginview_handlesubmit" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L155", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_loginview_loginview_handlecodechange", - "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L127", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_loginview_loginview_digitbox", - "target": "apps_rebreak_magic_mac_sources_views_loginview_swift_int" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/LoginView.swift", - "source_location": "L163", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_loginview_loginview_handlecodechange", - "target": "views_loginview_loginview_handlesubmit" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L4", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview", - "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_magicdevice" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L6", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview", - "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L8", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview", - "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_void" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L114", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview", - "target": "deviceaction" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L119", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview", - "target": "views_managebindingsview_devicerow" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L95", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview", - "target": "views_managebindingsview_managebindingsview_handledeviceaction" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L80", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview", - "target": "views_managebindingsview_managebindingsview_loaddevices" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L121", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_managebindingsview_devicerow", - "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_magicdevice" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L95", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview_handledeviceaction", - "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_magicdevice" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L123", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_managebindingsview_devicerow", - "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L212", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "views_managebindingsview_devicerow_formatdate", - "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L121", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_managebindingsview_devicerow", - "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_void" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L95", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview_handledeviceaction", - "target": "deviceaction" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L102", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview_handledeviceaction", - "target": "views_managebindingsview_deviceaction_cancelrelease" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_managebindingsview_managebindingsview_handledeviceaction", - "target": "views_managebindingsview_deviceaction_requestrelease" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "deviceaction", - "target": "views_managebindingsview_deviceaction_cancelrelease" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L115", - "weight": 1.0, - "confidence_score": 1.0, - "source": "deviceaction", - "target": "views_managebindingsview_deviceaction_requestrelease" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L121", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_managebindingsview_devicerow", - "target": "deviceaction" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L124", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "views_managebindingsview_devicerow", - "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_timer" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L212", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_managebindingsview_devicerow", - "target": "views_managebindingsview_devicerow_formatdate" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "views_managebindingsview_devicerow", - "target": "views_managebindingsview_devicerow_updatetimeremaining" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Views/ManageBindingsView.swift", - "source_location": "L212", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "views_managebindingsview_devicerow_formatdate", - "target": "apps_rebreak_magic_mac_sources_views_managebindingsview_swift_date" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L4", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_api_client", - "target": "services_magicapiclient_magicregistration" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L146", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_register", - "target": "services_magicapiclient_magicregistration" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L8", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicregistration", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_bool" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L7", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicregistration", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L114", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_config", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L122", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L290", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_cancelrelease", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L385", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_downloadprofile", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L146", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_register", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L248", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_requestrelease", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L354", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_status", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L27", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicdevice", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "implements", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicdevicesource", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L80", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicerror", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L48", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicreleaseresponse", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L69", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicuserprofile", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L56", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_parseiso", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L354", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_status", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_bool" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L41", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicdevice", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_bool" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L11", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_api_client", - "target": "services_magicapiclient_magicdevicesource" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L30", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicdevice", - "target": "services_magicapiclient_magicdevicesource" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicdevicesource", - "target": "services_magicapiclient_magicdevicesource_locked" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L12", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicdevicesource", - "target": "services_magicapiclient_magicdevicesource_magic" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicdevicesource", - "target": "services_magicapiclient_magicdevicesource_protected" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L17", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_api_client", - "target": "services_magicapiclient_magicdevice" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L209", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_listdevices", - "target": "services_magicapiclient_magicdevice" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L36", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicdevice", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_date" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L248", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_requestrelease", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_date" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L50", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicreleaseresponse", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_date" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L56", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_parseiso", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_date" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_api_client", - "target": "services_magicapiclient_magicreleaseresponse" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_api_client", - "target": "services_magicapiclient_parseiso" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L66", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_api_client", - "target": "services_magicapiclient_magicuserprofile" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L317", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_fetchme", - "target": "services_magicapiclient_magicuserprofile" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_api_client", - "target": "services_magicapiclient_magicerror" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L77", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicerror", - "target": "services_magicapiclient_magicerror_configmissing" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L78", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicerror", - "target": "services_magicapiclient_magicerror_decodingerror" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L76", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicerror", - "target": "services_magicapiclient_magicerror_httperror" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicerror", - "target": "services_magicapiclient_magicerror_limitreached" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicerror", - "target": "services_magicapiclient_magicerror_networkerror" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicerror", - "target": "services_magicapiclient_magicerror_unauthorized" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L184", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_register", - "target": "services_magicapiclient_magicerror_limitreached" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L301", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_cancelrelease", - "target": "services_magicapiclient_magicerror_networkerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L395", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_downloadprofile", - "target": "services_magicapiclient_magicerror_networkerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L328", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_fetchme", - "target": "services_magicapiclient_magicerror_networkerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L220", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_listdevices", - "target": "services_magicapiclient_magicerror_networkerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_register", - "target": "services_magicapiclient_magicerror_networkerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L259", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_requestrelease", - "target": "services_magicapiclient_magicerror_networkerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L364", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_status", - "target": "services_magicapiclient_magicerror_networkerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L311", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_cancelrelease", - "target": "services_magicapiclient_magicerror_httperror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L400", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_downloadprofile", - "target": "services_magicapiclient_magicerror_httperror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L336", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_fetchme", - "target": "services_magicapiclient_magicerror_httperror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L230", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_listdevices", - "target": "services_magicapiclient_magicerror_httperror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L186", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_register", - "target": "services_magicapiclient_magicerror_httperror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L269", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_requestrelease", - "target": "services_magicapiclient_magicerror_httperror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L368", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_status", - "target": "services_magicapiclient_magicerror_httperror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L346", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_fetchme", - "target": "services_magicapiclient_magicerror_decodingerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L242", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_listdevices", - "target": "services_magicapiclient_magicerror_decodingerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L203", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_register", - "target": "services_magicapiclient_magicerror_decodingerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L280", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_requestrelease", - "target": "services_magicapiclient_magicerror_decodingerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L379", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_status", - "target": "services_magicapiclient_magicerror_decodingerror" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L100", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_api_client", - "target": "services_magicapiclient_magicapiclient" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L290", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient", - "target": "services_magicapiclient_magicapiclient_cancelrelease" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L385", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient", - "target": "services_magicapiclient_magicapiclient_downloadprofile" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L317", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient", - "target": "services_magicapiclient_magicapiclient_fetchme" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L109", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient", - "target": "services_magicapiclient_magicapiclient_init" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L209", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient", - "target": "services_magicapiclient_magicapiclient_listdevices" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L146", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient", - "target": "services_magicapiclient_magicapiclient_register" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L248", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient", - "target": "services_magicapiclient_magicapiclient_requestrelease" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L354", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient", - "target": "services_magicapiclient_magicapiclient_status" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L113", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_api_client", - "target": "services_magicapiclient_config" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MagicAPIClient.swift", - "source_location": "L385", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_magicapiclient_magicapiclient_downloadprofile", - "target": "apps_rebreak_magic_mac_sources_services_magicapiclient_swift_url" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L64", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", - "target": "pairredeemresponsedata" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L27", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", - "target": "services_authservice_autherror" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L74", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", - "target": "services_authservice_authservice" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", - "target": "services_authservice_authsession" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L89", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", - "target": "services_authservice_config" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L59", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_rebreak_magic_mac_sources_services_authservice_swift", - "target": "services_authservice_pairredeemresponseenvelope" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L83", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_authservice_authservice", - "target": "services_authservice_authsession" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L180", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_authservice_authservice_currentsession", - "target": "services_authservice_authsession" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L219", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_authservice_authservice_loadfromkeychain", - "target": "services_authservice_authsession" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L195", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_authservice_authservice_refreshsessionifneeded", - "target": "services_authservice_authsession" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L204", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "services_authservice_authservice_savetokeychain", - "target": "services_authservice_authsession" - }, - { - "relation": "references", - "context": "return_type", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice_signinwithpairingcode", - "target": "services_authservice_authsession" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L21", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_authservice_authsession", - "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_bool" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L23", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_authservice_authsession", - "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_date" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L24", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_authservice_authsession", - "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L67", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "pairredeemresponsedata", - "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L37", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_authservice_autherror", - "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L93", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_authservice_authservice", - "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L98", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_authservice_authservice_loadbackendurl", - "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L116", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "services_authservice_authservice_signinwithpairingcode", - "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L90", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_authservice_config", - "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L60", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_authservice_pairredeemresponseenvelope", - "target": "apps_rebreak_magic_mac_sources_services_authservice_swift_bool" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L29", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_autherror", - "target": "services_authservice_autherror_codeexpired" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_autherror", - "target": "services_authservice_autherror_codeused" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L32", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_autherror", - "target": "services_authservice_autherror_configmissing" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L28", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_autherror", - "target": "services_authservice_autherror_invalidcode" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L33", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_autherror", - "target": "services_authservice_autherror_keychainerror" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_autherror", - "target": "services_authservice_autherror_networkerror" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L35", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_autherror", - "target": "services_authservice_autherror_refreshfailed" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L34", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_autherror", - "target": "services_authservice_autherror_tokenexpired" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L138", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice_signinwithpairingcode", - "target": "services_authservice_autherror_networkerror" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L124", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice_signinwithpairingcode", - "target": "services_authservice_autherror_configmissing" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L215", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice_savetokeychain", - "target": "services_authservice_autherror_keychainerror" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L61", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_authservice_pairredeemresponseenvelope", - "target": "pairredeemresponsedata" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L180", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice", - "target": "services_authservice_authservice_currentsession" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L236", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice", - "target": "services_authservice_authservice_deletefromkeychain" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L85", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice", - "target": "services_authservice_authservice_init" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L98", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice", - "target": "services_authservice_authservice_loadbackendurl" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L219", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice", - "target": "services_authservice_authservice_loadfromkeychain" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L195", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice", - "target": "services_authservice_authservice_refreshsessionifneeded" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L204", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice", - "target": "services_authservice_authservice_savetokeychain" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L116", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice", - "target": "services_authservice_authservice_signinwithpairingcode" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L173", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice", - "target": "services_authservice_authservice_signout" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L122", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice_signinwithpairingcode", - "target": "services_authservice_authservice_loadbackendurl" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L166", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice_signinwithpairingcode", - "target": "services_authservice_authservice_savetokeychain" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L175", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice_signout", - "target": "services_authservice_authservice_deletefromkeychain" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L184", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice_currentsession", - "target": "services_authservice_authservice_loadfromkeychain" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/AuthService.swift", - "source_location": "L196", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_authservice_authservice_refreshsessionifneeded", - "target": "services_authservice_authservice_currentsession" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L6", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_device_detector", - "target": "services_macdevicedetector_macdeviceinfo" - }, - { - "relation": "references", - "context": "return_type", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L69", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macdevicedetector_macdevicedetector_detect", - "target": "services_macdevicedetector_macdeviceinfo" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L10", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_macdevicedetector_macdeviceinfo", - "target": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L56", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_macdevicedetector_macdevicedetector_hwmodel", - "target": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L31", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_macdevicedetector_macdevicedetector_platformuuid", - "target": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift_string" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L17", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_macdevicedetector_macdevicedetectorerror", - "target": "apps_rebreak_magic_mac_sources_services_macdevicedetector_swift_string" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L13", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_device_detector", - "target": "services_macdevicedetector_macdevicedetectorerror" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L14", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macdevicedetector_macdevicedetectorerror", - "target": "services_macdevicedetector_macdevicedetector_platformuuid" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L15", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macdevicedetector_macdevicedetectorerror", - "target": "services_macdevicedetector_macdevicedetectorerror_sysctlfailed" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L62", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macdevicedetector_macdevicedetector_hwmodel", - "target": "services_macdevicedetector_macdevicedetectorerror_sysctlfailed" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_device_detector", - "target": "services_macdevicedetector_macdevicedetector_platformuuid" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L70", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macdevicedetector_macdevicedetector_detect", - "target": "services_macdevicedetector_macdevicedetector_platformuuid" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L56", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_device_detector", - "target": "services_macdevicedetector_macdevicedetector_hwmodel" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L72", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macdevicedetector_macdevicedetector_detect", - "target": "services_macdevicedetector_macdevicedetector_hwmodel" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacDeviceDetector.swift", - "source_location": "L69", - "weight": 1.0, - "confidence_score": 1.0, - "source": "rebreak_magic_mac_device_detector", - "target": "services_macdevicedetector_macdevicedetector_detect" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macprofileinstaller_macprofileinstaller", - "target": "services_macprofileinstaller_installererror" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L30", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macprofileinstaller_macprofileinstaller", - "target": "services_macprofileinstaller_macprofileinstaller_downloadandinstall" - }, - { - "relation": "method", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L57", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macprofileinstaller_macprofileinstaller", - "target": "services_macprofileinstaller_macprofileinstaller_isinstalled" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L75", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macprofileinstaller_macprofileinstaller", - "target": "services_macprofileinstaller_remove" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L12", - "weight": 1.0, - "context": "field", - "confidence_score": 1.0, - "source": "services_macprofileinstaller_installererror", - "target": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift_string" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L9", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macprofileinstaller_installererror", - "target": "services_macprofileinstaller_installererror_downloadfailed" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L10", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macprofileinstaller_installererror", - "target": "services_macprofileinstaller_installererror_installfailed" - }, - { - "relation": "case_of", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L8", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macprofileinstaller_installererror", - "target": "services_macprofileinstaller_installererror_noregistration" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L36", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macprofileinstaller_macprofileinstaller_downloadandinstall", - "target": "services_macprofileinstaller_installererror_downloadfailed" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L46", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macprofileinstaller_macprofileinstaller_downloadandinstall", - "target": "services_macprofileinstaller_installererror_installfailed" - }, - { - "relation": "calls", - "context": "call", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L106", - "weight": 1.0, - "confidence_score": 1.0, - "source": "services_macprofileinstaller_remove", - "target": "services_macprofileinstaller_installererror_installfailed" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L30", - "weight": 1.0, - "context": "parameter_type", - "confidence_score": 1.0, - "source": "services_macprofileinstaller_macprofileinstaller_downloadandinstall", - "target": "magicregistration" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "source_file": "apps/rebreak-magic-mac/Sources/Services/MacProfileInstaller.swift", - "source_location": "L57", - "weight": 1.0, - "context": "return_type", - "confidence_score": 1.0, - "source": "services_macprofileinstaller_macprofileinstaller_isinstalled", - "target": "apps_rebreak_magic_mac_sources_services_macprofileinstaller_swift_bool" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/marketing/app/composables/useOS.ts", - "source_location": "L1", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_marketing_app_composables_useos_ts", - "target": "composables_useos_detectedos" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/marketing/app/composables/useOS.ts", - "source_location": "L7", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_marketing_app_composables_useos_ts", - "target": "composables_useos_useos" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/marketing/app/pages/preview.vue", - "source_location": "L37", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_marketing_app_pages_preview_vue", - "target": "pages_preview_mailproviders" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "apps/marketing/app/pages/preview.vue", - "source_location": "L31", - "weight": 1.0, - "confidence_score": 1.0, - "source": "apps_marketing_app_pages_preview_vue", - "target": "pages_preview_steps" - }, { "relation": "implements", "confidence": "EXTRACTED", @@ -336859,26 +429893,6 @@ "source": "workflows_build_magic_win_tamper_service_build", "target": "rebreak_magic_win_tamper_service" }, - { - "relation": "references", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": ".github/workflows/deploy-admin-staging.yml", - "source_location": null, - "weight": 1.0, - "source": "workflows_deploy_admin_staging_deploy_job", - "target": "workflows_deploy_admin_staging_build_job" - }, - { - "relation": "references", - "confidence": "EXTRACTED", - "confidence_score": 1.0, - "source_file": ".github/workflows/deploy-admin-staging.yml", - "source_location": null, - "weight": 1.0, - "source": "workflows_deploy_admin_staging_deploy_job", - "target": "concept_rebreak_admin_staging_service" - }, { "relation": "conceptually_related_to", "confidence": "INFERRED", @@ -338543,5 +431557,5 @@ "source_file": "docs/marketing/funding-partnership-plan.md" } ], - "built_at_commit": "63fae2553128e4ff58897bbbafd1e83bbbf415d4" + "built_at_commit": "0efdf2f8f1d8d1d284f9319280d2bad220b8c80d" } \ No newline at end of file diff --git a/graphify-out/manifest.json b/graphify-out/manifest.json index d73dec4..ec479d0 100644 --- a/graphify-out/manifest.json +++ b/graphify-out/manifest.json @@ -25,8 +25,8 @@ "semantic_hash": "e5f6eb13c875f326cfd5915d3364614f" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/nitro.config.ts": { - "mtime": 1781098496.7526796, - "ast_hash": "00fe0ab55b634aca00786cbfba7697ea", + "mtime": 1781733090.2638938, + "ast_hash": "b8a69475e23d776eaf1aba265c617f2e", "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/prisma.config.ts": { @@ -35,9 +35,9 @@ "semantic_hash": "1c77ea3c977c6b4b7a605af496c9f07d" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/start-staging.sh": { - "mtime": 1780589522.42657, - "ast_hash": "3cc1d3f2c2eab09a7658d9ed51cd3142", - "semantic_hash": "3cc1d3f2c2eab09a7658d9ed51cd3142" + "mtime": 1781733090.2692602, + "ast_hash": "e10e56c6af01ed0e1af3158c5f7ddf87", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/package.json": { "mtime": 1780557842.7162828, @@ -420,7 +420,7 @@ "semantic_hash": "90ee4217ff38cd93747f98e175678702" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/tests/mail/mail-classifier.test.ts": { - "mtime": 1780092187.7159655, + "mtime": 1781709946.1749282, "ast_hash": "b60c81db2790c103bc9cb3d5ad4632f4", "semantic_hash": "b60c81db2790c103bc9cb3d5ad4632f4" }, @@ -505,9 +505,9 @@ "semantic_hash": "3daa22fb46b08906851463df1167f61c" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/tests/eval/lyra-eval.test.ts": { - "mtime": 1780810437.9530654, - "ast_hash": "fde50b131b8545337fe63e0a8247fee4", - "semantic_hash": "fde50b131b8545337fe63e0a8247fee4" + "mtime": 1781126043.538983, + "ast_hash": "d261bbb719e571780db63ae4caf7f484", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/tests/eval/prompts/edge-cases.json": { "mtime": 1780810211.9091184, @@ -615,7 +615,7 @@ "semantic_hash": "3860d5f43c62c152f5a1f2a1fac33706" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/utils/gambling-keywords.mjs": { - "mtime": 1780092142.07871, + "mtime": 1781709946.1739676, "ast_hash": "bb0b47762a65d765cc46273baef7e67e", "semantic_hash": "bb0b47762a65d765cc46273baef7e67e" }, @@ -650,9 +650,9 @@ "semantic_hash": "bd55842a96524629fc7cf00679c67d44" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/utils/plan-features.ts": { - "mtime": 1780878447.1274858, - "ast_hash": "708b08d63eef90b3c5e54117d6fa3dbb", - "semantic_hash": "708b08d63eef90b3c5e54117d6fa3dbb" + "mtime": 1781210414.4270706, + "ast_hash": "5652e51c7a0c8f50ad7b1bb97575bcac", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/utils/strip-markdown.ts": { "mtime": 1778342285.67749, @@ -690,7 +690,7 @@ "semantic_hash": "c8e17d21500aa490957ea9f2cda43dcd" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/utils/mail-classifier.ts": { - "mtime": 1780301811.5066228, + "mtime": 1781709946.1744106, "ast_hash": "8a335417fea49b867ebf7ef22ab062e3", "semantic_hash": "8a335417fea49b867ebf7ef22ab062e3" }, @@ -760,9 +760,9 @@ "semantic_hash": "af157a2a44a75e6d5518b199bb35f0a8" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/db/devices.ts": { - "mtime": 1780863429.1812634, - "ast_hash": "60286b0841f5c916a76586ae684e867e", - "semantic_hash": "60286b0841f5c916a76586ae684e867e" + "mtime": 1781733708.8778763, + "ast_hash": "dc1e70cb1b0e715f32c852e7f5e7b58f", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/db/device-approvals.ts": { "mtime": 1780273739.4215977, @@ -1010,14 +1010,14 @@ "semantic_hash": "33bebc822b8dc3d78a71a59d40ff5115" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/magic/register.post.ts": { - "mtime": 1780867811.1750164, - "ast_hash": "c9ce50e429db3edf2d0627881d1cbc59", - "semantic_hash": "c9ce50e429db3edf2d0627881d1cbc59" + "mtime": 1781733742.124102, + "ast_hash": "00a1591cca838c0bba00397ed9cbb4c0", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/magic/status.get.ts": { - "mtime": 1780867825.9341865, - "ast_hash": "68326b225d7ebce029347046af463b7e", - "semantic_hash": "68326b225d7ebce029347046af463b7e" + "mtime": 1781634449.4527874, + "ast_hash": "b5482a5c10ef095cb1b9e82a15b3d1f3", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/magic/profile.mobileconfig.get.ts": { "mtime": 1780862192.949264, @@ -1030,9 +1030,9 @@ "semantic_hash": "e2c4da94ab3f7177fc2c07fd8f28e9d6" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/magic/devices.get.ts": { - "mtime": 1780508521.047073, - "ast_hash": "97251c4075bebf531c82831e6782b4c3", - "semantic_hash": "97251c4075bebf531c82831e6782b4c3" + "mtime": 1781733673.5761383, + "ast_hash": "2f39db549b305a0a7938f55a2924dc48", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/magic/info.get.ts": { "mtime": 1780816033.4093983, @@ -1055,9 +1055,9 @@ "semantic_hash": "8a67af35afb53504e5b97ca92191f47c" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/magic/pair/redeem.post.ts": { - "mtime": 1780974246.1947186, - "ast_hash": "396c2d7ffffcbc6b478a11367ae834ff", - "semantic_hash": "396c2d7ffffcbc6b478a11367ae834ff" + "mtime": 1781658789.8806202, + "ast_hash": "8ddb19c89a15508eb8ba0918a3e827a0", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/auth/login.post.ts": { "mtime": 1778884038.0019958, @@ -1360,9 +1360,9 @@ "semantic_hash": "00b89c5a4d7b94aa7444a43beb952792" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/coach/message.post.ts": { - "mtime": 1780813807.162695, - "ast_hash": "4ef9bc6d75faa448b7db8dfa37f0f2f3", - "semantic_hash": "4ef9bc6d75faa448b7db8dfa37f0f2f3" + "mtime": 1781209636.9296153, + "ast_hash": "c5c0574d28fc8ec1c596f4583640e633", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/coach/speak.post.ts": { "mtime": 1780179017.7818274, @@ -1405,9 +1405,9 @@ "semantic_hash": "c3048c46fe598d51e7232d506b4f3349" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/coach/sos-stream.get.ts": { - "mtime": 1780810941.7250257, - "ast_hash": "fe94a7d89b25321280873dc8d58b6447", - "semantic_hash": "fe94a7d89b25321280873dc8d58b6447" + "mtime": 1781209738.453512, + "ast_hash": "36b04f0ff1775afb72301d2041566d14", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/coach/speak-openai.post.ts": { "mtime": 1778032995.1169195, @@ -1435,9 +1435,9 @@ "semantic_hash": "2b6354bcac846cda70eeb2c6371e2aa3" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/social/profile/[userId].get.ts": { - "mtime": 1779067259.46288, - "ast_hash": "a12c3ca80efa059458dc1db30d121edb", - "semantic_hash": "a12c3ca80efa059458dc1db30d121edb" + "mtime": 1781126483.5190878, + "ast_hash": "35d7285672e5b980b6403e25fe9bdb17", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/presence/last-seen.get.ts": { "mtime": 1779081349.6968238, @@ -1630,9 +1630,9 @@ "semantic_hash": "78868a1ac460e888e31916b2156df250" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/community/posts.get.ts": { - "mtime": 1779069700.712269, - "ast_hash": "c9a2001d368d6673f618bf798ec8227d", - "semantic_hash": "c9a2001d368d6673f618bf798ec8227d" + "mtime": 1781126482.8012557, + "ast_hash": "eb81014d4ca2a915e1b5fa56ce4fa028", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/community/repost.post.ts": { "mtime": 1778032995.1253197, @@ -1990,7 +1990,7 @@ "semantic_hash": "ce4b981e671103ccc722e236d656825f" }, "/Users/chahinebrini/mono/rebreak-monorepo/scripts/deploy-marketing.sh": { - "mtime": 1780864656.0538602, + "mtime": 1781709946.2166383, "ast_hash": "1bccc986bb8accb0deb89ff74263fc63", "semantic_hash": "1bccc986bb8accb0deb89ff74263fc63" }, @@ -2170,12 +2170,12 @@ "semantic_hash": "76d0e00f0433e2828804779fee37c63e" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/expo-env.d.ts": { - "mtime": 1781032201.2191668, + "mtime": 1781624795.7801373, "ast_hash": "0dd9dccdb4b08595bc83df70d6a154d3", "semantic_hash": "0dd9dccdb4b08595bc83df70d6a154d3" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/dev.sh": { - "mtime": 1781031635.496911, + "mtime": 1781709946.1660879, "ast_hash": "3fef613d20eb1d5c8368910dd157f59b", "semantic_hash": "3fef613d20eb1d5c8368910dd157f59b" }, @@ -2195,7 +2195,7 @@ "semantic_hash": "da631aa4384ac11d6511e73f1ff0c5bf" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/app.config.ts": { - "mtime": 1781122845.3653848, + "mtime": 1781709946.1594183, "ast_hash": "2d00b1505b1c400d0fb6c5f06e57c783", "semantic_hash": "" }, @@ -2205,7 +2205,7 @@ "semantic_hash": "754dc6a047f1004deb396cadb03c5d7c" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/package.json": { - "mtime": 1781122845.3679974, + "mtime": 1781709946.1708913, "ast_hash": "029f8ccaa16845c07719139f81065897", "semantic_hash": "" }, @@ -2220,7 +2220,7 @@ "semantic_hash": "581a13d4da3ed569d91d7a36afc71d3c" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/deploy.sh": { - "mtime": 1781031648.5940566, + "mtime": 1781709946.1656392, "ast_hash": "ededa8a7d0402e7289a67feebdcc455b", "semantic_hash": "ededa8a7d0402e7289a67feebdcc455b" }, @@ -2245,27 +2245,27 @@ "semantic_hash": "d084de2b8fbbec2c6fe84e5d29985fc8" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/locales/de.json": { - "mtime": 1781071474.9985847, + "mtime": 1781709946.1685305, "ast_hash": "8a4c913bec15d86f36331c45a1f26af7", "semantic_hash": "8a4c913bec15d86f36331c45a1f26af7" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/locales/en.json": { - "mtime": 1781071482.1748748, + "mtime": 1781709946.1691582, "ast_hash": "6ec7b4445cf2fbff16573450ae64e6ef", "semantic_hash": "6ec7b4445cf2fbff16573450ae64e6ef" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/locales/fr.json": { - "mtime": 1781045584.8904002, + "mtime": 1781709946.1695104, "ast_hash": "fbce5361c986c68f1dc162812095617f", "semantic_hash": "fbce5361c986c68f1dc162812095617f" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/locales/ar.json": { - "mtime": 1781045594.881812, + "mtime": 1781709946.1677754, "ast_hash": "a8a0c2e361ed25a81bb3ca3cbe43a2d0", "semantic_hash": "a8a0c2e361ed25a81bb3ca3cbe43a2d0" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/app/settings.tsx": { - "mtime": 1780596448.951797, + "mtime": 1781709946.1621501, "ast_hash": "0118b4fa7ad37195ddd0b83fbdcb1735", "semantic_hash": "0118b4fa7ad37195ddd0b83fbdcb1735" }, @@ -2280,7 +2280,7 @@ "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/app/debug.tsx": { - "mtime": 1781011630.6297894, + "mtime": 1781709946.160881, "ast_hash": "0bbae978c1a8caebe2039cee59df771d", "semantic_hash": "0bbae978c1a8caebe2039cee59df771d" }, @@ -2305,17 +2305,17 @@ "semantic_hash": "fd0d10afa694411a58dbd0f12b6592ea" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/app/_layout.tsx": { - "mtime": 1780861127.1940124, + "mtime": 1781709946.1600466, "ast_hash": "441f533e7e83801490096b0574021133", "semantic_hash": "441f533e7e83801490096b0574021133" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/app/urge.tsx": { - "mtime": 1781008374.385753, + "mtime": 1781709946.162649, "ast_hash": "5852732c4fc59b40976c2e9068072432", "semantic_hash": "5852732c4fc59b40976c2e9068072432" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/app/lyra.tsx": { - "mtime": 1781008362.238467, + "mtime": 1781709946.1615052, "ast_hash": "406bb6a2bf408a5a97636e426f4a89e8", "semantic_hash": "406bb6a2bf408a5a97636e426f4a89e8" }, @@ -2530,9 +2530,9 @@ "semantic_hash": "e29a8583101c89ef0d42faab7ee0d57d" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/stores/community.ts": { - "mtime": 1779969208.752669, - "ast_hash": "f0c0f30c945229f1070abb42d6a8390b", - "semantic_hash": "f0c0f30c945229f1070abb42d6a8390b" + "mtime": 1781126498.9284701, + "ast_hash": "de456f86c96b308b4317c1c08d218ea5", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/stores/blockerStats.ts": { "mtime": 1780464550.3455994, @@ -2545,7 +2545,7 @@ "semantic_hash": "fc5529cc002ce8a61ade1fb59a106c28" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/stores/appLock.ts": { - "mtime": 1781090099.3872397, + "mtime": 1781709946.1712022, "ast_hash": "c080141d4efd0dc7cac170b4070e3118", "semantic_hash": "" }, @@ -2575,7 +2575,7 @@ "semantic_hash": "268aac04e8f6ec3cdb501a27d8df42f1" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/stores/auth.ts": { - "mtime": 1779220911.5546317, + "mtime": 1781709946.1713898, "ast_hash": "66d92d1fdb86cae2be2a0e1b63e5c83d", "semantic_hash": "66d92d1fdb86cae2be2a0e1b63e5c83d" }, @@ -2590,62 +2590,62 @@ "semantic_hash": "79892b512c5b108eecf7ce2573a819a5" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/Podfile.properties.json": { - "mtime": 1781122852.4145124, + "mtime": 1781522365.4169664, "ast_hash": "0847919237e15fbd3abf30da0e4cb8c4", "semantic_hash": "0847919237e15fbd3abf30da0e4cb8c4" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/RebreakPacketTunnelExtension/HashList.swift": { - "mtime": 1781122852.3492334, + "mtime": 1781522365.3469787, "ast_hash": "a8d42be577e98ea2bde0eb3beb5bbfe6", "semantic_hash": "a8d42be577e98ea2bde0eb3beb5bbfe6" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/RebreakPacketTunnelExtension/DomainHasher.swift": { - "mtime": 1781122852.3489943, + "mtime": 1781522365.3466537, "ast_hash": "093b1e647a0d3803c75060c0355c095e", "semantic_hash": "093b1e647a0d3803c75060c0355c095e" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/RebreakPacketTunnelExtension/PacketTunnelProvider.swift": { - "mtime": 1781122852.349932, + "mtime": 1781522365.3484466, "ast_hash": "b8c819e0f611ec3c6b685429a34bb1c8", "semantic_hash": "b8c819e0f611ec3c6b685429a34bb1c8" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/RebreakPacketTunnelExtension/DnsFilter.swift": { - "mtime": 1781122852.3486989, + "mtime": 1781522365.3459897, "ast_hash": "be7ad5d15bf0edf4a90dc6ef8ac88ce9", "semantic_hash": "be7ad5d15bf0edf4a90dc6ef8ac88ce9" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/ReBreak/ReBreak-Bridging-Header.h": { - "mtime": 1781122852.351998, + "mtime": 1781522365.3512783, "ast_hash": "7bda22d76cc88bc22215241b452bd3d3", "semantic_hash": "7bda22d76cc88bc22215241b452bd3d3" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/ReBreak/AppDelegate.swift": { - "mtime": 1781122852.4289973, + "mtime": 1781522365.4331152, "ast_hash": "00cf50df46613f328fe200ab677f3b1a", "semantic_hash": "00cf50df46613f328fe200ab677f3b1a" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/ReBreak/Images.xcassets/Contents.json": { - "mtime": 1781122852.049455, + "mtime": 1781522364.9821208, "ast_hash": "96cbaeb138eab0aceebfdf0022c7d835", "semantic_hash": "96cbaeb138eab0aceebfdf0022c7d835" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/ReBreak/Images.xcassets/AppIcon.appiconset/Contents.json": { - "mtime": 1781122852.341138, + "mtime": 1781522365.340632, "ast_hash": "e753dae9a3ae1e8aeb8f44742ea0614b", "semantic_hash": "e753dae9a3ae1e8aeb8f44742ea0614b" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/ReBreak/Images.xcassets/SplashScreenBackground.colorset/Contents.json": { - "mtime": 1781122852.3423555, + "mtime": 1781522365.3419302, "ast_hash": "7a1fd2646e70f93ae4034dadbe219b43", "semantic_hash": "7a1fd2646e70f93ae4034dadbe219b43" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/ReBreak/Images.xcassets/SplashScreenLegacy.imageset/Contents.json": { - "mtime": 1781122852.343344, + "mtime": 1781522365.3429375, "ast_hash": "a84d44e2229df0082c16210906e94575", "semantic_hash": "a84d44e2229df0082c16210906e94575" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/RebreakContentFilter/FilterDataProvider.swift": { - "mtime": 1781122852.350485, + "mtime": 1781522365.3490849, "ast_hash": "75d30ad1138439cb747519fe75dd5462", "semantic_hash": "75d30ad1138439cb747519fe75dd5462" }, @@ -2735,7 +2735,7 @@ "semantic_hash": "4f6bfc696fd16baa41bca90058cd6641" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/components/RiveAvatar.tsx": { - "mtime": 1781012027.4168122, + "mtime": 1781709946.1643853, "ast_hash": "bc29e6ec21f2421245e94d85ca8821ff", "semantic_hash": "bc29e6ec21f2421245e94d85ca8821ff" }, @@ -2925,7 +2925,7 @@ "semantic_hash": "4e1e98c5a467262ff1a5abd2f5a7cf47" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/components/mail/ConnectMailSheet.tsx": { - "mtime": 1779975252.3419645, + "mtime": 1781709946.164899, "ast_hash": "6df94aaf7e9c4aea2d0bbe30c5cdf9bf", "semantic_hash": "6df94aaf7e9c4aea2d0bbe30c5cdf9bf" }, @@ -3235,7 +3235,7 @@ "semantic_hash": "38b1e7ef1a80abe5287da68077f00f47" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/components/devices/MagicSheet.tsx": { - "mtime": 1780864356.3756354, + "mtime": 1781709946.1645732, "ast_hash": "2c3163aac6dd76e701f0bf15bffd1d6a", "semantic_hash": "2c3163aac6dd76e701f0bf15bffd1d6a" }, @@ -3440,8 +3440,8 @@ "semantic_hash": "d46991903a163c0331feb7c15e8211f4" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/build.gradle": { - "mtime": 1781122845.362546, - "ast_hash": "2444a43fba573b01ab4d3e5ab7c79fdd", + "mtime": 1781520807.620918, + "ast_hash": "b8e292c1d23648b5aeff0faef28664f7", "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/google-services.json": { @@ -3490,12 +3490,12 @@ "semantic_hash": "53876b03fe0a931f3accc4e6ef99503b" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/compile_commands.json": { - "mtime": 1781100084.6737607, + "mtime": 1781521469.196936, "ast_hash": "a47cc6a699bb29c35b353e290d0e9d3b", "semantic_hash": "a47cc6a699bb29c35b353e290d0e9d3b" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build_mini.json": { - "mtime": 1781100084.766397, + "mtime": 1781521469.2877343, "ast_hash": "9301f24629f8d09ea1e6ec9ac1861fd9", "semantic_hash": "9301f24629f8d09ea1e6ec9ac1861fd9" }, @@ -3505,17 +3505,17 @@ "semantic_hash": "d314c30797af8190a9eeaecda8c0ee99" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/android_gradle_build.json": { - "mtime": 1781100084.7344887, + "mtime": 1781521469.2443697, "ast_hash": "3e5d069e204dc4f0515b59f44287f1a3", "semantic_hash": "3e5d069e204dc4f0515b59f44287f1a3" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp": { - "mtime": 1781100084.267121, + "mtime": 1781521468.904445, "ast_hash": "bbf8a05ecab16853fd9ad99b367175f8", "semantic_hash": "bbf8a05ecab16853fd9ad99b367175f8" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp": { - "mtime": 1781100084.267873, + "mtime": 1781521468.9047134, "ast_hash": "6155bf9e179fd0f9c2529e16119d24d8", "semantic_hash": "6155bf9e179fd0f9c2529e16119d24d8" }, @@ -3725,12 +3725,12 @@ "semantic_hash": "bc5564cd1a233b5995493d0a94bbdd76" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/compile_commands.json": { - "mtime": 1781100117.9617994, + "mtime": 1781521507.2831454, "ast_hash": "66984f9a8a2ef85bf6765e0fa4fe4b83", "semantic_hash": "66984f9a8a2ef85bf6765e0fa4fe4b83" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build_mini.json": { - "mtime": 1781100118.0257287, + "mtime": 1781521507.378783, "ast_hash": "30d567c74332cde560affcd138d9604d", "semantic_hash": "30d567c74332cde560affcd138d9604d" }, @@ -3740,17 +3740,17 @@ "semantic_hash": "d314c30797af8190a9eeaecda8c0ee99" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/android_gradle_build.json": { - "mtime": 1781100118.0082788, + "mtime": 1781521507.3539567, "ast_hash": "5fc1b715aeadb95d76c0ea04ef900cce", "semantic_hash": "5fc1b715aeadb95d76c0ea04ef900cce" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp": { - "mtime": 1781100117.6987588, + "mtime": 1781521507.0018213, "ast_hash": "bbf8a05ecab16853fd9ad99b367175f8", "semantic_hash": "bbf8a05ecab16853fd9ad99b367175f8" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp": { - "mtime": 1781100117.699018, + "mtime": 1781521507.0020976, "ast_hash": "6155bf9e179fd0f9c2529e16119d24d8", "semantic_hash": "6155bf9e179fd0f9c2529e16119d24d8" }, @@ -3960,12 +3960,12 @@ "semantic_hash": "78a35038e0622e60963edc9e2bb98350" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/compile_commands.json": { - "mtime": 1781100051.5533953, + "mtime": 1781521431.1219258, "ast_hash": "0f33a6cf3d9c81a85595d18f755caaa6", "semantic_hash": "0f33a6cf3d9c81a85595d18f755caaa6" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build_mini.json": { - "mtime": 1781100051.7113771, + "mtime": 1781521431.3551972, "ast_hash": "c5285287748988fb63ef367ac81c7048", "semantic_hash": "c5285287748988fb63ef367ac81c7048" }, @@ -3975,17 +3975,17 @@ "semantic_hash": "d314c30797af8190a9eeaecda8c0ee99" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/android_gradle_build.json": { - "mtime": 1781100051.6193027, + "mtime": 1781521431.23256, "ast_hash": "9450cfc36a13b7f24fa57dcd84d6965b", "semantic_hash": "9450cfc36a13b7f24fa57dcd84d6965b" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp": { - "mtime": 1781100050.7198606, + "mtime": 1781521430.2741907, "ast_hash": "bbf8a05ecab16853fd9ad99b367175f8", "semantic_hash": "bbf8a05ecab16853fd9ad99b367175f8" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp": { - "mtime": 1781100050.7201498, + "mtime": 1781521430.2748952, "ast_hash": "6155bf9e179fd0f9c2529e16119d24d8", "semantic_hash": "6155bf9e179fd0f9c2529e16119d24d8" }, @@ -4195,12 +4195,12 @@ "semantic_hash": "76d80416ea4b83e2170137be0f6c62d7" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/compile_commands.json": { - "mtime": 1781100148.1231582, + "mtime": 1781521543.4322922, "ast_hash": "cce4bf831bc4b7f5a9b284f56696cb22", "semantic_hash": "cce4bf831bc4b7f5a9b284f56696cb22" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build_mini.json": { - "mtime": 1781100148.1796436, + "mtime": 1781521543.574124, "ast_hash": "09a097b4d4dade95e0cf0055c5c76c71", "semantic_hash": "09a097b4d4dade95e0cf0055c5c76c71" }, @@ -4210,17 +4210,17 @@ "semantic_hash": "d314c30797af8190a9eeaecda8c0ee99" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/android_gradle_build.json": { - "mtime": 1781100148.1618986, + "mtime": 1781521543.4707909, "ast_hash": "d34917cd0acf613830fa24ce4d823dc5", "semantic_hash": "d34917cd0acf613830fa24ce4d823dc5" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/foo.cpp": { - "mtime": 1781100147.8950455, + "mtime": 1781521543.1708815, "ast_hash": "bbf8a05ecab16853fd9ad99b367175f8", "semantic_hash": "bbf8a05ecab16853fd9ad99b367175f8" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/main.cpp": { - "mtime": 1781100147.895296, + "mtime": 1781521543.17114, "ast_hash": "6155bf9e179fd0f9c2529e16119d24d8", "semantic_hash": "6155bf9e179fd0f9c2529e16119d24d8" }, @@ -5425,7 +5425,7 @@ "semantic_hash": "f45e5f170f8d316d2689c3774adf7a87" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/lib/lyraResponse.ts": { - "mtime": 1781008337.9185853, + "mtime": 1781709946.166755, "ast_hash": "ddcf1df131e1fe5263eb47695760ebd3", "semantic_hash": "ddcf1df131e1fe5263eb47695760ebd3" }, @@ -5445,7 +5445,7 @@ "semantic_hash": "cd40df2025e90b252de3a66b07b7964b" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/lib/sosConstants.ts": { - "mtime": 1781008317.5652368, + "mtime": 1781709946.167079, "ast_hash": "5cbbc51561b380d62200b993e57dea77", "semantic_hash": "5cbbc51561b380d62200b993e57dea77" }, @@ -6210,7 +6210,7 @@ "semantic_hash": "eace93b8fda967bfaaaa598c18d69675" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/nuxt.config.ts": { - "mtime": 1778458808.6785522, + "mtime": 1781709946.1551106, "ast_hash": "72f020c597024178becf13062d326b9b", "semantic_hash": "72f020c597024178becf13062d326b9b" }, @@ -6220,17 +6220,17 @@ "semantic_hash": "b138b4b3e1f06c48bfe1a66d3b8dd525" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/composables/useViewportHeight.ts": { - "mtime": 1778458808.6756105, + "mtime": 1781709946.1487591, "ast_hash": "3fae1998ecf39653ea580ae916ef6de3", "semantic_hash": "3fae1998ecf39653ea580ae916ef6de3" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/locales/de.json": { - "mtime": 1780929619.8038623, + "mtime": 1781709946.1500118, "ast_hash": "598eba7897aaa80109eddeeabac6f143", "semantic_hash": "598eba7897aaa80109eddeeabac6f143" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/locales/en.json": { - "mtime": 1780929619.8086624, + "mtime": 1781709946.1503558, "ast_hash": "a15b19cf7a2b61cf0388efd8f9ae2f9a", "semantic_hash": "a15b19cf7a2b61cf0388efd8f9ae2f9a" }, @@ -6240,7 +6240,7 @@ "semantic_hash": "e7b0fc1560b43833378a0127eec1da03" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/components/AnimatedCounter.vue": { - "mtime": 1778458808.6749048, + "mtime": 1781709946.1486573, "ast_hash": "77714757306a34d0496b759be102bff2", "semantic_hash": "77714757306a34d0496b759be102bff2" }, @@ -6260,12 +6260,12 @@ "semantic_hash": "19af7f31cdd09712eaae0e8163ef5352" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/layouts/default.vue": { - "mtime": 1780834743.5357745, + "mtime": 1781709946.1493232, "ast_hash": "6de37d2afef3acd25d32f03279d63e76", "semantic_hash": "6de37d2afef3acd25d32f03279d63e76" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/pages/index.vue": { - "mtime": 1780866137.1675653, + "mtime": 1781709946.1535578, "ast_hash": "8b1f208df624278524868d01b138cbc6", "semantic_hash": "8b1f208df624278524868d01b138cbc6" }, @@ -6275,17 +6275,17 @@ "semantic_hash": "bfc3bc2c702b547447071c48d5dc65b9" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/pages/account-loeschen.vue": { - "mtime": 1780921504.3623266, + "mtime": 1781709946.15085, "ast_hash": "ba4393fbe68ec7f8c9511b7d5c4a9a24", "semantic_hash": "ba4393fbe68ec7f8c9511b7d5c4a9a24" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/pages/preview.vue": { - "mtime": 1780975339.554199, + "mtime": 1781709946.1546278, "ast_hash": "ef09f3b15ed6f3b484540a085bf181e1", "semantic_hash": "ef09f3b15ed6f3b484540a085bf181e1" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/pages/datenschutz.vue": { - "mtime": 1778458808.676945, + "mtime": 1781709946.151166, "ast_hash": "b3023383cc973f6f1a6429bfe0f259c4", "semantic_hash": "b3023383cc973f6f1a6429bfe0f259c4" }, @@ -6300,27 +6300,27 @@ "semantic_hash": "1a15f4e1ec048ba5a7e5fc3015329785" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/pages/nutzungsbedingungen.vue": { - "mtime": 1780921484.9501634, + "mtime": 1781709946.154265, "ast_hash": "98a98f31934eb768293947a3a66acccc", "semantic_hash": "98a98f31934eb768293947a3a66acccc" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/pages/impressum.vue": { - "mtime": 1778458808.6773245, + "mtime": 1781709946.15321, "ast_hash": "403f81a37a206465bf04125d8278782b", "semantic_hash": "403f81a37a206465bf04125d8278782b" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/pages/download/android.vue": { - "mtime": 1780921613.692369, + "mtime": 1781709946.151531, "ast_hash": "6d1cc24c330388df78006a69b8958387", "semantic_hash": "6d1cc24c330388df78006a69b8958387" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/pages/download/windows.vue": { - "mtime": 1780921543.32828, + "mtime": 1781709946.1529415, "ast_hash": "892fc8e733053f20f7aa1803cc80b11f", "semantic_hash": "892fc8e733053f20f7aa1803cc80b11f" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/marketing/app/pages/download/rebreakmagic.vue": { - "mtime": 1780921587.4007423, + "mtime": 1781709946.151879, "ast_hash": "fa036072c7c7456209fea117e7e65e9c", "semantic_hash": "fa036072c7c7456209fea117e7e65e9c" }, @@ -6395,7 +6395,7 @@ "semantic_hash": "0a8b632574028263f6952027685a1699" }, "/Users/chahinebrini/mono/rebreak-monorepo/docs/RIVE_ANIMATOR_BRIEF.md": { - "mtime": 1778458808.7049794, + "mtime": 1781709946.1752717, "ast_hash": "c15c71f8353a5fa13664d36e0045c686", "semantic_hash": "c15c71f8353a5fa13664d36e0045c686" }, @@ -6410,29 +6410,29 @@ "semantic_hash": "c4be80708fd0ea02fb2cb0ee59358561" }, "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/05b-test-verifikation-v0.md": { - "mtime": 1781076674.6843758, - "ast_hash": "148a78103718872c1cbae5e952d8a373", + "mtime": 1781126373.9378736, + "ast_hash": "0ce48ce846a5f9f57f04797cfba26aa2", "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/04-risiko-akte-v0.md": { - "mtime": 1780811009.452677, - "ast_hash": "f376ee1fa8fffaec5b85adb45b6b1a73", - "semantic_hash": "f376ee1fa8fffaec5b85adb45b6b1a73" + "mtime": 1781126620.359322, + "ast_hash": "bb2121b0b955a9ff80ddbf5e94bb9529", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/00-dossier-plan.md": { - "mtime": 1781085210.1253984, - "ast_hash": "709022acc43c01ce917b7ba02fe0f367", + "mtime": 1781709946.1754882, + "ast_hash": "ed6d2231dac60d8d978a92a31834bcce", "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/01-zweckbestimmung-v0.md": { - "mtime": 1780806695.6739652, - "ast_hash": "13c3a2414f40ad8a783e5a1743a6789a", - "semantic_hash": "13c3a2414f40ad8a783e5a1743a6789a" + "mtime": 1781709946.1756628, + "ast_hash": "5a247f8ff114ff187e44446542672899", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/03-requirements-v0.md": { - "mtime": 1780810216.9875467, - "ast_hash": "d7c1ce2b880567e1bff932203a96f330", - "semantic_hash": "d7c1ce2b880567e1bff932203a96f330" + "mtime": 1781152470.607283, + "ast_hash": "51d512fb727949373aec0f4e52e90e10", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/05c-lyra-eval-v0.md": { "mtime": 1780810381.7863896, @@ -6505,8 +6505,8 @@ "semantic_hash": "2fd4e4c916da6ace47a63119f42c44ec" }, "/Users/chahinebrini/mono/rebreak-monorepo/.github/workflows/deploy-staging.yml": { - "mtime": 1781096788.1786268, - "ast_hash": "f6b41140b98cd8446489173b3b8d8175", + "mtime": 1781751473.5968573, + "ast_hash": "a534770ece4715a9dceb221cc7c9f7f8", "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/.github/workflows/build-magic-win.yml": { @@ -6515,9 +6515,9 @@ "semantic_hash": "5961dce6bdc4df6cab9ef95a84f78385" }, "/Users/chahinebrini/mono/rebreak-monorepo/.github/workflows/deploy-admin-staging.yml": { - "mtime": 1780298856.114206, - "ast_hash": "d16d46c50557ec9a1d414db25c6a4261", - "semantic_hash": "d16d46c50557ec9a1d414db25c6a4261" + "mtime": 1781751484.620609, + "ast_hash": "6310189e6222aac2afebb4ccd1d27155", + "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/.github/workflows/maestro-cloud.yml": { "mtime": 1780298903.2003832, @@ -6725,7 +6725,7 @@ "semantic_hash": "8b8ca314ec6d2f28b887da68577597d1" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/CHANGELOG.md": { - "mtime": 1781074128.258835, + "mtime": 1781709946.158495, "ast_hash": "a9900ae46156adea09423d9683386f2e", "semantic_hash": "" }, @@ -6935,7 +6935,7 @@ "semantic_hash": "f4afab5570d6101011b7b84eb7d11d17" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/additional_project_files.txt": { - "mtime": 1781100084.730819, + "mtime": 1781521469.2422216, "ast_hash": "ce4de092e3d56226e9c4f869a10540b0", "semantic_hash": "ce4de092e3d56226e9c4f869a10540b0" }, @@ -6950,22 +6950,22 @@ "semantic_hash": "bc83b589a97bb0c895990549d7ba73fc" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/CMakeFiles/TargetDirectories.txt": { - "mtime": 1781100084.672128, + "mtime": 1781521469.1961598, "ast_hash": "19be9476b5a519b647b0d9fb774ed89b", "semantic_hash": "19be9476b5a519b647b0d9fb774ed89b" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeCache.txt": { - "mtime": 1781100084.2792053, + "mtime": 1781521468.9179091, "ast_hash": "0b8d2cea0f921952e562191dd9a6f46f", "semantic_hash": "0b8d2cea0f921952e562191dd9a6f46f" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/TargetDirectories.txt": { - "mtime": 1781100084.2853115, + "mtime": 1781521468.9246526, "ast_hash": "5bcb11cdfd08eb18fd4b4ec3262d4468", "semantic_hash": "5bcb11cdfd08eb18fd4b4ec3262d4468" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/CMakeFiles/_CMakeLTOTest-CXX/src/CMakeLists.txt": { - "mtime": 1781100084.2665324, + "mtime": 1781521468.904016, "ast_hash": "3b72b5cc3e6a0f6bfa3e24ca244eea7d", "semantic_hash": "3b72b5cc3e6a0f6bfa3e24ca244eea7d" }, @@ -6980,7 +6980,7 @@ "semantic_hash": "f4afab5570d6101011b7b84eb7d11d17" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/additional_project_files.txt": { - "mtime": 1781100118.0064566, + "mtime": 1781521507.3477926, "ast_hash": "6bcdbb448e790539b93a892d19846be7", "semantic_hash": "6bcdbb448e790539b93a892d19846be7" }, @@ -6995,22 +6995,22 @@ "semantic_hash": "e93e240404f6cdee362151f18088f806" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/CMakeFiles/TargetDirectories.txt": { - "mtime": 1781100117.9604154, + "mtime": 1781521507.2823696, "ast_hash": "f7975dc628a4a1c4cfcf11083b5079c2", "semantic_hash": "f7975dc628a4a1c4cfcf11083b5079c2" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeCache.txt": { - "mtime": 1781100117.707986, + "mtime": 1781521507.0114198, "ast_hash": "6424c691ed74073b9d9ed2728e164272", "semantic_hash": "6424c691ed74073b9d9ed2728e164272" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/TargetDirectories.txt": { - "mtime": 1781100117.7121255, + "mtime": 1781521507.0165894, "ast_hash": "e1ba60372eb0f0eed1533515a3d62d2e", "semantic_hash": "e1ba60372eb0f0eed1533515a3d62d2e" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/CMakeFiles/_CMakeLTOTest-CXX/src/CMakeLists.txt": { - "mtime": 1781100117.6984527, + "mtime": 1781521507.0014186, "ast_hash": "3b72b5cc3e6a0f6bfa3e24ca244eea7d", "semantic_hash": "3b72b5cc3e6a0f6bfa3e24ca244eea7d" }, @@ -7025,7 +7025,7 @@ "semantic_hash": "f4afab5570d6101011b7b84eb7d11d17" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/additional_project_files.txt": { - "mtime": 1781100051.6168122, + "mtime": 1781521431.229714, "ast_hash": "1b4fb0cc14a842924757df80ecca9ed3", "semantic_hash": "1b4fb0cc14a842924757df80ecca9ed3" }, @@ -7040,22 +7040,22 @@ "semantic_hash": "6712c8fd2785a4067cd65bf280bad965" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/CMakeFiles/TargetDirectories.txt": { - "mtime": 1781100051.5523384, + "mtime": 1781521431.1209333, "ast_hash": "835bfd3ee9e8fe2c784e3f6d5f68e41d", "semantic_hash": "835bfd3ee9e8fe2c784e3f6d5f68e41d" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeCache.txt": { - "mtime": 1781100050.7305112, + "mtime": 1781521430.2914326, "ast_hash": "e9ff3221d0ee689fccb1bfce436f17b3", "semantic_hash": "e9ff3221d0ee689fccb1bfce436f17b3" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/TargetDirectories.txt": { - "mtime": 1781100050.7356062, + "mtime": 1781521430.2959797, "ast_hash": "83ad581a716027adc4b57bd8b271bf19", "semantic_hash": "83ad581a716027adc4b57bd8b271bf19" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/CMakeFiles/_CMakeLTOTest-CXX/src/CMakeLists.txt": { - "mtime": 1781100050.7192829, + "mtime": 1781521430.27361, "ast_hash": "3b72b5cc3e6a0f6bfa3e24ca244eea7d", "semantic_hash": "3b72b5cc3e6a0f6bfa3e24ca244eea7d" }, @@ -7070,7 +7070,7 @@ "semantic_hash": "f4afab5570d6101011b7b84eb7d11d17" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/additional_project_files.txt": { - "mtime": 1781100148.1593788, + "mtime": 1781521543.4695268, "ast_hash": "396fe611b9074b42bde5f6e761139e59", "semantic_hash": "396fe611b9074b42bde5f6e761139e59" }, @@ -7085,22 +7085,22 @@ "semantic_hash": "24ac769e34192d05c47ba73d2c60e85c" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/CMakeFiles/TargetDirectories.txt": { - "mtime": 1781100148.1224687, + "mtime": 1781521543.4313657, "ast_hash": "0541e12c132a86d4d73f571a94893e7f", "semantic_hash": "0541e12c132a86d4d73f571a94893e7f" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeCache.txt": { - "mtime": 1781100147.9036858, + "mtime": 1781521543.1818826, "ast_hash": "baf1d4c4ff8b8bcbac1962f4f77bc760", "semantic_hash": "baf1d4c4ff8b8bcbac1962f4f77bc760" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/CMakeFiles/_CMakeLTOTest-CXX/bin/CMakeFiles/TargetDirectories.txt": { - "mtime": 1781100147.907912, + "mtime": 1781521543.187015, "ast_hash": "d104b31c9f5a42c9df45b3ecc805cce3", "semantic_hash": "d104b31c9f5a42c9df45b3ecc805cce3" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/CMakeFiles/_CMakeLTOTest-CXX/src/CMakeLists.txt": { - "mtime": 1781100147.8946912, + "mtime": 1781521543.1705089, "ast_hash": "3b72b5cc3e6a0f6bfa3e24ca244eea7d", "semantic_hash": "3b72b5cc3e6a0f6bfa3e24ca244eea7d" }, @@ -7450,8 +7450,8 @@ "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/CLAUDE.md": { - "mtime": 1781090993.8517346, - "ast_hash": "9ced1a8cf2c325a3feb242d103be6922", + "mtime": 1781742970.206635, + "ast_hash": "958e3632c31856001eaf01e0b703ee2f", "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/05-software-lifecycle-architektur-soup-v0.md": { @@ -7460,8 +7460,8 @@ "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/05d-traceability-matrix-v0.md": { - "mtime": 1781078579.2351668, - "ast_hash": "bd0733f71cabc032bb3eaf09001619e9", + "mtime": 1781126537.9396067, + "ast_hash": "305ba7d2839c84f82ed2acdc2c90d6a6", "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/graphify-out/memory/query_20260610_064214_how_does_the_diga_lyra_requirement__req_lyra__reac.md": { @@ -7665,22 +7665,22 @@ "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/ReBreak/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png": { - "mtime": 1781122852.3406363, + "mtime": 1781522365.3401725, "ast_hash": "f13c8cff3aa27d1021eac9e6124a73b4", "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/ReBreak/Images.xcassets/SplashScreenLegacy.imageset/image@3x.png": { - "mtime": 1781122852.3451676, + "mtime": 1781522365.344731, "ast_hash": "06a3074fc25dc205cc2265a269958dd0", "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/ReBreak/Images.xcassets/SplashScreenLegacy.imageset/image@2x.png": { - "mtime": 1781122852.3451219, + "mtime": 1781522365.344692, "ast_hash": "06a3074fc25dc205cc2265a269958dd0", "semantic_hash": "" }, "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/ios/ReBreak/Images.xcassets/SplashScreenLegacy.imageset/image.png": { - "mtime": 1781122852.34511, + "mtime": 1781522365.344661, "ast_hash": "06a3074fc25dc205cc2265a269958dd0", "semantic_hash": "" }, @@ -8394,29 +8394,949 @@ "ast_hash": "64cbd4c2d284cbd433fd32523c90debc", "semantic_hash": "" }, - "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-10T14-01-24-0714.json": { - "mtime": 1781100084.7143128, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/NEXT_RELEASE.md": { + "mtime": 1781709946.1586668, + "ast_hash": "2e89ee701b4a872bb52558247e71222f", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/prisma/migrations/20260616_add_magic_cooldown_until/migration.sql": { + "mtime": 1781633584.4263248, + "ast_hash": "ab8e38266abe4f5fd98ed86d105b5ab0", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/magic/devices/[deviceId]/cooldown.post.ts": { + "mtime": 1781634284.8468282, + "ast_hash": "4c33aa19d52e871dd134c5ea36ff11b9", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/magic/devices/[deviceId]/cancel-cooldown.post.ts": { + "mtime": 1781634284.8468282, + "ast_hash": "ab77c84907c99de9da97dbf09c203e9d", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/scripts/dev.sh": { + "mtime": 1781640349.0575337, + "ast_hash": "5594544cf6e56dada810988becaaa1d5", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/armeabi-v7a/.cmake/api/v1/reply/index-2026-06-15T11-04-29-0228.json": { + "mtime": 1781521469.2284918, "ast_hash": "92e5e4513854a8ee33b8649d8a5a733a", "semantic_hash": "" }, - "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-10T14-01-57-0989.json": { - "mtime": 1781100117.9897835, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86/.cmake/api/v1/reply/index-2026-06-15T11-05-07-0332.json": { + "mtime": 1781521507.3322816, "ast_hash": "9e3cc2c421898601a78766628e7f425d", "semantic_hash": "" }, - "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-10T14-00-51-0586.json": { - "mtime": 1781100051.586443, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/arm64-v8a/.cmake/api/v1/reply/index-2026-06-15T11-03-51-0162.json": { + "mtime": 1781521431.1624544, "ast_hash": "aadb4abeff66a8c956aa2a198fa11ae0", "semantic_hash": "" }, - "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-10T14-02-28-0148.json": { - "mtime": 1781100148.1485403, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/android/app/.cxx/RelWithDebInfo/5m151t3n/x86_64/.cmake/api/v1/reply/index-2026-06-15T11-05-43-0458.json": { + "mtime": 1781521543.458921, "ast_hash": "a6ab1ed40e911ae57fed01928b2a8be7", "semantic_hash": "" }, - "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-native/NEXT_RELEASE.md": { - "mtime": 1781122228.9513004, - "ast_hash": "2e89ee701b4a872bb52558247e71222f", + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/composables/useDeviceStatus.ts": { + "mtime": 1781733090.254873, + "ast_hash": "92672c83712b2150aa8b0d034b05d5c5", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/composables/useMagicState.ts": { + "mtime": 1781733090.2552176, + "ast_hash": "485e842347e5a6003bd0cb0441991352", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/composables/useProtectionStatus.ts": { + "mtime": 1781733090.256299, + "ast_hash": "ecc134c5ef924a915b7fed25272cba89", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/composables/useTauri.ts": { + "mtime": 1781737606.2365017, + "ast_hash": "7c4d1d2b4100224ccea32a6743cfaccf", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/CooldownCountdown.vue": { + "mtime": 1781635364.4588876, + "ast_hash": "9a4c571d872c0d81f425c3d54593a870", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/UnknownIosDeviceCard.vue": { + "mtime": 1781733090.254138, + "ast_hash": "9d2e54211bfafe0c4ff1759306b51f26", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/IosDeviceCard.vue": { + "mtime": 1781756877.0845668, + "ast_hash": "6d8059a60590b33fc238b2d3012cb3ee", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/IosDeviceSection.vue": { + "mtime": 1781737687.6239984, + "ast_hash": "5c9da1fc59408824939194b953a44836", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/DeviceListItem.vue": { + "mtime": 1781635531.6331236, + "ast_hash": "3be4f33f17b443f8c8e7ebdc2cd3f77a", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/DeviceHeroCard.vue": { + "mtime": 1781635531.6323507, + "ast_hash": "c7a581d2bc7c59322b289a110375e30c", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/DeviceDetailSheet.vue": { + "mtime": 1781733090.2517881, + "ast_hash": "90ab575064b9257021785152580d2d89", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/IosStarRating.vue": { + "mtime": 1781636111.989578, + "ast_hash": "9b956bc84be593d4693f9a2a052134f5", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/pages/status.vue": { + "mtime": 1781737670.8788178, + "ast_hash": "196d26649e07d1d3dc528874b066902f", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/gen/schemas/capabilities.json": { + "mtime": 1781428268.5297892, + "ast_hash": "ee9da32216c3b0c073803eacdff1fb57", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/gen/schemas/acl-manifests.json": { + "mtime": 1781428268.5195231, + "ast_hash": "8f9239dd0bff9f602c73b59e5844ba34", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/gen/schemas/macOS-schema.json": { + "mtime": 1781428268.528881, + "ast_hash": "330a049b99f4ab6338b2eea8c78e4e74", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/gen/schemas/desktop-schema.json": { + "mtime": 1781428268.528881, + "ast_hash": "330a049b99f4ab6338b2eea8c78e4e74", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/config.rs": { + "mtime": 1781733090.259812, + "ast_hash": "c90b2b592a675dd55f72374e32d6932e", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/lib.rs": { + "mtime": 1781737592.1750922, + "ast_hash": "074ec0c5f849dfb586d1e3408ed58def", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/platform/macos.rs": { + "mtime": 1781733090.261411, + "ast_hash": "ee578065bd41ae6a26787fcebef36e28", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/platform/mod.rs": { + "mtime": 1781733090.261998, + "ast_hash": "60b99d52be35154f8ab4e7288962bcaf", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/platform/windows.rs": { + "mtime": 1781733090.2626424, + "ast_hash": "2423c14aed35131ea9b965178d3e536c", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/backend/api.rs": { + "mtime": 1781737564.2070737, + "ast_hash": "93a533098d7648b970586e521276057e", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/skill.json": { + "mtime": 1781452512.6589565, + "ast_hash": "993dae64d7a9d52f969fcdbafef79ad1", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/package.json": { + "mtime": 1781452512.650934, + "ast_hash": "ba64970ab9975e73337ee4784095bb22", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/tsconfig.json": { + "mtime": 1781452512.652346, + "ast_hash": "d9454be94ab6e33951661584b593f129", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/scripts/design_system.py": { + "mtime": 1781452512.6476092, + "ast_hash": "cd84bdf41f59970e6161e113470b6b06", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/scripts/core.py": { + "mtime": 1781452512.6472814, + "ast_hash": "a0e94f263ff80c1cae216d0ce3174969", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/scripts/search.py": { + "mtime": 1781452512.6477146, + "ast_hash": "8c7e35426fe8f6f3ed91e9dce0ed7af1", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/cursor.json": { + "mtime": 1781452512.648815, + "ast_hash": "8a8b8c792288d359d8b54e13caca6f43", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/roocode.json": { + "mtime": 1781452512.650046, + "ast_hash": "a099ae95c4034a1b3f872f48b93afe54", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/droid.json": { + "mtime": 1781452512.6488874, + "ast_hash": "c03dca5583fd71ece0c4c065000805a2", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/agent.json": { + "mtime": 1781452512.6482317, + "ast_hash": "a03f10120af71633705dbb625419a15a", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/windsurf.json": { + "mtime": 1781452512.650353, + "ast_hash": "4f702489875cecaf8ef9546d9da0de2a", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/augment.json": { + "mtime": 1781452512.6483126, + "ast_hash": "2428870caa99d6390a4642b9b67e245b", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codebuddy.json": { + "mtime": 1781452512.6485324, + "ast_hash": "8d9c0815071d566da63c14a74e86e58c", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/warp.json": { + "mtime": 1781452512.6501753, + "ast_hash": "d1691c763a0c3377f34c13deeaeadb51", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kiro.json": { + "mtime": 1781452512.6497881, + "ast_hash": "b73d2a22731f6350656505e6ddee1a32", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/gemini.json": { + "mtime": 1781452512.6490297, + "ast_hash": "453a0c0dcef526459b9fdc1f042cee11", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/opencode.json": { + "mtime": 1781452512.649874, + "ast_hash": "10e3d3108f0fe8c8df32a075653ed318", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/copilot.json": { + "mtime": 1781452512.6487477, + "ast_hash": "1596063f5747f5a9361c55e53b33e9a9", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/trae.json": { + "mtime": 1781452512.6501126, + "ast_hash": "0e029c06fcb20a39c8277afabba75208", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/continue.json": { + "mtime": 1781452512.6486785, + "ast_hash": "80e314e76868625ae2512e5743527668", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/claude.json": { + "mtime": 1781452512.648461, + "ast_hash": "14050d7f6d993113440a424ad9a7e40b", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/qoder.json": { + "mtime": 1781452512.6499622, + "ast_hash": "7de89365a551e04ff7ec4b5487a4d00a", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/codex.json": { + "mtime": 1781452512.648609, + "ast_hash": "50b98cb41bec850d7ff27bb16f32a811", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/platforms/kilocode.json": { + "mtime": 1781452512.6492715, + "ast_hash": "a06a76cbc19d81f87a8bf9ea3139a34b", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/data/_sync_all.py": { + "mtime": 1781452512.6371238, + "ast_hash": "c5102d726b2b4bdba1c4b7e3d5a55c52", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/src/index.ts": { + "mtime": 1781452512.6514971, + "ast_hash": "e18f12a6ecbcbe1638e4310ea974555b", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/src/types/index.ts": { + "mtime": 1781452512.651635, + "ast_hash": "0002321a9f3c36b7d5bd1abbbee2b007", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/src/utils/extract.ts": { + "mtime": 1781452512.6520088, + "ast_hash": "2495c966ada37d327a2ee93bda8572dd", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/src/utils/detect.ts": { + "mtime": 1781452512.65177, + "ast_hash": "03ad3d8141d06c913e5b6a08807a179a", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/src/utils/github.ts": { + "mtime": 1781452512.6520877, + "ast_hash": "7393c1985cca19777c46e969577def2f", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/src/utils/template.ts": { + "mtime": 1781452512.6522684, + "ast_hash": "6a473ff33a9df39ba75e3b2de10d09db", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/src/utils/logger.ts": { + "mtime": 1781452512.6521552, + "ast_hash": "bc78a1b3ed004e8f9505878f02011c28", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/src/commands/init.ts": { + "mtime": 1781452512.6511407, + "ast_hash": "25ca0f8f5245e043e8429f264f0f14ae", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/src/commands/versions.ts": { + "mtime": 1781452512.651408, + "ast_hash": "3631215af3d0349acc3e20d24300a0de", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/src/commands/uninstall.ts": { + "mtime": 1781452512.6512356, + "ast_hash": "823812e2a48a6bbd83cc285c0606bfa5", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/src/commands/update.ts": { + "mtime": 1781452512.65132, + "ast_hash": "07e35d5c0b9ca05137d6ae30778cba55", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/.claude-plugin/marketplace.json": { + "mtime": 1781452512.5853684, + "ast_hash": "b5fd1ef8bb8a3736ec71a38e9af56aa5", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/.claude-plugin/plugin.json": { + "mtime": 1781452512.5854595, + "ast_hash": "252468f6778722bf99934169f252a551", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/design_system.py": { + "mtime": 1781452512.668972, + "ast_hash": "cd84bdf41f59970e6161e113470b6b06", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/core.py": { + "mtime": 1781452512.6687288, + "ast_hash": "0c039e338b3cf639d1f1e3b6aac60b1c", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/scripts/search.py": { + "mtime": 1781452512.6690571, + "ast_hash": "89f1dc15dbd0ecd96999deaf936e3166", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/cursor.json": { + "mtime": 1781452512.6700706, + "ast_hash": "03876bfe4a20dae8f1f118b2be04f251", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/roocode.json": { + "mtime": 1781452512.6706007, + "ast_hash": "ba8791524c005edce805918aaf12a7f4", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/droid.json": { + "mtime": 1781452512.6701317, + "ast_hash": "c09901a05276792b90301565c6c5c015", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/agent.json": { + "mtime": 1781452512.669668, + "ast_hash": "f3672a7db7aacd001972663a42824e53", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/windsurf.json": { + "mtime": 1781452512.6708071, + "ast_hash": "73015b8382fffb3cbb159691b0f6f3a5", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/augment.json": { + "mtime": 1781452512.6697273, + "ast_hash": "cb64f48e6bab691474315b3e612f77be", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codebuddy.json": { + "mtime": 1781452512.6698365, + "ast_hash": "e325e5aaf3bf2db59b0f3334c307514e", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/warp.json": { + "mtime": 1781452512.6707435, + "ast_hash": "0b4735d21efb6a0cb386d8d377205361", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kiro.json": { + "mtime": 1781452512.6704092, + "ast_hash": "e654bb552f504727dc3222ed357921ef", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/gemini.json": { + "mtime": 1781452512.6701927, + "ast_hash": "98b943ae358cb5599b5ffcc4dedcec76", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/opencode.json": { + "mtime": 1781452512.6704752, + "ast_hash": "63df6092e1244fc375fa4ee830d8057e", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/copilot.json": { + "mtime": 1781452512.6700165, + "ast_hash": "ea871030ef1e227198e6cf3f6290e8db", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/trae.json": { + "mtime": 1781452512.670674, + "ast_hash": "2255e1dd71a78b1f9ccbceb48a426950", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/continue.json": { + "mtime": 1781452512.6699586, + "ast_hash": "a2b7c523713316fead7a44df2ced30bb", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/claude.json": { + "mtime": 1781452512.6697803, + "ast_hash": "255131d73a18abb68ae639b0cbdd31d4", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/qoder.json": { + "mtime": 1781452512.6705365, + "ast_hash": "82bd5569fca608886e764d13620ebc1c", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/codex.json": { + "mtime": 1781452512.6699007, + "ast_hash": "d0914481fe5994fefb6bdaeea43ac35c", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/platforms/kilocode.json": { + "mtime": 1781452512.6703467, + "ast_hash": "a5412414b680d5a57120f7185693cb72", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/data/_sync_all.py": { + "mtime": 1781452512.6594777, + "ast_hash": "c5102d726b2b4bdba1c4b7e3d5a55c52", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/09-pms-plan-v0.md": { + "mtime": 1781125960.7000728, + "ast_hash": "c7feac38e29de4fdf8e5bb4bfc8fabf5", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/10-qms-templates-v0.md": { + "mtime": 1781126044.796593, + "ast_hash": "ea91c44ed10f0edc9627ca58520f4e19", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/07-gebrauchsanweisung-labeling-v0.md": { + "mtime": 1781152501.4048305, + "ast_hash": "2f1d9712f286119908554f6b44d89292", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/eval-records/2026-06-10-gpt-4o-mini.md": { + "mtime": 1781125884.850232, + "ast_hash": "b5e110e5e254b9f076816344e5fd8481", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/specs/diga/eval-records/2026-06-10-groq-llama-3.3-70b.md": { + "mtime": 1781126327.3325906, + "ast_hash": "88b897084f64bc66e923804f898b421e", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/superpowers/plans/2026-06-16-magic-dashboard-ios-section.md": { + "mtime": 1781733090.269755, + "ast_hash": "25dd375cc0d1ebf4d3c77b239fcead71", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/superpowers/specs/2026-06-16-magic-dashboard-ios-section-design.md": { + "mtime": 1781733090.2708068, + "ast_hash": "2ed3bad760fec1e0241ffcb337871c80", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.github/workflows/build-rebreak-magic-win.yml": { + "mtime": 1781733090.2511883, + "ast_hash": "2d17aa42de4a15bc09942ff51b44189b", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/README.md": { + "mtime": 1781452512.6365876, + "ast_hash": "28f0a5146cffef7f79b927f9714d0a8e", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/CLAUDE.md": { + "mtime": 1781452512.636291, + "ast_hash": "faa566ab4aeb023bebf4ca153e1aa5bc", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/docs/\u4e09\u4e2a data-scripts-templates \u7684\u533a\u522b.md": { + "mtime": 1781452512.6524885, + "ast_hash": "9214580459839e80b04775eed9f2372b", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/README.md": { + "mtime": 1781452512.6368659, + "ast_hash": "24a3d660a514bd7d4d6f7b35bc3cfeb0", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/base/quick-reference.md": { + "mtime": 1781452512.647958, + "ast_hash": "c06531f38a6bc1035a07aac3545d1eeb", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/cli/assets/templates/base/skill-content.md": { + "mtime": 1781452512.648094, + "ast_hash": "83a208595df85f777d69b81affee8566", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/.github/workflows/claude-code-review.yml": { + "mtime": 1781452512.635705, + "ast_hash": "5079400de856707524c884e89e366799", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/.github/workflows/claude.yml": { + "mtime": 1781452512.6357925, + "ast_hash": "8b029057383d122289156d6c77e7352e", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/.github/workflows/python-package-conda.yml": { + "mtime": 1781452512.6359937, + "ast_hash": "7a4e34e072fb1f2f492e8fbc37cfafbb", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/preview/xiaomaomi-app.html": { + "mtime": 1781452512.652747, + "ast_hash": "f4e3a3734bcb051852584b064428a33c", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/quick-reference.md": { + "mtime": 1781452512.6692903, + "ast_hash": "c06531f38a6bc1035a07aac3545d1eeb", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/src/ui-ux-pro-max/templates/base/skill-content.md": { + "mtime": 1781452512.6695712, + "ast_hash": "fe6a0083a9351d246c4a7c7120cdb341", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/.sixth/skills/ui-ux-pro-max/screenshots/website.png": { + "mtime": 1781452512.6584172, + "ast_hash": "e31f3d6be53491d545dbfad528e7fa7b", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/08-sos-wave-en.cartesia.mp3": { + "mtime": 1781153618.9087503, + "ast_hash": "cf088ee7ec1c533b623e5e5f468e7385", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/02-sos-welle.magpie.wav": { + "mtime": 1781154461.361842, + "ast_hash": "1e963cb097c21b82b041a097407e188c", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/07-coach-zahlen.cartesia.mp3": { + "mtime": 1781153616.9710152, + "ast_hash": "c0c51c36b377d0e07f306a73b0bd73f7", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/10-coach-langform.cartesia.mp3": { + "mtime": 1781153622.56056, + "ast_hash": "dd1f5ad134011e60a2d2cb0529894214", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/03-sos-vertrag.magpie.wav": { + "mtime": 1781154462.386059, + "ast_hash": "9e40c13cb308d5ce40098882457cd07c", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/10-coach-langform.magpie.wav": { + "mtime": 1781154479.7527254, + "ast_hash": "23c5ef9e91ec4267ed9b54e0a292c266", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/08-sos-wave-en.magpie.wav": { + "mtime": 1781154474.5345469, + "ast_hash": "2d4a162fd35577f67ced4568b18b4643", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/01-sos-anker.cartesia.mp3": { + "mtime": 1781153603.43281, + "ast_hash": "2152150ec5d58af78ce3a46cc37ff741", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/06-coach-reframe.magpie.wav": { + "mtime": 1781154464.9951317, + "ast_hash": "78c6cefa1728de68e664d2626303c61d", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/05-coach-frage.cartesia.mp3": { + "mtime": 1781153613.3936422, + "ast_hash": "510f97d284870e73275bf92576cc5120", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/09-coach-streak-en.cartesia.mp3": { + "mtime": 1781153620.1029046, + "ast_hash": "ba4f850cad99027cdfc7c617e6933a20", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/01-sos-anker.magpie.wav": { + "mtime": 1781154459.9263606, + "ast_hash": "57356bd4622d0eac2c222db2db00e429", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/06-coach-reframe.cartesia.mp3": { + "mtime": 1781153615.4891956, + "ast_hash": "190c9c1460c10243a33861eaa4321916", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/04-coach-streak.magpie.wav": { + "mtime": 1781154463.3817592, + "ast_hash": "e3e7efa061ee958fa6548ec053094881", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/05-coach-frage.magpie.wav": { + "mtime": 1781154464.0622964, + "ast_hash": "08857a2d827c69f060a24aa69f67a7da", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/02-sos-welle.cartesia.mp3": { + "mtime": 1781153606.9857569, + "ast_hash": "631064c25d412d5730568940dbd8f527", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/09-coach-streak-en.magpie.wav": { + "mtime": 1781154478.575871, + "ast_hash": "aab7fd1722db146363fef6a6281d4170", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/04-coach-streak.cartesia.mp3": { + "mtime": 1781153610.3540266, + "ast_hash": "7f9acc6a88ad78d7357f1c4927aee970", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/03-sos-vertrag.cartesia.mp3": { + "mtime": 1781153608.674593, + "ast_hash": "65f38b9be6120e4140345e3485763ca4", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/scripts/tts-bench-out/07-coach-zahlen.magpie.wav": { + "mtime": 1781154465.7244937, + "ast_hash": "0402eda9263e48ddf6ea87c8742fbcce", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/db/mdm.ts": { + "mtime": 1781756837.9652262, + "ast_hash": "1b8fe52e3b6c5ea5599699cc24c2f1fb", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/db/device-protection.ts": { + "mtime": 1781741761.0673048, + "ast_hash": "cfa82c168b28ca2ded1ce480eb3c8c0a", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/magic/devices/[deviceId]/mdm.get.ts": { + "mtime": 1781758009.6469717, + "ast_hash": "b0a1b76bdc305c925326f6787aebbe11", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/magic/devices/[deviceId]/mdm-link.post.ts": { + "mtime": 1781733090.2666242, + "ast_hash": "065ae2d6c6a71cdc6f74de4b844612d8", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/devices/protection-state.post.ts": { + "mtime": 1781741761.0666435, + "ast_hash": "7e054a745bad4025ccca0846336ad043", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/superpowers/specs/2026-06-17-mdm-device-link-design.md": { + "mtime": 1781733090.27176, + "ast_hash": "0750d6275ebea5447013f14824980cad", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/prisma/migrations/20250616_add_hardware_id_to_user_devices/migration.sql": { + "mtime": 1781748641.7154105, + "ast_hash": "807c7b348934ece48c6ba60325262eb5", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/api/magic/mdm/by-udid.get.ts": { + "mtime": 1781733090.2675364, + "ast_hash": "c7779b7d1f9742ea8a95b9d3a49911f3", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/package.json": { + "mtime": 1781729471.570031, + "ast_hash": "50cc90cc4302cb7ba5ddea4995c83ce3", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/nuxt.config.ts": { + "mtime": 1781729471.5582905, + "ast_hash": "2be2ca84d9a4bb80650de3acdfa85507", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/tsconfig.json": { + "mtime": 1781729472.2330923, + "ast_hash": "07807a46dbdf0707e8087ac313b83239", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/app.vue": { + "mtime": 1781729471.3118405, + "ast_hash": "3d71fbb877cc5615d93174fc7210ce5a", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/composables/useLogger.ts": { + "mtime": 1781729471.3932714, + "ast_hash": "987486d0b4334688815c3779f2ca67e4", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/composables/useMdmStatus.ts": { + "mtime": 1781733090.255525, + "ast_hash": "567920d3f3e39bcc469118b1f446ef96", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/StatusBadge.vue": { + "mtime": 1781729471.3693454, + "ast_hash": "793e67cb3bfa5b6eaac5b50c74cde28b", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/PreflightItem.vue": { + "mtime": 1781729471.357726, + "ast_hash": "654d7bdac2f3c7e4909a13ee00ac3c37", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/StepButton.vue": { + "mtime": 1781729471.3821392, + "ast_hash": "5ff0e5638aa149c647921ab6687b5ea8", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/components/DevLogDrawer.vue": { + "mtime": 1781732520.8983364, + "ast_hash": "7833abd61f8807ed726fc598cb19ac72", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/pages/index.vue": { + "mtime": 1781729471.486673, + "ast_hash": "f877f69336642daeae53eacfda34d792", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/pages/pair.vue": { + "mtime": 1781734819.2793465, + "ast_hash": "e5b51132c20d00d559cdd0b448017d2d", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/pages/detect.vue": { + "mtime": 1781729471.4505167, + "ast_hash": "70c0a0b1b507a92cfb06e0c980b23b8f", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/pages/desktop-enroll.vue": { + "mtime": 1781729471.4271133, + "ast_hash": "a41f8f73e10b24fd36c093e1993b0c51", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/pages/enroll.vue": { + "mtime": 1781729471.4746497, + "ast_hash": "3d67edc477e38d0a960e636a16234ad8", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/pages/sideload.vue": { + "mtime": 1781729471.5241191, + "ast_hash": "1a5b455cc5589f01a063df96e79e15cb", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/pages/configure.vue": { + "mtime": 1781729471.4157372, + "ast_hash": "c7ed87254037b59ce9164d93a521b781", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/pages/done.vue": { + "mtime": 1781729471.4631672, + "ast_hash": "19f47d384164a9f9e4cceacd3161e5c0", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/pages/preflight.vue": { + "mtime": 1781729471.51261, + "ast_hash": "8cbd20d4fcc93d5228d6ac58bfca2c89", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/pages/supervise.vue": { + "mtime": 1781729471.5354013, + "ast_hash": "113ce0ab42e4e160b3276e008f99a913", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/tauri.conf.json": { + "mtime": 1781729472.2192295, + "ast_hash": "2f64b41d4750fc0bee0568b986923a72", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/build.rs": { + "mtime": 1781729471.7024686, + "ast_hash": "1be34a5c61c2c35365de3dab14298f0b", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/capabilities/default.json": { + "mtime": 1781729471.760402, + "ast_hash": "1d895da77f90fd82994075feae39cdfd", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/ios_device.rs": { + "mtime": 1781740777.2531319, + "ast_hash": "d6a4e891bead623af75486504480c92b", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/error.rs": { + "mtime": 1781729472.100576, + "ast_hash": "1cbe3e16b21f15db5ef852841fba82da", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/main.rs": { + "mtime": 1781729472.1251776, + "ast_hash": "2084e91f950ca97ba85ad9c11c340590", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/mdm/client.rs": { + "mtime": 1781729472.1370656, + "ast_hash": "4240b07b28eeb0dc23eb90a3e4a71c91", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/mdm/mod.rs": { + "mtime": 1781729472.1493077, + "ast_hash": "fb3bd5e0c293c199c76ccc04b3416bf2", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/server/mod.rs": { + "mtime": 1781729472.176522, + "ast_hash": "43c1dc302df661adef0fc15660a2dddf", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/server/local_http.rs": { + "mtime": 1781729472.1622849, + "ast_hash": "0d2b263e0206a41deee15b407cf8f5fb", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/backend/mod.rs": { + "mtime": 1781729472.0883863, + "ast_hash": "ce59502e207891a17c5b0a62ce890428", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/sidecar/supervise_magic.rs": { + "mtime": 1781729472.2055755, + "ast_hash": "b839680b3e86088f82b8882b8b5443e3", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/src/sidecar/mod.rs": { + "mtime": 1781729472.19043, + "ast_hash": "b9fac636da2f72e9c60e491434174017", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/PLAN.md": { + "mtime": 1781729471.3001947, + "ast_hash": "e80bf0f8e4205ffab11614c70ac55f6d", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/binaries/README.md": { + "mtime": 1781729471.6063116, + "ast_hash": "79ca75ad2b0e04dfbb33a06c5cf9d8d1", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/app/assets/rebreak-icon.png": { + "mtime": 1781729471.335277, + "ast_hash": "6e170214782b56cdce1a8a6ab1daa398", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/icons/icon.png": { + "mtime": 1781729472.0654898, + "ast_hash": "6e170214782b56cdce1a8a6ab1daa398", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/icons/128x128.png": { + "mtime": 1781729471.8785996, + "ast_hash": "01acd35e0eb402e950de5adbb6d51be8", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/icons/source.png": { + "mtime": 1781729472.0767772, + "ast_hash": "b9b1ccecc0aecb293dea2af6dadf9b14", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/icons/32x32.png": { + "mtime": 1781729471.994817, + "ast_hash": "b5f991e976e1379d55790bef526cc291", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/apps/rebreak-magic/src-tauri/icons/128x128@2x.png": { + "mtime": 1781729471.9371994, + "ast_hash": "97a06ca7e68ce3e2b668909587a6409e", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/internal/IOS_NEFILTER_ARCHITECTURE.md": { + "mtime": 1781737151.6551433, + "ast_hash": "fdb6c76d26ef813ebe8a583884c8f9aa", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/superpowers/plans/2026-06-18-self-hosted-github-runner.md": { + "mtime": 1781748441.3655443, + "ast_hash": "3497a99c9a07a4935ae2182ec21cc394", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/superpowers/plans/2026-06-18-mdm-health-check.md": { + "mtime": 1781744898.06317, + "ast_hash": "d5909c836281b991a60c017f512e39db", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/docs/superpowers/specs/2026-06-18-self-hosted-github-runner-design.md": { + "mtime": 1781748303.758836, + "ast_hash": "3981c5764a2b55eb9a58419d5d02ef7c", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/prisma/migrations/20250618_add_mdm_health_columns/migration.sql": { + "mtime": 1781748641.7161934, + "ast_hash": "abd114a2d982fbed1b6fea93203a08e3", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/tests/devices/mdm-health.test.ts": { + "mtime": 1781748641.7185087, + "ast_hash": "d101fe1fcf6eb0d6cee05c68fb1901ee", + "semantic_hash": "" + }, + "/Users/chahinebrini/mono/rebreak-monorepo/backend/server/plugins/mdm-health-cron.ts": { + "mtime": 1781748641.7178783, + "ast_hash": "22842b3019c2bb3175d475e92b437109", "semantic_hash": "" } } \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 80c04b9..7bc6846 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -36,7 +36,7 @@ importers: version: 1.15.0(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue@3.5.34(typescript@5.9.3)) '@nuxt/ui': specifier: ^4.5.1 - version: 4.7.1(@internationalized/date@3.12.1)(@internationalized/number@3.6.6)(@tiptap/extensions@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(embla-carousel@8.6.0)(ioredis@5.10.1)(magicast@0.5.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.2.4)(typescript@5.9.3)(valibot@1.4.1(typescript@5.9.3))(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue-router@4.6.4(vue@3.5.34(typescript@5.9.3)))(vue@3.5.34(typescript@5.9.3))(yjs@13.6.30)(zod@3.25.76) + version: 4.7.1(@internationalized/date@3.12.1)(@internationalized/number@3.6.6)(@tiptap/extensions@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(embla-carousel@8.6.0)(ioredis@5.10.1)(magicast@0.5.3)(qrcode@1.5.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.2.4)(typescript@5.9.3)(valibot@1.4.1(typescript@5.9.3))(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue-router@4.6.4(vue@3.5.34(typescript@5.9.3)))(vue@3.5.34(typescript@5.9.3))(yjs@13.6.30)(zod@3.25.76) '@nuxtjs/supabase': specifier: ^2.0.4 version: 2.0.6 @@ -45,7 +45,7 @@ importers: version: 14.3.0(vue@3.5.34(typescript@5.9.3)) '@vueuse/nuxt': specifier: ^14.2.1 - version: 14.3.0(magicast@0.5.3)(nuxt@4.1.3(@electric-sql/pglite@0.4.1)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@parcel/watcher@2.5.6)(@types/node@22.19.17)(@vue/compiler-sfc@3.5.35)(cac@6.7.14)(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(eslint@10.3.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(mysql2@3.15.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(yaml@2.8.4))(vue@3.5.34(typescript@5.9.3)) + version: 14.3.0(magicast@0.5.3)(nuxt@4.1.3(@electric-sql/pglite@0.4.1)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@parcel/watcher@2.5.6)(@types/node@22.19.17)(@vue/compiler-sfc@3.5.35)(cac@6.7.14)(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(eslint@10.3.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(mysql2@3.15.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(yaml@2.8.4))(vue@3.5.34(typescript@5.9.3)) nuxt: specifier: 4.1.3 version: 4.1.3(@electric-sql/pglite@0.4.1)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@parcel/watcher@2.5.6)(@types/node@22.19.17)(@vue/compiler-sfc@3.5.35)(cac@6.7.14)(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(eslint@10.3.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(mysql2@3.15.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(yaml@2.8.4) @@ -76,7 +76,7 @@ importers: version: 1.2.3 '@nuxt/fonts': specifier: ^0.11.4 - version: 0.11.4(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(ioredis@5.10.1)(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4)) + version: 0.11.4(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(ioredis@5.10.1)(magicast@0.5.3) '@nuxt/icon': specifier: ^1.10.0 version: 1.15.0(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue@3.5.34(typescript@5.9.3)) @@ -85,7 +85,7 @@ importers: version: 1.11.0(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(ioredis@5.10.1)(magicast@0.5.3) '@nuxt/ui': specifier: ^4.5.1 - version: 4.7.1(@internationalized/date@3.12.1)(@internationalized/number@3.6.6)(@tiptap/extensions@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(embla-carousel@8.6.0)(ioredis@5.10.1)(magicast@0.5.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.2.4)(typescript@5.9.3)(valibot@1.4.1(typescript@5.9.3))(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue-router@4.6.4(vue@3.5.34(typescript@5.9.3)))(vue@3.5.34(typescript@5.9.3))(yjs@13.6.30)(zod@3.25.76) + version: 4.7.1(@internationalized/date@3.12.1)(@internationalized/number@3.6.6)(@tiptap/extensions@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(embla-carousel@8.6.0)(ioredis@5.10.1)(magicast@0.5.3)(qrcode@1.5.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.2.4)(typescript@5.9.3)(valibot@1.4.1(typescript@5.9.3))(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue-router@4.6.4(vue@3.5.34(typescript@5.9.3)))(vue@3.5.34(typescript@5.9.3))(yjs@13.6.30)(zod@3.25.76) '@nuxtjs/i18n': specifier: ^9.5.6 version: 9.5.6(@vue/compiler-dom@3.5.35)(eslint@10.3.0(jiti@2.7.0))(magicast@0.5.3)(rollup@4.60.3)(vue@3.5.34(typescript@5.9.3)) @@ -94,7 +94,7 @@ importers: version: 3.0.3(magicast@0.5.3)(vue@3.5.34(typescript@5.9.3)) '@vueuse/nuxt': specifier: ^14.2.1 - version: 14.3.0(magicast@0.5.3)(nuxt@4.1.3(@electric-sql/pglite@0.4.1)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@parcel/watcher@2.5.6)(@types/node@22.19.17)(@vue/compiler-sfc@3.5.35)(cac@6.7.14)(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(eslint@10.3.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(mysql2@3.15.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(yaml@2.8.4))(vue@3.5.34(typescript@5.9.3)) + version: 14.3.0(magicast@0.5.3)(nuxt@4.1.3(@electric-sql/pglite@0.4.1)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@parcel/watcher@2.5.6)(@types/node@22.19.17)(@vue/compiler-sfc@3.5.35)(cac@6.7.14)(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(eslint@10.3.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(mysql2@3.15.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(yaml@2.8.4))(vue@3.5.34(typescript@5.9.3)) chart.js: specifier: ^4.5.1 version: 4.5.1 @@ -124,6 +124,52 @@ importers: specifier: ^5.9.3 version: 5.9.3 + apps/rebreak-magic: + dependencies: + '@nuxt/icon': + specifier: ^1.10.0 + version: 1.15.0(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue@3.5.35(typescript@5.9.3)) + '@nuxt/ui': + specifier: ^4.5.1 + version: 4.7.1(@internationalized/date@3.12.1)(@internationalized/number@3.6.6)(@tiptap/extensions@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(embla-carousel@8.6.0)(ioredis@5.10.1)(magicast@0.5.3)(qrcode@1.5.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.2.4)(typescript@5.9.3)(valibot@1.4.1(typescript@5.9.3))(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue-router@4.6.4(vue@3.5.35(typescript@5.9.3)))(vue@3.5.35(typescript@5.9.3))(yjs@13.6.30)(zod@3.25.76) + '@vueuse/core': + specifier: ^14.2.1 + version: 14.3.0(vue@3.5.35(typescript@5.9.3)) + '@vueuse/nuxt': + specifier: ^14.2.1 + version: 14.3.0(magicast@0.5.3)(nuxt@4.1.3(@electric-sql/pglite@0.4.1)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@parcel/watcher@2.5.6)(@types/node@22.19.17)(@vue/compiler-sfc@3.5.35)(cac@6.7.14)(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(eslint@10.3.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(mysql2@3.15.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(yaml@2.8.4))(vue@3.5.35(typescript@5.9.3)) + nuxt: + specifier: 4.1.3 + version: 4.1.3(@electric-sql/pglite@0.4.1)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@parcel/watcher@2.5.6)(@types/node@22.19.17)(@vue/compiler-sfc@3.5.35)(cac@6.7.14)(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(eslint@10.3.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(mysql2@3.15.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(yaml@2.8.4) + qrcode: + specifier: ^1.5.4 + version: 1.5.4 + tailwindcss: + specifier: ^4.1.18 + version: 4.2.4 + vue: + specifier: ^3.5.22 + version: 3.5.35(typescript@5.9.3) + vue-router: + specifier: ^4.5.1 + version: 4.6.4(vue@3.5.35(typescript@5.9.3)) + devDependencies: + '@iconify-json/heroicons': + specifier: ^1.2.3 + version: 1.2.3 + '@tauri-apps/api': + specifier: ^2.0.0 + version: 2.11.0 + '@tauri-apps/cli': + specifier: ^2.0.0 + version: 2.11.2 + '@types/qrcode': + specifier: ^1.5.5 + version: 1.5.6 + typescript: + specifier: ^5.9.3 + version: 5.9.3 + apps/rebreak-magic-win: dependencies: '@fontsource/nunito': @@ -4054,6 +4100,9 @@ packages: '@types/prop-types@15.7.15': resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==} + '@types/qrcode@1.5.6': + resolution: {integrity: sha512-te7NQcV2BOvdj2b1hCAHzAoMNuj65kNBMz0KBaxM6c3VGBOhU0dURQKOtH8CFNI/dsKkwlv32p26qYQTWoB5bw==} + '@types/react-dom@18.3.7': resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} peerDependencies: @@ -4959,6 +5008,9 @@ packages: client-only@0.0.1: resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} engines: {node: '>=12'} @@ -5246,6 +5298,10 @@ packages: supports-color: optional: true + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + decode-uri-component@0.2.2: resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} engines: {node: '>=0.10'} @@ -5359,6 +5415,9 @@ packages: resolution: {integrity: sha512-svtcdpS8CgJyqAjEQIXdb3OjhFVVYjzGAPO8WGCmRbrml64SPw/jJD4GoE98aR7r25A0XcgrK3F02yw9R/vhQw==} engines: {node: '>=0.3.1'} + dijkstrajs@1.0.3: + resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==} + dlv@1.1.3: resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} @@ -7705,6 +7764,10 @@ packages: resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==} engines: {node: '>=4.0.0'} + pngjs@5.0.0: + resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==} + engines: {node: '>=10.13.0'} + popmotion@11.0.5: resolution: {integrity: sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==} @@ -8091,6 +8154,11 @@ packages: resolution: {integrity: sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==} hasBin: true + qrcode@1.5.4: + resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==} + engines: {node: '>=10.13.0'} + hasBin: true + qs@6.15.1: resolution: {integrity: sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==} engines: {node: '>=0.6'} @@ -8433,6 +8501,9 @@ packages: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} + require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + requireg@0.2.2: resolution: {integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==} engines: {node: '>= 4.0.0'} @@ -8631,6 +8702,9 @@ packages: server-only@0.0.1: resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==} + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + set-function-length@1.2.2: resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} engines: {node: '>= 0.4'} @@ -9797,6 +9871,9 @@ packages: resolution: {integrity: sha512-f+Gy33Oa5Z14XY9679Zze+7VFhbsQfBFXodnU2x589l4kxGM9L5Y8zETTmcMR5pWOPQyRv4Z0lNax6xCO0NSlA==} engines: {node: '>=18'} + which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + which-typed-array@1.1.20: resolution: {integrity: sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==} engines: {node: '>= 0.4'} @@ -9828,6 +9905,10 @@ packages: resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} engines: {node: '>=0.10.0'} + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + wrap-ansi@7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} engines: {node: '>=10'} @@ -9933,6 +10014,9 @@ packages: peerDependencies: yjs: ^13.0.0 + y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} @@ -9953,6 +10037,10 @@ packages: engines: {node: '>= 14.6'} hasBin: true + yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} @@ -9961,6 +10049,10 @@ packages: resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==} engines: {node: ^20.19.0 || ^22.12.0 || >=23} + yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + yargs@17.7.2: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} @@ -11414,6 +11506,15 @@ snapshots: - '@vue/composition-api' - vue + '@floating-ui/vue@1.1.11(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@floating-ui/dom': 1.7.6 + '@floating-ui/utils': 0.2.11 + vue-demi: 0.14.10(vue@3.5.35(typescript@5.9.3)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + '@fontsource/nunito@5.2.7': {} '@hono/node-server@1.19.11(hono@4.12.17)': @@ -11474,6 +11575,11 @@ snapshots: '@iconify/types': 2.0.0 vue: 3.5.34(typescript@5.9.3) + '@iconify/vue@5.0.1(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@iconify/types': 2.0.0 + vue: 3.5.35(typescript@5.9.3) + '@ide/backoff@1.0.0': {} '@internationalized/date@3.12.1': @@ -11918,7 +12024,7 @@ snapshots: - utf-8-validate - vue - '@nuxt/fonts@0.11.4(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(ioredis@5.10.1)(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))': + '@nuxt/fonts@0.11.4(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(ioredis@5.10.1)(magicast@0.5.3)': dependencies: '@nuxt/devtools-kit': 2.7.0(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4)) '@nuxt/kit': 3.21.4(magicast@0.5.3) @@ -12026,6 +12132,28 @@ snapshots: - vite - vue + '@nuxt/icon@1.15.0(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@iconify/collections': 1.0.680 + '@iconify/types': 2.0.0 + '@iconify/utils': 2.3.0 + '@iconify/vue': 5.0.1(vue@3.5.35(typescript@5.9.3)) + '@nuxt/devtools-kit': 2.7.0(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4)) + '@nuxt/kit': 3.21.4(magicast@0.5.3) + consola: 3.4.2 + local-pkg: 1.1.2 + mlly: 1.8.2 + ohash: 2.0.11 + pathe: 2.0.3 + picomatch: 4.0.4 + std-env: 3.10.0 + tinyglobby: 0.2.16 + transitivePeerDependencies: + - magicast + - supports-color + - vite + - vue + '@nuxt/icon@2.2.2(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue@3.5.34(typescript@5.9.3))': dependencies: '@iconify/collections': 1.0.680 @@ -12047,6 +12175,27 @@ snapshots: - vite - vue + '@nuxt/icon@2.2.2(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@iconify/collections': 1.0.680 + '@iconify/types': 2.0.0 + '@iconify/utils': 3.1.3 + '@iconify/vue': 5.0.1(vue@3.5.35(typescript@5.9.3)) + '@nuxt/devtools-kit': 3.2.4(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4)) + '@nuxt/kit': 4.4.4(magicast@0.5.3) + consola: 3.4.2 + local-pkg: 1.1.2 + mlly: 1.8.2 + ohash: 2.0.11 + pathe: 2.0.3 + picomatch: 4.0.4 + std-env: 4.1.0 + tinyglobby: 0.2.16 + transitivePeerDependencies: + - magicast + - vite + - vue + '@nuxt/image@1.11.0(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(ioredis@5.10.1)(magicast@0.5.3)': dependencies: '@nuxt/kit': 3.21.4(magicast@0.5.3) @@ -12242,7 +12391,7 @@ snapshots: rc9: 3.0.1 std-env: 4.1.0 - '@nuxt/ui@4.7.1(@internationalized/date@3.12.1)(@internationalized/number@3.6.6)(@tiptap/extensions@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(embla-carousel@8.6.0)(ioredis@5.10.1)(magicast@0.5.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.2.4)(typescript@5.9.3)(valibot@1.4.1(typescript@5.9.3))(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue-router@4.6.4(vue@3.5.34(typescript@5.9.3)))(vue@3.5.34(typescript@5.9.3))(yjs@13.6.30)(zod@3.25.76)': + '@nuxt/ui@4.7.1(@internationalized/date@3.12.1)(@internationalized/number@3.6.6)(@tiptap/extensions@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(embla-carousel@8.6.0)(ioredis@5.10.1)(magicast@0.5.3)(qrcode@1.5.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.2.4)(typescript@5.9.3)(valibot@1.4.1(typescript@5.9.3))(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue-router@4.6.4(vue@3.5.34(typescript@5.9.3)))(vue@3.5.34(typescript@5.9.3))(yjs@13.6.30)(zod@3.25.76)': dependencies: '@floating-ui/dom': 1.7.6 '@iconify/vue': 5.0.1(vue@3.5.34(typescript@5.9.3)) @@ -12275,7 +12424,7 @@ snapshots: '@tiptap/vue-3': 3.23.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(vue@3.5.34(typescript@5.9.3)) '@unhead/vue': 2.1.13(vue@3.5.34(typescript@5.9.3)) '@vueuse/core': 14.3.0(vue@3.5.34(typescript@5.9.3)) - '@vueuse/integrations': 14.3.0(fuse.js@7.3.0)(vue@3.5.34(typescript@5.9.3)) + '@vueuse/integrations': 14.3.0(fuse.js@7.3.0)(qrcode@1.5.4)(vue@3.5.34(typescript@5.9.3)) '@vueuse/shared': 14.3.0(vue@3.5.34(typescript@5.9.3)) colortranslator: 5.0.0 consola: 3.4.2 @@ -12356,6 +12505,120 @@ snapshots: - vue - yjs + '@nuxt/ui@4.7.1(@internationalized/date@3.12.1)(@internationalized/number@3.6.6)(@tiptap/extensions@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(embla-carousel@8.6.0)(ioredis@5.10.1)(magicast@0.5.3)(qrcode@1.5.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(tailwindcss@4.2.4)(typescript@5.9.3)(valibot@1.4.1(typescript@5.9.3))(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue-router@4.6.4(vue@3.5.35(typescript@5.9.3)))(vue@3.5.35(typescript@5.9.3))(yjs@13.6.30)(zod@3.25.76)': + dependencies: + '@floating-ui/dom': 1.7.6 + '@iconify/vue': 5.0.1(vue@3.5.35(typescript@5.9.3)) + '@nuxt/fonts': 0.14.0(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(ioredis@5.10.1)(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4)) + '@nuxt/icon': 2.2.2(magicast@0.5.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(vue@3.5.35(typescript@5.9.3)) + '@nuxt/kit': 4.4.4(magicast@0.5.3) + '@nuxt/schema': 4.4.4 + '@nuxtjs/color-mode': 3.5.2(magicast@0.5.3) + '@standard-schema/spec': 1.1.0 + '@tailwindcss/postcss': 4.2.4 + '@tailwindcss/vite': 4.2.4(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4)) + '@tanstack/vue-table': 8.21.3(vue@3.5.35(typescript@5.9.3)) + '@tanstack/vue-virtual': 3.13.24(vue@3.5.35(typescript@5.9.3)) + '@tiptap/core': 3.23.1(@tiptap/pm@3.23.1) + '@tiptap/extension-bubble-menu': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1) + '@tiptap/extension-code': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1)) + '@tiptap/extension-collaboration': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(yjs@13.6.30) + '@tiptap/extension-drag-handle': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/extension-collaboration@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(yjs@13.6.30))(@tiptap/extension-node-range@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30)) + '@tiptap/extension-drag-handle-vue-3': 3.23.1(@tiptap/extension-drag-handle@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/extension-collaboration@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(yjs@13.6.30))(@tiptap/extension-node-range@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30)))(@tiptap/pm@3.23.1)(@tiptap/vue-3@3.23.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(vue@3.5.35(typescript@5.9.3)))(vue@3.5.35(typescript@5.9.3)) + '@tiptap/extension-floating-menu': 3.23.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1) + '@tiptap/extension-horizontal-rule': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1) + '@tiptap/extension-image': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1)) + '@tiptap/extension-mention': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/suggestion@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)) + '@tiptap/extension-node-range': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1) + '@tiptap/extension-placeholder': 3.23.1(@tiptap/extensions@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)) + '@tiptap/markdown': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1) + '@tiptap/pm': 3.23.1 + '@tiptap/starter-kit': 3.23.1 + '@tiptap/suggestion': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1) + '@tiptap/vue-3': 3.23.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(vue@3.5.35(typescript@5.9.3)) + '@unhead/vue': 2.1.13(vue@3.5.35(typescript@5.9.3)) + '@vueuse/core': 14.3.0(vue@3.5.35(typescript@5.9.3)) + '@vueuse/integrations': 14.3.0(fuse.js@7.3.0)(qrcode@1.5.4)(vue@3.5.35(typescript@5.9.3)) + '@vueuse/shared': 14.3.0(vue@3.5.35(typescript@5.9.3)) + colortranslator: 5.0.0 + consola: 3.4.2 + defu: 6.1.7 + embla-carousel-auto-height: 8.6.0(embla-carousel@8.6.0) + embla-carousel-auto-scroll: 8.6.0(embla-carousel@8.6.0) + embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) + embla-carousel-class-names: 8.6.0(embla-carousel@8.6.0) + embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) + embla-carousel-vue: 8.6.0(vue@3.5.35(typescript@5.9.3)) + embla-carousel-wheel-gestures: 8.1.0(embla-carousel@8.6.0) + fuse.js: 7.3.0 + hookable: 6.1.1 + knitwork: 1.3.0 + magic-string: 0.30.21 + mlly: 1.8.2 + motion-v: 2.2.1(@vueuse/core@14.3.0(vue@3.5.35(typescript@5.9.3)))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(vue@3.5.35(typescript@5.9.3)) + ohash: 2.0.11 + pathe: 2.0.3 + reka-ui: 2.9.6(vue@3.5.35(typescript@5.9.3)) + scule: 1.3.0 + tailwind-merge: 3.5.0 + tailwind-variants: 3.2.2(tailwind-merge@3.5.0)(tailwindcss@4.2.4) + tailwindcss: 4.2.4 + tinyglobby: 0.2.16 + typescript: 5.9.3 + ufo: 1.6.4 + unplugin: 3.0.0 + unplugin-auto-import: 21.0.0(@nuxt/kit@4.4.4(magicast@0.5.3))(@vueuse/core@14.3.0(vue@3.5.35(typescript@5.9.3))) + unplugin-vue-components: 32.0.0(@nuxt/kit@4.4.4(magicast@0.5.3))(vue@3.5.35(typescript@5.9.3)) + vaul-vue: 0.4.1(reka-ui@2.9.6(vue@3.5.35(typescript@5.9.3)))(vue@3.5.35(typescript@5.9.3)) + vue-component-type-helpers: 3.2.8 + optionalDependencies: + '@internationalized/date': 3.12.1 + '@internationalized/number': 3.6.6 + valibot: 1.4.1(typescript@5.9.3) + vue-router: 4.6.4(vue@3.5.35(typescript@5.9.3)) + zod: 3.25.76 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@emotion/is-prop-valid' + - '@netlify/blobs' + - '@planetscale/database' + - '@tiptap/extensions' + - '@tiptap/y-tiptap' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' + - '@vue/composition-api' + - async-validator + - aws4fetch + - axios + - change-case + - db0 + - drauu + - embla-carousel + - focus-trap + - idb-keyval + - ioredis + - jwt-decode + - magicast + - nprogress + - qrcode + - react + - react-dom + - sortablejs + - universal-cookie + - uploadthing + - vite + - vue + - yjs + '@nuxt/vite-builder@4.1.3(@types/node@22.19.17)(eslint@10.3.0(jiti@2.7.0))(lightningcss@1.32.0)(magicast@0.5.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(vue@3.5.34(typescript@5.9.3))(yaml@2.8.4)': dependencies: '@nuxt/kit': 4.1.3(magicast@0.5.3) @@ -13679,11 +13942,21 @@ snapshots: '@tanstack/table-core': 8.21.3 vue: 3.5.34(typescript@5.9.3) + '@tanstack/vue-table@8.21.3(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@tanstack/table-core': 8.21.3 + vue: 3.5.35(typescript@5.9.3) + '@tanstack/vue-virtual@3.13.24(vue@3.5.34(typescript@5.9.3))': dependencies: '@tanstack/virtual-core': 3.14.0 vue: 3.5.34(typescript@5.9.3) + '@tanstack/vue-virtual@3.13.24(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@tanstack/virtual-core': 3.14.0 + vue: 3.5.35(typescript@5.9.3) + '@tauri-apps/api@2.11.0': {} '@tauri-apps/cli-darwin-arm64@2.11.2': @@ -13782,6 +14055,13 @@ snapshots: '@tiptap/vue-3': 3.23.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(vue@3.5.34(typescript@5.9.3)) vue: 3.5.34(typescript@5.9.3) + '@tiptap/extension-drag-handle-vue-3@3.23.1(@tiptap/extension-drag-handle@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/extension-collaboration@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(yjs@13.6.30))(@tiptap/extension-node-range@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30)))(@tiptap/pm@3.23.1)(@tiptap/vue-3@3.23.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(vue@3.5.35(typescript@5.9.3)))(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@tiptap/extension-drag-handle': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/extension-collaboration@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(yjs@13.6.30))(@tiptap/extension-node-range@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30)) + '@tiptap/pm': 3.23.1 + '@tiptap/vue-3': 3.23.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(vue@3.5.35(typescript@5.9.3)) + vue: 3.5.35(typescript@5.9.3) + '@tiptap/extension-drag-handle@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/extension-collaboration@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))(yjs@13.6.30))(@tiptap/extension-node-range@3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30))': dependencies: '@floating-ui/dom': 1.7.6 @@ -13948,6 +14228,16 @@ snapshots: '@tiptap/extension-bubble-menu': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1) '@tiptap/extension-floating-menu': 3.23.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1) + '@tiptap/vue-3@3.23.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1)(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@floating-ui/dom': 1.7.6 + '@tiptap/core': 3.23.1(@tiptap/pm@3.23.1) + '@tiptap/pm': 3.23.1 + vue: 3.5.35(typescript@5.9.3) + optionalDependencies: + '@tiptap/extension-bubble-menu': 3.23.1(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1) + '@tiptap/extension-floating-menu': 3.23.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.23.1(@tiptap/pm@3.23.1))(@tiptap/pm@3.23.1) + '@tiptap/y-tiptap@3.0.3(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.8)(y-protocols@1.0.7(yjs@13.6.30))(yjs@13.6.30)': dependencies: lib0: 0.2.117 @@ -14031,6 +14321,10 @@ snapshots: '@types/prop-types@15.7.15': {} + '@types/qrcode@1.5.6': + dependencies: + '@types/node': 22.19.17 + '@types/react-dom@18.3.7(@types/react@18.3.31)': dependencies: '@types/react': 18.3.31 @@ -14115,6 +14409,12 @@ snapshots: unhead: 2.1.13 vue: 3.5.34(typescript@5.9.3) + '@unhead/vue@2.1.13(vue@3.5.35(typescript@5.9.3))': + dependencies: + hookable: 6.1.1 + unhead: 2.1.13 + vue: 3.5.35(typescript@5.9.3) + '@urql/core@5.2.0': dependencies: '@0no-co/graphql.web': 1.2.0 @@ -14359,7 +14659,7 @@ snapshots: '@vue-macros/common@1.16.1(vue@3.5.34(typescript@5.9.3))': dependencies: - '@vue/compiler-sfc': 3.5.34 + '@vue/compiler-sfc': 3.5.35 ast-kit: 1.4.3 local-pkg: 1.1.2 magic-string-ast: 0.7.1 @@ -14370,7 +14670,7 @@ snapshots: '@vue-macros/common@3.0.0-beta.16(vue@3.5.34(typescript@5.9.3))': dependencies: - '@vue/compiler-sfc': 3.5.34 + '@vue/compiler-sfc': 3.5.35 ast-kit: 2.2.0 local-pkg: 1.1.2 magic-string-ast: 1.0.3 @@ -14390,7 +14690,7 @@ snapshots: '@babel/types': 7.29.0 '@vue/babel-helper-vue-transform-on': 2.0.1 '@vue/babel-plugin-resolve-type': 2.0.1(@babel/core@7.29.0) - '@vue/shared': 3.5.34 + '@vue/shared': 3.5.35 optionalDependencies: '@babel/core': 7.29.0 transitivePeerDependencies: @@ -14403,7 +14703,7 @@ snapshots: '@babel/helper-module-imports': 7.28.6 '@babel/helper-plugin-utils': 7.28.6 '@babel/parser': 7.29.3 - '@vue/compiler-sfc': 3.5.34 + '@vue/compiler-sfc': 3.5.35 transitivePeerDependencies: - supports-color @@ -14513,8 +14813,8 @@ snapshots: '@vue/language-core@3.2.8': dependencies: '@volar/language-core': 2.4.28 - '@vue/compiler-dom': 3.5.34 - '@vue/shared': 3.5.34 + '@vue/compiler-dom': 3.5.35 + '@vue/shared': 3.5.35 alien-signals: 3.1.2 muggle-string: 0.4.1 path-browserify: 1.0.1 @@ -14578,6 +14878,16 @@ snapshots: - '@vue/composition-api' - vue + '@vueuse/core@10.11.1(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@types/web-bluetooth': 0.0.20 + '@vueuse/metadata': 10.11.1 + '@vueuse/shared': 10.11.1(vue@3.5.35(typescript@5.9.3)) + vue-demi: 0.14.10(vue@3.5.35(typescript@5.9.3)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + '@vueuse/core@13.9.0(vue@3.5.34(typescript@5.9.3))': dependencies: '@types/web-bluetooth': 0.0.21 @@ -14592,13 +14902,30 @@ snapshots: '@vueuse/shared': 14.3.0(vue@3.5.34(typescript@5.9.3)) vue: 3.5.34(typescript@5.9.3) - '@vueuse/integrations@14.3.0(fuse.js@7.3.0)(vue@3.5.34(typescript@5.9.3))': + '@vueuse/core@14.3.0(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@types/web-bluetooth': 0.0.21 + '@vueuse/metadata': 14.3.0 + '@vueuse/shared': 14.3.0(vue@3.5.35(typescript@5.9.3)) + vue: 3.5.35(typescript@5.9.3) + + '@vueuse/integrations@14.3.0(fuse.js@7.3.0)(qrcode@1.5.4)(vue@3.5.34(typescript@5.9.3))': dependencies: '@vueuse/core': 14.3.0(vue@3.5.34(typescript@5.9.3)) '@vueuse/shared': 14.3.0(vue@3.5.34(typescript@5.9.3)) vue: 3.5.34(typescript@5.9.3) optionalDependencies: fuse.js: 7.3.0 + qrcode: 1.5.4 + + '@vueuse/integrations@14.3.0(fuse.js@7.3.0)(qrcode@1.5.4)(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@vueuse/core': 14.3.0(vue@3.5.35(typescript@5.9.3)) + '@vueuse/shared': 14.3.0(vue@3.5.35(typescript@5.9.3)) + vue: 3.5.35(typescript@5.9.3) + optionalDependencies: + fuse.js: 7.3.0 + qrcode: 1.5.4 '@vueuse/metadata@10.11.1': {} @@ -14620,7 +14947,7 @@ snapshots: transitivePeerDependencies: - magicast - '@vueuse/nuxt@14.3.0(magicast@0.5.3)(nuxt@4.1.3(@electric-sql/pglite@0.4.1)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@parcel/watcher@2.5.6)(@types/node@22.19.17)(@vue/compiler-sfc@3.5.35)(cac@6.7.14)(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(eslint@10.3.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(mysql2@3.15.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(yaml@2.8.4))(vue@3.5.34(typescript@5.9.3))': + '@vueuse/nuxt@14.3.0(magicast@0.5.3)(nuxt@4.1.3(@electric-sql/pglite@0.4.1)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@parcel/watcher@2.5.6)(@types/node@22.19.17)(@vue/compiler-sfc@3.5.35)(cac@6.7.14)(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(eslint@10.3.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(mysql2@3.15.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(yaml@2.8.4))(vue@3.5.34(typescript@5.9.3))': dependencies: '@nuxt/kit': 4.4.4(magicast@0.5.3) '@vueuse/core': 14.3.0(vue@3.5.34(typescript@5.9.3)) @@ -14631,6 +14958,17 @@ snapshots: transitivePeerDependencies: - magicast + '@vueuse/nuxt@14.3.0(magicast@0.5.3)(nuxt@4.1.3(@electric-sql/pglite@0.4.1)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@parcel/watcher@2.5.6)(@types/node@22.19.17)(@vue/compiler-sfc@3.5.35)(cac@6.7.14)(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(eslint@10.3.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(mysql2@3.15.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(yaml@2.8.4))(vue@3.5.35(typescript@5.9.3))': + dependencies: + '@nuxt/kit': 4.4.4(magicast@0.5.3) + '@vueuse/core': 14.3.0(vue@3.5.35(typescript@5.9.3)) + '@vueuse/metadata': 14.3.0 + local-pkg: 1.1.2 + nuxt: 4.1.3(@electric-sql/pglite@0.4.1)(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)(@parcel/watcher@2.5.6)(@types/node@22.19.17)(@vue/compiler-sfc@3.5.35)(cac@6.7.14)(db0@0.3.4(@electric-sql/pglite@0.4.1)(mysql2@3.15.3))(eslint@10.3.0(jiti@2.7.0))(ioredis@5.10.1)(lightningcss@1.32.0)(magicast@0.5.3)(mysql2@3.15.3)(optionator@0.9.4)(rollup@4.60.3)(terser@5.46.2)(typescript@5.9.3)(vite@7.3.3(@types/node@22.19.17)(jiti@2.7.0)(lightningcss@1.32.0)(terser@5.46.2)(yaml@2.8.4))(yaml@2.8.4) + vue: 3.5.35(typescript@5.9.3) + transitivePeerDependencies: + - magicast + '@vueuse/shared@10.11.1(vue@3.5.34(typescript@5.9.3))': dependencies: vue-demi: 0.14.10(vue@3.5.34(typescript@5.9.3)) @@ -14638,6 +14976,13 @@ snapshots: - '@vue/composition-api' - vue + '@vueuse/shared@10.11.1(vue@3.5.35(typescript@5.9.3))': + dependencies: + vue-demi: 0.14.10(vue@3.5.35(typescript@5.9.3)) + transitivePeerDependencies: + - '@vue/composition-api' + - vue + '@vueuse/shared@13.9.0(vue@3.5.34(typescript@5.9.3))': dependencies: vue: 3.5.34(typescript@5.9.3) @@ -14646,6 +14991,10 @@ snapshots: dependencies: vue: 3.5.34(typescript@5.9.3) + '@vueuse/shared@14.3.0(vue@3.5.35(typescript@5.9.3))': + dependencies: + vue: 3.5.35(typescript@5.9.3) + '@xmldom/xmldom@0.8.13': {} '@xmldom/xmldom@0.9.10': {} @@ -15273,6 +15622,12 @@ snapshots: client-only@0.0.1: {} + cliui@6.0.0: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + cliui@8.0.1: dependencies: string-width: 4.2.3 @@ -15545,6 +15900,8 @@ snapshots: dependencies: ms: 2.1.3 + decamelize@1.2.0: {} + decode-uri-component@0.2.2: {} decompress-response@6.0.0: @@ -15634,6 +15991,8 @@ snapshots: diff@9.0.0: {} + dijkstrajs@1.0.3: {} + dlv@1.1.3: {} dom-serializer@2.0.0: @@ -15719,6 +16078,12 @@ snapshots: embla-carousel-reactive-utils: 8.6.0(embla-carousel@8.6.0) vue: 3.5.34(typescript@5.9.3) + embla-carousel-vue@8.6.0(vue@3.5.35(typescript@5.9.3)): + dependencies: + embla-carousel: 8.6.0 + embla-carousel-reactive-utils: 8.6.0(embla-carousel@8.6.0) + vue: 3.5.35(typescript@5.9.3) + embla-carousel-wheel-gestures@8.1.0(embla-carousel@8.6.0): dependencies: embla-carousel: 8.6.0 @@ -17801,6 +18166,19 @@ snapshots: - react - react-dom + motion-v@2.2.1(@vueuse/core@14.3.0(vue@3.5.35(typescript@5.9.3)))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(vue@3.5.35(typescript@5.9.3)): + dependencies: + '@vueuse/core': 14.3.0(vue@3.5.35(typescript@5.9.3)) + framer-motion: 12.38.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + hey-listen: 1.0.8 + motion-dom: 12.38.0 + motion-utils: 12.36.0 + vue: 3.5.35(typescript@5.9.3) + transitivePeerDependencies: + - '@emotion/is-prop-valid' + - react + - react-dom + mri@1.2.0: {} mrmime@2.0.1: {} @@ -18675,6 +19053,8 @@ snapshots: pngjs@3.4.0: {} + pngjs@5.0.0: {} + popmotion@11.0.5: dependencies: framesync: 6.1.2 @@ -19073,6 +19453,12 @@ snapshots: qrcode-terminal@0.11.0: {} + qrcode@1.5.4: + dependencies: + dijkstrajs: 1.0.3 + pngjs: 5.0.0 + yargs: 15.4.1 + qs@6.15.1: dependencies: side-channel: 1.1.0 @@ -19468,12 +19854,30 @@ snapshots: transitivePeerDependencies: - '@vue/composition-api' + reka-ui@2.9.6(vue@3.5.35(typescript@5.9.3)): + dependencies: + '@floating-ui/dom': 1.7.6 + '@floating-ui/vue': 1.1.11(vue@3.5.35(typescript@5.9.3)) + '@internationalized/date': 3.12.1 + '@internationalized/number': 3.6.6 + '@tanstack/vue-virtual': 3.13.24(vue@3.5.35(typescript@5.9.3)) + '@vueuse/core': 14.3.0(vue@3.5.35(typescript@5.9.3)) + '@vueuse/shared': 14.3.0(vue@3.5.35(typescript@5.9.3)) + aria-hidden: 1.2.6 + defu: 6.1.7 + ohash: 2.0.11 + vue: 3.5.35(typescript@5.9.3) + transitivePeerDependencies: + - '@vue/composition-api' + remeda@2.33.4: {} require-directory@2.1.1: {} require-from-string@2.0.2: {} + require-main-filename@2.0.0: {} + requireg@0.2.2: dependencies: nested-error-stacks: 2.0.1 @@ -19693,6 +20097,8 @@ snapshots: server-only@0.0.1: {} + set-blocking@2.0.0: {} + set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 @@ -20379,6 +20785,18 @@ snapshots: '@nuxt/kit': 4.4.4(magicast@0.5.3) '@vueuse/core': 14.3.0(vue@3.5.34(typescript@5.9.3)) + unplugin-auto-import@21.0.0(@nuxt/kit@4.4.4(magicast@0.5.3))(@vueuse/core@14.3.0(vue@3.5.35(typescript@5.9.3))): + dependencies: + local-pkg: 1.1.2 + magic-string: 0.30.21 + picomatch: 4.0.4 + unimport: 5.7.0 + unplugin: 2.3.11 + unplugin-utils: 0.3.1 + optionalDependencies: + '@nuxt/kit': 4.4.4(magicast@0.5.3) + '@vueuse/core': 14.3.0(vue@3.5.35(typescript@5.9.3)) + unplugin-utils@0.2.5: dependencies: pathe: 2.0.3 @@ -20404,6 +20822,21 @@ snapshots: optionalDependencies: '@nuxt/kit': 4.4.4(magicast@0.5.3) + unplugin-vue-components@32.0.0(@nuxt/kit@4.4.4(magicast@0.5.3))(vue@3.5.35(typescript@5.9.3)): + dependencies: + chokidar: 5.0.0 + local-pkg: 1.1.2 + magic-string: 0.30.21 + mlly: 1.8.2 + obug: 2.1.1 + picomatch: 4.0.4 + tinyglobby: 0.2.16 + unplugin: 3.0.0 + unplugin-utils: 0.3.1 + vue: 3.5.35(typescript@5.9.3) + optionalDependencies: + '@nuxt/kit': 4.4.4(magicast@0.5.3) + unplugin-vue-router@0.12.0(vue-router@4.6.4(vue@3.5.34(typescript@5.9.3)))(vue@3.5.34(typescript@5.9.3)): dependencies: '@babel/types': 7.29.0 @@ -20578,6 +21011,14 @@ snapshots: transitivePeerDependencies: - '@vue/composition-api' + vaul-vue@0.4.1(reka-ui@2.9.6(vue@3.5.35(typescript@5.9.3)))(vue@3.5.35(typescript@5.9.3)): + dependencies: + '@vueuse/core': 10.11.1(vue@3.5.35(typescript@5.9.3)) + reka-ui: 2.9.6(vue@3.5.35(typescript@5.9.3)) + vue: 3.5.35(typescript@5.9.3) + transitivePeerDependencies: + - '@vue/composition-api' + vaul@1.1.2(@types/react-dom@18.3.7(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: '@radix-ui/react-dialog': 1.1.15(@types/react-dom@18.3.7(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) @@ -20815,6 +21256,10 @@ snapshots: dependencies: vue: 3.5.34(typescript@5.9.3) + vue-demi@0.14.10(vue@3.5.35(typescript@5.9.3)): + dependencies: + vue: 3.5.35(typescript@5.9.3) + vue-devtools-stub@0.1.0: {} vue-i18n@10.0.8(vue@3.5.34(typescript@5.9.3)): @@ -20829,6 +21274,11 @@ snapshots: '@vue/devtools-api': 6.6.4 vue: 3.5.34(typescript@5.9.3) + vue-router@4.6.4(vue@3.5.35(typescript@5.9.3)): + dependencies: + '@vue/devtools-api': 6.6.4 + vue: 3.5.35(typescript@5.9.3) + vue-virtual-scroller@3.0.4(vue@3.5.35(typescript@5.9.3)): dependencies: vue: 3.5.35(typescript@5.9.3) @@ -20888,6 +21338,8 @@ snapshots: wheel-gestures@2.2.48: {} + which-module@2.0.1: {} + which-typed-array@1.1.20: dependencies: available-typed-arrays: 1.0.7 @@ -20919,6 +21371,12 @@ snapshots: word-wrap@1.2.5: {} + wrap-ansi@6.2.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 @@ -20990,6 +21448,8 @@ snapshots: lib0: 0.2.117 yjs: 13.6.30 + y18n@4.0.3: {} + y18n@5.0.8: {} yallist@3.1.1: {} @@ -21003,10 +21463,29 @@ snapshots: yaml@2.8.4: {} + yargs-parser@18.1.3: + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + yargs-parser@21.1.1: {} yargs-parser@22.0.0: {} + yargs@15.4.1: + dependencies: + cliui: 6.0.0 + decamelize: 1.2.0 + find-up: 4.1.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + require-main-filename: 2.0.0 + set-blocking: 2.0.0 + string-width: 4.2.3 + which-module: 2.0.1 + y18n: 4.0.3 + yargs-parser: 18.1.3 + yargs@17.7.2: dependencies: cliui: 8.0.1